1 Star 0 Fork 0

MrCoder/openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
model_mbs_media_info.go 6.57 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 +08:00 . update
/*
3gpp-mbs-session
API for MBS Session Management. © 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.1.1
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_MBSSession
import (
"encoding/json"
)
// checks if the MbsMediaInfo type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &MbsMediaInfo{}
// MbsMediaInfo Represent MBS Media Information.
type MbsMediaInfo struct {
MbsMedType *MediaType `json:"mbsMedType,omitempty"`
// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
MaxReqMbsBwDl *string `json:"maxReqMbsBwDl,omitempty"`
// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
MinReqMbsBwDl *string `json:"minReqMbsBwDl,omitempty"`
Codecs []string `json:"codecs,omitempty"`
}
// NewMbsMediaInfo instantiates a new MbsMediaInfo 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 NewMbsMediaInfo() *MbsMediaInfo {
this := MbsMediaInfo{}
return &this
}
// NewMbsMediaInfoWithDefaults instantiates a new MbsMediaInfo 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 NewMbsMediaInfoWithDefaults() *MbsMediaInfo {
this := MbsMediaInfo{}
return &this
}
// GetMbsMedType returns the MbsMedType field value if set, zero value otherwise.
func (o *MbsMediaInfo) GetMbsMedType() MediaType {
if o == nil || IsNil(o.MbsMedType) {
var ret MediaType
return ret
}
return *o.MbsMedType
}
// GetMbsMedTypeOk returns a tuple with the MbsMedType field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MbsMediaInfo) GetMbsMedTypeOk() (*MediaType, bool) {
if o == nil || IsNil(o.MbsMedType) {
return nil, false
}
return o.MbsMedType, true
}
// HasMbsMedType returns a boolean if a field has been set.
func (o *MbsMediaInfo) HasMbsMedType() bool {
if o != nil && !IsNil(o.MbsMedType) {
return true
}
return false
}
// SetMbsMedType gets a reference to the given MediaType and assigns it to the MbsMedType field.
func (o *MbsMediaInfo) SetMbsMedType(v MediaType) {
o.MbsMedType = &v
}
// GetMaxReqMbsBwDl returns the MaxReqMbsBwDl field value if set, zero value otherwise.
func (o *MbsMediaInfo) GetMaxReqMbsBwDl() string {
if o == nil || IsNil(o.MaxReqMbsBwDl) {
var ret string
return ret
}
return *o.MaxReqMbsBwDl
}
// GetMaxReqMbsBwDlOk returns a tuple with the MaxReqMbsBwDl field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MbsMediaInfo) GetMaxReqMbsBwDlOk() (*string, bool) {
if o == nil || IsNil(o.MaxReqMbsBwDl) {
return nil, false
}
return o.MaxReqMbsBwDl, true
}
// HasMaxReqMbsBwDl returns a boolean if a field has been set.
func (o *MbsMediaInfo) HasMaxReqMbsBwDl() bool {
if o != nil && !IsNil(o.MaxReqMbsBwDl) {
return true
}
return false
}
// SetMaxReqMbsBwDl gets a reference to the given string and assigns it to the MaxReqMbsBwDl field.
func (o *MbsMediaInfo) SetMaxReqMbsBwDl(v string) {
o.MaxReqMbsBwDl = &v
}
// GetMinReqMbsBwDl returns the MinReqMbsBwDl field value if set, zero value otherwise.
func (o *MbsMediaInfo) GetMinReqMbsBwDl() string {
if o == nil || IsNil(o.MinReqMbsBwDl) {
var ret string
return ret
}
return *o.MinReqMbsBwDl
}
// GetMinReqMbsBwDlOk returns a tuple with the MinReqMbsBwDl field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MbsMediaInfo) GetMinReqMbsBwDlOk() (*string, bool) {
if o == nil || IsNil(o.MinReqMbsBwDl) {
return nil, false
}
return o.MinReqMbsBwDl, true
}
// HasMinReqMbsBwDl returns a boolean if a field has been set.
func (o *MbsMediaInfo) HasMinReqMbsBwDl() bool {
if o != nil && !IsNil(o.MinReqMbsBwDl) {
return true
}
return false
}
// SetMinReqMbsBwDl gets a reference to the given string and assigns it to the MinReqMbsBwDl field.
func (o *MbsMediaInfo) SetMinReqMbsBwDl(v string) {
o.MinReqMbsBwDl = &v
}
// GetCodecs returns the Codecs field value if set, zero value otherwise.
func (o *MbsMediaInfo) GetCodecs() []string {
if o == nil || IsNil(o.Codecs) {
var ret []string
return ret
}
return o.Codecs
}
// GetCodecsOk returns a tuple with the Codecs field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MbsMediaInfo) GetCodecsOk() ([]string, bool) {
if o == nil || IsNil(o.Codecs) {
return nil, false
}
return o.Codecs, true
}
// HasCodecs returns a boolean if a field has been set.
func (o *MbsMediaInfo) HasCodecs() bool {
if o != nil && !IsNil(o.Codecs) {
return true
}
return false
}
// SetCodecs gets a reference to the given []string and assigns it to the Codecs field.
func (o *MbsMediaInfo) SetCodecs(v []string) {
o.Codecs = v
}
func (o MbsMediaInfo) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o MbsMediaInfo) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.MbsMedType) {
toSerialize["mbsMedType"] = o.MbsMedType
}
if !IsNil(o.MaxReqMbsBwDl) {
toSerialize["maxReqMbsBwDl"] = o.MaxReqMbsBwDl
}
if !IsNil(o.MinReqMbsBwDl) {
toSerialize["minReqMbsBwDl"] = o.MinReqMbsBwDl
}
if !IsNil(o.Codecs) {
toSerialize["codecs"] = o.Codecs
}
return toSerialize, nil
}
type NullableMbsMediaInfo struct {
value *MbsMediaInfo
isSet bool
}
func (v NullableMbsMediaInfo) Get() *MbsMediaInfo {
return v.value
}
func (v *NullableMbsMediaInfo) Set(val *MbsMediaInfo) {
v.value = val
v.isSet = true
}
func (v NullableMbsMediaInfo) IsSet() bool {
return v.isSet
}
func (v *NullableMbsMediaInfo) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableMbsMediaInfo(val *MbsMediaInfo) *NullableMbsMediaInfo {
return &NullableMbsMediaInfo{value: val, isSet: true}
}
func (v NullableMbsMediaInfo) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableMbsMediaInfo) 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

搜索帮助