代码拉取完成,页面将自动刷新
/*
TS 28.532 Streaming data reporting service
OAS 3.0.1 specification for the Streaming data reporting service (Streaming MnS) © 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 17.1.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_StreamingDataMnS
import (
"encoding/json"
"fmt"
)
// IpAddr - struct for IpAddr
type IpAddr struct {
Ipv6Addr *Ipv6Addr
String *string
}
// Ipv6AddrAsIpAddr is a convenience function that returns Ipv6Addr wrapped in IpAddr
func Ipv6AddrAsIpAddr(v *Ipv6Addr) IpAddr {
return IpAddr{
Ipv6Addr: v,
}
}
// stringAsIpAddr is a convenience function that returns string wrapped in IpAddr
func StringAsIpAddr(v *string) IpAddr {
return IpAddr{
String: v,
}
}
// Unmarshal JSON data into one of the pointers in the struct
func (dst *IpAddr) UnmarshalJSON(data []byte) error {
var err error
match := 0
// try to unmarshal data into Ipv6Addr
err = newStrictDecoder(data).Decode(&dst.Ipv6Addr)
if err == nil {
jsonIpv6Addr, _ := json.Marshal(dst.Ipv6Addr)
if string(jsonIpv6Addr) == "{}" { // empty struct
dst.Ipv6Addr = nil
} else {
match++
}
} else {
dst.Ipv6Addr = nil
}
// try to unmarshal data into String
err = newStrictDecoder(data).Decode(&dst.String)
if err == nil {
jsonString, _ := json.Marshal(dst.String)
if string(jsonString) == "{}" { // empty struct
dst.String = nil
} else {
match++
}
} else {
dst.String = nil
}
if match > 1 { // more than 1 match
// reset to nil
dst.Ipv6Addr = nil
dst.String = nil
return fmt.Errorf("data matches more than one schema in oneOf(IpAddr)")
} else if match == 1 {
return nil // exactly one match
} else { // no match
return fmt.Errorf("data failed to match schemas in oneOf(IpAddr)")
}
}
// Marshal data from the first non-nil pointers in the struct to JSON
func (src IpAddr) MarshalJSON() ([]byte, error) {
if src.Ipv6Addr != nil {
return json.Marshal(&src.Ipv6Addr)
}
if src.String != nil {
return json.Marshal(&src.String)
}
return nil, nil // no data in oneOf schemas
}
// Get the actual instance
func (obj *IpAddr) GetActualInstance() interface{} {
if obj == nil {
return nil
}
if obj.Ipv6Addr != nil {
return obj.Ipv6Addr
}
if obj.String != nil {
return obj.String
}
// all schemas are nil
return nil
}
type NullableIpAddr struct {
value *IpAddr
isSet bool
}
func (v NullableIpAddr) Get() *IpAddr {
return v.value
}
func (v *NullableIpAddr) Set(val *IpAddr) {
v.value = val
v.isSet = true
}
func (v NullableIpAddr) IsSet() bool {
return v.isSet
}
func (v *NullableIpAddr) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableIpAddr(val *IpAddr) *NullableIpAddr {
return &NullableIpAddr{value: val, isSet: true}
}
func (v NullableIpAddr) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableIpAddr) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。