代码拉取完成,页面将自动刷新
/*
Npcf_UEPolicyControl
UE Policy Control Service. © 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.2.1
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_Npcf_UEPolicyControl
import (
"encoding/json"
"fmt"
)
// RequestTrigger Possible values are: - LOC_CH: Location change (tracking area). The tracking area of the UE has changed. - PRA_CH: Change of UE presence in PRA. The AMF reports the current presence status of the UE in a Presence Reporting Area, and notifies that the UE enters/leaves the Presence Reporting Area. - UE_POLICY: A MANAGE UE POLICY COMPLETE message or a MANAGE UE POLICY COMMAND REJECT message, as defined in Annex D.5 of 3GPP TS 24.501 or a \"UE POLICY PROVISIONING REQUEST\" message, as defined in clause 7.2.1.1 of 3GPP TS 24.587 , has been received by the AMF and is being forwarded. - PLMN_CH: PLMN change. the serving PLMN of UE has changed. - CON_STATE_CH: Connectivity state change: the connectivity state of UE has changed. - GROUP_ID_LIST_CHG: UE Internal Group Identifier(s) has changed. This policy control request trigger does not require a subscription - UE_CAP_CH: UE Capabilities change: the UE provided 5G ProSe capabilities have changed. This policy control request trigger does not require subscription.
type RequestTrigger struct {
string *string
}
// Unmarshal JSON data into any of the pointers in the struct
func (dst *RequestTrigger) 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(RequestTrigger)")
}
// Marshal data from the first non-nil pointers in the struct to JSON
func (src *RequestTrigger) MarshalJSON() ([]byte, error) {
if src.string != nil {
return json.Marshal(&src.string)
}
return nil, nil // no data in anyOf schemas
}
type NullableRequestTrigger struct {
value *RequestTrigger
isSet bool
}
func (v NullableRequestTrigger) Get() *RequestTrigger {
return v.value
}
func (v *NullableRequestTrigger) Set(val *RequestTrigger) {
v.value = val
v.isSet = true
}
func (v NullableRequestTrigger) IsSet() bool {
return v.isSet
}
func (v *NullableRequestTrigger) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableRequestTrigger(val *RequestTrigger) *NullableRequestTrigger {
return &NullableRequestTrigger{value: val, isSet: true}
}
func (v NullableRequestTrigger) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableRequestTrigger) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。