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