1 Star 0 Fork 0

MrCoder / openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model_object_dist_meth_anmt_info.go 5.95 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 ObjectDistMethAnmtInfo type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &ObjectDistMethAnmtInfo{}
// ObjectDistMethAnmtInfo Represents MBS Distribution Session Announcement parameters for Object Distribution Method.
type ObjectDistMethAnmtInfo struct {
ObjDistrSched *TimeWindow `json:"objDistrSched,omitempty"`
// String providing an URI formatted according to RFC 3986.
ObjDistrBaseUri *string `json:"objDistrBaseUri,omitempty"`
// String providing an URI formatted according to RFC 3986.
ObjRepBaseUri *string `json:"objRepBaseUri,omitempty"`
}
// NewObjectDistMethAnmtInfo instantiates a new ObjectDistMethAnmtInfo 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 NewObjectDistMethAnmtInfo() *ObjectDistMethAnmtInfo {
this := ObjectDistMethAnmtInfo{}
return &this
}
// NewObjectDistMethAnmtInfoWithDefaults instantiates a new ObjectDistMethAnmtInfo 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 NewObjectDistMethAnmtInfoWithDefaults() *ObjectDistMethAnmtInfo {
this := ObjectDistMethAnmtInfo{}
return &this
}
// GetObjDistrSched returns the ObjDistrSched field value if set, zero value otherwise.
func (o *ObjectDistMethAnmtInfo) GetObjDistrSched() TimeWindow {
if o == nil || IsNil(o.ObjDistrSched) {
var ret TimeWindow
return ret
}
return *o.ObjDistrSched
}
// GetObjDistrSchedOk returns a tuple with the ObjDistrSched field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ObjectDistMethAnmtInfo) GetObjDistrSchedOk() (*TimeWindow, bool) {
if o == nil || IsNil(o.ObjDistrSched) {
return nil, false
}
return o.ObjDistrSched, true
}
// HasObjDistrSched returns a boolean if a field has been set.
func (o *ObjectDistMethAnmtInfo) HasObjDistrSched() bool {
if o != nil && !IsNil(o.ObjDistrSched) {
return true
}
return false
}
// SetObjDistrSched gets a reference to the given TimeWindow and assigns it to the ObjDistrSched field.
func (o *ObjectDistMethAnmtInfo) SetObjDistrSched(v TimeWindow) {
o.ObjDistrSched = &v
}
// GetObjDistrBaseUri returns the ObjDistrBaseUri field value if set, zero value otherwise.
func (o *ObjectDistMethAnmtInfo) GetObjDistrBaseUri() string {
if o == nil || IsNil(o.ObjDistrBaseUri) {
var ret string
return ret
}
return *o.ObjDistrBaseUri
}
// GetObjDistrBaseUriOk returns a tuple with the ObjDistrBaseUri field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ObjectDistMethAnmtInfo) GetObjDistrBaseUriOk() (*string, bool) {
if o == nil || IsNil(o.ObjDistrBaseUri) {
return nil, false
}
return o.ObjDistrBaseUri, true
}
// HasObjDistrBaseUri returns a boolean if a field has been set.
func (o *ObjectDistMethAnmtInfo) HasObjDistrBaseUri() bool {
if o != nil && !IsNil(o.ObjDistrBaseUri) {
return true
}
return false
}
// SetObjDistrBaseUri gets a reference to the given string and assigns it to the ObjDistrBaseUri field.
func (o *ObjectDistMethAnmtInfo) SetObjDistrBaseUri(v string) {
o.ObjDistrBaseUri = &v
}
// GetObjRepBaseUri returns the ObjRepBaseUri field value if set, zero value otherwise.
func (o *ObjectDistMethAnmtInfo) GetObjRepBaseUri() string {
if o == nil || IsNil(o.ObjRepBaseUri) {
var ret string
return ret
}
return *o.ObjRepBaseUri
}
// GetObjRepBaseUriOk returns a tuple with the ObjRepBaseUri field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ObjectDistMethAnmtInfo) GetObjRepBaseUriOk() (*string, bool) {
if o == nil || IsNil(o.ObjRepBaseUri) {
return nil, false
}
return o.ObjRepBaseUri, true
}
// HasObjRepBaseUri returns a boolean if a field has been set.
func (o *ObjectDistMethAnmtInfo) HasObjRepBaseUri() bool {
if o != nil && !IsNil(o.ObjRepBaseUri) {
return true
}
return false
}
// SetObjRepBaseUri gets a reference to the given string and assigns it to the ObjRepBaseUri field.
func (o *ObjectDistMethAnmtInfo) SetObjRepBaseUri(v string) {
o.ObjRepBaseUri = &v
}
func (o ObjectDistMethAnmtInfo) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o ObjectDistMethAnmtInfo) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.ObjDistrSched) {
toSerialize["objDistrSched"] = o.ObjDistrSched
}
if !IsNil(o.ObjDistrBaseUri) {
toSerialize["objDistrBaseUri"] = o.ObjDistrBaseUri
}
if !IsNil(o.ObjRepBaseUri) {
toSerialize["objRepBaseUri"] = o.ObjRepBaseUri
}
return toSerialize, nil
}
type NullableObjectDistMethAnmtInfo struct {
value *ObjectDistMethAnmtInfo
isSet bool
}
func (v NullableObjectDistMethAnmtInfo) Get() *ObjectDistMethAnmtInfo {
return v.value
}
func (v *NullableObjectDistMethAnmtInfo) Set(val *ObjectDistMethAnmtInfo) {
v.value = val
v.isSet = true
}
func (v NullableObjectDistMethAnmtInfo) IsSet() bool {
return v.isSet
}
func (v *NullableObjectDistMethAnmtInfo) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableObjectDistMethAnmtInfo(val *ObjectDistMethAnmtInfo) *NullableObjectDistMethAnmtInfo {
return &NullableObjectDistMethAnmtInfo{value: val, isSet: true}
}
func (v NullableObjectDistMethAnmtInfo) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableObjectDistMethAnmtInfo) 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

搜索帮助