1 Star 0 Fork 0

MrCoder/openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
model_nsacf_capability.go 5.10 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 +08:00 . update
/*
NRF NFDiscovery Service
NRF NFDiscovery Service. © 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.2.5
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_Nnrf_NFDiscovery
import (
"encoding/json"
)
// checks if the NsacfCapability type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &NsacfCapability{}
// NsacfCapability NSACF service capabilities (e.g. to monitor and control the number of registered UEs or established PDU sessions per network slice)
type NsacfCapability struct {
// Indicates the service capability of the NSACF to monitor and control the number of registered UEs per network slice for the network slice that is subject to NSAC true: Supported false (default): Not Supported
SupportUeSAC *bool `json:"supportUeSAC,omitempty"`
// Indicates the service capability of the NSACF to monitor and control the number of established PDU sessions per network slice for the network slice that is subject to NSAC true: Supported false (default): Not Supported
SupportPduSAC *bool `json:"supportPduSAC,omitempty"`
}
// NewNsacfCapability instantiates a new NsacfCapability 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 NewNsacfCapability() *NsacfCapability {
this := NsacfCapability{}
var supportUeSAC bool = false
this.SupportUeSAC = &supportUeSAC
var supportPduSAC bool = false
this.SupportPduSAC = &supportPduSAC
return &this
}
// NewNsacfCapabilityWithDefaults instantiates a new NsacfCapability 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 NewNsacfCapabilityWithDefaults() *NsacfCapability {
this := NsacfCapability{}
var supportUeSAC bool = false
this.SupportUeSAC = &supportUeSAC
var supportPduSAC bool = false
this.SupportPduSAC = &supportPduSAC
return &this
}
// GetSupportUeSAC returns the SupportUeSAC field value if set, zero value otherwise.
func (o *NsacfCapability) GetSupportUeSAC() bool {
if o == nil || IsNil(o.SupportUeSAC) {
var ret bool
return ret
}
return *o.SupportUeSAC
}
// GetSupportUeSACOk returns a tuple with the SupportUeSAC field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *NsacfCapability) GetSupportUeSACOk() (*bool, bool) {
if o == nil || IsNil(o.SupportUeSAC) {
return nil, false
}
return o.SupportUeSAC, true
}
// HasSupportUeSAC returns a boolean if a field has been set.
func (o *NsacfCapability) HasSupportUeSAC() bool {
if o != nil && !IsNil(o.SupportUeSAC) {
return true
}
return false
}
// SetSupportUeSAC gets a reference to the given bool and assigns it to the SupportUeSAC field.
func (o *NsacfCapability) SetSupportUeSAC(v bool) {
o.SupportUeSAC = &v
}
// GetSupportPduSAC returns the SupportPduSAC field value if set, zero value otherwise.
func (o *NsacfCapability) GetSupportPduSAC() bool {
if o == nil || IsNil(o.SupportPduSAC) {
var ret bool
return ret
}
return *o.SupportPduSAC
}
// GetSupportPduSACOk returns a tuple with the SupportPduSAC field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *NsacfCapability) GetSupportPduSACOk() (*bool, bool) {
if o == nil || IsNil(o.SupportPduSAC) {
return nil, false
}
return o.SupportPduSAC, true
}
// HasSupportPduSAC returns a boolean if a field has been set.
func (o *NsacfCapability) HasSupportPduSAC() bool {
if o != nil && !IsNil(o.SupportPduSAC) {
return true
}
return false
}
// SetSupportPduSAC gets a reference to the given bool and assigns it to the SupportPduSAC field.
func (o *NsacfCapability) SetSupportPduSAC(v bool) {
o.SupportPduSAC = &v
}
func (o NsacfCapability) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o NsacfCapability) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.SupportUeSAC) {
toSerialize["supportUeSAC"] = o.SupportUeSAC
}
if !IsNil(o.SupportPduSAC) {
toSerialize["supportPduSAC"] = o.SupportPduSAC
}
return toSerialize, nil
}
type NullableNsacfCapability struct {
value *NsacfCapability
isSet bool
}
func (v NullableNsacfCapability) Get() *NsacfCapability {
return v.value
}
func (v *NullableNsacfCapability) Set(val *NsacfCapability) {
v.value = val
v.isSet = true
}
func (v NullableNsacfCapability) IsSet() bool {
return v.isSet
}
func (v *NullableNsacfCapability) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableNsacfCapability(val *NsacfCapability) *NullableNsacfCapability {
return &NullableNsacfCapability{value: val, isSet: true}
}
func (v NullableNsacfCapability) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableNsacfCapability) 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

搜索帮助