代码拉取完成,页面将自动刷新
/*
Eecs_ServiceProvisioning
API for ECS Service Provisioning. © 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.0.2
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_Eecs_ServiceProvisioning
import (
"encoding/json"
"fmt"
)
// checks if the ECSServProvReq type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &ECSServProvReq{}
// ECSServProvReq ECS service provisioning request information.
type ECSServProvReq struct {
// Represents a unique identifier of the EEC.
EecId string `json:"eecId"`
// String identifying a Gpsi shall contain either an External Id or an MSISDN. It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid' shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an External Identifier.
UeId *string `json:"ueId,omitempty"`
// Information about services the EEC wants to connect to.
AcProfs []ACProfile `json:"acProfs,omitempty"`
// Indicates if the EEC supports service continuity or not, also indicates which ACR scenarios are supported by the EEC.
EecSvcContSupp []ACRScenario `json:"eecSvcContSupp,omitempty"`
// List of connectivity information for the UE.
ConnInfo []ConnectivityInfo `json:"connInfo,omitempty"`
LocInf *LocationInfo `json:"locInf,omitempty"`
}
type _ECSServProvReq ECSServProvReq
// NewECSServProvReq instantiates a new ECSServProvReq 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 NewECSServProvReq(eecId string) *ECSServProvReq {
this := ECSServProvReq{}
this.EecId = eecId
return &this
}
// NewECSServProvReqWithDefaults instantiates a new ECSServProvReq 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 NewECSServProvReqWithDefaults() *ECSServProvReq {
this := ECSServProvReq{}
return &this
}
// GetEecId returns the EecId field value
func (o *ECSServProvReq) GetEecId() string {
if o == nil {
var ret string
return ret
}
return o.EecId
}
// GetEecIdOk returns a tuple with the EecId field value
// and a boolean to check if the value has been set.
func (o *ECSServProvReq) GetEecIdOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.EecId, true
}
// SetEecId sets field value
func (o *ECSServProvReq) SetEecId(v string) {
o.EecId = v
}
// GetUeId returns the UeId field value if set, zero value otherwise.
func (o *ECSServProvReq) GetUeId() string {
if o == nil || IsNil(o.UeId) {
var ret string
return ret
}
return *o.UeId
}
// GetUeIdOk returns a tuple with the UeId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ECSServProvReq) GetUeIdOk() (*string, bool) {
if o == nil || IsNil(o.UeId) {
return nil, false
}
return o.UeId, true
}
// HasUeId returns a boolean if a field has been set.
func (o *ECSServProvReq) HasUeId() bool {
if o != nil && !IsNil(o.UeId) {
return true
}
return false
}
// SetUeId gets a reference to the given string and assigns it to the UeId field.
func (o *ECSServProvReq) SetUeId(v string) {
o.UeId = &v
}
// GetAcProfs returns the AcProfs field value if set, zero value otherwise.
func (o *ECSServProvReq) GetAcProfs() []ACProfile {
if o == nil || IsNil(o.AcProfs) {
var ret []ACProfile
return ret
}
return o.AcProfs
}
// GetAcProfsOk returns a tuple with the AcProfs field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ECSServProvReq) GetAcProfsOk() ([]ACProfile, bool) {
if o == nil || IsNil(o.AcProfs) {
return nil, false
}
return o.AcProfs, true
}
// HasAcProfs returns a boolean if a field has been set.
func (o *ECSServProvReq) HasAcProfs() bool {
if o != nil && !IsNil(o.AcProfs) {
return true
}
return false
}
// SetAcProfs gets a reference to the given []ACProfile and assigns it to the AcProfs field.
func (o *ECSServProvReq) SetAcProfs(v []ACProfile) {
o.AcProfs = v
}
// GetEecSvcContSupp returns the EecSvcContSupp field value if set, zero value otherwise.
func (o *ECSServProvReq) GetEecSvcContSupp() []ACRScenario {
if o == nil || IsNil(o.EecSvcContSupp) {
var ret []ACRScenario
return ret
}
return o.EecSvcContSupp
}
// GetEecSvcContSuppOk returns a tuple with the EecSvcContSupp field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ECSServProvReq) GetEecSvcContSuppOk() ([]ACRScenario, bool) {
if o == nil || IsNil(o.EecSvcContSupp) {
return nil, false
}
return o.EecSvcContSupp, true
}
// HasEecSvcContSupp returns a boolean if a field has been set.
func (o *ECSServProvReq) HasEecSvcContSupp() bool {
if o != nil && !IsNil(o.EecSvcContSupp) {
return true
}
return false
}
// SetEecSvcContSupp gets a reference to the given []ACRScenario and assigns it to the EecSvcContSupp field.
func (o *ECSServProvReq) SetEecSvcContSupp(v []ACRScenario) {
o.EecSvcContSupp = v
}
// GetConnInfo returns the ConnInfo field value if set, zero value otherwise.
func (o *ECSServProvReq) GetConnInfo() []ConnectivityInfo {
if o == nil || IsNil(o.ConnInfo) {
var ret []ConnectivityInfo
return ret
}
return o.ConnInfo
}
// GetConnInfoOk returns a tuple with the ConnInfo field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ECSServProvReq) GetConnInfoOk() ([]ConnectivityInfo, bool) {
if o == nil || IsNil(o.ConnInfo) {
return nil, false
}
return o.ConnInfo, true
}
// HasConnInfo returns a boolean if a field has been set.
func (o *ECSServProvReq) HasConnInfo() bool {
if o != nil && !IsNil(o.ConnInfo) {
return true
}
return false
}
// SetConnInfo gets a reference to the given []ConnectivityInfo and assigns it to the ConnInfo field.
func (o *ECSServProvReq) SetConnInfo(v []ConnectivityInfo) {
o.ConnInfo = v
}
// GetLocInf returns the LocInf field value if set, zero value otherwise.
func (o *ECSServProvReq) GetLocInf() LocationInfo {
if o == nil || IsNil(o.LocInf) {
var ret LocationInfo
return ret
}
return *o.LocInf
}
// GetLocInfOk returns a tuple with the LocInf field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ECSServProvReq) GetLocInfOk() (*LocationInfo, bool) {
if o == nil || IsNil(o.LocInf) {
return nil, false
}
return o.LocInf, true
}
// HasLocInf returns a boolean if a field has been set.
func (o *ECSServProvReq) HasLocInf() bool {
if o != nil && !IsNil(o.LocInf) {
return true
}
return false
}
// SetLocInf gets a reference to the given LocationInfo and assigns it to the LocInf field.
func (o *ECSServProvReq) SetLocInf(v LocationInfo) {
o.LocInf = &v
}
func (o ECSServProvReq) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o ECSServProvReq) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
toSerialize["eecId"] = o.EecId
if !IsNil(o.UeId) {
toSerialize["ueId"] = o.UeId
}
if !IsNil(o.AcProfs) {
toSerialize["acProfs"] = o.AcProfs
}
if !IsNil(o.EecSvcContSupp) {
toSerialize["eecSvcContSupp"] = o.EecSvcContSupp
}
if !IsNil(o.ConnInfo) {
toSerialize["connInfo"] = o.ConnInfo
}
if !IsNil(o.LocInf) {
toSerialize["locInf"] = o.LocInf
}
return toSerialize, nil
}
func (o *ECSServProvReq) UnmarshalJSON(bytes []byte) (err error) {
// This validates that all required properties are included in the JSON object
// by unmarshalling the object into a generic map with string keys and checking
// that every required field exists as a key in the generic map.
requiredProperties := []string{
"eecId",
}
allProperties := make(map[string]interface{})
err = json.Unmarshal(bytes, &allProperties)
if err != nil {
return err
}
for _, requiredProperty := range requiredProperties {
if _, exists := allProperties[requiredProperty]; !exists {
return fmt.Errorf("no value given for required property %v", requiredProperty)
}
}
varECSServProvReq := _ECSServProvReq{}
err = json.Unmarshal(bytes, &varECSServProvReq)
if err != nil {
return err
}
*o = ECSServProvReq(varECSServProvReq)
return err
}
type NullableECSServProvReq struct {
value *ECSServProvReq
isSet bool
}
func (v NullableECSServProvReq) Get() *ECSServProvReq {
return v.value
}
func (v *NullableECSServProvReq) Set(val *ECSServProvReq) {
v.value = val
v.isSet = true
}
func (v NullableECSServProvReq) IsSet() bool {
return v.isSet
}
func (v *NullableECSServProvReq) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableECSServProvReq(val *ECSServProvReq) *NullableECSServProvReq {
return &NullableECSServProvReq{value: val, isSet: true}
}
func (v NullableECSServProvReq) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableECSServProvReq) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。