1 Star 0 Fork 0

MrCoder / openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model_n2_mbs_sm_info.go 5.23 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 . update
/*
Namf_MBSBroadcast
AMF MBSBroadcast Service. © 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.0.3
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_Namf_MBSBroadcast
import (
"encoding/json"
"fmt"
)
// checks if the N2MbsSmInfo type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &N2MbsSmInfo{}
// N2MbsSmInfo N2 MBS Session Management information
type N2MbsSmInfo struct {
NgapIeType NgapIeType `json:"ngapIeType"`
NgapData RefToBinaryData `json:"ngapData"`
RandId NullableGlobalRanNodeId `json:"randId"`
}
type _N2MbsSmInfo N2MbsSmInfo
// NewN2MbsSmInfo instantiates a new N2MbsSmInfo 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 NewN2MbsSmInfo(ngapIeType NgapIeType, ngapData RefToBinaryData, randId NullableGlobalRanNodeId) *N2MbsSmInfo {
this := N2MbsSmInfo{}
this.NgapIeType = ngapIeType
this.NgapData = ngapData
this.RandId = randId
return &this
}
// NewN2MbsSmInfoWithDefaults instantiates a new N2MbsSmInfo 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 NewN2MbsSmInfoWithDefaults() *N2MbsSmInfo {
this := N2MbsSmInfo{}
return &this
}
// GetNgapIeType returns the NgapIeType field value
func (o *N2MbsSmInfo) GetNgapIeType() NgapIeType {
if o == nil {
var ret NgapIeType
return ret
}
return o.NgapIeType
}
// GetNgapIeTypeOk returns a tuple with the NgapIeType field value
// and a boolean to check if the value has been set.
func (o *N2MbsSmInfo) GetNgapIeTypeOk() (*NgapIeType, bool) {
if o == nil {
return nil, false
}
return &o.NgapIeType, true
}
// SetNgapIeType sets field value
func (o *N2MbsSmInfo) SetNgapIeType(v NgapIeType) {
o.NgapIeType = v
}
// GetNgapData returns the NgapData field value
func (o *N2MbsSmInfo) GetNgapData() RefToBinaryData {
if o == nil {
var ret RefToBinaryData
return ret
}
return o.NgapData
}
// GetNgapDataOk returns a tuple with the NgapData field value
// and a boolean to check if the value has been set.
func (o *N2MbsSmInfo) GetNgapDataOk() (*RefToBinaryData, bool) {
if o == nil {
return nil, false
}
return &o.NgapData, true
}
// SetNgapData sets field value
func (o *N2MbsSmInfo) SetNgapData(v RefToBinaryData) {
o.NgapData = v
}
// GetRandId returns the RandId field value
// If the value is explicit nil, the zero value for GlobalRanNodeId will be returned
func (o *N2MbsSmInfo) GetRandId() GlobalRanNodeId {
if o == nil || o.RandId.Get() == nil {
var ret GlobalRanNodeId
return ret
}
return *o.RandId.Get()
}
// GetRandIdOk returns a tuple with the RandId field value
// 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 *N2MbsSmInfo) GetRandIdOk() (*GlobalRanNodeId, bool) {
if o == nil {
return nil, false
}
return o.RandId.Get(), o.RandId.IsSet()
}
// SetRandId sets field value
func (o *N2MbsSmInfo) SetRandId(v GlobalRanNodeId) {
o.RandId.Set(&v)
}
func (o N2MbsSmInfo) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o N2MbsSmInfo) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
toSerialize["ngapIeType"] = o.NgapIeType
toSerialize["ngapData"] = o.NgapData
toSerialize["randId"] = o.RandId.Get()
return toSerialize, nil
}
func (o *N2MbsSmInfo) UnmarshalJSON(bytes []byte) (err error) {
// This validates that all required properties are included in the JSON object
// by unmarshalling the object into a generic map with string keys and checking
// that every required field exists as a key in the generic map.
requiredProperties := []string{
"ngapIeType",
"ngapData",
"randId",
}
allProperties := make(map[string]interface{})
err = json.Unmarshal(bytes, &allProperties)
if err != nil {
return err
}
for _, requiredProperty := range requiredProperties {
if _, exists := allProperties[requiredProperty]; !exists {
return fmt.Errorf("no value given for required property %v", requiredProperty)
}
}
varN2MbsSmInfo := _N2MbsSmInfo{}
err = json.Unmarshal(bytes, &varN2MbsSmInfo)
if err != nil {
return err
}
*o = N2MbsSmInfo(varN2MbsSmInfo)
return err
}
type NullableN2MbsSmInfo struct {
value *N2MbsSmInfo
isSet bool
}
func (v NullableN2MbsSmInfo) Get() *N2MbsSmInfo {
return v.value
}
func (v *NullableN2MbsSmInfo) Set(val *N2MbsSmInfo) {
v.value = val
v.isSet = true
}
func (v NullableN2MbsSmInfo) IsSet() bool {
return v.isSet
}
func (v *NullableN2MbsSmInfo) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableN2MbsSmInfo(val *N2MbsSmInfo) *NullableN2MbsSmInfo {
return &NullableN2MbsSmInfo{value: val, isSet: true}
}
func (v NullableN2MbsSmInfo) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableN2MbsSmInfo) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
Go
1
https://gitee.com/konglinglong/openapi.git
git@gitee.com:konglinglong/openapi.git
konglinglong
openapi
openapi
e403a3c726a4

搜索帮助