1 Star 0 Fork 0

MrCoder/openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
model_threshold_value.go 5.24 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2年前 . update
/*
Npcf_SMPolicyControl API
Session Management Policy Control Service © 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.2.4
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_Npcf_SMPolicyControl
import (
"encoding/json"
)
// checks if the ThresholdValue type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &ThresholdValue{}
// ThresholdValue Indicates the threshold value(s) for RTT and/or Packet Loss Rate.
type ThresholdValue struct {
// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible with the OpenAPI 'nullable: true' property.
RttThres NullableInt32 `json:"rttThres,omitempty"`
// This data type is defined in the same way as the 'PacketLossRate' data type, but with the OpenAPI 'nullable: true' property.
PlrThres NullableInt32 `json:"plrThres,omitempty"`
}
// NewThresholdValue instantiates a new ThresholdValue object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewThresholdValue() *ThresholdValue {
this := ThresholdValue{}
return &this
}
// NewThresholdValueWithDefaults instantiates a new ThresholdValue object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewThresholdValueWithDefaults() *ThresholdValue {
this := ThresholdValue{}
return &this
}
// GetRttThres returns the RttThres field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ThresholdValue) GetRttThres() int32 {
if o == nil || IsNil(o.RttThres.Get()) {
var ret int32
return ret
}
return *o.RttThres.Get()
}
// GetRttThresOk returns a tuple with the RttThres field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ThresholdValue) GetRttThresOk() (*int32, bool) {
if o == nil {
return nil, false
}
return o.RttThres.Get(), o.RttThres.IsSet()
}
// HasRttThres returns a boolean if a field has been set.
func (o *ThresholdValue) HasRttThres() bool {
if o != nil && o.RttThres.IsSet() {
return true
}
return false
}
// SetRttThres gets a reference to the given NullableInt32 and assigns it to the RttThres field.
func (o *ThresholdValue) SetRttThres(v int32) {
o.RttThres.Set(&v)
}
// SetRttThresNil sets the value for RttThres to be an explicit nil
func (o *ThresholdValue) SetRttThresNil() {
o.RttThres.Set(nil)
}
// UnsetRttThres ensures that no value is present for RttThres, not even an explicit nil
func (o *ThresholdValue) UnsetRttThres() {
o.RttThres.Unset()
}
// GetPlrThres returns the PlrThres field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ThresholdValue) GetPlrThres() int32 {
if o == nil || IsNil(o.PlrThres.Get()) {
var ret int32
return ret
}
return *o.PlrThres.Get()
}
// GetPlrThresOk returns a tuple with the PlrThres field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ThresholdValue) GetPlrThresOk() (*int32, bool) {
if o == nil {
return nil, false
}
return o.PlrThres.Get(), o.PlrThres.IsSet()
}
// HasPlrThres returns a boolean if a field has been set.
func (o *ThresholdValue) HasPlrThres() bool {
if o != nil && o.PlrThres.IsSet() {
return true
}
return false
}
// SetPlrThres gets a reference to the given NullableInt32 and assigns it to the PlrThres field.
func (o *ThresholdValue) SetPlrThres(v int32) {
o.PlrThres.Set(&v)
}
// SetPlrThresNil sets the value for PlrThres to be an explicit nil
func (o *ThresholdValue) SetPlrThresNil() {
o.PlrThres.Set(nil)
}
// UnsetPlrThres ensures that no value is present for PlrThres, not even an explicit nil
func (o *ThresholdValue) UnsetPlrThres() {
o.PlrThres.Unset()
}
func (o ThresholdValue) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o ThresholdValue) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if o.RttThres.IsSet() {
toSerialize["rttThres"] = o.RttThres.Get()
}
if o.PlrThres.IsSet() {
toSerialize["plrThres"] = o.PlrThres.Get()
}
return toSerialize, nil
}
type NullableThresholdValue struct {
value *ThresholdValue
isSet bool
}
func (v NullableThresholdValue) Get() *ThresholdValue {
return v.value
}
func (v *NullableThresholdValue) Set(val *ThresholdValue) {
v.value = val
v.isSet = true
}
func (v NullableThresholdValue) IsSet() bool {
return v.isSet
}
func (v *NullableThresholdValue) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableThresholdValue(val *ThresholdValue) *NullableThresholdValue {
return &NullableThresholdValue{value: val, isSet: true}
}
func (v NullableThresholdValue) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableThresholdValue) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/konglinglong/openapi.git
git@gitee.com:konglinglong/openapi.git
konglinglong
openapi
openapi
e403a3c726a4

搜索帮助