代码拉取完成,页面将自动刷新
/*
Npcf_SMPolicyControl API
Session Management Policy Control Service © 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.2.4
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_Npcf_SMPolicyControl
import (
"encoding/json"
"fmt"
)
// NullValue JSON's null value.
type NullValue string
// List of NullValue
const (
NULLVALUE_NULL NullValue = "null"
)
// All allowed values of NullValue enum
var AllowedNullValueEnumValues = []NullValue{
"null",
}
func (v *NullValue) UnmarshalJSON(src []byte) error {
var value string
err := json.Unmarshal(src, &value)
if err != nil {
return err
}
enumTypeValue := NullValue(value)
for _, existing := range AllowedNullValueEnumValues {
if existing == enumTypeValue {
*v = enumTypeValue
return nil
}
}
return fmt.Errorf("%+v is not a valid NullValue", value)
}
// NewNullValueFromValue returns a pointer to a valid NullValue
// for the value passed as argument, or an error if the value passed is not allowed by the enum
func NewNullValueFromValue(v string) (*NullValue, error) {
ev := NullValue(v)
if ev.IsValid() {
return &ev, nil
} else {
return nil, fmt.Errorf("invalid value '%v' for NullValue: valid values are %v", v, AllowedNullValueEnumValues)
}
}
// IsValid return true if the value is valid for the enum, false otherwise
func (v NullValue) IsValid() bool {
for _, existing := range AllowedNullValueEnumValues {
if existing == v {
return true
}
}
return false
}
// Ptr returns reference to NullValue value
func (v NullValue) Ptr() *NullValue {
return &v
}
type NullableNullValue struct {
value *NullValue
isSet bool
}
func (v NullableNullValue) Get() *NullValue {
return v.value
}
func (v *NullableNullValue) Set(val *NullValue) {
v.value = val
v.isSet = true
}
func (v NullableNullValue) IsSet() bool {
return v.isSet
}
func (v *NullableNullValue) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableNullValue(val *NullValue) *NullableNullValue {
return &NullableNullValue{value: val, isSet: true}
}
func (v NullableNullValue) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableNullValue) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。