1 Star 0 Fork 0

MrCoder / openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model_mbs_user_data_ing_stat_subsc_patch.go 4.90 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 . update
/*
nmbsf-mbs-ud-ingest
API for MBS User Data Ingest Session 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_Nmbsf_MBSUserDataIngestSession
import (
"encoding/json"
)
// checks if the MBSUserDataIngStatSubscPatch type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &MBSUserDataIngStatSubscPatch{}
// MBSUserDataIngStatSubscPatch Represents the requested modifications to an MBS User Data Ingest Session Status Subscription.
type MBSUserDataIngStatSubscPatch struct {
EventSubscs []SubscribedEvent `json:"eventSubscs,omitempty"`
// String providing an URI formatted according to RFC 3986.
NotifUri *string `json:"notifUri,omitempty"`
}
// NewMBSUserDataIngStatSubscPatch instantiates a new MBSUserDataIngStatSubscPatch 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 NewMBSUserDataIngStatSubscPatch() *MBSUserDataIngStatSubscPatch {
this := MBSUserDataIngStatSubscPatch{}
return &this
}
// NewMBSUserDataIngStatSubscPatchWithDefaults instantiates a new MBSUserDataIngStatSubscPatch 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 NewMBSUserDataIngStatSubscPatchWithDefaults() *MBSUserDataIngStatSubscPatch {
this := MBSUserDataIngStatSubscPatch{}
return &this
}
// GetEventSubscs returns the EventSubscs field value if set, zero value otherwise.
func (o *MBSUserDataIngStatSubscPatch) GetEventSubscs() []SubscribedEvent {
if o == nil || IsNil(o.EventSubscs) {
var ret []SubscribedEvent
return ret
}
return o.EventSubscs
}
// GetEventSubscsOk returns a tuple with the EventSubscs field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MBSUserDataIngStatSubscPatch) GetEventSubscsOk() ([]SubscribedEvent, bool) {
if o == nil || IsNil(o.EventSubscs) {
return nil, false
}
return o.EventSubscs, true
}
// HasEventSubscs returns a boolean if a field has been set.
func (o *MBSUserDataIngStatSubscPatch) HasEventSubscs() bool {
if o != nil && !IsNil(o.EventSubscs) {
return true
}
return false
}
// SetEventSubscs gets a reference to the given []SubscribedEvent and assigns it to the EventSubscs field.
func (o *MBSUserDataIngStatSubscPatch) SetEventSubscs(v []SubscribedEvent) {
o.EventSubscs = v
}
// GetNotifUri returns the NotifUri field value if set, zero value otherwise.
func (o *MBSUserDataIngStatSubscPatch) GetNotifUri() string {
if o == nil || IsNil(o.NotifUri) {
var ret string
return ret
}
return *o.NotifUri
}
// GetNotifUriOk returns a tuple with the NotifUri field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MBSUserDataIngStatSubscPatch) GetNotifUriOk() (*string, bool) {
if o == nil || IsNil(o.NotifUri) {
return nil, false
}
return o.NotifUri, true
}
// HasNotifUri returns a boolean if a field has been set.
func (o *MBSUserDataIngStatSubscPatch) HasNotifUri() bool {
if o != nil && !IsNil(o.NotifUri) {
return true
}
return false
}
// SetNotifUri gets a reference to the given string and assigns it to the NotifUri field.
func (o *MBSUserDataIngStatSubscPatch) SetNotifUri(v string) {
o.NotifUri = &v
}
func (o MBSUserDataIngStatSubscPatch) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o MBSUserDataIngStatSubscPatch) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.EventSubscs) {
toSerialize["eventSubscs"] = o.EventSubscs
}
if !IsNil(o.NotifUri) {
toSerialize["notifUri"] = o.NotifUri
}
return toSerialize, nil
}
type NullableMBSUserDataIngStatSubscPatch struct {
value *MBSUserDataIngStatSubscPatch
isSet bool
}
func (v NullableMBSUserDataIngStatSubscPatch) Get() *MBSUserDataIngStatSubscPatch {
return v.value
}
func (v *NullableMBSUserDataIngStatSubscPatch) Set(val *MBSUserDataIngStatSubscPatch) {
v.value = val
v.isSet = true
}
func (v NullableMBSUserDataIngStatSubscPatch) IsSet() bool {
return v.isSet
}
func (v *NullableMBSUserDataIngStatSubscPatch) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableMBSUserDataIngStatSubscPatch(val *MBSUserDataIngStatSubscPatch) *NullableMBSUserDataIngStatSubscPatch {
return &NullableMBSUserDataIngStatSubscPatch{value: val, isSet: true}
}
func (v NullableMBSUserDataIngStatSubscPatch) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableMBSUserDataIngStatSubscPatch) 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

搜索帮助