1 Star 0 Fork 0

MrCoder/openapi

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
model_mn_s_1.go 2.29 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 +08:00 . update
/*
Provisioning MnS
OAS 3.0.1 definition of the Provisioning MnS © 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 17.6.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_ProvMnS
import (
"encoding/json"
"fmt"
)
// MnS1 - struct for MnS1
type MnS1 struct {
MnSOneOf *MnSOneOf
}
// MnSOneOfAsMnS1 is a convenience function that returns MnSOneOf wrapped in MnS1
func MnSOneOfAsMnS1(v *MnSOneOf) MnS1 {
return MnS1{
MnSOneOf: v,
}
}
// Unmarshal JSON data into one of the pointers in the struct
func (dst *MnS1) UnmarshalJSON(data []byte) error {
var err error
match := 0
// try to unmarshal data into MnSOneOf
err = newStrictDecoder(data).Decode(&dst.MnSOneOf)
if err == nil {
jsonMnSOneOf, _ := json.Marshal(dst.MnSOneOf)
if string(jsonMnSOneOf) == "{}" { // empty struct
dst.MnSOneOf = nil
} else {
match++
}
} else {
dst.MnSOneOf = nil
}
if match > 1 { // more than 1 match
// reset to nil
dst.MnSOneOf = nil
return fmt.Errorf("data matches more than one schema in oneOf(MnS1)")
} else if match == 1 {
return nil // exactly one match
} else { // no match
return fmt.Errorf("data failed to match schemas in oneOf(MnS1)")
}
}
// Marshal data from the first non-nil pointers in the struct to JSON
func (src MnS1) MarshalJSON() ([]byte, error) {
if src.MnSOneOf != nil {
return json.Marshal(&src.MnSOneOf)
}
return nil, nil // no data in oneOf schemas
}
// Get the actual instance
func (obj *MnS1) GetActualInstance() interface{} {
if obj == nil {
return nil
}
if obj.MnSOneOf != nil {
return obj.MnSOneOf
}
// all schemas are nil
return nil
}
type NullableMnS1 struct {
value *MnS1
isSet bool
}
func (v NullableMnS1) Get() *MnS1 {
return v.value
}
func (v *NullableMnS1) Set(val *MnS1) {
v.value = val
v.isSet = true
}
func (v NullableMnS1) IsSet() bool {
return v.isSet
}
func (v *NullableMnS1) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableMnS1(val *MnS1) *NullableMnS1 {
return &NullableMnS1{value: val, isSet: true}
}
func (v NullableMnS1) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableMnS1) 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

搜索帮助