1 Star 0 Fork 0

MrCoder / openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model_instance_type.go 2.22 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 . update
/*
3gpp-time-sync-exposure
API for time synchronization exposure. © 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.0.1
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_TimeSyncExposure
import (
"encoding/json"
"fmt"
)
// InstanceType Possible values are: - BOUNDARY_CLOCK: Indicates Boundary Clock as defined in IEEE Std 1588. - E2E_TRANS_CLOCK: Indicates End-to-End Transparent Clock as defined in IEEE Std 1588. - P2P_TRANS_CLOCK: Indicates Peer-to-Peer Transparent Clock as defined in IEEE Std 1588. - P2P_RELAY_INSTANCE: Indicates PTP Relay instance as defined in IEEE Std 802.1AS.
type InstanceType struct {
string *string
}
// Unmarshal JSON data into any of the pointers in the struct
func (dst *InstanceType) UnmarshalJSON(data []byte) error {
var err error
// try to unmarshal JSON data into string
err = json.Unmarshal(data, &dst.string)
if err == nil {
jsonstring, _ := json.Marshal(dst.string)
if string(jsonstring) == "{}" { // empty struct
dst.string = nil
} else {
return nil // data stored in dst.string, return on the first match
}
} else {
dst.string = nil
}
return fmt.Errorf("data failed to match schemas in anyOf(InstanceType)")
}
// Marshal data from the first non-nil pointers in the struct to JSON
func (src *InstanceType) MarshalJSON() ([]byte, error) {
if src.string != nil {
return json.Marshal(&src.string)
}
return nil, nil // no data in anyOf schemas
}
type NullableInstanceType struct {
value *InstanceType
isSet bool
}
func (v NullableInstanceType) Get() *InstanceType {
return v.value
}
func (v *NullableInstanceType) Set(val *InstanceType) {
v.value = val
v.isSet = true
}
func (v NullableInstanceType) IsSet() bool {
return v.isSet
}
func (v *NullableInstanceType) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableInstanceType(val *InstanceType) *NullableInstanceType {
return &NullableInstanceType{value: val, isSet: true}
}
func (v NullableInstanceType) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableInstanceType) 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

搜索帮助