Ai
1 Star 0 Fork 0

MrCoder/openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
model_redundant_transmission_exp_req.go 4.94 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 +08:00 . update
/*
Nnwdaf_MLModelProvision
Nnwdaf_MLModelProvision API Service. © 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.0.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_Nnwdaf_MLModelProvision
import (
"encoding/json"
)
// checks if the RedundantTransmissionExpReq type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &RedundantTransmissionExpReq{}
// RedundantTransmissionExpReq Represents other redundant transmission experience analytics requirements.
type RedundantTransmissionExpReq struct {
RedTOrderCriter *RedTransExpOrderingCriterion `json:"redTOrderCriter,omitempty"`
Order *MatchingDirection `json:"order,omitempty"`
}
// NewRedundantTransmissionExpReq instantiates a new RedundantTransmissionExpReq 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 NewRedundantTransmissionExpReq() *RedundantTransmissionExpReq {
this := RedundantTransmissionExpReq{}
return &this
}
// NewRedundantTransmissionExpReqWithDefaults instantiates a new RedundantTransmissionExpReq 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 NewRedundantTransmissionExpReqWithDefaults() *RedundantTransmissionExpReq {
this := RedundantTransmissionExpReq{}
return &this
}
// GetRedTOrderCriter returns the RedTOrderCriter field value if set, zero value otherwise.
func (o *RedundantTransmissionExpReq) GetRedTOrderCriter() RedTransExpOrderingCriterion {
if o == nil || IsNil(o.RedTOrderCriter) {
var ret RedTransExpOrderingCriterion
return ret
}
return *o.RedTOrderCriter
}
// GetRedTOrderCriterOk returns a tuple with the RedTOrderCriter field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *RedundantTransmissionExpReq) GetRedTOrderCriterOk() (*RedTransExpOrderingCriterion, bool) {
if o == nil || IsNil(o.RedTOrderCriter) {
return nil, false
}
return o.RedTOrderCriter, true
}
// HasRedTOrderCriter returns a boolean if a field has been set.
func (o *RedundantTransmissionExpReq) HasRedTOrderCriter() bool {
if o != nil && !IsNil(o.RedTOrderCriter) {
return true
}
return false
}
// SetRedTOrderCriter gets a reference to the given RedTransExpOrderingCriterion and assigns it to the RedTOrderCriter field.
func (o *RedundantTransmissionExpReq) SetRedTOrderCriter(v RedTransExpOrderingCriterion) {
o.RedTOrderCriter = &v
}
// GetOrder returns the Order field value if set, zero value otherwise.
func (o *RedundantTransmissionExpReq) GetOrder() MatchingDirection {
if o == nil || IsNil(o.Order) {
var ret MatchingDirection
return ret
}
return *o.Order
}
// GetOrderOk returns a tuple with the Order field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *RedundantTransmissionExpReq) GetOrderOk() (*MatchingDirection, bool) {
if o == nil || IsNil(o.Order) {
return nil, false
}
return o.Order, true
}
// HasOrder returns a boolean if a field has been set.
func (o *RedundantTransmissionExpReq) HasOrder() bool {
if o != nil && !IsNil(o.Order) {
return true
}
return false
}
// SetOrder gets a reference to the given MatchingDirection and assigns it to the Order field.
func (o *RedundantTransmissionExpReq) SetOrder(v MatchingDirection) {
o.Order = &v
}
func (o RedundantTransmissionExpReq) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o RedundantTransmissionExpReq) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.RedTOrderCriter) {
toSerialize["redTOrderCriter"] = o.RedTOrderCriter
}
if !IsNil(o.Order) {
toSerialize["order"] = o.Order
}
return toSerialize, nil
}
type NullableRedundantTransmissionExpReq struct {
value *RedundantTransmissionExpReq
isSet bool
}
func (v NullableRedundantTransmissionExpReq) Get() *RedundantTransmissionExpReq {
return v.value
}
func (v *NullableRedundantTransmissionExpReq) Set(val *RedundantTransmissionExpReq) {
v.value = val
v.isSet = true
}
func (v NullableRedundantTransmissionExpReq) IsSet() bool {
return v.isSet
}
func (v *NullableRedundantTransmissionExpReq) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableRedundantTransmissionExpReq(val *RedundantTransmissionExpReq) *NullableRedundantTransmissionExpReq {
return &NullableRedundantTransmissionExpReq{value: val, isSet: true}
}
func (v NullableRedundantTransmissionExpReq) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableRedundantTransmissionExpReq) 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

搜索帮助