1 Star 0 Fork 0

MrCoder / openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model_val_target_ue.go 4.11 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 . update
/*
SS_UserProfileRetrieval
API for SEAL User Profile Retrieval. © 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.1.1
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_SS_UserProfileRetrieval
import (
"encoding/json"
)
// checks if the ValTargetUe type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &ValTargetUe{}
// ValTargetUe Represents information identifying a VAL user ID or a VAL UE ID.
type ValTargetUe struct {
// Unique identifier of a VAL user.
ValUserId *string `json:"valUserId,omitempty"`
// Unique identifier of a VAL UE.
ValUeId *string `json:"valUeId,omitempty"`
}
// NewValTargetUe instantiates a new ValTargetUe object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewValTargetUe() *ValTargetUe {
this := ValTargetUe{}
return &this
}
// NewValTargetUeWithDefaults instantiates a new ValTargetUe object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewValTargetUeWithDefaults() *ValTargetUe {
this := ValTargetUe{}
return &this
}
// GetValUserId returns the ValUserId field value if set, zero value otherwise.
func (o *ValTargetUe) GetValUserId() string {
if o == nil || IsNil(o.ValUserId) {
var ret string
return ret
}
return *o.ValUserId
}
// GetValUserIdOk returns a tuple with the ValUserId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ValTargetUe) GetValUserIdOk() (*string, bool) {
if o == nil || IsNil(o.ValUserId) {
return nil, false
}
return o.ValUserId, true
}
// HasValUserId returns a boolean if a field has been set.
func (o *ValTargetUe) HasValUserId() bool {
if o != nil && !IsNil(o.ValUserId) {
return true
}
return false
}
// SetValUserId gets a reference to the given string and assigns it to the ValUserId field.
func (o *ValTargetUe) SetValUserId(v string) {
o.ValUserId = &v
}
// GetValUeId returns the ValUeId field value if set, zero value otherwise.
func (o *ValTargetUe) GetValUeId() string {
if o == nil || IsNil(o.ValUeId) {
var ret string
return ret
}
return *o.ValUeId
}
// GetValUeIdOk returns a tuple with the ValUeId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ValTargetUe) GetValUeIdOk() (*string, bool) {
if o == nil || IsNil(o.ValUeId) {
return nil, false
}
return o.ValUeId, true
}
// HasValUeId returns a boolean if a field has been set.
func (o *ValTargetUe) HasValUeId() bool {
if o != nil && !IsNil(o.ValUeId) {
return true
}
return false
}
// SetValUeId gets a reference to the given string and assigns it to the ValUeId field.
func (o *ValTargetUe) SetValUeId(v string) {
o.ValUeId = &v
}
func (o ValTargetUe) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o ValTargetUe) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.ValUserId) {
toSerialize["valUserId"] = o.ValUserId
}
if !IsNil(o.ValUeId) {
toSerialize["valUeId"] = o.ValUeId
}
return toSerialize, nil
}
type NullableValTargetUe struct {
value *ValTargetUe
isSet bool
}
func (v NullableValTargetUe) Get() *ValTargetUe {
return v.value
}
func (v *NullableValTargetUe) Set(val *ValTargetUe) {
v.value = val
v.isSet = true
}
func (v NullableValTargetUe) IsSet() bool {
return v.isSet
}
func (v *NullableValTargetUe) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableValTargetUe(val *ValTargetUe) *NullableValTargetUe {
return &NullableValTargetUe{value: val, isSet: true}
}
func (v NullableValTargetUe) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableValTargetUe) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
Go
1
https://gitee.com/konglinglong/openapi.git
git@gitee.com:konglinglong/openapi.git
konglinglong
openapi
openapi
e403a3c726a4

搜索帮助