1 Star 0 Fork 0

MrCoder / openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model_service_experience_info.go 19.47 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 . update
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700
/*
3gpp-analyticsexposure
API for Analytics Exposure. © 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.1.2
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_AnalyticsExposure
import (
"encoding/json"
"fmt"
)
// checks if the ServiceExperienceInfo type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &ServiceExperienceInfo{}
// ServiceExperienceInfo Represents service experience information.
type ServiceExperienceInfo struct {
SvcExprc SvcExperience `json:"svcExprc"`
// string with format 'float' as defined in OpenAPI.
SvcExprcVariance *float32 `json:"svcExprcVariance,omitempty"`
Supis []string `json:"supis,omitempty"`
Snssai *Snssai `json:"snssai,omitempty"`
// String providing an application identifier.
AppId *string `json:"appId,omitempty"`
SrvExpcType *ServiceExperienceType `json:"srvExpcType,omitempty"`
UeLocs []LocationInfo `json:"ueLocs,omitempty"`
UpfInfo *UpfInformation `json:"upfInfo,omitempty"`
// DNAI (Data network access identifier), see clause 5.6.7 of 3GPP TS 23.501.
Dnai *string `json:"dnai,omitempty"`
AppServerInst *AddrFqdn `json:"appServerInst,omitempty"`
// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
Confidence *int32 `json:"confidence,omitempty"`
// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003; it shall contain either a DNN Network Identifier, or a full DNN with both the Network Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots (e.g. \"Label1.Label2.Label3\").
Dnn *string `json:"dnn,omitempty"`
NetworkArea *NetworkAreaInfo `json:"networkArea,omitempty"`
// Contains the Identifier of the selected Network Slice instance
NsiId *string `json:"nsiId,omitempty"`
// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
Ratio *int32 `json:"ratio,omitempty"`
RatFreq *RatFreqInformation `json:"ratFreq,omitempty"`
}
type _ServiceExperienceInfo ServiceExperienceInfo
// NewServiceExperienceInfo instantiates a new ServiceExperienceInfo 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 NewServiceExperienceInfo(svcExprc SvcExperience) *ServiceExperienceInfo {
this := ServiceExperienceInfo{}
this.SvcExprc = svcExprc
return &this
}
// NewServiceExperienceInfoWithDefaults instantiates a new ServiceExperienceInfo 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 NewServiceExperienceInfoWithDefaults() *ServiceExperienceInfo {
this := ServiceExperienceInfo{}
return &this
}
// GetSvcExprc returns the SvcExprc field value
func (o *ServiceExperienceInfo) GetSvcExprc() SvcExperience {
if o == nil {
var ret SvcExperience
return ret
}
return o.SvcExprc
}
// GetSvcExprcOk returns a tuple with the SvcExprc field value
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetSvcExprcOk() (*SvcExperience, bool) {
if o == nil {
return nil, false
}
return &o.SvcExprc, true
}
// SetSvcExprc sets field value
func (o *ServiceExperienceInfo) SetSvcExprc(v SvcExperience) {
o.SvcExprc = v
}
// GetSvcExprcVariance returns the SvcExprcVariance field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetSvcExprcVariance() float32 {
if o == nil || IsNil(o.SvcExprcVariance) {
var ret float32
return ret
}
return *o.SvcExprcVariance
}
// GetSvcExprcVarianceOk returns a tuple with the SvcExprcVariance field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetSvcExprcVarianceOk() (*float32, bool) {
if o == nil || IsNil(o.SvcExprcVariance) {
return nil, false
}
return o.SvcExprcVariance, true
}
// HasSvcExprcVariance returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasSvcExprcVariance() bool {
if o != nil && !IsNil(o.SvcExprcVariance) {
return true
}
return false
}
// SetSvcExprcVariance gets a reference to the given float32 and assigns it to the SvcExprcVariance field.
func (o *ServiceExperienceInfo) SetSvcExprcVariance(v float32) {
o.SvcExprcVariance = &v
}
// GetSupis returns the Supis field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetSupis() []string {
if o == nil || IsNil(o.Supis) {
var ret []string
return ret
}
return o.Supis
}
// GetSupisOk returns a tuple with the Supis field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetSupisOk() ([]string, bool) {
if o == nil || IsNil(o.Supis) {
return nil, false
}
return o.Supis, true
}
// HasSupis returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasSupis() bool {
if o != nil && !IsNil(o.Supis) {
return true
}
return false
}
// SetSupis gets a reference to the given []string and assigns it to the Supis field.
func (o *ServiceExperienceInfo) SetSupis(v []string) {
o.Supis = v
}
// GetSnssai returns the Snssai field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetSnssai() Snssai {
if o == nil || IsNil(o.Snssai) {
var ret Snssai
return ret
}
return *o.Snssai
}
// GetSnssaiOk returns a tuple with the Snssai field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetSnssaiOk() (*Snssai, bool) {
if o == nil || IsNil(o.Snssai) {
return nil, false
}
return o.Snssai, true
}
// HasSnssai returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasSnssai() bool {
if o != nil && !IsNil(o.Snssai) {
return true
}
return false
}
// SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.
func (o *ServiceExperienceInfo) SetSnssai(v Snssai) {
o.Snssai = &v
}
// GetAppId returns the AppId field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetAppId() string {
if o == nil || IsNil(o.AppId) {
var ret string
return ret
}
return *o.AppId
}
// GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetAppIdOk() (*string, bool) {
if o == nil || IsNil(o.AppId) {
return nil, false
}
return o.AppId, true
}
// HasAppId returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasAppId() bool {
if o != nil && !IsNil(o.AppId) {
return true
}
return false
}
// SetAppId gets a reference to the given string and assigns it to the AppId field.
func (o *ServiceExperienceInfo) SetAppId(v string) {
o.AppId = &v
}
// GetSrvExpcType returns the SrvExpcType field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetSrvExpcType() ServiceExperienceType {
if o == nil || IsNil(o.SrvExpcType) {
var ret ServiceExperienceType
return ret
}
return *o.SrvExpcType
}
// GetSrvExpcTypeOk returns a tuple with the SrvExpcType field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetSrvExpcTypeOk() (*ServiceExperienceType, bool) {
if o == nil || IsNil(o.SrvExpcType) {
return nil, false
}
return o.SrvExpcType, true
}
// HasSrvExpcType returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasSrvExpcType() bool {
if o != nil && !IsNil(o.SrvExpcType) {
return true
}
return false
}
// SetSrvExpcType gets a reference to the given ServiceExperienceType and assigns it to the SrvExpcType field.
func (o *ServiceExperienceInfo) SetSrvExpcType(v ServiceExperienceType) {
o.SrvExpcType = &v
}
// GetUeLocs returns the UeLocs field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetUeLocs() []LocationInfo {
if o == nil || IsNil(o.UeLocs) {
var ret []LocationInfo
return ret
}
return o.UeLocs
}
// GetUeLocsOk returns a tuple with the UeLocs field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetUeLocsOk() ([]LocationInfo, bool) {
if o == nil || IsNil(o.UeLocs) {
return nil, false
}
return o.UeLocs, true
}
// HasUeLocs returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasUeLocs() bool {
if o != nil && !IsNil(o.UeLocs) {
return true
}
return false
}
// SetUeLocs gets a reference to the given []LocationInfo and assigns it to the UeLocs field.
func (o *ServiceExperienceInfo) SetUeLocs(v []LocationInfo) {
o.UeLocs = v
}
// GetUpfInfo returns the UpfInfo field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetUpfInfo() UpfInformation {
if o == nil || IsNil(o.UpfInfo) {
var ret UpfInformation
return ret
}
return *o.UpfInfo
}
// GetUpfInfoOk returns a tuple with the UpfInfo field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetUpfInfoOk() (*UpfInformation, bool) {
if o == nil || IsNil(o.UpfInfo) {
return nil, false
}
return o.UpfInfo, true
}
// HasUpfInfo returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasUpfInfo() bool {
if o != nil && !IsNil(o.UpfInfo) {
return true
}
return false
}
// SetUpfInfo gets a reference to the given UpfInformation and assigns it to the UpfInfo field.
func (o *ServiceExperienceInfo) SetUpfInfo(v UpfInformation) {
o.UpfInfo = &v
}
// GetDnai returns the Dnai field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetDnai() string {
if o == nil || IsNil(o.Dnai) {
var ret string
return ret
}
return *o.Dnai
}
// GetDnaiOk returns a tuple with the Dnai field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetDnaiOk() (*string, bool) {
if o == nil || IsNil(o.Dnai) {
return nil, false
}
return o.Dnai, true
}
// HasDnai returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasDnai() bool {
if o != nil && !IsNil(o.Dnai) {
return true
}
return false
}
// SetDnai gets a reference to the given string and assigns it to the Dnai field.
func (o *ServiceExperienceInfo) SetDnai(v string) {
o.Dnai = &v
}
// GetAppServerInst returns the AppServerInst field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetAppServerInst() AddrFqdn {
if o == nil || IsNil(o.AppServerInst) {
var ret AddrFqdn
return ret
}
return *o.AppServerInst
}
// GetAppServerInstOk returns a tuple with the AppServerInst field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetAppServerInstOk() (*AddrFqdn, bool) {
if o == nil || IsNil(o.AppServerInst) {
return nil, false
}
return o.AppServerInst, true
}
// HasAppServerInst returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasAppServerInst() bool {
if o != nil && !IsNil(o.AppServerInst) {
return true
}
return false
}
// SetAppServerInst gets a reference to the given AddrFqdn and assigns it to the AppServerInst field.
func (o *ServiceExperienceInfo) SetAppServerInst(v AddrFqdn) {
o.AppServerInst = &v
}
// GetConfidence returns the Confidence field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetConfidence() int32 {
if o == nil || IsNil(o.Confidence) {
var ret int32
return ret
}
return *o.Confidence
}
// GetConfidenceOk returns a tuple with the Confidence field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetConfidenceOk() (*int32, bool) {
if o == nil || IsNil(o.Confidence) {
return nil, false
}
return o.Confidence, true
}
// HasConfidence returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasConfidence() bool {
if o != nil && !IsNil(o.Confidence) {
return true
}
return false
}
// SetConfidence gets a reference to the given int32 and assigns it to the Confidence field.
func (o *ServiceExperienceInfo) SetConfidence(v int32) {
o.Confidence = &v
}
// GetDnn returns the Dnn field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetDnn() string {
if o == nil || IsNil(o.Dnn) {
var ret string
return ret
}
return *o.Dnn
}
// GetDnnOk returns a tuple with the Dnn field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetDnnOk() (*string, bool) {
if o == nil || IsNil(o.Dnn) {
return nil, false
}
return o.Dnn, true
}
// HasDnn returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasDnn() bool {
if o != nil && !IsNil(o.Dnn) {
return true
}
return false
}
// SetDnn gets a reference to the given string and assigns it to the Dnn field.
func (o *ServiceExperienceInfo) SetDnn(v string) {
o.Dnn = &v
}
// GetNetworkArea returns the NetworkArea field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetNetworkArea() NetworkAreaInfo {
if o == nil || IsNil(o.NetworkArea) {
var ret NetworkAreaInfo
return ret
}
return *o.NetworkArea
}
// GetNetworkAreaOk returns a tuple with the NetworkArea field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetNetworkAreaOk() (*NetworkAreaInfo, bool) {
if o == nil || IsNil(o.NetworkArea) {
return nil, false
}
return o.NetworkArea, true
}
// HasNetworkArea returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasNetworkArea() bool {
if o != nil && !IsNil(o.NetworkArea) {
return true
}
return false
}
// SetNetworkArea gets a reference to the given NetworkAreaInfo and assigns it to the NetworkArea field.
func (o *ServiceExperienceInfo) SetNetworkArea(v NetworkAreaInfo) {
o.NetworkArea = &v
}
// GetNsiId returns the NsiId field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetNsiId() string {
if o == nil || IsNil(o.NsiId) {
var ret string
return ret
}
return *o.NsiId
}
// GetNsiIdOk returns a tuple with the NsiId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetNsiIdOk() (*string, bool) {
if o == nil || IsNil(o.NsiId) {
return nil, false
}
return o.NsiId, true
}
// HasNsiId returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasNsiId() bool {
if o != nil && !IsNil(o.NsiId) {
return true
}
return false
}
// SetNsiId gets a reference to the given string and assigns it to the NsiId field.
func (o *ServiceExperienceInfo) SetNsiId(v string) {
o.NsiId = &v
}
// GetRatio returns the Ratio field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetRatio() int32 {
if o == nil || IsNil(o.Ratio) {
var ret int32
return ret
}
return *o.Ratio
}
// GetRatioOk returns a tuple with the Ratio field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetRatioOk() (*int32, bool) {
if o == nil || IsNil(o.Ratio) {
return nil, false
}
return o.Ratio, true
}
// HasRatio returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasRatio() bool {
if o != nil && !IsNil(o.Ratio) {
return true
}
return false
}
// SetRatio gets a reference to the given int32 and assigns it to the Ratio field.
func (o *ServiceExperienceInfo) SetRatio(v int32) {
o.Ratio = &v
}
// GetRatFreq returns the RatFreq field value if set, zero value otherwise.
func (o *ServiceExperienceInfo) GetRatFreq() RatFreqInformation {
if o == nil || IsNil(o.RatFreq) {
var ret RatFreqInformation
return ret
}
return *o.RatFreq
}
// GetRatFreqOk returns a tuple with the RatFreq field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ServiceExperienceInfo) GetRatFreqOk() (*RatFreqInformation, bool) {
if o == nil || IsNil(o.RatFreq) {
return nil, false
}
return o.RatFreq, true
}
// HasRatFreq returns a boolean if a field has been set.
func (o *ServiceExperienceInfo) HasRatFreq() bool {
if o != nil && !IsNil(o.RatFreq) {
return true
}
return false
}
// SetRatFreq gets a reference to the given RatFreqInformation and assigns it to the RatFreq field.
func (o *ServiceExperienceInfo) SetRatFreq(v RatFreqInformation) {
o.RatFreq = &v
}
func (o ServiceExperienceInfo) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o ServiceExperienceInfo) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
toSerialize["svcExprc"] = o.SvcExprc
if !IsNil(o.SvcExprcVariance) {
toSerialize["svcExprcVariance"] = o.SvcExprcVariance
}
if !IsNil(o.Supis) {
toSerialize["supis"] = o.Supis
}
if !IsNil(o.Snssai) {
toSerialize["snssai"] = o.Snssai
}
if !IsNil(o.AppId) {
toSerialize["appId"] = o.AppId
}
if !IsNil(o.SrvExpcType) {
toSerialize["srvExpcType"] = o.SrvExpcType
}
if !IsNil(o.UeLocs) {
toSerialize["ueLocs"] = o.UeLocs
}
if !IsNil(o.UpfInfo) {
toSerialize["upfInfo"] = o.UpfInfo
}
if !IsNil(o.Dnai) {
toSerialize["dnai"] = o.Dnai
}
if !IsNil(o.AppServerInst) {
toSerialize["appServerInst"] = o.AppServerInst
}
if !IsNil(o.Confidence) {
toSerialize["confidence"] = o.Confidence
}
if !IsNil(o.Dnn) {
toSerialize["dnn"] = o.Dnn
}
if !IsNil(o.NetworkArea) {
toSerialize["networkArea"] = o.NetworkArea
}
if !IsNil(o.NsiId) {
toSerialize["nsiId"] = o.NsiId
}
if !IsNil(o.Ratio) {
toSerialize["ratio"] = o.Ratio
}
if !IsNil(o.RatFreq) {
toSerialize["ratFreq"] = o.RatFreq
}
return toSerialize, nil
}
func (o *ServiceExperienceInfo) 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{
"svcExprc",
}
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)
}
}
varServiceExperienceInfo := _ServiceExperienceInfo{}
err = json.Unmarshal(bytes, &varServiceExperienceInfo)
if err != nil {
return err
}
*o = ServiceExperienceInfo(varServiceExperienceInfo)
return err
}
type NullableServiceExperienceInfo struct {
value *ServiceExperienceInfo
isSet bool
}
func (v NullableServiceExperienceInfo) Get() *ServiceExperienceInfo {
return v.value
}
func (v *NullableServiceExperienceInfo) Set(val *ServiceExperienceInfo) {
v.value = val
v.isSet = true
}
func (v NullableServiceExperienceInfo) IsSet() bool {
return v.isSet
}
func (v *NullableServiceExperienceInfo) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableServiceExperienceInfo(val *ServiceExperienceInfo) *NullableServiceExperienceInfo {
return &NullableServiceExperienceInfo{value: val, isSet: true}
}
func (v NullableServiceExperienceInfo) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableServiceExperienceInfo) 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

搜索帮助