openapi_Nadrf_DataManagement

package
v1.18.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 9, 2023 License: Apache-2.0 Imports: 21 Imported by: 0

README ¶

Go API client for openapi_Nadrf_DataManagement

ADRF Data Management Service.
© 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1.1.0-alpha.1
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import openapi_Nadrf_DataManagement "github.com/GIT_USER_ID/GIT_REPO_ID/openapi_Nadrf_DataManagement"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), openapi_Nadrf_DataManagement.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), openapi_Nadrf_DataManagement.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), openapi_Nadrf_DataManagement.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), openapi_Nadrf_DataManagement.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://example.com/nadrf-datamanagement/v1

Class Method HTTP request Description
ADRFDataRetrievalSubscriptionsCollectionApi CreateADRFDataRetrievalSubscription Post /data-retrieval-subscriptions Creates a new Individual ADRF Data Retrieval Subscription resource.
ADRFDataStoreRecordsCollectionApi CreateADRFDataStoreRecord Post /data-store-records Creates a new Individual Data Store Record resource.
ADRFDataStoreRecordsCollectionApi GetAdrfDataStoreRecords Get /data-store-records Retrieves existing Individual ADRF Data Store Records.
ADRFStorageSubscriptionsApi CreateADRFStorageSubscription Post /request-storage-sub Triggers the creation of a new ADRF Storage Subscription.
ADRFStorageSubscriptionsApi DeleteADRFStorageSubscription Post /request-storage-sub-removal Triggers the removal of ADRF storage subscription.
ADRFStoredDataApi DeleteADRFData Post /remove-stored-data-analytics Remove ADRF data based on data or analytics specification.
IndividualADRFDataRetrievalSubscriptionDocumentApi DeleteADRFDataRetrievalSubscription Delete /data-retrieval-subscriptions/{subscriptionId} Delete an existing Individual ADRF Data Retrieval Subscription resource.
IndividualADRFDataStoreRecordDocumentApi DeleteADRFDataStoreRecord Delete /data-store-records/{storeTransId} Delete an existing Individual ADRF Data Store Record.

Documentation For Models

Documentation For Authorization

oAuth2ClientCredentials
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • nadrf-datamanagement: Access to the nadrf-datamanagement API

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "ACCESSTOKENSTRING")
r, err := client.Service.Operation(auth, args)

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, sw.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation ¶

Index ¶

Constants ¶

This section is empty.

Variables ¶

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedAccessTypeEnumValues = []AccessType{
	"3GPP_ACCESS",
	"NON_3GPP_ACCESS",
}

All allowed values of AccessType enum

Functions ¶

func CacheExpires ¶

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil ¶

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool ¶

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32 ¶

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64 ¶

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt ¶

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32 ¶

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64 ¶

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString ¶

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime ¶

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types ¶

type ADRFDataRetrievalSubscriptionsCollectionApiService ¶

type ADRFDataRetrievalSubscriptionsCollectionApiService service

ADRFDataRetrievalSubscriptionsCollectionApiService ADRFDataRetrievalSubscriptionsCollectionApi service

func (*ADRFDataRetrievalSubscriptionsCollectionApiService) CreateADRFDataRetrievalSubscription ¶

CreateADRFDataRetrievalSubscription Creates a new Individual ADRF Data Retrieval Subscription resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateADRFDataRetrievalSubscriptionRequest

func (*ADRFDataRetrievalSubscriptionsCollectionApiService) CreateADRFDataRetrievalSubscriptionExecute ¶

Execute executes the request

@return NadrfDataRetrievalSubscription

type ADRFDataStoreRecordsCollectionApiService ¶

type ADRFDataStoreRecordsCollectionApiService service

ADRFDataStoreRecordsCollectionApiService ADRFDataStoreRecordsCollectionApi service

func (*ADRFDataStoreRecordsCollectionApiService) CreateADRFDataStoreRecord ¶

CreateADRFDataStoreRecord Creates a new Individual Data Store Record resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateADRFDataStoreRecordRequest

func (*ADRFDataStoreRecordsCollectionApiService) CreateADRFDataStoreRecordExecute ¶

Execute executes the request

@return NadrfDataStoreRecord

func (*ADRFDataStoreRecordsCollectionApiService) GetAdrfDataStoreRecords ¶

GetAdrfDataStoreRecords Retrieves existing Individual ADRF Data Store Records.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetAdrfDataStoreRecordsRequest

func (*ADRFDataStoreRecordsCollectionApiService) GetAdrfDataStoreRecordsExecute ¶

Execute executes the request

@return NadrfDataStoreRecord

type ADRFStorageSubscriptionsApiService ¶

type ADRFStorageSubscriptionsApiService service

ADRFStorageSubscriptionsApiService ADRFStorageSubscriptionsApi service

func (*ADRFStorageSubscriptionsApiService) CreateADRFStorageSubscription ¶

CreateADRFStorageSubscription Triggers the creation of a new ADRF Storage Subscription.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateADRFStorageSubscriptionRequest

func (*ADRFStorageSubscriptionsApiService) CreateADRFStorageSubscriptionExecute ¶

Execute executes the request

@return NadrfDataStoreSubscriptionRef

func (*ADRFStorageSubscriptionsApiService) DeleteADRFStorageSubscription ¶

DeleteADRFStorageSubscription Triggers the removal of ADRF storage subscription.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteADRFStorageSubscriptionRequest

func (*ADRFStorageSubscriptionsApiService) DeleteADRFStorageSubscriptionExecute ¶

func (a *ADRFStorageSubscriptionsApiService) DeleteADRFStorageSubscriptionExecute(r ApiDeleteADRFStorageSubscriptionRequest) (*http.Response, error)

Execute executes the request

type ADRFStoredDataApiService ¶

type ADRFStoredDataApiService service

ADRFStoredDataApiService ADRFStoredDataApi service

func (*ADRFStoredDataApiService) DeleteADRFData ¶

DeleteADRFData Remove ADRF data based on data or analytics specification.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteADRFDataRequest

func (*ADRFStoredDataApiService) DeleteADRFDataExecute ¶

func (a *ADRFStoredDataApiService) DeleteADRFDataExecute(r ApiDeleteADRFDataRequest) (*http.Response, error)

Execute executes the request

type APIClient ¶

type APIClient struct {
	ADRFDataRetrievalSubscriptionsCollectionApi *ADRFDataRetrievalSubscriptionsCollectionApiService

	ADRFDataStoreRecordsCollectionApi *ADRFDataStoreRecordsCollectionApiService

	ADRFStorageSubscriptionsApi *ADRFStorageSubscriptionsApiService

	ADRFStoredDataApi *ADRFStoredDataApiService

	IndividualADRFDataRetrievalSubscriptionDocumentApi *IndividualADRFDataRetrievalSubscriptionDocumentApiService

	IndividualADRFDataStoreRecordDocumentApi *IndividualADRFDataStoreRecordDocumentApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Nadrf_DataManagement API v1.1.0-alpha.1 In most cases there should be only one, shared, APIClient.

func NewAPIClient ¶

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig ¶

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey ¶

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse ¶

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse ¶

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError ¶

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type AanfInfo ¶

type AanfInfo struct {
	RoutingIndicators []string `json:"routingIndicators,omitempty"`
}

AanfInfo Represents the information relative to an AAnF NF Instance.

func NewAanfInfo ¶

func NewAanfInfo() *AanfInfo

NewAanfInfo instantiates a new AanfInfo 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 NewAanfInfoWithDefaults ¶

func NewAanfInfoWithDefaults() *AanfInfo

NewAanfInfoWithDefaults instantiates a new AanfInfo 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 (*AanfInfo) GetRoutingIndicators ¶

func (o *AanfInfo) GetRoutingIndicators() []string

GetRoutingIndicators returns the RoutingIndicators field value if set, zero value otherwise.

func (*AanfInfo) GetRoutingIndicatorsOk ¶

func (o *AanfInfo) GetRoutingIndicatorsOk() ([]string, bool)

GetRoutingIndicatorsOk returns a tuple with the RoutingIndicators field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AanfInfo) HasRoutingIndicators ¶

func (o *AanfInfo) HasRoutingIndicators() bool

HasRoutingIndicators returns a boolean if a field has been set.

func (AanfInfo) MarshalJSON ¶

func (o AanfInfo) MarshalJSON() ([]byte, error)

func (*AanfInfo) SetRoutingIndicators ¶

func (o *AanfInfo) SetRoutingIndicators(v []string)

SetRoutingIndicators gets a reference to the given []string and assigns it to the RoutingIndicators field.

func (AanfInfo) ToMap ¶

func (o AanfInfo) ToMap() (map[string]interface{}, error)

type AbnormalBehaviour ¶

type AbnormalBehaviour struct {
	Supis []string  `json:"supis,omitempty"`
	Excep Exception `json:"excep"`
	// 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"`
	Snssai *Snssai `json:"snssai,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	Ratio *int32 `json:"ratio,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Confidence   *int32                 `json:"confidence,omitempty"`
	AddtMeasInfo *AdditionalMeasurement `json:"addtMeasInfo,omitempty"`
}

AbnormalBehaviour Represents the abnormal behaviour information.

func NewAbnormalBehaviour ¶

func NewAbnormalBehaviour(excep Exception) *AbnormalBehaviour

NewAbnormalBehaviour instantiates a new AbnormalBehaviour 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 NewAbnormalBehaviourWithDefaults ¶

func NewAbnormalBehaviourWithDefaults() *AbnormalBehaviour

NewAbnormalBehaviourWithDefaults instantiates a new AbnormalBehaviour 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 (*AbnormalBehaviour) GetAddtMeasInfo ¶

func (o *AbnormalBehaviour) GetAddtMeasInfo() AdditionalMeasurement

GetAddtMeasInfo returns the AddtMeasInfo field value if set, zero value otherwise.

func (*AbnormalBehaviour) GetAddtMeasInfoOk ¶

func (o *AbnormalBehaviour) GetAddtMeasInfoOk() (*AdditionalMeasurement, bool)

GetAddtMeasInfoOk returns a tuple with the AddtMeasInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AbnormalBehaviour) GetConfidence ¶

func (o *AbnormalBehaviour) GetConfidence() int32

GetConfidence returns the Confidence field value if set, zero value otherwise.

func (*AbnormalBehaviour) GetConfidenceOk ¶

func (o *AbnormalBehaviour) GetConfidenceOk() (*int32, bool)

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 (*AbnormalBehaviour) GetDnn ¶

func (o *AbnormalBehaviour) GetDnn() string

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*AbnormalBehaviour) GetDnnOk ¶

func (o *AbnormalBehaviour) GetDnnOk() (*string, bool)

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 (*AbnormalBehaviour) GetExcep ¶

func (o *AbnormalBehaviour) GetExcep() Exception

GetExcep returns the Excep field value

func (*AbnormalBehaviour) GetExcepOk ¶

func (o *AbnormalBehaviour) GetExcepOk() (*Exception, bool)

GetExcepOk returns a tuple with the Excep field value and a boolean to check if the value has been set.

func (*AbnormalBehaviour) GetRatio ¶

func (o *AbnormalBehaviour) GetRatio() int32

GetRatio returns the Ratio field value if set, zero value otherwise.

func (*AbnormalBehaviour) GetRatioOk ¶

func (o *AbnormalBehaviour) GetRatioOk() (*int32, bool)

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 (*AbnormalBehaviour) GetSnssai ¶

func (o *AbnormalBehaviour) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*AbnormalBehaviour) GetSnssaiOk ¶

func (o *AbnormalBehaviour) GetSnssaiOk() (*Snssai, bool)

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 (*AbnormalBehaviour) GetSupis ¶

func (o *AbnormalBehaviour) GetSupis() []string

GetSupis returns the Supis field value if set, zero value otherwise.

func (*AbnormalBehaviour) GetSupisOk ¶

func (o *AbnormalBehaviour) GetSupisOk() ([]string, bool)

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 (*AbnormalBehaviour) HasAddtMeasInfo ¶

func (o *AbnormalBehaviour) HasAddtMeasInfo() bool

HasAddtMeasInfo returns a boolean if a field has been set.

func (*AbnormalBehaviour) HasConfidence ¶

func (o *AbnormalBehaviour) HasConfidence() bool

HasConfidence returns a boolean if a field has been set.

func (*AbnormalBehaviour) HasDnn ¶

func (o *AbnormalBehaviour) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*AbnormalBehaviour) HasRatio ¶

func (o *AbnormalBehaviour) HasRatio() bool

HasRatio returns a boolean if a field has been set.

func (*AbnormalBehaviour) HasSnssai ¶

func (o *AbnormalBehaviour) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*AbnormalBehaviour) HasSupis ¶

func (o *AbnormalBehaviour) HasSupis() bool

HasSupis returns a boolean if a field has been set.

func (AbnormalBehaviour) MarshalJSON ¶

func (o AbnormalBehaviour) MarshalJSON() ([]byte, error)

func (*AbnormalBehaviour) SetAddtMeasInfo ¶

func (o *AbnormalBehaviour) SetAddtMeasInfo(v AdditionalMeasurement)

SetAddtMeasInfo gets a reference to the given AdditionalMeasurement and assigns it to the AddtMeasInfo field.

func (*AbnormalBehaviour) SetConfidence ¶

func (o *AbnormalBehaviour) SetConfidence(v int32)

SetConfidence gets a reference to the given int32 and assigns it to the Confidence field.

func (*AbnormalBehaviour) SetDnn ¶

func (o *AbnormalBehaviour) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*AbnormalBehaviour) SetExcep ¶

func (o *AbnormalBehaviour) SetExcep(v Exception)

SetExcep sets field value

func (*AbnormalBehaviour) SetRatio ¶

func (o *AbnormalBehaviour) SetRatio(v int32)

SetRatio gets a reference to the given int32 and assigns it to the Ratio field.

func (*AbnormalBehaviour) SetSnssai ¶

func (o *AbnormalBehaviour) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (*AbnormalBehaviour) SetSupis ¶

func (o *AbnormalBehaviour) SetSupis(v []string)

SetSupis gets a reference to the given []string and assigns it to the Supis field.

func (AbnormalBehaviour) ToMap ¶

func (o AbnormalBehaviour) ToMap() (map[string]interface{}, error)

type AccessStateTransitionType ¶

type AccessStateTransitionType struct {
	String *string
}

AccessStateTransitionType Access State Transition Type.

func (*AccessStateTransitionType) MarshalJSON ¶

func (src *AccessStateTransitionType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*AccessStateTransitionType) UnmarshalJSON ¶

func (dst *AccessStateTransitionType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type AccessTokenErr ¶

type AccessTokenErr struct {
	Error            string  `json:"error"`
	ErrorDescription *string `json:"error_description,omitempty"`
	ErrorUri         *string `json:"error_uri,omitempty"`
}

AccessTokenErr Error returned in the access token response message

func NewAccessTokenErr ¶

func NewAccessTokenErr(error_ string) *AccessTokenErr

NewAccessTokenErr instantiates a new AccessTokenErr 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 NewAccessTokenErrWithDefaults ¶

func NewAccessTokenErrWithDefaults() *AccessTokenErr

NewAccessTokenErrWithDefaults instantiates a new AccessTokenErr 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 (*AccessTokenErr) GetError ¶

func (o *AccessTokenErr) GetError() string

GetError returns the Error field value

func (*AccessTokenErr) GetErrorDescription ¶

func (o *AccessTokenErr) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*AccessTokenErr) GetErrorDescriptionOk ¶

func (o *AccessTokenErr) GetErrorDescriptionOk() (*string, bool)

GetErrorDescriptionOk returns a tuple with the ErrorDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenErr) GetErrorOk ¶

func (o *AccessTokenErr) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value and a boolean to check if the value has been set.

func (*AccessTokenErr) GetErrorUri ¶

func (o *AccessTokenErr) GetErrorUri() string

GetErrorUri returns the ErrorUri field value if set, zero value otherwise.

func (*AccessTokenErr) GetErrorUriOk ¶

func (o *AccessTokenErr) GetErrorUriOk() (*string, bool)

GetErrorUriOk returns a tuple with the ErrorUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenErr) HasErrorDescription ¶

func (o *AccessTokenErr) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*AccessTokenErr) HasErrorUri ¶

func (o *AccessTokenErr) HasErrorUri() bool

HasErrorUri returns a boolean if a field has been set.

func (AccessTokenErr) MarshalJSON ¶

func (o AccessTokenErr) MarshalJSON() ([]byte, error)

func (*AccessTokenErr) SetError ¶

func (o *AccessTokenErr) SetError(v string)

SetError sets field value

func (*AccessTokenErr) SetErrorDescription ¶

func (o *AccessTokenErr) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (*AccessTokenErr) SetErrorUri ¶

func (o *AccessTokenErr) SetErrorUri(v string)

SetErrorUri gets a reference to the given string and assigns it to the ErrorUri field.

func (AccessTokenErr) ToMap ¶

func (o AccessTokenErr) ToMap() (map[string]interface{}, error)

type AccessTokenReq ¶

type AccessTokenReq struct {
	GrantType string `json:"grant_type"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	NfInstanceId string  `json:"nfInstanceId"`
	NfType       *NFType `json:"nfType,omitempty"`
	TargetNfType *NFType `json:"targetNfType,omitempty"`
	Scope        string  `json:"scope"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	TargetNfInstanceId  *string  `json:"targetNfInstanceId,omitempty"`
	RequesterPlmn       *PlmnId  `json:"requesterPlmn,omitempty"`
	RequesterPlmnList   []PlmnId `json:"requesterPlmnList,omitempty"`
	RequesterSnssaiList []Snssai `json:"requesterSnssaiList,omitempty"`
	// Fully Qualified Domain Name
	RequesterFqdn     *string     `json:"requesterFqdn,omitempty"`
	RequesterSnpnList []PlmnIdNid `json:"requesterSnpnList,omitempty"`
	TargetPlmn        *PlmnId     `json:"targetPlmn,omitempty"`
	TargetSnpn        *PlmnIdNid  `json:"targetSnpn,omitempty"`
	TargetSnssaiList  []Snssai    `json:"targetSnssaiList,omitempty"`
	TargetNsiList     []string    `json:"targetNsiList,omitempty"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	TargetNfSetId *string `json:"targetNfSetId,omitempty"`
	// NF Service Set Identifier (see clause 28.12 of 3GPP TS 23.003) formatted as the following  string \"set<Set ID>.sn<Service Name>.nfi<NF Instance ID>.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.sn<ServiceName>.nfi<NFInstanceID>.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)   <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NID> encoded as defined in clause 5.4.2 (\"Nid\" data type definition)  <NFInstanceId> encoded as defined in clause 5.3.2  <ServiceName> encoded as defined in 3GPP TS 29.510  <Set ID> encoded as a string of characters consisting of alphabetic    characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that shall end    with either an alphabetic character or a digit.
	TargetNfServiceSetId *string `json:"targetNfServiceSetId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	HnrfAccessTokenUri *string `json:"hnrfAccessTokenUri,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	SourceNfInstanceId *string `json:"sourceNfInstanceId,omitempty"`
}

AccessTokenReq Contains information related to the access token request

func NewAccessTokenReq ¶

func NewAccessTokenReq(grantType string, nfInstanceId string, scope string) *AccessTokenReq

NewAccessTokenReq instantiates a new AccessTokenReq 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 NewAccessTokenReqWithDefaults ¶

func NewAccessTokenReqWithDefaults() *AccessTokenReq

NewAccessTokenReqWithDefaults instantiates a new AccessTokenReq 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 (*AccessTokenReq) GetGrantType ¶

func (o *AccessTokenReq) GetGrantType() string

GetGrantType returns the GrantType field value

func (*AccessTokenReq) GetGrantTypeOk ¶

func (o *AccessTokenReq) GetGrantTypeOk() (*string, bool)

GetGrantTypeOk returns a tuple with the GrantType field value and a boolean to check if the value has been set.

func (*AccessTokenReq) GetHnrfAccessTokenUri ¶

func (o *AccessTokenReq) GetHnrfAccessTokenUri() string

GetHnrfAccessTokenUri returns the HnrfAccessTokenUri field value if set, zero value otherwise.

func (*AccessTokenReq) GetHnrfAccessTokenUriOk ¶

func (o *AccessTokenReq) GetHnrfAccessTokenUriOk() (*string, bool)

GetHnrfAccessTokenUriOk returns a tuple with the HnrfAccessTokenUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetNfInstanceId ¶

func (o *AccessTokenReq) GetNfInstanceId() string

GetNfInstanceId returns the NfInstanceId field value

func (*AccessTokenReq) GetNfInstanceIdOk ¶

func (o *AccessTokenReq) GetNfInstanceIdOk() (*string, bool)

GetNfInstanceIdOk returns a tuple with the NfInstanceId field value and a boolean to check if the value has been set.

func (*AccessTokenReq) GetNfType ¶

func (o *AccessTokenReq) GetNfType() NFType

GetNfType returns the NfType field value if set, zero value otherwise.

func (*AccessTokenReq) GetNfTypeOk ¶

func (o *AccessTokenReq) GetNfTypeOk() (*NFType, bool)

GetNfTypeOk returns a tuple with the NfType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetRequesterFqdn ¶

func (o *AccessTokenReq) GetRequesterFqdn() string

GetRequesterFqdn returns the RequesterFqdn field value if set, zero value otherwise.

func (*AccessTokenReq) GetRequesterFqdnOk ¶

func (o *AccessTokenReq) GetRequesterFqdnOk() (*string, bool)

GetRequesterFqdnOk returns a tuple with the RequesterFqdn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetRequesterPlmn ¶

func (o *AccessTokenReq) GetRequesterPlmn() PlmnId

GetRequesterPlmn returns the RequesterPlmn field value if set, zero value otherwise.

func (*AccessTokenReq) GetRequesterPlmnList ¶

func (o *AccessTokenReq) GetRequesterPlmnList() []PlmnId

GetRequesterPlmnList returns the RequesterPlmnList field value if set, zero value otherwise.

func (*AccessTokenReq) GetRequesterPlmnListOk ¶

func (o *AccessTokenReq) GetRequesterPlmnListOk() ([]PlmnId, bool)

GetRequesterPlmnListOk returns a tuple with the RequesterPlmnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetRequesterPlmnOk ¶

func (o *AccessTokenReq) GetRequesterPlmnOk() (*PlmnId, bool)

GetRequesterPlmnOk returns a tuple with the RequesterPlmn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetRequesterSnpnList ¶

func (o *AccessTokenReq) GetRequesterSnpnList() []PlmnIdNid

GetRequesterSnpnList returns the RequesterSnpnList field value if set, zero value otherwise.

func (*AccessTokenReq) GetRequesterSnpnListOk ¶

func (o *AccessTokenReq) GetRequesterSnpnListOk() ([]PlmnIdNid, bool)

GetRequesterSnpnListOk returns a tuple with the RequesterSnpnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetRequesterSnssaiList ¶

func (o *AccessTokenReq) GetRequesterSnssaiList() []Snssai

GetRequesterSnssaiList returns the RequesterSnssaiList field value if set, zero value otherwise.

func (*AccessTokenReq) GetRequesterSnssaiListOk ¶

func (o *AccessTokenReq) GetRequesterSnssaiListOk() ([]Snssai, bool)

GetRequesterSnssaiListOk returns a tuple with the RequesterSnssaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetScope ¶

func (o *AccessTokenReq) GetScope() string

GetScope returns the Scope field value

func (*AccessTokenReq) GetScopeOk ¶

func (o *AccessTokenReq) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value and a boolean to check if the value has been set.

func (*AccessTokenReq) GetSourceNfInstanceId ¶

func (o *AccessTokenReq) GetSourceNfInstanceId() string

GetSourceNfInstanceId returns the SourceNfInstanceId field value if set, zero value otherwise.

func (*AccessTokenReq) GetSourceNfInstanceIdOk ¶

func (o *AccessTokenReq) GetSourceNfInstanceIdOk() (*string, bool)

GetSourceNfInstanceIdOk returns a tuple with the SourceNfInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetTargetNfInstanceId ¶

func (o *AccessTokenReq) GetTargetNfInstanceId() string

GetTargetNfInstanceId returns the TargetNfInstanceId field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNfInstanceIdOk ¶

func (o *AccessTokenReq) GetTargetNfInstanceIdOk() (*string, bool)

GetTargetNfInstanceIdOk returns a tuple with the TargetNfInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetTargetNfServiceSetId ¶

func (o *AccessTokenReq) GetTargetNfServiceSetId() string

GetTargetNfServiceSetId returns the TargetNfServiceSetId field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNfServiceSetIdOk ¶

func (o *AccessTokenReq) GetTargetNfServiceSetIdOk() (*string, bool)

GetTargetNfServiceSetIdOk returns a tuple with the TargetNfServiceSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetTargetNfSetId ¶

func (o *AccessTokenReq) GetTargetNfSetId() string

GetTargetNfSetId returns the TargetNfSetId field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNfSetIdOk ¶

func (o *AccessTokenReq) GetTargetNfSetIdOk() (*string, bool)

GetTargetNfSetIdOk returns a tuple with the TargetNfSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetTargetNfType ¶

func (o *AccessTokenReq) GetTargetNfType() NFType

GetTargetNfType returns the TargetNfType field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNfTypeOk ¶

func (o *AccessTokenReq) GetTargetNfTypeOk() (*NFType, bool)

GetTargetNfTypeOk returns a tuple with the TargetNfType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetTargetNsiList ¶

func (o *AccessTokenReq) GetTargetNsiList() []string

GetTargetNsiList returns the TargetNsiList field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNsiListOk ¶

func (o *AccessTokenReq) GetTargetNsiListOk() ([]string, bool)

GetTargetNsiListOk returns a tuple with the TargetNsiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetTargetPlmn ¶

func (o *AccessTokenReq) GetTargetPlmn() PlmnId

GetTargetPlmn returns the TargetPlmn field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetPlmnOk ¶

func (o *AccessTokenReq) GetTargetPlmnOk() (*PlmnId, bool)

GetTargetPlmnOk returns a tuple with the TargetPlmn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetTargetSnpn ¶

func (o *AccessTokenReq) GetTargetSnpn() PlmnIdNid

GetTargetSnpn returns the TargetSnpn field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetSnpnOk ¶

func (o *AccessTokenReq) GetTargetSnpnOk() (*PlmnIdNid, bool)

GetTargetSnpnOk returns a tuple with the TargetSnpn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) GetTargetSnssaiList ¶

func (o *AccessTokenReq) GetTargetSnssaiList() []Snssai

GetTargetSnssaiList returns the TargetSnssaiList field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetSnssaiListOk ¶

func (o *AccessTokenReq) GetTargetSnssaiListOk() ([]Snssai, bool)

GetTargetSnssaiListOk returns a tuple with the TargetSnssaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AccessTokenReq) HasHnrfAccessTokenUri ¶

func (o *AccessTokenReq) HasHnrfAccessTokenUri() bool

HasHnrfAccessTokenUri returns a boolean if a field has been set.

func (*AccessTokenReq) HasNfType ¶

func (o *AccessTokenReq) HasNfType() bool

HasNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterFqdn ¶

func (o *AccessTokenReq) HasRequesterFqdn() bool

HasRequesterFqdn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmn ¶

func (o *AccessTokenReq) HasRequesterPlmn() bool

HasRequesterPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmnList ¶

func (o *AccessTokenReq) HasRequesterPlmnList() bool

HasRequesterPlmnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnpnList ¶

func (o *AccessTokenReq) HasRequesterSnpnList() bool

HasRequesterSnpnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnssaiList ¶

func (o *AccessTokenReq) HasRequesterSnssaiList() bool

HasRequesterSnssaiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasSourceNfInstanceId ¶

func (o *AccessTokenReq) HasSourceNfInstanceId() bool

HasSourceNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfInstanceId ¶

func (o *AccessTokenReq) HasTargetNfInstanceId() bool

HasTargetNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfServiceSetId ¶

func (o *AccessTokenReq) HasTargetNfServiceSetId() bool

HasTargetNfServiceSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfSetId ¶

func (o *AccessTokenReq) HasTargetNfSetId() bool

HasTargetNfSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfType ¶

func (o *AccessTokenReq) HasTargetNfType() bool

HasTargetNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNsiList ¶

func (o *AccessTokenReq) HasTargetNsiList() bool

HasTargetNsiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetPlmn ¶

func (o *AccessTokenReq) HasTargetPlmn() bool

HasTargetPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnpn ¶

func (o *AccessTokenReq) HasTargetSnpn() bool

HasTargetSnpn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnssaiList ¶

func (o *AccessTokenReq) HasTargetSnssaiList() bool

HasTargetSnssaiList returns a boolean if a field has been set.

func (AccessTokenReq) MarshalJSON ¶

func (o AccessTokenReq) MarshalJSON() ([]byte, error)

func (*AccessTokenReq) SetGrantType ¶

func (o *AccessTokenReq) SetGrantType(v string)

SetGrantType sets field value

func (*AccessTokenReq) SetHnrfAccessTokenUri ¶

func (o *AccessTokenReq) SetHnrfAccessTokenUri(v string)

SetHnrfAccessTokenUri gets a reference to the given string and assigns it to the HnrfAccessTokenUri field.

func (*AccessTokenReq) SetNfInstanceId ¶

func (o *AccessTokenReq) SetNfInstanceId(v string)

SetNfInstanceId sets field value

func (*AccessTokenReq) SetNfType ¶

func (o *AccessTokenReq) SetNfType(v NFType)

SetNfType gets a reference to the given NFType and assigns it to the NfType field.

func (*AccessTokenReq) SetRequesterFqdn ¶

func (o *AccessTokenReq) SetRequesterFqdn(v string)

SetRequesterFqdn gets a reference to the given string and assigns it to the RequesterFqdn field.

func (*AccessTokenReq) SetRequesterPlmn ¶

func (o *AccessTokenReq) SetRequesterPlmn(v PlmnId)

SetRequesterPlmn gets a reference to the given PlmnId and assigns it to the RequesterPlmn field.

func (*AccessTokenReq) SetRequesterPlmnList ¶

func (o *AccessTokenReq) SetRequesterPlmnList(v []PlmnId)

SetRequesterPlmnList gets a reference to the given []PlmnId and assigns it to the RequesterPlmnList field.

func (*AccessTokenReq) SetRequesterSnpnList ¶

func (o *AccessTokenReq) SetRequesterSnpnList(v []PlmnIdNid)

SetRequesterSnpnList gets a reference to the given []PlmnIdNid and assigns it to the RequesterSnpnList field.

func (*AccessTokenReq) SetRequesterSnssaiList ¶

func (o *AccessTokenReq) SetRequesterSnssaiList(v []Snssai)

SetRequesterSnssaiList gets a reference to the given []Snssai and assigns it to the RequesterSnssaiList field.

func (*AccessTokenReq) SetScope ¶

func (o *AccessTokenReq) SetScope(v string)

SetScope sets field value

func (*AccessTokenReq) SetSourceNfInstanceId ¶

func (o *AccessTokenReq) SetSourceNfInstanceId(v string)

SetSourceNfInstanceId gets a reference to the given string and assigns it to the SourceNfInstanceId field.

func (*AccessTokenReq) SetTargetNfInstanceId ¶

func (o *AccessTokenReq) SetTargetNfInstanceId(v string)

SetTargetNfInstanceId gets a reference to the given string and assigns it to the TargetNfInstanceId field.

func (*AccessTokenReq) SetTargetNfServiceSetId ¶

func (o *AccessTokenReq) SetTargetNfServiceSetId(v string)

SetTargetNfServiceSetId gets a reference to the given string and assigns it to the TargetNfServiceSetId field.

func (*AccessTokenReq) SetTargetNfSetId ¶

func (o *AccessTokenReq) SetTargetNfSetId(v string)

SetTargetNfSetId gets a reference to the given string and assigns it to the TargetNfSetId field.

func (*AccessTokenReq) SetTargetNfType ¶

func (o *AccessTokenReq) SetTargetNfType(v NFType)

SetTargetNfType gets a reference to the given NFType and assigns it to the TargetNfType field.

func (*AccessTokenReq) SetTargetNsiList ¶

func (o *AccessTokenReq) SetTargetNsiList(v []string)

SetTargetNsiList gets a reference to the given []string and assigns it to the TargetNsiList field.

func (*AccessTokenReq) SetTargetPlmn ¶

func (o *AccessTokenReq) SetTargetPlmn(v PlmnId)

SetTargetPlmn gets a reference to the given PlmnId and assigns it to the TargetPlmn field.

func (*AccessTokenReq) SetTargetSnpn ¶

func (o *AccessTokenReq) SetTargetSnpn(v PlmnIdNid)

SetTargetSnpn gets a reference to the given PlmnIdNid and assigns it to the TargetSnpn field.

func (*AccessTokenReq) SetTargetSnssaiList ¶

func (o *AccessTokenReq) SetTargetSnssaiList(v []Snssai)

SetTargetSnssaiList gets a reference to the given []Snssai and assigns it to the TargetSnssaiList field.

func (AccessTokenReq) ToMap ¶

func (o AccessTokenReq) ToMap() (map[string]interface{}, error)

type AccessType ¶

type AccessType string

AccessType Indicates whether the access is via 3GPP or via non-3GPP.

const (
	NON_3_GPP_ACCESS AccessType = "NON_3GPP_ACCESS"
)

List of AccessType

func NewAccessTypeFromValue ¶

func NewAccessTypeFromValue(v string) (*AccessType, error)

NewAccessTypeFromValue returns a pointer to a valid AccessType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (AccessType) IsValid ¶

func (v AccessType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (AccessType) Ptr ¶

func (v AccessType) Ptr() *AccessType

Ptr returns reference to AccessType value

func (*AccessType) UnmarshalJSON ¶

func (v *AccessType) UnmarshalJSON(src []byte) error

type Accuracy ¶

type Accuracy struct {
	String *string
}

Accuracy Possible values are: - LOW: Low accuracy. - HIGH: High accuracy.

func (*Accuracy) MarshalJSON ¶

func (src *Accuracy) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Accuracy) UnmarshalJSON ¶

func (dst *Accuracy) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type AdditionalMeasurement ¶

type AdditionalMeasurement struct {
	UnexpLoc      *NetworkAreaInfo          `json:"unexpLoc,omitempty"`
	UnexpFlowTeps []IpEthFlowDescription    `json:"unexpFlowTeps,omitempty"`
	UnexpWakes    []time.Time               `json:"unexpWakes,omitempty"`
	DdosAttack    *AddressList              `json:"ddosAttack,omitempty"`
	WrgDest       *AddressList              `json:"wrgDest,omitempty"`
	Circums       []CircumstanceDescription `json:"circums,omitempty"`
}

AdditionalMeasurement Represents additional measurement information.

func NewAdditionalMeasurement ¶

func NewAdditionalMeasurement() *AdditionalMeasurement

NewAdditionalMeasurement instantiates a new AdditionalMeasurement 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 NewAdditionalMeasurementWithDefaults ¶

func NewAdditionalMeasurementWithDefaults() *AdditionalMeasurement

NewAdditionalMeasurementWithDefaults instantiates a new AdditionalMeasurement 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 (*AdditionalMeasurement) GetCircums ¶

GetCircums returns the Circums field value if set, zero value otherwise.

func (*AdditionalMeasurement) GetCircumsOk ¶

func (o *AdditionalMeasurement) GetCircumsOk() ([]CircumstanceDescription, bool)

GetCircumsOk returns a tuple with the Circums field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AdditionalMeasurement) GetDdosAttack ¶

func (o *AdditionalMeasurement) GetDdosAttack() AddressList

GetDdosAttack returns the DdosAttack field value if set, zero value otherwise.

func (*AdditionalMeasurement) GetDdosAttackOk ¶

func (o *AdditionalMeasurement) GetDdosAttackOk() (*AddressList, bool)

GetDdosAttackOk returns a tuple with the DdosAttack field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AdditionalMeasurement) GetUnexpFlowTeps ¶

func (o *AdditionalMeasurement) GetUnexpFlowTeps() []IpEthFlowDescription

GetUnexpFlowTeps returns the UnexpFlowTeps field value if set, zero value otherwise.

func (*AdditionalMeasurement) GetUnexpFlowTepsOk ¶

func (o *AdditionalMeasurement) GetUnexpFlowTepsOk() ([]IpEthFlowDescription, bool)

GetUnexpFlowTepsOk returns a tuple with the UnexpFlowTeps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AdditionalMeasurement) GetUnexpLoc ¶

func (o *AdditionalMeasurement) GetUnexpLoc() NetworkAreaInfo

GetUnexpLoc returns the UnexpLoc field value if set, zero value otherwise.

func (*AdditionalMeasurement) GetUnexpLocOk ¶

func (o *AdditionalMeasurement) GetUnexpLocOk() (*NetworkAreaInfo, bool)

GetUnexpLocOk returns a tuple with the UnexpLoc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AdditionalMeasurement) GetUnexpWakes ¶

func (o *AdditionalMeasurement) GetUnexpWakes() []time.Time

GetUnexpWakes returns the UnexpWakes field value if set, zero value otherwise.

func (*AdditionalMeasurement) GetUnexpWakesOk ¶

func (o *AdditionalMeasurement) GetUnexpWakesOk() ([]time.Time, bool)

GetUnexpWakesOk returns a tuple with the UnexpWakes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AdditionalMeasurement) GetWrgDest ¶

func (o *AdditionalMeasurement) GetWrgDest() AddressList

GetWrgDest returns the WrgDest field value if set, zero value otherwise.

func (*AdditionalMeasurement) GetWrgDestOk ¶

func (o *AdditionalMeasurement) GetWrgDestOk() (*AddressList, bool)

GetWrgDestOk returns a tuple with the WrgDest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AdditionalMeasurement) HasCircums ¶

func (o *AdditionalMeasurement) HasCircums() bool

HasCircums returns a boolean if a field has been set.

func (*AdditionalMeasurement) HasDdosAttack ¶

func (o *AdditionalMeasurement) HasDdosAttack() bool

HasDdosAttack returns a boolean if a field has been set.

func (*AdditionalMeasurement) HasUnexpFlowTeps ¶

func (o *AdditionalMeasurement) HasUnexpFlowTeps() bool

HasUnexpFlowTeps returns a boolean if a field has been set.

func (*AdditionalMeasurement) HasUnexpLoc ¶

func (o *AdditionalMeasurement) HasUnexpLoc() bool

HasUnexpLoc returns a boolean if a field has been set.

func (*AdditionalMeasurement) HasUnexpWakes ¶

func (o *AdditionalMeasurement) HasUnexpWakes() bool

HasUnexpWakes returns a boolean if a field has been set.

func (*AdditionalMeasurement) HasWrgDest ¶

func (o *AdditionalMeasurement) HasWrgDest() bool

HasWrgDest returns a boolean if a field has been set.

func (AdditionalMeasurement) MarshalJSON ¶

func (o AdditionalMeasurement) MarshalJSON() ([]byte, error)

func (*AdditionalMeasurement) SetCircums ¶

SetCircums gets a reference to the given []CircumstanceDescription and assigns it to the Circums field.

func (*AdditionalMeasurement) SetDdosAttack ¶

func (o *AdditionalMeasurement) SetDdosAttack(v AddressList)

SetDdosAttack gets a reference to the given AddressList and assigns it to the DdosAttack field.

func (*AdditionalMeasurement) SetUnexpFlowTeps ¶

func (o *AdditionalMeasurement) SetUnexpFlowTeps(v []IpEthFlowDescription)

SetUnexpFlowTeps gets a reference to the given []IpEthFlowDescription and assigns it to the UnexpFlowTeps field.

func (*AdditionalMeasurement) SetUnexpLoc ¶

func (o *AdditionalMeasurement) SetUnexpLoc(v NetworkAreaInfo)

SetUnexpLoc gets a reference to the given NetworkAreaInfo and assigns it to the UnexpLoc field.

func (*AdditionalMeasurement) SetUnexpWakes ¶

func (o *AdditionalMeasurement) SetUnexpWakes(v []time.Time)

SetUnexpWakes gets a reference to the given []time.Time and assigns it to the UnexpWakes field.

func (*AdditionalMeasurement) SetWrgDest ¶

func (o *AdditionalMeasurement) SetWrgDest(v AddressList)

SetWrgDest gets a reference to the given AddressList and assigns it to the WrgDest field.

func (AdditionalMeasurement) ToMap ¶

func (o AdditionalMeasurement) ToMap() (map[string]interface{}, error)

type AddrFqdn ¶

type AddrFqdn struct {
	IpAddr *IpAddr `json:"ipAddr,omitempty"`
	// Indicates an FQDN.
	Fqdn *string `json:"fqdn,omitempty"`
}

AddrFqdn IP address and/or FQDN.

func NewAddrFqdn ¶

func NewAddrFqdn() *AddrFqdn

NewAddrFqdn instantiates a new AddrFqdn 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 NewAddrFqdnWithDefaults ¶

func NewAddrFqdnWithDefaults() *AddrFqdn

NewAddrFqdnWithDefaults instantiates a new AddrFqdn 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 (*AddrFqdn) GetFqdn ¶

func (o *AddrFqdn) GetFqdn() string

GetFqdn returns the Fqdn field value if set, zero value otherwise.

func (*AddrFqdn) GetFqdnOk ¶

func (o *AddrFqdn) GetFqdnOk() (*string, bool)

GetFqdnOk returns a tuple with the Fqdn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddrFqdn) GetIpAddr ¶

func (o *AddrFqdn) GetIpAddr() IpAddr

GetIpAddr returns the IpAddr field value if set, zero value otherwise.

func (*AddrFqdn) GetIpAddrOk ¶

func (o *AddrFqdn) GetIpAddrOk() (*IpAddr, bool)

GetIpAddrOk returns a tuple with the IpAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddrFqdn) HasFqdn ¶

func (o *AddrFqdn) HasFqdn() bool

HasFqdn returns a boolean if a field has been set.

func (*AddrFqdn) HasIpAddr ¶

func (o *AddrFqdn) HasIpAddr() bool

HasIpAddr returns a boolean if a field has been set.

func (AddrFqdn) MarshalJSON ¶

func (o AddrFqdn) MarshalJSON() ([]byte, error)

func (*AddrFqdn) SetFqdn ¶

func (o *AddrFqdn) SetFqdn(v string)

SetFqdn gets a reference to the given string and assigns it to the Fqdn field.

func (*AddrFqdn) SetIpAddr ¶

func (o *AddrFqdn) SetIpAddr(v IpAddr)

SetIpAddr gets a reference to the given IpAddr and assigns it to the IpAddr field.

func (AddrFqdn) ToMap ¶

func (o AddrFqdn) ToMap() (map[string]interface{}, error)

type AddressList ¶

type AddressList struct {
	Ipv4Addrs []string   `json:"ipv4Addrs,omitempty"`
	Ipv6Addrs []Ipv6Addr `json:"ipv6Addrs,omitempty"`
}

AddressList Represents a list of IPv4 and/or IPv6 addresses.

func NewAddressList ¶

func NewAddressList() *AddressList

NewAddressList instantiates a new AddressList 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 NewAddressListWithDefaults ¶

func NewAddressListWithDefaults() *AddressList

NewAddressListWithDefaults instantiates a new AddressList 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 (*AddressList) GetIpv4Addrs ¶

func (o *AddressList) GetIpv4Addrs() []string

GetIpv4Addrs returns the Ipv4Addrs field value if set, zero value otherwise.

func (*AddressList) GetIpv4AddrsOk ¶

func (o *AddressList) GetIpv4AddrsOk() ([]string, bool)

GetIpv4AddrsOk returns a tuple with the Ipv4Addrs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddressList) GetIpv6Addrs ¶

func (o *AddressList) GetIpv6Addrs() []Ipv6Addr

GetIpv6Addrs returns the Ipv6Addrs field value if set, zero value otherwise.

func (*AddressList) GetIpv6AddrsOk ¶

func (o *AddressList) GetIpv6AddrsOk() ([]Ipv6Addr, bool)

GetIpv6AddrsOk returns a tuple with the Ipv6Addrs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddressList) HasIpv4Addrs ¶

func (o *AddressList) HasIpv4Addrs() bool

HasIpv4Addrs returns a boolean if a field has been set.

func (*AddressList) HasIpv6Addrs ¶

func (o *AddressList) HasIpv6Addrs() bool

HasIpv6Addrs returns a boolean if a field has been set.

func (AddressList) MarshalJSON ¶

func (o AddressList) MarshalJSON() ([]byte, error)

func (*AddressList) SetIpv4Addrs ¶

func (o *AddressList) SetIpv4Addrs(v []string)

SetIpv4Addrs gets a reference to the given []string and assigns it to the Ipv4Addrs field.

func (*AddressList) SetIpv6Addrs ¶

func (o *AddressList) SetIpv6Addrs(v []Ipv6Addr)

SetIpv6Addrs gets a reference to the given []Ipv6Addr and assigns it to the Ipv6Addrs field.

func (AddressList) ToMap ¶

func (o AddressList) ToMap() (map[string]interface{}, error)

type AfEvent ¶

type AfEvent struct {
	String *string
}

AfEvent Represents Application Events.

func (*AfEvent) MarshalJSON ¶

func (src *AfEvent) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*AfEvent) UnmarshalJSON ¶

func (dst *AfEvent) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type AfEventExposureData ¶

type AfEventExposureData struct {
	AfEvents []AfEvent `json:"afEvents"`
	AfIds    []string  `json:"afIds,omitempty"`
	AppIds   []string  `json:"appIds,omitempty"`
}

AfEventExposureData AF Event Exposure data managed by a given NEF Instance

func NewAfEventExposureData ¶

func NewAfEventExposureData(afEvents []AfEvent) *AfEventExposureData

NewAfEventExposureData instantiates a new AfEventExposureData 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 NewAfEventExposureDataWithDefaults ¶

func NewAfEventExposureDataWithDefaults() *AfEventExposureData

NewAfEventExposureDataWithDefaults instantiates a new AfEventExposureData 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 (*AfEventExposureData) GetAfEvents ¶

func (o *AfEventExposureData) GetAfEvents() []AfEvent

GetAfEvents returns the AfEvents field value

func (*AfEventExposureData) GetAfEventsOk ¶

func (o *AfEventExposureData) GetAfEventsOk() ([]AfEvent, bool)

GetAfEventsOk returns a tuple with the AfEvents field value and a boolean to check if the value has been set.

func (*AfEventExposureData) GetAfIds ¶

func (o *AfEventExposureData) GetAfIds() []string

GetAfIds returns the AfIds field value if set, zero value otherwise.

func (*AfEventExposureData) GetAfIdsOk ¶

func (o *AfEventExposureData) GetAfIdsOk() ([]string, bool)

GetAfIdsOk returns a tuple with the AfIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventExposureData) GetAppIds ¶

func (o *AfEventExposureData) GetAppIds() []string

GetAppIds returns the AppIds field value if set, zero value otherwise.

func (*AfEventExposureData) GetAppIdsOk ¶

func (o *AfEventExposureData) GetAppIdsOk() ([]string, bool)

GetAppIdsOk returns a tuple with the AppIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventExposureData) HasAfIds ¶

func (o *AfEventExposureData) HasAfIds() bool

HasAfIds returns a boolean if a field has been set.

func (*AfEventExposureData) HasAppIds ¶

func (o *AfEventExposureData) HasAppIds() bool

HasAppIds returns a boolean if a field has been set.

func (AfEventExposureData) MarshalJSON ¶

func (o AfEventExposureData) MarshalJSON() ([]byte, error)

func (*AfEventExposureData) SetAfEvents ¶

func (o *AfEventExposureData) SetAfEvents(v []AfEvent)

SetAfEvents sets field value

func (*AfEventExposureData) SetAfIds ¶

func (o *AfEventExposureData) SetAfIds(v []string)

SetAfIds gets a reference to the given []string and assigns it to the AfIds field.

func (*AfEventExposureData) SetAppIds ¶

func (o *AfEventExposureData) SetAppIds(v []string)

SetAppIds gets a reference to the given []string and assigns it to the AppIds field.

func (AfEventExposureData) ToMap ¶

func (o AfEventExposureData) ToMap() (map[string]interface{}, error)

type AfEventExposureNotif ¶

type AfEventExposureNotif struct {
	NotifId     string                `json:"notifId"`
	EventNotifs []AfEventNotification `json:"eventNotifs"`
}

AfEventExposureNotif Represents notifications on application event(s) that occurred for an Individual Application Event Subscription resource.

func NewAfEventExposureNotif ¶

func NewAfEventExposureNotif(notifId string, eventNotifs []AfEventNotification) *AfEventExposureNotif

NewAfEventExposureNotif instantiates a new AfEventExposureNotif 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 NewAfEventExposureNotifWithDefaults ¶

func NewAfEventExposureNotifWithDefaults() *AfEventExposureNotif

NewAfEventExposureNotifWithDefaults instantiates a new AfEventExposureNotif 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 (*AfEventExposureNotif) GetEventNotifs ¶

func (o *AfEventExposureNotif) GetEventNotifs() []AfEventNotification

GetEventNotifs returns the EventNotifs field value

func (*AfEventExposureNotif) GetEventNotifsOk ¶

func (o *AfEventExposureNotif) GetEventNotifsOk() ([]AfEventNotification, bool)

GetEventNotifsOk returns a tuple with the EventNotifs field value and a boolean to check if the value has been set.

func (*AfEventExposureNotif) GetNotifId ¶

func (o *AfEventExposureNotif) GetNotifId() string

GetNotifId returns the NotifId field value

func (*AfEventExposureNotif) GetNotifIdOk ¶

func (o *AfEventExposureNotif) GetNotifIdOk() (*string, bool)

GetNotifIdOk returns a tuple with the NotifId field value and a boolean to check if the value has been set.

func (AfEventExposureNotif) MarshalJSON ¶

func (o AfEventExposureNotif) MarshalJSON() ([]byte, error)

func (*AfEventExposureNotif) SetEventNotifs ¶

func (o *AfEventExposureNotif) SetEventNotifs(v []AfEventNotification)

SetEventNotifs sets field value

func (*AfEventExposureNotif) SetNotifId ¶

func (o *AfEventExposureNotif) SetNotifId(v string)

SetNotifId sets field value

func (AfEventExposureNotif) ToMap ¶

func (o AfEventExposureNotif) ToMap() (map[string]interface{}, error)

type AfEventExposureSubsc ¶

type AfEventExposureSubsc struct {
	DataAccProfId *string              `json:"dataAccProfId,omitempty"`
	EventsSubs    []EventsSubs         `json:"eventsSubs"`
	EventsRepInfo ReportingInformation `json:"eventsRepInfo"`
	// String providing an URI formatted according to RFC 3986.
	NotifUri    string                `json:"notifUri"`
	NotifId     string                `json:"notifId"`
	EventNotifs []AfEventNotification `json:"eventNotifs,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SuppFeat *string `json:"suppFeat,omitempty"`
}

AfEventExposureSubsc Represents an Individual Application Event Subscription resource.

func NewAfEventExposureSubsc ¶

func NewAfEventExposureSubsc(eventsSubs []EventsSubs, eventsRepInfo ReportingInformation, notifUri string, notifId string) *AfEventExposureSubsc

NewAfEventExposureSubsc instantiates a new AfEventExposureSubsc 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 NewAfEventExposureSubscWithDefaults ¶

func NewAfEventExposureSubscWithDefaults() *AfEventExposureSubsc

NewAfEventExposureSubscWithDefaults instantiates a new AfEventExposureSubsc 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 (*AfEventExposureSubsc) GetDataAccProfId ¶

func (o *AfEventExposureSubsc) GetDataAccProfId() string

GetDataAccProfId returns the DataAccProfId field value if set, zero value otherwise.

func (*AfEventExposureSubsc) GetDataAccProfIdOk ¶

func (o *AfEventExposureSubsc) GetDataAccProfIdOk() (*string, bool)

GetDataAccProfIdOk returns a tuple with the DataAccProfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventExposureSubsc) GetEventNotifs ¶

func (o *AfEventExposureSubsc) GetEventNotifs() []AfEventNotification

GetEventNotifs returns the EventNotifs field value if set, zero value otherwise.

func (*AfEventExposureSubsc) GetEventNotifsOk ¶

func (o *AfEventExposureSubsc) GetEventNotifsOk() ([]AfEventNotification, bool)

GetEventNotifsOk returns a tuple with the EventNotifs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventExposureSubsc) GetEventsRepInfo ¶

func (o *AfEventExposureSubsc) GetEventsRepInfo() ReportingInformation

GetEventsRepInfo returns the EventsRepInfo field value

func (*AfEventExposureSubsc) GetEventsRepInfoOk ¶

func (o *AfEventExposureSubsc) GetEventsRepInfoOk() (*ReportingInformation, bool)

GetEventsRepInfoOk returns a tuple with the EventsRepInfo field value and a boolean to check if the value has been set.

func (*AfEventExposureSubsc) GetEventsSubs ¶

func (o *AfEventExposureSubsc) GetEventsSubs() []EventsSubs

GetEventsSubs returns the EventsSubs field value

func (*AfEventExposureSubsc) GetEventsSubsOk ¶

func (o *AfEventExposureSubsc) GetEventsSubsOk() ([]EventsSubs, bool)

GetEventsSubsOk returns a tuple with the EventsSubs field value and a boolean to check if the value has been set.

func (*AfEventExposureSubsc) GetNotifId ¶

func (o *AfEventExposureSubsc) GetNotifId() string

GetNotifId returns the NotifId field value

func (*AfEventExposureSubsc) GetNotifIdOk ¶

func (o *AfEventExposureSubsc) GetNotifIdOk() (*string, bool)

GetNotifIdOk returns a tuple with the NotifId field value and a boolean to check if the value has been set.

func (*AfEventExposureSubsc) GetNotifUri ¶

func (o *AfEventExposureSubsc) GetNotifUri() string

GetNotifUri returns the NotifUri field value

func (*AfEventExposureSubsc) GetNotifUriOk ¶

func (o *AfEventExposureSubsc) GetNotifUriOk() (*string, bool)

GetNotifUriOk returns a tuple with the NotifUri field value and a boolean to check if the value has been set.

func (*AfEventExposureSubsc) GetSuppFeat ¶

func (o *AfEventExposureSubsc) GetSuppFeat() string

GetSuppFeat returns the SuppFeat field value if set, zero value otherwise.

func (*AfEventExposureSubsc) GetSuppFeatOk ¶

func (o *AfEventExposureSubsc) GetSuppFeatOk() (*string, bool)

GetSuppFeatOk returns a tuple with the SuppFeat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventExposureSubsc) HasDataAccProfId ¶

func (o *AfEventExposureSubsc) HasDataAccProfId() bool

HasDataAccProfId returns a boolean if a field has been set.

func (*AfEventExposureSubsc) HasEventNotifs ¶

func (o *AfEventExposureSubsc) HasEventNotifs() bool

HasEventNotifs returns a boolean if a field has been set.

func (*AfEventExposureSubsc) HasSuppFeat ¶

func (o *AfEventExposureSubsc) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (AfEventExposureSubsc) MarshalJSON ¶

func (o AfEventExposureSubsc) MarshalJSON() ([]byte, error)

func (*AfEventExposureSubsc) SetDataAccProfId ¶

func (o *AfEventExposureSubsc) SetDataAccProfId(v string)

SetDataAccProfId gets a reference to the given string and assigns it to the DataAccProfId field.

func (*AfEventExposureSubsc) SetEventNotifs ¶

func (o *AfEventExposureSubsc) SetEventNotifs(v []AfEventNotification)

SetEventNotifs gets a reference to the given []AfEventNotification and assigns it to the EventNotifs field.

func (*AfEventExposureSubsc) SetEventsRepInfo ¶

func (o *AfEventExposureSubsc) SetEventsRepInfo(v ReportingInformation)

SetEventsRepInfo sets field value

func (*AfEventExposureSubsc) SetEventsSubs ¶

func (o *AfEventExposureSubsc) SetEventsSubs(v []EventsSubs)

SetEventsSubs sets field value

func (*AfEventExposureSubsc) SetNotifId ¶

func (o *AfEventExposureSubsc) SetNotifId(v string)

SetNotifId sets field value

func (*AfEventExposureSubsc) SetNotifUri ¶

func (o *AfEventExposureSubsc) SetNotifUri(v string)

SetNotifUri sets field value

func (*AfEventExposureSubsc) SetSuppFeat ¶

func (o *AfEventExposureSubsc) SetSuppFeat(v string)

SetSuppFeat gets a reference to the given string and assigns it to the SuppFeat field.

func (AfEventExposureSubsc) ToMap ¶

func (o AfEventExposureSubsc) ToMap() (map[string]interface{}, error)

type AfEventNotification ¶

type AfEventNotification struct {
	Event AfEvent `json:"event"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp        time.Time                         `json:"timeStamp"`
	SvcExprcInfos    []ServiceExperienceInfoPerApp     `json:"svcExprcInfos,omitempty"`
	UeMobilityInfos  []UeMobilityCollection            `json:"ueMobilityInfos,omitempty"`
	UeCommInfos      []UeCommunicationCollection       `json:"ueCommInfos,omitempty"`
	ExcepInfos       []ExceptionInfo                   `json:"excepInfos,omitempty"`
	CongestionInfos  []UserDataCongestionCollection    `json:"congestionInfos,omitempty"`
	PerfDataInfos    []PerformanceDataCollection       `json:"perfDataInfos,omitempty"`
	DispersionInfos  []DispersionCollection1           `json:"dispersionInfos,omitempty"`
	CollBhvrInfs     []CollectiveBehaviourInfo         `json:"collBhvrInfs,omitempty"`
	MsQoeMetrInfos   []MsQoeMetricsCollection          `json:"msQoeMetrInfos,omitempty"`
	MsConsumpInfos   []MsConsumptionCollection         `json:"msConsumpInfos,omitempty"`
	MsNetAssInvInfos []MsNetAssInvocationCollection    `json:"msNetAssInvInfos,omitempty"`
	MsDynPlyInvInfos []MsDynPolicyInvocationCollection `json:"msDynPlyInvInfos,omitempty"`
	MsAccActInfos    []MSAccessActivityCollection      `json:"msAccActInfos,omitempty"`
}

AfEventNotification Represents information related to an event to be reported.

func NewAfEventNotification ¶

func NewAfEventNotification(event AfEvent, timeStamp time.Time) *AfEventNotification

NewAfEventNotification instantiates a new AfEventNotification 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 NewAfEventNotificationWithDefaults ¶

func NewAfEventNotificationWithDefaults() *AfEventNotification

NewAfEventNotificationWithDefaults instantiates a new AfEventNotification 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 (*AfEventNotification) GetCollBhvrInfs ¶

func (o *AfEventNotification) GetCollBhvrInfs() []CollectiveBehaviourInfo

GetCollBhvrInfs returns the CollBhvrInfs field value if set, zero value otherwise.

func (*AfEventNotification) GetCollBhvrInfsOk ¶

func (o *AfEventNotification) GetCollBhvrInfsOk() ([]CollectiveBehaviourInfo, bool)

GetCollBhvrInfsOk returns a tuple with the CollBhvrInfs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventNotification) GetCongestionInfos ¶

func (o *AfEventNotification) GetCongestionInfos() []UserDataCongestionCollection

GetCongestionInfos returns the CongestionInfos field value if set, zero value otherwise.

func (*AfEventNotification) GetCongestionInfosOk ¶

func (o *AfEventNotification) GetCongestionInfosOk() ([]UserDataCongestionCollection, bool)

GetCongestionInfosOk returns a tuple with the CongestionInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventNotification) GetDispersionInfos ¶

func (o *AfEventNotification) GetDispersionInfos() []DispersionCollection1

GetDispersionInfos returns the DispersionInfos field value if set, zero value otherwise.

func (*AfEventNotification) GetDispersionInfosOk ¶

func (o *AfEventNotification) GetDispersionInfosOk() ([]DispersionCollection1, bool)

GetDispersionInfosOk returns a tuple with the DispersionInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventNotification) GetEvent ¶

func (o *AfEventNotification) GetEvent() AfEvent

GetEvent returns the Event field value

func (*AfEventNotification) GetEventOk ¶

func (o *AfEventNotification) GetEventOk() (*AfEvent, bool)

GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.

func (*AfEventNotification) GetExcepInfos ¶

func (o *AfEventNotification) GetExcepInfos() []ExceptionInfo

GetExcepInfos returns the ExcepInfos field value if set, zero value otherwise.

func (*AfEventNotification) GetExcepInfosOk ¶

func (o *AfEventNotification) GetExcepInfosOk() ([]ExceptionInfo, bool)

GetExcepInfosOk returns a tuple with the ExcepInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventNotification) GetMsAccActInfos ¶

func (o *AfEventNotification) GetMsAccActInfos() []MSAccessActivityCollection

GetMsAccActInfos returns the MsAccActInfos field value if set, zero value otherwise.

func (*AfEventNotification) GetMsAccActInfosOk ¶

func (o *AfEventNotification) GetMsAccActInfosOk() ([]MSAccessActivityCollection, bool)

GetMsAccActInfosOk returns a tuple with the MsAccActInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventNotification) GetMsConsumpInfos ¶

func (o *AfEventNotification) GetMsConsumpInfos() []MsConsumptionCollection

GetMsConsumpInfos returns the MsConsumpInfos field value if set, zero value otherwise.

func (*AfEventNotification) GetMsConsumpInfosOk ¶

func (o *AfEventNotification) GetMsConsumpInfosOk() ([]MsConsumptionCollection, bool)

GetMsConsumpInfosOk returns a tuple with the MsConsumpInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventNotification) GetMsDynPlyInvInfos ¶

func (o *AfEventNotification) GetMsDynPlyInvInfos() []MsDynPolicyInvocationCollection

GetMsDynPlyInvInfos returns the MsDynPlyInvInfos field value if set, zero value otherwise.

func (*AfEventNotification) GetMsDynPlyInvInfosOk ¶

func (o *AfEventNotification) GetMsDynPlyInvInfosOk() ([]MsDynPolicyInvocationCollection, bool)

GetMsDynPlyInvInfosOk returns a tuple with the MsDynPlyInvInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventNotification) GetMsNetAssInvInfos ¶

func (o *AfEventNotification) GetMsNetAssInvInfos() []MsNetAssInvocationCollection

GetMsNetAssInvInfos returns the MsNetAssInvInfos field value if set, zero value otherwise.

func (*AfEventNotification) GetMsNetAssInvInfosOk ¶

func (o *AfEventNotification) GetMsNetAssInvInfosOk() ([]MsNetAssInvocationCollection, bool)

GetMsNetAssInvInfosOk returns a tuple with the MsNetAssInvInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventNotification) GetMsQoeMetrInfos ¶

func (o *AfEventNotification) GetMsQoeMetrInfos() []MsQoeMetricsCollection

GetMsQoeMetrInfos returns the MsQoeMetrInfos field value if set, zero value otherwise.

func (*AfEventNotification) GetMsQoeMetrInfosOk ¶

func (o *AfEventNotification) GetMsQoeMetrInfosOk() ([]MsQoeMetricsCollection, bool)

GetMsQoeMetrInfosOk returns a tuple with the MsQoeMetrInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventNotification) GetPerfDataInfos ¶

func (o *AfEventNotification) GetPerfDataInfos() []PerformanceDataCollection

GetPerfDataInfos returns the PerfDataInfos field value if set, zero value otherwise.

func (*AfEventNotification) GetPerfDataInfosOk ¶

func (o *AfEventNotification) GetPerfDataInfosOk() ([]PerformanceDataCollection, bool)

GetPerfDataInfosOk returns a tuple with the PerfDataInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventNotification) GetSvcExprcInfos ¶

func (o *AfEventNotification) GetSvcExprcInfos() []ServiceExperienceInfoPerApp

GetSvcExprcInfos returns the SvcExprcInfos field value if set, zero value otherwise.

func (*AfEventNotification) GetSvcExprcInfosOk ¶

func (o *AfEventNotification) GetSvcExprcInfosOk() ([]ServiceExperienceInfoPerApp, bool)

GetSvcExprcInfosOk returns a tuple with the SvcExprcInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventNotification) GetTimeStamp ¶

func (o *AfEventNotification) GetTimeStamp() time.Time

GetTimeStamp returns the TimeStamp field value

func (*AfEventNotification) GetTimeStampOk ¶

func (o *AfEventNotification) GetTimeStampOk() (*time.Time, bool)

GetTimeStampOk returns a tuple with the TimeStamp field value and a boolean to check if the value has been set.

func (*AfEventNotification) GetUeCommInfos ¶

func (o *AfEventNotification) GetUeCommInfos() []UeCommunicationCollection

GetUeCommInfos returns the UeCommInfos field value if set, zero value otherwise.

func (*AfEventNotification) GetUeCommInfosOk ¶

func (o *AfEventNotification) GetUeCommInfosOk() ([]UeCommunicationCollection, bool)

GetUeCommInfosOk returns a tuple with the UeCommInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventNotification) GetUeMobilityInfos ¶

func (o *AfEventNotification) GetUeMobilityInfos() []UeMobilityCollection

GetUeMobilityInfos returns the UeMobilityInfos field value if set, zero value otherwise.

func (*AfEventNotification) GetUeMobilityInfosOk ¶

func (o *AfEventNotification) GetUeMobilityInfosOk() ([]UeMobilityCollection, bool)

GetUeMobilityInfosOk returns a tuple with the UeMobilityInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AfEventNotification) HasCollBhvrInfs ¶

func (o *AfEventNotification) HasCollBhvrInfs() bool

HasCollBhvrInfs returns a boolean if a field has been set.

func (*AfEventNotification) HasCongestionInfos ¶

func (o *AfEventNotification) HasCongestionInfos() bool

HasCongestionInfos returns a boolean if a field has been set.

func (*AfEventNotification) HasDispersionInfos ¶

func (o *AfEventNotification) HasDispersionInfos() bool

HasDispersionInfos returns a boolean if a field has been set.

func (*AfEventNotification) HasExcepInfos ¶

func (o *AfEventNotification) HasExcepInfos() bool

HasExcepInfos returns a boolean if a field has been set.

func (*AfEventNotification) HasMsAccActInfos ¶

func (o *AfEventNotification) HasMsAccActInfos() bool

HasMsAccActInfos returns a boolean if a field has been set.

func (*AfEventNotification) HasMsConsumpInfos ¶

func (o *AfEventNotification) HasMsConsumpInfos() bool

HasMsConsumpInfos returns a boolean if a field has been set.

func (*AfEventNotification) HasMsDynPlyInvInfos ¶

func (o *AfEventNotification) HasMsDynPlyInvInfos() bool

HasMsDynPlyInvInfos returns a boolean if a field has been set.

func (*AfEventNotification) HasMsNetAssInvInfos ¶

func (o *AfEventNotification) HasMsNetAssInvInfos() bool

HasMsNetAssInvInfos returns a boolean if a field has been set.

func (*AfEventNotification) HasMsQoeMetrInfos ¶

func (o *AfEventNotification) HasMsQoeMetrInfos() bool

HasMsQoeMetrInfos returns a boolean if a field has been set.

func (*AfEventNotification) HasPerfDataInfos ¶

func (o *AfEventNotification) HasPerfDataInfos() bool

HasPerfDataInfos returns a boolean if a field has been set.

func (*AfEventNotification) HasSvcExprcInfos ¶

func (o *AfEventNotification) HasSvcExprcInfos() bool

HasSvcExprcInfos returns a boolean if a field has been set.

func (*AfEventNotification) HasUeCommInfos ¶

func (o *AfEventNotification) HasUeCommInfos() bool

HasUeCommInfos returns a boolean if a field has been set.

func (*AfEventNotification) HasUeMobilityInfos ¶

func (o *AfEventNotification) HasUeMobilityInfos() bool

HasUeMobilityInfos returns a boolean if a field has been set.

func (AfEventNotification) MarshalJSON ¶

func (o AfEventNotification) MarshalJSON() ([]byte, error)

func (*AfEventNotification) SetCollBhvrInfs ¶

func (o *AfEventNotification) SetCollBhvrInfs(v []CollectiveBehaviourInfo)

SetCollBhvrInfs gets a reference to the given []CollectiveBehaviourInfo and assigns it to the CollBhvrInfs field.

func (*AfEventNotification) SetCongestionInfos ¶

func (o *AfEventNotification) SetCongestionInfos(v []UserDataCongestionCollection)

SetCongestionInfos gets a reference to the given []UserDataCongestionCollection and assigns it to the CongestionInfos field.

func (*AfEventNotification) SetDispersionInfos ¶

func (o *AfEventNotification) SetDispersionInfos(v []DispersionCollection1)

SetDispersionInfos gets a reference to the given []DispersionCollection1 and assigns it to the DispersionInfos field.

func (*AfEventNotification) SetEvent ¶

func (o *AfEventNotification) SetEvent(v AfEvent)

SetEvent sets field value

func (*AfEventNotification) SetExcepInfos ¶

func (o *AfEventNotification) SetExcepInfos(v []ExceptionInfo)

SetExcepInfos gets a reference to the given []ExceptionInfo and assigns it to the ExcepInfos field.

func (*AfEventNotification) SetMsAccActInfos ¶

func (o *AfEventNotification) SetMsAccActInfos(v []MSAccessActivityCollection)

SetMsAccActInfos gets a reference to the given []MSAccessActivityCollection and assigns it to the MsAccActInfos field.

func (*AfEventNotification) SetMsConsumpInfos ¶

func (o *AfEventNotification) SetMsConsumpInfos(v []MsConsumptionCollection)

SetMsConsumpInfos gets a reference to the given []MsConsumptionCollection and assigns it to the MsConsumpInfos field.

func (*AfEventNotification) SetMsDynPlyInvInfos ¶

func (o *AfEventNotification) SetMsDynPlyInvInfos(v []MsDynPolicyInvocationCollection)

SetMsDynPlyInvInfos gets a reference to the given []MsDynPolicyInvocationCollection and assigns it to the MsDynPlyInvInfos field.

func (*AfEventNotification) SetMsNetAssInvInfos ¶

func (o *AfEventNotification) SetMsNetAssInvInfos(v []MsNetAssInvocationCollection)

SetMsNetAssInvInfos gets a reference to the given []MsNetAssInvocationCollection and assigns it to the MsNetAssInvInfos field.

func (*AfEventNotification) SetMsQoeMetrInfos ¶

func (o *AfEventNotification) SetMsQoeMetrInfos(v []MsQoeMetricsCollection)

SetMsQoeMetrInfos gets a reference to the given []MsQoeMetricsCollection and assigns it to the MsQoeMetrInfos field.

func (*AfEventNotification) SetPerfDataInfos ¶

func (o *AfEventNotification) SetPerfDataInfos(v []PerformanceDataCollection)

SetPerfDataInfos gets a reference to the given []PerformanceDataCollection and assigns it to the PerfDataInfos field.

func (*AfEventNotification) SetSvcExprcInfos ¶

func (o *AfEventNotification) SetSvcExprcInfos(v []ServiceExperienceInfoPerApp)

SetSvcExprcInfos gets a reference to the given []ServiceExperienceInfoPerApp and assigns it to the SvcExprcInfos field.

func (*AfEventNotification) SetTimeStamp ¶

func (o *AfEventNotification) SetTimeStamp(v time.Time)

SetTimeStamp sets field value

func (*AfEventNotification) SetUeCommInfos ¶

func (o *AfEventNotification) SetUeCommInfos(v []UeCommunicationCollection)

SetUeCommInfos gets a reference to the given []UeCommunicationCollection and assigns it to the UeCommInfos field.

func (*AfEventNotification) SetUeMobilityInfos ¶

func (o *AfEventNotification) SetUeMobilityInfos(v []UeMobilityCollection)

SetUeMobilityInfos gets a reference to the given []UeMobilityCollection and assigns it to the UeMobilityInfos field.

func (AfEventNotification) ToMap ¶

func (o AfEventNotification) ToMap() (map[string]interface{}, error)

type AggregationLevel ¶

type AggregationLevel struct {
	String *string
}

AggregationLevel Possible values are: - UE: Indicates that the summarized reports shall be provided per UE. - AOI: Indicates that the summarized reports shall be provided per Area of Interest.

func (*AggregationLevel) MarshalJSON ¶

func (src *AggregationLevel) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*AggregationLevel) UnmarshalJSON ¶

func (dst *AggregationLevel) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type AmfCond ¶

type AmfCond struct {
	Interface *interface{}
}

AmfCond Subscription to a set of AMFs, based on AMF Set Id and/or AMF Region Id

func (*AmfCond) MarshalJSON ¶

func (src *AmfCond) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*AmfCond) UnmarshalJSON ¶

func (dst *AmfCond) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type AmfEvent ¶

type AmfEvent struct {
	Type                  AmfEventType        `json:"type"`
	ImmediateFlag         *bool               `json:"immediateFlag,omitempty"`
	AreaList              []AmfEventArea      `json:"areaList,omitempty"`
	LocationFilterList    []LocationFilter    `json:"locationFilterList,omitempty"`
	RefId                 *int32              `json:"refId,omitempty"`
	TrafficDescriptorList []TrafficDescriptor `json:"trafficDescriptorList,omitempty"`
	ReportUeReachable     *bool               `json:"reportUeReachable,omitempty"`
	ReachabilityFilter    *ReachabilityFilter `json:"reachabilityFilter,omitempty"`
	UdmDetectInd          *bool               `json:"udmDetectInd,omitempty"`
	MaxReports            *int32              `json:"maxReports,omitempty"`
	// A map(list of key-value pairs) where praId serves as key.
	PresenceInfoList *map[string]PresenceInfo `json:"presenceInfoList,omitempty"`
	// indicating a time in seconds.
	MaxResponseTime *int32          `json:"maxResponseTime,omitempty"`
	TargetArea      *TargetArea     `json:"targetArea,omitempty"`
	SnssaiFilter    []ExtSnssai     `json:"snssaiFilter,omitempty"`
	UeInAreaFilter  *UeInAreaFilter `json:"ueInAreaFilter,omitempty"`
	// indicating a time in seconds.
	MinInterval *int32 `json:"minInterval,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	NextReport     *time.Time      `json:"nextReport,omitempty"`
	IdleStatusInd  *bool           `json:"idleStatusInd,omitempty"`
	DispersionArea *DispersionArea `json:"dispersionArea,omitempty"`
}

AmfEvent Describes an event to be subscribed

func NewAmfEvent ¶

func NewAmfEvent(type_ AmfEventType) *AmfEvent

NewAmfEvent instantiates a new AmfEvent 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 NewAmfEventWithDefaults ¶

func NewAmfEventWithDefaults() *AmfEvent

NewAmfEventWithDefaults instantiates a new AmfEvent 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 (*AmfEvent) GetAreaList ¶

func (o *AmfEvent) GetAreaList() []AmfEventArea

GetAreaList returns the AreaList field value if set, zero value otherwise.

func (*AmfEvent) GetAreaListOk ¶

func (o *AmfEvent) GetAreaListOk() ([]AmfEventArea, bool)

GetAreaListOk returns a tuple with the AreaList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetDispersionArea ¶

func (o *AmfEvent) GetDispersionArea() DispersionArea

GetDispersionArea returns the DispersionArea field value if set, zero value otherwise.

func (*AmfEvent) GetDispersionAreaOk ¶

func (o *AmfEvent) GetDispersionAreaOk() (*DispersionArea, bool)

GetDispersionAreaOk returns a tuple with the DispersionArea field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetIdleStatusInd ¶

func (o *AmfEvent) GetIdleStatusInd() bool

GetIdleStatusInd returns the IdleStatusInd field value if set, zero value otherwise.

func (*AmfEvent) GetIdleStatusIndOk ¶

func (o *AmfEvent) GetIdleStatusIndOk() (*bool, bool)

GetIdleStatusIndOk returns a tuple with the IdleStatusInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetImmediateFlag ¶

func (o *AmfEvent) GetImmediateFlag() bool

GetImmediateFlag returns the ImmediateFlag field value if set, zero value otherwise.

func (*AmfEvent) GetImmediateFlagOk ¶

func (o *AmfEvent) GetImmediateFlagOk() (*bool, bool)

GetImmediateFlagOk returns a tuple with the ImmediateFlag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetLocationFilterList ¶

func (o *AmfEvent) GetLocationFilterList() []LocationFilter

GetLocationFilterList returns the LocationFilterList field value if set, zero value otherwise.

func (*AmfEvent) GetLocationFilterListOk ¶

func (o *AmfEvent) GetLocationFilterListOk() ([]LocationFilter, bool)

GetLocationFilterListOk returns a tuple with the LocationFilterList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetMaxReports ¶

func (o *AmfEvent) GetMaxReports() int32

GetMaxReports returns the MaxReports field value if set, zero value otherwise.

func (*AmfEvent) GetMaxReportsOk ¶

func (o *AmfEvent) GetMaxReportsOk() (*int32, bool)

GetMaxReportsOk returns a tuple with the MaxReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetMaxResponseTime ¶

func (o *AmfEvent) GetMaxResponseTime() int32

GetMaxResponseTime returns the MaxResponseTime field value if set, zero value otherwise.

func (*AmfEvent) GetMaxResponseTimeOk ¶

func (o *AmfEvent) GetMaxResponseTimeOk() (*int32, bool)

GetMaxResponseTimeOk returns a tuple with the MaxResponseTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetMinInterval ¶

func (o *AmfEvent) GetMinInterval() int32

GetMinInterval returns the MinInterval field value if set, zero value otherwise.

func (*AmfEvent) GetMinIntervalOk ¶

func (o *AmfEvent) GetMinIntervalOk() (*int32, bool)

GetMinIntervalOk returns a tuple with the MinInterval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetNextReport ¶

func (o *AmfEvent) GetNextReport() time.Time

GetNextReport returns the NextReport field value if set, zero value otherwise.

func (*AmfEvent) GetNextReportOk ¶

func (o *AmfEvent) GetNextReportOk() (*time.Time, bool)

GetNextReportOk returns a tuple with the NextReport field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetPresenceInfoList ¶

func (o *AmfEvent) GetPresenceInfoList() map[string]PresenceInfo

GetPresenceInfoList returns the PresenceInfoList field value if set, zero value otherwise.

func (*AmfEvent) GetPresenceInfoListOk ¶

func (o *AmfEvent) GetPresenceInfoListOk() (*map[string]PresenceInfo, bool)

GetPresenceInfoListOk returns a tuple with the PresenceInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetReachabilityFilter ¶

func (o *AmfEvent) GetReachabilityFilter() ReachabilityFilter

GetReachabilityFilter returns the ReachabilityFilter field value if set, zero value otherwise.

func (*AmfEvent) GetReachabilityFilterOk ¶

func (o *AmfEvent) GetReachabilityFilterOk() (*ReachabilityFilter, bool)

GetReachabilityFilterOk returns a tuple with the ReachabilityFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetRefId ¶

func (o *AmfEvent) GetRefId() int32

GetRefId returns the RefId field value if set, zero value otherwise.

func (*AmfEvent) GetRefIdOk ¶

func (o *AmfEvent) GetRefIdOk() (*int32, bool)

GetRefIdOk returns a tuple with the RefId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetReportUeReachable ¶

func (o *AmfEvent) GetReportUeReachable() bool

GetReportUeReachable returns the ReportUeReachable field value if set, zero value otherwise.

func (*AmfEvent) GetReportUeReachableOk ¶

func (o *AmfEvent) GetReportUeReachableOk() (*bool, bool)

GetReportUeReachableOk returns a tuple with the ReportUeReachable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetSnssaiFilter ¶

func (o *AmfEvent) GetSnssaiFilter() []ExtSnssai

GetSnssaiFilter returns the SnssaiFilter field value if set, zero value otherwise.

func (*AmfEvent) GetSnssaiFilterOk ¶

func (o *AmfEvent) GetSnssaiFilterOk() ([]ExtSnssai, bool)

GetSnssaiFilterOk returns a tuple with the SnssaiFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetTargetArea ¶

func (o *AmfEvent) GetTargetArea() TargetArea

GetTargetArea returns the TargetArea field value if set, zero value otherwise.

func (*AmfEvent) GetTargetAreaOk ¶

func (o *AmfEvent) GetTargetAreaOk() (*TargetArea, bool)

GetTargetAreaOk returns a tuple with the TargetArea field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetTrafficDescriptorList ¶

func (o *AmfEvent) GetTrafficDescriptorList() []TrafficDescriptor

GetTrafficDescriptorList returns the TrafficDescriptorList field value if set, zero value otherwise.

func (*AmfEvent) GetTrafficDescriptorListOk ¶

func (o *AmfEvent) GetTrafficDescriptorListOk() ([]TrafficDescriptor, bool)

GetTrafficDescriptorListOk returns a tuple with the TrafficDescriptorList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetType ¶

func (o *AmfEvent) GetType() AmfEventType

GetType returns the Type field value

func (*AmfEvent) GetTypeOk ¶

func (o *AmfEvent) GetTypeOk() (*AmfEventType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*AmfEvent) GetUdmDetectInd ¶

func (o *AmfEvent) GetUdmDetectInd() bool

GetUdmDetectInd returns the UdmDetectInd field value if set, zero value otherwise.

func (*AmfEvent) GetUdmDetectIndOk ¶

func (o *AmfEvent) GetUdmDetectIndOk() (*bool, bool)

GetUdmDetectIndOk returns a tuple with the UdmDetectInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) GetUeInAreaFilter ¶

func (o *AmfEvent) GetUeInAreaFilter() UeInAreaFilter

GetUeInAreaFilter returns the UeInAreaFilter field value if set, zero value otherwise.

func (*AmfEvent) GetUeInAreaFilterOk ¶

func (o *AmfEvent) GetUeInAreaFilterOk() (*UeInAreaFilter, bool)

GetUeInAreaFilterOk returns a tuple with the UeInAreaFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEvent) HasAreaList ¶

func (o *AmfEvent) HasAreaList() bool

HasAreaList returns a boolean if a field has been set.

func (*AmfEvent) HasDispersionArea ¶

func (o *AmfEvent) HasDispersionArea() bool

HasDispersionArea returns a boolean if a field has been set.

func (*AmfEvent) HasIdleStatusInd ¶

func (o *AmfEvent) HasIdleStatusInd() bool

HasIdleStatusInd returns a boolean if a field has been set.

func (*AmfEvent) HasImmediateFlag ¶

func (o *AmfEvent) HasImmediateFlag() bool

HasImmediateFlag returns a boolean if a field has been set.

func (*AmfEvent) HasLocationFilterList ¶

func (o *AmfEvent) HasLocationFilterList() bool

HasLocationFilterList returns a boolean if a field has been set.

func (*AmfEvent) HasMaxReports ¶

func (o *AmfEvent) HasMaxReports() bool

HasMaxReports returns a boolean if a field has been set.

func (*AmfEvent) HasMaxResponseTime ¶

func (o *AmfEvent) HasMaxResponseTime() bool

HasMaxResponseTime returns a boolean if a field has been set.

func (*AmfEvent) HasMinInterval ¶

func (o *AmfEvent) HasMinInterval() bool

HasMinInterval returns a boolean if a field has been set.

func (*AmfEvent) HasNextReport ¶

func (o *AmfEvent) HasNextReport() bool

HasNextReport returns a boolean if a field has been set.

func (*AmfEvent) HasPresenceInfoList ¶

func (o *AmfEvent) HasPresenceInfoList() bool

HasPresenceInfoList returns a boolean if a field has been set.

func (*AmfEvent) HasReachabilityFilter ¶

func (o *AmfEvent) HasReachabilityFilter() bool

HasReachabilityFilter returns a boolean if a field has been set.

func (*AmfEvent) HasRefId ¶

func (o *AmfEvent) HasRefId() bool

HasRefId returns a boolean if a field has been set.

func (*AmfEvent) HasReportUeReachable ¶

func (o *AmfEvent) HasReportUeReachable() bool

HasReportUeReachable returns a boolean if a field has been set.

func (*AmfEvent) HasSnssaiFilter ¶

func (o *AmfEvent) HasSnssaiFilter() bool

HasSnssaiFilter returns a boolean if a field has been set.

func (*AmfEvent) HasTargetArea ¶

func (o *AmfEvent) HasTargetArea() bool

HasTargetArea returns a boolean if a field has been set.

func (*AmfEvent) HasTrafficDescriptorList ¶

func (o *AmfEvent) HasTrafficDescriptorList() bool

HasTrafficDescriptorList returns a boolean if a field has been set.

func (*AmfEvent) HasUdmDetectInd ¶

func (o *AmfEvent) HasUdmDetectInd() bool

HasUdmDetectInd returns a boolean if a field has been set.

func (*AmfEvent) HasUeInAreaFilter ¶

func (o *AmfEvent) HasUeInAreaFilter() bool

HasUeInAreaFilter returns a boolean if a field has been set.

func (AmfEvent) MarshalJSON ¶

func (o AmfEvent) MarshalJSON() ([]byte, error)

func (*AmfEvent) SetAreaList ¶

func (o *AmfEvent) SetAreaList(v []AmfEventArea)

SetAreaList gets a reference to the given []AmfEventArea and assigns it to the AreaList field.

func (*AmfEvent) SetDispersionArea ¶

func (o *AmfEvent) SetDispersionArea(v DispersionArea)

SetDispersionArea gets a reference to the given DispersionArea and assigns it to the DispersionArea field.

func (*AmfEvent) SetIdleStatusInd ¶

func (o *AmfEvent) SetIdleStatusInd(v bool)

SetIdleStatusInd gets a reference to the given bool and assigns it to the IdleStatusInd field.

func (*AmfEvent) SetImmediateFlag ¶

func (o *AmfEvent) SetImmediateFlag(v bool)

SetImmediateFlag gets a reference to the given bool and assigns it to the ImmediateFlag field.

func (*AmfEvent) SetLocationFilterList ¶

func (o *AmfEvent) SetLocationFilterList(v []LocationFilter)

SetLocationFilterList gets a reference to the given []LocationFilter and assigns it to the LocationFilterList field.

func (*AmfEvent) SetMaxReports ¶

func (o *AmfEvent) SetMaxReports(v int32)

SetMaxReports gets a reference to the given int32 and assigns it to the MaxReports field.

func (*AmfEvent) SetMaxResponseTime ¶

func (o *AmfEvent) SetMaxResponseTime(v int32)

SetMaxResponseTime gets a reference to the given int32 and assigns it to the MaxResponseTime field.

func (*AmfEvent) SetMinInterval ¶

func (o *AmfEvent) SetMinInterval(v int32)

SetMinInterval gets a reference to the given int32 and assigns it to the MinInterval field.

func (*AmfEvent) SetNextReport ¶

func (o *AmfEvent) SetNextReport(v time.Time)

SetNextReport gets a reference to the given time.Time and assigns it to the NextReport field.

func (*AmfEvent) SetPresenceInfoList ¶

func (o *AmfEvent) SetPresenceInfoList(v map[string]PresenceInfo)

SetPresenceInfoList gets a reference to the given map[string]PresenceInfo and assigns it to the PresenceInfoList field.

func (*AmfEvent) SetReachabilityFilter ¶

func (o *AmfEvent) SetReachabilityFilter(v ReachabilityFilter)

SetReachabilityFilter gets a reference to the given ReachabilityFilter and assigns it to the ReachabilityFilter field.

func (*AmfEvent) SetRefId ¶

func (o *AmfEvent) SetRefId(v int32)

SetRefId gets a reference to the given int32 and assigns it to the RefId field.

func (*AmfEvent) SetReportUeReachable ¶

func (o *AmfEvent) SetReportUeReachable(v bool)

SetReportUeReachable gets a reference to the given bool and assigns it to the ReportUeReachable field.

func (*AmfEvent) SetSnssaiFilter ¶

func (o *AmfEvent) SetSnssaiFilter(v []ExtSnssai)

SetSnssaiFilter gets a reference to the given []ExtSnssai and assigns it to the SnssaiFilter field.

func (*AmfEvent) SetTargetArea ¶

func (o *AmfEvent) SetTargetArea(v TargetArea)

SetTargetArea gets a reference to the given TargetArea and assigns it to the TargetArea field.

func (*AmfEvent) SetTrafficDescriptorList ¶

func (o *AmfEvent) SetTrafficDescriptorList(v []TrafficDescriptor)

SetTrafficDescriptorList gets a reference to the given []TrafficDescriptor and assigns it to the TrafficDescriptorList field.

func (*AmfEvent) SetType ¶

func (o *AmfEvent) SetType(v AmfEventType)

SetType sets field value

func (*AmfEvent) SetUdmDetectInd ¶

func (o *AmfEvent) SetUdmDetectInd(v bool)

SetUdmDetectInd gets a reference to the given bool and assigns it to the UdmDetectInd field.

func (*AmfEvent) SetUeInAreaFilter ¶

func (o *AmfEvent) SetUeInAreaFilter(v UeInAreaFilter)

SetUeInAreaFilter gets a reference to the given UeInAreaFilter and assigns it to the UeInAreaFilter field.

func (AmfEvent) ToMap ¶

func (o AmfEvent) ToMap() (map[string]interface{}, error)

type AmfEventArea ¶

type AmfEventArea struct {
	PresenceInfo *PresenceInfo `json:"presenceInfo,omitempty"`
	LadnInfo     *LadnInfo     `json:"ladnInfo,omitempty"`
	SNssai       *Snssai       `json:"sNssai,omitempty"`
	// Contains the Identifier of the selected Network Slice instance
	NsiId *string `json:"nsiId,omitempty"`
}

AmfEventArea Represents an area to be monitored by an AMF event

func NewAmfEventArea ¶

func NewAmfEventArea() *AmfEventArea

NewAmfEventArea instantiates a new AmfEventArea 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 NewAmfEventAreaWithDefaults ¶

func NewAmfEventAreaWithDefaults() *AmfEventArea

NewAmfEventAreaWithDefaults instantiates a new AmfEventArea 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 (*AmfEventArea) GetLadnInfo ¶

func (o *AmfEventArea) GetLadnInfo() LadnInfo

GetLadnInfo returns the LadnInfo field value if set, zero value otherwise.

func (*AmfEventArea) GetLadnInfoOk ¶

func (o *AmfEventArea) GetLadnInfoOk() (*LadnInfo, bool)

GetLadnInfoOk returns a tuple with the LadnInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventArea) GetNsiId ¶

func (o *AmfEventArea) GetNsiId() string

GetNsiId returns the NsiId field value if set, zero value otherwise.

func (*AmfEventArea) GetNsiIdOk ¶

func (o *AmfEventArea) GetNsiIdOk() (*string, bool)

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 (*AmfEventArea) GetPresenceInfo ¶

func (o *AmfEventArea) GetPresenceInfo() PresenceInfo

GetPresenceInfo returns the PresenceInfo field value if set, zero value otherwise.

func (*AmfEventArea) GetPresenceInfoOk ¶

func (o *AmfEventArea) GetPresenceInfoOk() (*PresenceInfo, bool)

GetPresenceInfoOk returns a tuple with the PresenceInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventArea) GetSNssai ¶

func (o *AmfEventArea) GetSNssai() Snssai

GetSNssai returns the SNssai field value if set, zero value otherwise.

func (*AmfEventArea) GetSNssaiOk ¶

func (o *AmfEventArea) GetSNssaiOk() (*Snssai, bool)

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 (*AmfEventArea) HasLadnInfo ¶

func (o *AmfEventArea) HasLadnInfo() bool

HasLadnInfo returns a boolean if a field has been set.

func (*AmfEventArea) HasNsiId ¶

func (o *AmfEventArea) HasNsiId() bool

HasNsiId returns a boolean if a field has been set.

func (*AmfEventArea) HasPresenceInfo ¶

func (o *AmfEventArea) HasPresenceInfo() bool

HasPresenceInfo returns a boolean if a field has been set.

func (*AmfEventArea) HasSNssai ¶

func (o *AmfEventArea) HasSNssai() bool

HasSNssai returns a boolean if a field has been set.

func (AmfEventArea) MarshalJSON ¶

func (o AmfEventArea) MarshalJSON() ([]byte, error)

func (*AmfEventArea) SetLadnInfo ¶

func (o *AmfEventArea) SetLadnInfo(v LadnInfo)

SetLadnInfo gets a reference to the given LadnInfo and assigns it to the LadnInfo field.

func (*AmfEventArea) SetNsiId ¶

func (o *AmfEventArea) SetNsiId(v string)

SetNsiId gets a reference to the given string and assigns it to the NsiId field.

func (*AmfEventArea) SetPresenceInfo ¶

func (o *AmfEventArea) SetPresenceInfo(v PresenceInfo)

SetPresenceInfo gets a reference to the given PresenceInfo and assigns it to the PresenceInfo field.

func (*AmfEventArea) SetSNssai ¶

func (o *AmfEventArea) SetSNssai(v Snssai)

SetSNssai gets a reference to the given Snssai and assigns it to the SNssai field.

func (AmfEventArea) ToMap ¶

func (o AmfEventArea) ToMap() (map[string]interface{}, error)

type AmfEventMode ¶

type AmfEventMode struct {
	Trigger    AmfEventTrigger `json:"trigger"`
	MaxReports *int32          `json:"maxReports,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	Expiry *time.Time `json:"expiry,omitempty"`
	// indicating a time in seconds.
	RepPeriod *int32 `json:"repPeriod,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	SampRatio            *int32                 `json:"sampRatio,omitempty"`
	PartitioningCriteria []PartitioningCriteria `json:"partitioningCriteria,omitempty"`
	NotifFlag            *NotificationFlag      `json:"notifFlag,omitempty"`
}

AmfEventMode Describes how the reports shall be generated by a subscribed event

func NewAmfEventMode ¶

func NewAmfEventMode(trigger AmfEventTrigger) *AmfEventMode

NewAmfEventMode instantiates a new AmfEventMode 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 NewAmfEventModeWithDefaults ¶

func NewAmfEventModeWithDefaults() *AmfEventMode

NewAmfEventModeWithDefaults instantiates a new AmfEventMode 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 (*AmfEventMode) GetExpiry ¶

func (o *AmfEventMode) GetExpiry() time.Time

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*AmfEventMode) GetExpiryOk ¶

func (o *AmfEventMode) GetExpiryOk() (*time.Time, bool)

GetExpiryOk returns a tuple with the Expiry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventMode) GetMaxReports ¶

func (o *AmfEventMode) GetMaxReports() int32

GetMaxReports returns the MaxReports field value if set, zero value otherwise.

func (*AmfEventMode) GetMaxReportsOk ¶

func (o *AmfEventMode) GetMaxReportsOk() (*int32, bool)

GetMaxReportsOk returns a tuple with the MaxReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventMode) GetNotifFlag ¶

func (o *AmfEventMode) GetNotifFlag() NotificationFlag

GetNotifFlag returns the NotifFlag field value if set, zero value otherwise.

func (*AmfEventMode) GetNotifFlagOk ¶

func (o *AmfEventMode) GetNotifFlagOk() (*NotificationFlag, bool)

GetNotifFlagOk returns a tuple with the NotifFlag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventMode) GetPartitioningCriteria ¶

func (o *AmfEventMode) GetPartitioningCriteria() []PartitioningCriteria

GetPartitioningCriteria returns the PartitioningCriteria field value if set, zero value otherwise.

func (*AmfEventMode) GetPartitioningCriteriaOk ¶

func (o *AmfEventMode) GetPartitioningCriteriaOk() ([]PartitioningCriteria, bool)

GetPartitioningCriteriaOk returns a tuple with the PartitioningCriteria field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventMode) GetRepPeriod ¶

func (o *AmfEventMode) GetRepPeriod() int32

GetRepPeriod returns the RepPeriod field value if set, zero value otherwise.

func (*AmfEventMode) GetRepPeriodOk ¶

func (o *AmfEventMode) GetRepPeriodOk() (*int32, bool)

GetRepPeriodOk returns a tuple with the RepPeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventMode) GetSampRatio ¶

func (o *AmfEventMode) GetSampRatio() int32

GetSampRatio returns the SampRatio field value if set, zero value otherwise.

func (*AmfEventMode) GetSampRatioOk ¶

func (o *AmfEventMode) GetSampRatioOk() (*int32, bool)

GetSampRatioOk returns a tuple with the SampRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventMode) GetTrigger ¶

func (o *AmfEventMode) GetTrigger() AmfEventTrigger

GetTrigger returns the Trigger field value

func (*AmfEventMode) GetTriggerOk ¶

func (o *AmfEventMode) GetTriggerOk() (*AmfEventTrigger, bool)

GetTriggerOk returns a tuple with the Trigger field value and a boolean to check if the value has been set.

func (*AmfEventMode) HasExpiry ¶

func (o *AmfEventMode) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*AmfEventMode) HasMaxReports ¶

func (o *AmfEventMode) HasMaxReports() bool

HasMaxReports returns a boolean if a field has been set.

func (*AmfEventMode) HasNotifFlag ¶

func (o *AmfEventMode) HasNotifFlag() bool

HasNotifFlag returns a boolean if a field has been set.

func (*AmfEventMode) HasPartitioningCriteria ¶

func (o *AmfEventMode) HasPartitioningCriteria() bool

HasPartitioningCriteria returns a boolean if a field has been set.

func (*AmfEventMode) HasRepPeriod ¶

func (o *AmfEventMode) HasRepPeriod() bool

HasRepPeriod returns a boolean if a field has been set.

func (*AmfEventMode) HasSampRatio ¶

func (o *AmfEventMode) HasSampRatio() bool

HasSampRatio returns a boolean if a field has been set.

func (AmfEventMode) MarshalJSON ¶

func (o AmfEventMode) MarshalJSON() ([]byte, error)

func (*AmfEventMode) SetExpiry ¶

func (o *AmfEventMode) SetExpiry(v time.Time)

SetExpiry gets a reference to the given time.Time and assigns it to the Expiry field.

func (*AmfEventMode) SetMaxReports ¶

func (o *AmfEventMode) SetMaxReports(v int32)

SetMaxReports gets a reference to the given int32 and assigns it to the MaxReports field.

func (*AmfEventMode) SetNotifFlag ¶

func (o *AmfEventMode) SetNotifFlag(v NotificationFlag)

SetNotifFlag gets a reference to the given NotificationFlag and assigns it to the NotifFlag field.

func (*AmfEventMode) SetPartitioningCriteria ¶

func (o *AmfEventMode) SetPartitioningCriteria(v []PartitioningCriteria)

SetPartitioningCriteria gets a reference to the given []PartitioningCriteria and assigns it to the PartitioningCriteria field.

func (*AmfEventMode) SetRepPeriod ¶

func (o *AmfEventMode) SetRepPeriod(v int32)

SetRepPeriod gets a reference to the given int32 and assigns it to the RepPeriod field.

func (*AmfEventMode) SetSampRatio ¶

func (o *AmfEventMode) SetSampRatio(v int32)

SetSampRatio gets a reference to the given int32 and assigns it to the SampRatio field.

func (*AmfEventMode) SetTrigger ¶

func (o *AmfEventMode) SetTrigger(v AmfEventTrigger)

SetTrigger sets field value

func (AmfEventMode) ToMap ¶

func (o AmfEventMode) ToMap() (map[string]interface{}, error)

type AmfEventNotification ¶

type AmfEventNotification struct {
	NotifyCorrelationId           *string               `json:"notifyCorrelationId,omitempty"`
	SubsChangeNotifyCorrelationId *string               `json:"subsChangeNotifyCorrelationId,omitempty"`
	ReportList                    []AmfEventReport      `json:"reportList,omitempty"`
	EventSubsSyncInfo             *AmfEventSubsSyncInfo `json:"eventSubsSyncInfo,omitempty"`
}

AmfEventNotification Data within a AMF Event Notification request

func NewAmfEventNotification ¶

func NewAmfEventNotification() *AmfEventNotification

NewAmfEventNotification instantiates a new AmfEventNotification 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 NewAmfEventNotificationWithDefaults ¶

func NewAmfEventNotificationWithDefaults() *AmfEventNotification

NewAmfEventNotificationWithDefaults instantiates a new AmfEventNotification 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 (*AmfEventNotification) GetEventSubsSyncInfo ¶

func (o *AmfEventNotification) GetEventSubsSyncInfo() AmfEventSubsSyncInfo

GetEventSubsSyncInfo returns the EventSubsSyncInfo field value if set, zero value otherwise.

func (*AmfEventNotification) GetEventSubsSyncInfoOk ¶

func (o *AmfEventNotification) GetEventSubsSyncInfoOk() (*AmfEventSubsSyncInfo, bool)

GetEventSubsSyncInfoOk returns a tuple with the EventSubsSyncInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventNotification) GetNotifyCorrelationId ¶

func (o *AmfEventNotification) GetNotifyCorrelationId() string

GetNotifyCorrelationId returns the NotifyCorrelationId field value if set, zero value otherwise.

func (*AmfEventNotification) GetNotifyCorrelationIdOk ¶

func (o *AmfEventNotification) GetNotifyCorrelationIdOk() (*string, bool)

GetNotifyCorrelationIdOk returns a tuple with the NotifyCorrelationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventNotification) GetReportList ¶

func (o *AmfEventNotification) GetReportList() []AmfEventReport

GetReportList returns the ReportList field value if set, zero value otherwise.

func (*AmfEventNotification) GetReportListOk ¶

func (o *AmfEventNotification) GetReportListOk() ([]AmfEventReport, bool)

GetReportListOk returns a tuple with the ReportList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventNotification) GetSubsChangeNotifyCorrelationId ¶

func (o *AmfEventNotification) GetSubsChangeNotifyCorrelationId() string

GetSubsChangeNotifyCorrelationId returns the SubsChangeNotifyCorrelationId field value if set, zero value otherwise.

func (*AmfEventNotification) GetSubsChangeNotifyCorrelationIdOk ¶

func (o *AmfEventNotification) GetSubsChangeNotifyCorrelationIdOk() (*string, bool)

GetSubsChangeNotifyCorrelationIdOk returns a tuple with the SubsChangeNotifyCorrelationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventNotification) HasEventSubsSyncInfo ¶

func (o *AmfEventNotification) HasEventSubsSyncInfo() bool

HasEventSubsSyncInfo returns a boolean if a field has been set.

func (*AmfEventNotification) HasNotifyCorrelationId ¶

func (o *AmfEventNotification) HasNotifyCorrelationId() bool

HasNotifyCorrelationId returns a boolean if a field has been set.

func (*AmfEventNotification) HasReportList ¶

func (o *AmfEventNotification) HasReportList() bool

HasReportList returns a boolean if a field has been set.

func (*AmfEventNotification) HasSubsChangeNotifyCorrelationId ¶

func (o *AmfEventNotification) HasSubsChangeNotifyCorrelationId() bool

HasSubsChangeNotifyCorrelationId returns a boolean if a field has been set.

func (AmfEventNotification) MarshalJSON ¶

func (o AmfEventNotification) MarshalJSON() ([]byte, error)

func (*AmfEventNotification) SetEventSubsSyncInfo ¶

func (o *AmfEventNotification) SetEventSubsSyncInfo(v AmfEventSubsSyncInfo)

SetEventSubsSyncInfo gets a reference to the given AmfEventSubsSyncInfo and assigns it to the EventSubsSyncInfo field.

func (*AmfEventNotification) SetNotifyCorrelationId ¶

func (o *AmfEventNotification) SetNotifyCorrelationId(v string)

SetNotifyCorrelationId gets a reference to the given string and assigns it to the NotifyCorrelationId field.

func (*AmfEventNotification) SetReportList ¶

func (o *AmfEventNotification) SetReportList(v []AmfEventReport)

SetReportList gets a reference to the given []AmfEventReport and assigns it to the ReportList field.

func (*AmfEventNotification) SetSubsChangeNotifyCorrelationId ¶

func (o *AmfEventNotification) SetSubsChangeNotifyCorrelationId(v string)

SetSubsChangeNotifyCorrelationId gets a reference to the given string and assigns it to the SubsChangeNotifyCorrelationId field.

func (AmfEventNotification) ToMap ¶

func (o AmfEventNotification) ToMap() (map[string]interface{}, error)

type AmfEventReport ¶

type AmfEventReport struct {
	Type  AmfEventType  `json:"type"`
	State AmfEventState `json:"state"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp time.Time `json:"timeStamp"`
	// String providing an URI formatted according to RFC 3986.
	SubscriptionId *string `json:"subscriptionId,omitempty"`
	AnyUe          *bool   `json:"anyUe,omitempty"`
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi     *string        `json:"supi,omitempty"`
	AreaList []AmfEventArea `json:"areaList,omitempty"`
	RefId    *int32         `json:"refId,omitempty"`
	// 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.
	Gpsi *string `json:"gpsi,omitempty"`
	// String representing a Permanent Equipment Identifier that may contain - an IMEI or IMEISV, as  specified in clause 6.2 of 3GPP TS 23.003; a MAC address for a 5G-RG or FN-RG via  wireline  access, with an indication that this address cannot be trusted for regulatory purpose if this  address cannot be used as an Equipment Identifier of the FN-RG, as specified in clause 4.7.7  of 3GPP TS23.316. Examples are imei-012345678901234 or imeisv-0123456789012345.
	Pei                *string       `json:"pei,omitempty"`
	Location           *UserLocation `json:"location,omitempty"`
	AdditionalLocation *UserLocation `json:"additionalLocation,omitempty"`
	// String with format \"time-numoffset\" optionally appended by \"daylightSavingTime\", where  - \"time-numoffset\" shall represent the time zone adjusted for daylight saving time and be    encoded as time-numoffset as defined in clause 5.6 of IETF RFC 3339;  - \"daylightSavingTime\" shall represent the adjustment that has been made and shall be    encoded as \"+1\" or \"+2\" for a +1 or +2 hours adjustment.   The example is for 8 hours behind UTC, +1 hour adjustment for Daylight Saving Time.
	Timezone            *string                   `json:"timezone,omitempty"`
	AccessTypeList      []AccessType              `json:"accessTypeList,omitempty"`
	RmInfoList          []RmInfo                  `json:"rmInfoList,omitempty"`
	CmInfoList          []CmInfo                  `json:"cmInfoList,omitempty"`
	Reachability        *UeReachability           `json:"reachability,omitempty"`
	CommFailure         *CommunicationFailure     `json:"commFailure,omitempty"`
	LossOfConnectReason *LossOfConnectivityReason `json:"lossOfConnectReason,omitempty"`
	NumberOfUes         *int32                    `json:"numberOfUes,omitempty"`
	Var5gsUserStateList []Model5GsUserStateInfo   `json:"5gsUserStateList,omitempty"`
	TypeCode            *string                   `json:"typeCode,omitempty"`
	RegistrationNumber  *int32                    `json:"registrationNumber,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	MaxAvailabilityTime       *time.Time                        `json:"maxAvailabilityTime,omitempty"`
	UeIdExt                   []UEIdExt                         `json:"ueIdExt,omitempty"`
	SnssaiTaiList             []SnssaiTaiMapping                `json:"snssaiTaiList,omitempty"`
	IdleStatusIndication      *IdleStatusIndication             `json:"idleStatusIndication,omitempty"`
	UeAccessBehaviorTrends    []UeAccessBehaviorReportItem      `json:"ueAccessBehaviorTrends,omitempty"`
	UeLocationTrends          []UeLocationTrendsReportItem      `json:"ueLocationTrends,omitempty"`
	MmTransLocationReportList []MmTransactionLocationReportItem `json:"mmTransLocationReportList,omitempty"`
	MmTransSliceReportList    []MmTransactionSliceReportItem    `json:"mmTransSliceReportList,omitempty"`
	TermReason                *SubTerminationReason             `json:"termReason,omitempty"`
}

AmfEventReport Represents a report triggered by a subscribed event type

func NewAmfEventReport ¶

func NewAmfEventReport(type_ AmfEventType, state AmfEventState, timeStamp time.Time) *AmfEventReport

NewAmfEventReport instantiates a new AmfEventReport 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 NewAmfEventReportWithDefaults ¶

func NewAmfEventReportWithDefaults() *AmfEventReport

NewAmfEventReportWithDefaults instantiates a new AmfEventReport 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 (*AmfEventReport) GetAccessTypeList ¶

func (o *AmfEventReport) GetAccessTypeList() []AccessType

GetAccessTypeList returns the AccessTypeList field value if set, zero value otherwise.

func (*AmfEventReport) GetAccessTypeListOk ¶

func (o *AmfEventReport) GetAccessTypeListOk() ([]AccessType, bool)

GetAccessTypeListOk returns a tuple with the AccessTypeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetAdditionalLocation ¶

func (o *AmfEventReport) GetAdditionalLocation() UserLocation

GetAdditionalLocation returns the AdditionalLocation field value if set, zero value otherwise.

func (*AmfEventReport) GetAdditionalLocationOk ¶

func (o *AmfEventReport) GetAdditionalLocationOk() (*UserLocation, bool)

GetAdditionalLocationOk returns a tuple with the AdditionalLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetAnyUe ¶

func (o *AmfEventReport) GetAnyUe() bool

GetAnyUe returns the AnyUe field value if set, zero value otherwise.

func (*AmfEventReport) GetAnyUeOk ¶

func (o *AmfEventReport) GetAnyUeOk() (*bool, bool)

GetAnyUeOk returns a tuple with the AnyUe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetAreaList ¶

func (o *AmfEventReport) GetAreaList() []AmfEventArea

GetAreaList returns the AreaList field value if set, zero value otherwise.

func (*AmfEventReport) GetAreaListOk ¶

func (o *AmfEventReport) GetAreaListOk() ([]AmfEventArea, bool)

GetAreaListOk returns a tuple with the AreaList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetCmInfoList ¶

func (o *AmfEventReport) GetCmInfoList() []CmInfo

GetCmInfoList returns the CmInfoList field value if set, zero value otherwise.

func (*AmfEventReport) GetCmInfoListOk ¶

func (o *AmfEventReport) GetCmInfoListOk() ([]CmInfo, bool)

GetCmInfoListOk returns a tuple with the CmInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetCommFailure ¶

func (o *AmfEventReport) GetCommFailure() CommunicationFailure

GetCommFailure returns the CommFailure field value if set, zero value otherwise.

func (*AmfEventReport) GetCommFailureOk ¶

func (o *AmfEventReport) GetCommFailureOk() (*CommunicationFailure, bool)

GetCommFailureOk returns a tuple with the CommFailure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetGpsi ¶

func (o *AmfEventReport) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*AmfEventReport) GetGpsiOk ¶

func (o *AmfEventReport) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetIdleStatusIndication ¶

func (o *AmfEventReport) GetIdleStatusIndication() IdleStatusIndication

GetIdleStatusIndication returns the IdleStatusIndication field value if set, zero value otherwise.

func (*AmfEventReport) GetIdleStatusIndicationOk ¶

func (o *AmfEventReport) GetIdleStatusIndicationOk() (*IdleStatusIndication, bool)

GetIdleStatusIndicationOk returns a tuple with the IdleStatusIndication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetLocation ¶

func (o *AmfEventReport) GetLocation() UserLocation

GetLocation returns the Location field value if set, zero value otherwise.

func (*AmfEventReport) GetLocationOk ¶

func (o *AmfEventReport) GetLocationOk() (*UserLocation, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetLossOfConnectReason ¶

func (o *AmfEventReport) GetLossOfConnectReason() LossOfConnectivityReason

GetLossOfConnectReason returns the LossOfConnectReason field value if set, zero value otherwise.

func (*AmfEventReport) GetLossOfConnectReasonOk ¶

func (o *AmfEventReport) GetLossOfConnectReasonOk() (*LossOfConnectivityReason, bool)

GetLossOfConnectReasonOk returns a tuple with the LossOfConnectReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetMaxAvailabilityTime ¶

func (o *AmfEventReport) GetMaxAvailabilityTime() time.Time

GetMaxAvailabilityTime returns the MaxAvailabilityTime field value if set, zero value otherwise.

func (*AmfEventReport) GetMaxAvailabilityTimeOk ¶

func (o *AmfEventReport) GetMaxAvailabilityTimeOk() (*time.Time, bool)

GetMaxAvailabilityTimeOk returns a tuple with the MaxAvailabilityTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetMmTransLocationReportList ¶

func (o *AmfEventReport) GetMmTransLocationReportList() []MmTransactionLocationReportItem

GetMmTransLocationReportList returns the MmTransLocationReportList field value if set, zero value otherwise.

func (*AmfEventReport) GetMmTransLocationReportListOk ¶

func (o *AmfEventReport) GetMmTransLocationReportListOk() ([]MmTransactionLocationReportItem, bool)

GetMmTransLocationReportListOk returns a tuple with the MmTransLocationReportList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetMmTransSliceReportList ¶

func (o *AmfEventReport) GetMmTransSliceReportList() []MmTransactionSliceReportItem

GetMmTransSliceReportList returns the MmTransSliceReportList field value if set, zero value otherwise.

func (*AmfEventReport) GetMmTransSliceReportListOk ¶

func (o *AmfEventReport) GetMmTransSliceReportListOk() ([]MmTransactionSliceReportItem, bool)

GetMmTransSliceReportListOk returns a tuple with the MmTransSliceReportList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetNumberOfUes ¶

func (o *AmfEventReport) GetNumberOfUes() int32

GetNumberOfUes returns the NumberOfUes field value if set, zero value otherwise.

func (*AmfEventReport) GetNumberOfUesOk ¶

func (o *AmfEventReport) GetNumberOfUesOk() (*int32, bool)

GetNumberOfUesOk returns a tuple with the NumberOfUes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetPei ¶

func (o *AmfEventReport) GetPei() string

GetPei returns the Pei field value if set, zero value otherwise.

func (*AmfEventReport) GetPeiOk ¶

func (o *AmfEventReport) GetPeiOk() (*string, bool)

GetPeiOk returns a tuple with the Pei field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetReachability ¶

func (o *AmfEventReport) GetReachability() UeReachability

GetReachability returns the Reachability field value if set, zero value otherwise.

func (*AmfEventReport) GetReachabilityOk ¶

func (o *AmfEventReport) GetReachabilityOk() (*UeReachability, bool)

GetReachabilityOk returns a tuple with the Reachability field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetRefId ¶

func (o *AmfEventReport) GetRefId() int32

GetRefId returns the RefId field value if set, zero value otherwise.

func (*AmfEventReport) GetRefIdOk ¶

func (o *AmfEventReport) GetRefIdOk() (*int32, bool)

GetRefIdOk returns a tuple with the RefId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetRegistrationNumber ¶

func (o *AmfEventReport) GetRegistrationNumber() int32

GetRegistrationNumber returns the RegistrationNumber field value if set, zero value otherwise.

func (*AmfEventReport) GetRegistrationNumberOk ¶

func (o *AmfEventReport) GetRegistrationNumberOk() (*int32, bool)

GetRegistrationNumberOk returns a tuple with the RegistrationNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetRmInfoList ¶

func (o *AmfEventReport) GetRmInfoList() []RmInfo

GetRmInfoList returns the RmInfoList field value if set, zero value otherwise.

func (*AmfEventReport) GetRmInfoListOk ¶

func (o *AmfEventReport) GetRmInfoListOk() ([]RmInfo, bool)

GetRmInfoListOk returns a tuple with the RmInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetSnssaiTaiList ¶

func (o *AmfEventReport) GetSnssaiTaiList() []SnssaiTaiMapping

GetSnssaiTaiList returns the SnssaiTaiList field value if set, zero value otherwise.

func (*AmfEventReport) GetSnssaiTaiListOk ¶

func (o *AmfEventReport) GetSnssaiTaiListOk() ([]SnssaiTaiMapping, bool)

GetSnssaiTaiListOk returns a tuple with the SnssaiTaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetState ¶

func (o *AmfEventReport) GetState() AmfEventState

GetState returns the State field value

func (*AmfEventReport) GetStateOk ¶

func (o *AmfEventReport) GetStateOk() (*AmfEventState, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*AmfEventReport) GetSubscriptionId ¶

func (o *AmfEventReport) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise.

func (*AmfEventReport) GetSubscriptionIdOk ¶

func (o *AmfEventReport) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetSupi ¶

func (o *AmfEventReport) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*AmfEventReport) GetSupiOk ¶

func (o *AmfEventReport) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetTermReason ¶

func (o *AmfEventReport) GetTermReason() SubTerminationReason

GetTermReason returns the TermReason field value if set, zero value otherwise.

func (*AmfEventReport) GetTermReasonOk ¶

func (o *AmfEventReport) GetTermReasonOk() (*SubTerminationReason, bool)

GetTermReasonOk returns a tuple with the TermReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetTimeStamp ¶

func (o *AmfEventReport) GetTimeStamp() time.Time

GetTimeStamp returns the TimeStamp field value

func (*AmfEventReport) GetTimeStampOk ¶

func (o *AmfEventReport) GetTimeStampOk() (*time.Time, bool)

GetTimeStampOk returns a tuple with the TimeStamp field value and a boolean to check if the value has been set.

func (*AmfEventReport) GetTimezone ¶

func (o *AmfEventReport) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*AmfEventReport) GetTimezoneOk ¶

func (o *AmfEventReport) GetTimezoneOk() (*string, bool)

GetTimezoneOk returns a tuple with the Timezone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetType ¶

func (o *AmfEventReport) GetType() AmfEventType

GetType returns the Type field value

func (*AmfEventReport) GetTypeCode ¶

func (o *AmfEventReport) GetTypeCode() string

GetTypeCode returns the TypeCode field value if set, zero value otherwise.

func (*AmfEventReport) GetTypeCodeOk ¶

func (o *AmfEventReport) GetTypeCodeOk() (*string, bool)

GetTypeCodeOk returns a tuple with the TypeCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetTypeOk ¶

func (o *AmfEventReport) GetTypeOk() (*AmfEventType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*AmfEventReport) GetUeAccessBehaviorTrends ¶

func (o *AmfEventReport) GetUeAccessBehaviorTrends() []UeAccessBehaviorReportItem

GetUeAccessBehaviorTrends returns the UeAccessBehaviorTrends field value if set, zero value otherwise.

func (*AmfEventReport) GetUeAccessBehaviorTrendsOk ¶

func (o *AmfEventReport) GetUeAccessBehaviorTrendsOk() ([]UeAccessBehaviorReportItem, bool)

GetUeAccessBehaviorTrendsOk returns a tuple with the UeAccessBehaviorTrends field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetUeIdExt ¶

func (o *AmfEventReport) GetUeIdExt() []UEIdExt

GetUeIdExt returns the UeIdExt field value if set, zero value otherwise.

func (*AmfEventReport) GetUeIdExtOk ¶

func (o *AmfEventReport) GetUeIdExtOk() ([]UEIdExt, bool)

GetUeIdExtOk returns a tuple with the UeIdExt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetUeLocationTrends ¶

func (o *AmfEventReport) GetUeLocationTrends() []UeLocationTrendsReportItem

GetUeLocationTrends returns the UeLocationTrends field value if set, zero value otherwise.

func (*AmfEventReport) GetUeLocationTrendsOk ¶

func (o *AmfEventReport) GetUeLocationTrendsOk() ([]UeLocationTrendsReportItem, bool)

GetUeLocationTrendsOk returns a tuple with the UeLocationTrends field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) GetVar5gsUserStateList ¶

func (o *AmfEventReport) GetVar5gsUserStateList() []Model5GsUserStateInfo

GetVar5gsUserStateList returns the Var5gsUserStateList field value if set, zero value otherwise.

func (*AmfEventReport) GetVar5gsUserStateListOk ¶

func (o *AmfEventReport) GetVar5gsUserStateListOk() ([]Model5GsUserStateInfo, bool)

GetVar5gsUserStateListOk returns a tuple with the Var5gsUserStateList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventReport) HasAccessTypeList ¶

func (o *AmfEventReport) HasAccessTypeList() bool

HasAccessTypeList returns a boolean if a field has been set.

func (*AmfEventReport) HasAdditionalLocation ¶

func (o *AmfEventReport) HasAdditionalLocation() bool

HasAdditionalLocation returns a boolean if a field has been set.

func (*AmfEventReport) HasAnyUe ¶

func (o *AmfEventReport) HasAnyUe() bool

HasAnyUe returns a boolean if a field has been set.

func (*AmfEventReport) HasAreaList ¶

func (o *AmfEventReport) HasAreaList() bool

HasAreaList returns a boolean if a field has been set.

func (*AmfEventReport) HasCmInfoList ¶

func (o *AmfEventReport) HasCmInfoList() bool

HasCmInfoList returns a boolean if a field has been set.

func (*AmfEventReport) HasCommFailure ¶

func (o *AmfEventReport) HasCommFailure() bool

HasCommFailure returns a boolean if a field has been set.

func (*AmfEventReport) HasGpsi ¶

func (o *AmfEventReport) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*AmfEventReport) HasIdleStatusIndication ¶

func (o *AmfEventReport) HasIdleStatusIndication() bool

HasIdleStatusIndication returns a boolean if a field has been set.

func (*AmfEventReport) HasLocation ¶

func (o *AmfEventReport) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*AmfEventReport) HasLossOfConnectReason ¶

func (o *AmfEventReport) HasLossOfConnectReason() bool

HasLossOfConnectReason returns a boolean if a field has been set.

func (*AmfEventReport) HasMaxAvailabilityTime ¶

func (o *AmfEventReport) HasMaxAvailabilityTime() bool

HasMaxAvailabilityTime returns a boolean if a field has been set.

func (*AmfEventReport) HasMmTransLocationReportList ¶

func (o *AmfEventReport) HasMmTransLocationReportList() bool

HasMmTransLocationReportList returns a boolean if a field has been set.

func (*AmfEventReport) HasMmTransSliceReportList ¶

func (o *AmfEventReport) HasMmTransSliceReportList() bool

HasMmTransSliceReportList returns a boolean if a field has been set.

func (*AmfEventReport) HasNumberOfUes ¶

func (o *AmfEventReport) HasNumberOfUes() bool

HasNumberOfUes returns a boolean if a field has been set.

func (*AmfEventReport) HasPei ¶

func (o *AmfEventReport) HasPei() bool

HasPei returns a boolean if a field has been set.

func (*AmfEventReport) HasReachability ¶

func (o *AmfEventReport) HasReachability() bool

HasReachability returns a boolean if a field has been set.

func (*AmfEventReport) HasRefId ¶

func (o *AmfEventReport) HasRefId() bool

HasRefId returns a boolean if a field has been set.

func (*AmfEventReport) HasRegistrationNumber ¶

func (o *AmfEventReport) HasRegistrationNumber() bool

HasRegistrationNumber returns a boolean if a field has been set.

func (*AmfEventReport) HasRmInfoList ¶

func (o *AmfEventReport) HasRmInfoList() bool

HasRmInfoList returns a boolean if a field has been set.

func (*AmfEventReport) HasSnssaiTaiList ¶

func (o *AmfEventReport) HasSnssaiTaiList() bool

HasSnssaiTaiList returns a boolean if a field has been set.

func (*AmfEventReport) HasSubscriptionId ¶

func (o *AmfEventReport) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*AmfEventReport) HasSupi ¶

func (o *AmfEventReport) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (*AmfEventReport) HasTermReason ¶

func (o *AmfEventReport) HasTermReason() bool

HasTermReason returns a boolean if a field has been set.

func (*AmfEventReport) HasTimezone ¶

func (o *AmfEventReport) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*AmfEventReport) HasTypeCode ¶

func (o *AmfEventReport) HasTypeCode() bool

HasTypeCode returns a boolean if a field has been set.

func (*AmfEventReport) HasUeAccessBehaviorTrends ¶

func (o *AmfEventReport) HasUeAccessBehaviorTrends() bool

HasUeAccessBehaviorTrends returns a boolean if a field has been set.

func (*AmfEventReport) HasUeIdExt ¶

func (o *AmfEventReport) HasUeIdExt() bool

HasUeIdExt returns a boolean if a field has been set.

func (*AmfEventReport) HasUeLocationTrends ¶

func (o *AmfEventReport) HasUeLocationTrends() bool

HasUeLocationTrends returns a boolean if a field has been set.

func (*AmfEventReport) HasVar5gsUserStateList ¶

func (o *AmfEventReport) HasVar5gsUserStateList() bool

HasVar5gsUserStateList returns a boolean if a field has been set.

func (AmfEventReport) MarshalJSON ¶

func (o AmfEventReport) MarshalJSON() ([]byte, error)

func (*AmfEventReport) SetAccessTypeList ¶

func (o *AmfEventReport) SetAccessTypeList(v []AccessType)

SetAccessTypeList gets a reference to the given []AccessType and assigns it to the AccessTypeList field.

func (*AmfEventReport) SetAdditionalLocation ¶

func (o *AmfEventReport) SetAdditionalLocation(v UserLocation)

SetAdditionalLocation gets a reference to the given UserLocation and assigns it to the AdditionalLocation field.

func (*AmfEventReport) SetAnyUe ¶

func (o *AmfEventReport) SetAnyUe(v bool)

SetAnyUe gets a reference to the given bool and assigns it to the AnyUe field.

func (*AmfEventReport) SetAreaList ¶

func (o *AmfEventReport) SetAreaList(v []AmfEventArea)

SetAreaList gets a reference to the given []AmfEventArea and assigns it to the AreaList field.

func (*AmfEventReport) SetCmInfoList ¶

func (o *AmfEventReport) SetCmInfoList(v []CmInfo)

SetCmInfoList gets a reference to the given []CmInfo and assigns it to the CmInfoList field.

func (*AmfEventReport) SetCommFailure ¶

func (o *AmfEventReport) SetCommFailure(v CommunicationFailure)

SetCommFailure gets a reference to the given CommunicationFailure and assigns it to the CommFailure field.

func (*AmfEventReport) SetGpsi ¶

func (o *AmfEventReport) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*AmfEventReport) SetIdleStatusIndication ¶

func (o *AmfEventReport) SetIdleStatusIndication(v IdleStatusIndication)

SetIdleStatusIndication gets a reference to the given IdleStatusIndication and assigns it to the IdleStatusIndication field.

func (*AmfEventReport) SetLocation ¶

func (o *AmfEventReport) SetLocation(v UserLocation)

SetLocation gets a reference to the given UserLocation and assigns it to the Location field.

func (*AmfEventReport) SetLossOfConnectReason ¶

func (o *AmfEventReport) SetLossOfConnectReason(v LossOfConnectivityReason)

SetLossOfConnectReason gets a reference to the given LossOfConnectivityReason and assigns it to the LossOfConnectReason field.

func (*AmfEventReport) SetMaxAvailabilityTime ¶

func (o *AmfEventReport) SetMaxAvailabilityTime(v time.Time)

SetMaxAvailabilityTime gets a reference to the given time.Time and assigns it to the MaxAvailabilityTime field.

func (*AmfEventReport) SetMmTransLocationReportList ¶

func (o *AmfEventReport) SetMmTransLocationReportList(v []MmTransactionLocationReportItem)

SetMmTransLocationReportList gets a reference to the given []MmTransactionLocationReportItem and assigns it to the MmTransLocationReportList field.

func (*AmfEventReport) SetMmTransSliceReportList ¶

func (o *AmfEventReport) SetMmTransSliceReportList(v []MmTransactionSliceReportItem)

SetMmTransSliceReportList gets a reference to the given []MmTransactionSliceReportItem and assigns it to the MmTransSliceReportList field.

func (*AmfEventReport) SetNumberOfUes ¶

func (o *AmfEventReport) SetNumberOfUes(v int32)

SetNumberOfUes gets a reference to the given int32 and assigns it to the NumberOfUes field.

func (*AmfEventReport) SetPei ¶

func (o *AmfEventReport) SetPei(v string)

SetPei gets a reference to the given string and assigns it to the Pei field.

func (*AmfEventReport) SetReachability ¶

func (o *AmfEventReport) SetReachability(v UeReachability)

SetReachability gets a reference to the given UeReachability and assigns it to the Reachability field.

func (*AmfEventReport) SetRefId ¶

func (o *AmfEventReport) SetRefId(v int32)

SetRefId gets a reference to the given int32 and assigns it to the RefId field.

func (*AmfEventReport) SetRegistrationNumber ¶

func (o *AmfEventReport) SetRegistrationNumber(v int32)

SetRegistrationNumber gets a reference to the given int32 and assigns it to the RegistrationNumber field.

func (*AmfEventReport) SetRmInfoList ¶

func (o *AmfEventReport) SetRmInfoList(v []RmInfo)

SetRmInfoList gets a reference to the given []RmInfo and assigns it to the RmInfoList field.

func (*AmfEventReport) SetSnssaiTaiList ¶

func (o *AmfEventReport) SetSnssaiTaiList(v []SnssaiTaiMapping)

SetSnssaiTaiList gets a reference to the given []SnssaiTaiMapping and assigns it to the SnssaiTaiList field.

func (*AmfEventReport) SetState ¶

func (o *AmfEventReport) SetState(v AmfEventState)

SetState sets field value

func (*AmfEventReport) SetSubscriptionId ¶

func (o *AmfEventReport) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given string and assigns it to the SubscriptionId field.

func (*AmfEventReport) SetSupi ¶

func (o *AmfEventReport) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (*AmfEventReport) SetTermReason ¶

func (o *AmfEventReport) SetTermReason(v SubTerminationReason)

SetTermReason gets a reference to the given SubTerminationReason and assigns it to the TermReason field.

func (*AmfEventReport) SetTimeStamp ¶

func (o *AmfEventReport) SetTimeStamp(v time.Time)

SetTimeStamp sets field value

func (*AmfEventReport) SetTimezone ¶

func (o *AmfEventReport) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*AmfEventReport) SetType ¶

func (o *AmfEventReport) SetType(v AmfEventType)

SetType sets field value

func (*AmfEventReport) SetTypeCode ¶

func (o *AmfEventReport) SetTypeCode(v string)

SetTypeCode gets a reference to the given string and assigns it to the TypeCode field.

func (*AmfEventReport) SetUeAccessBehaviorTrends ¶

func (o *AmfEventReport) SetUeAccessBehaviorTrends(v []UeAccessBehaviorReportItem)

SetUeAccessBehaviorTrends gets a reference to the given []UeAccessBehaviorReportItem and assigns it to the UeAccessBehaviorTrends field.

func (*AmfEventReport) SetUeIdExt ¶

func (o *AmfEventReport) SetUeIdExt(v []UEIdExt)

SetUeIdExt gets a reference to the given []UEIdExt and assigns it to the UeIdExt field.

func (*AmfEventReport) SetUeLocationTrends ¶

func (o *AmfEventReport) SetUeLocationTrends(v []UeLocationTrendsReportItem)

SetUeLocationTrends gets a reference to the given []UeLocationTrendsReportItem and assigns it to the UeLocationTrends field.

func (*AmfEventReport) SetVar5gsUserStateList ¶

func (o *AmfEventReport) SetVar5gsUserStateList(v []Model5GsUserStateInfo)

SetVar5gsUserStateList gets a reference to the given []Model5GsUserStateInfo and assigns it to the Var5gsUserStateList field.

func (AmfEventReport) ToMap ¶

func (o AmfEventReport) ToMap() (map[string]interface{}, error)

type AmfEventState ¶

type AmfEventState struct {
	Active        bool   `json:"active"`
	RemainReports *int32 `json:"remainReports,omitempty"`
	// indicating a time in seconds.
	RemainDuration *int32 `json:"remainDuration,omitempty"`
}

AmfEventState Represents the state of a subscribed event

func NewAmfEventState ¶

func NewAmfEventState(active bool) *AmfEventState

NewAmfEventState instantiates a new AmfEventState 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 NewAmfEventStateWithDefaults ¶

func NewAmfEventStateWithDefaults() *AmfEventState

NewAmfEventStateWithDefaults instantiates a new AmfEventState 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 (*AmfEventState) GetActive ¶

func (o *AmfEventState) GetActive() bool

GetActive returns the Active field value

func (*AmfEventState) GetActiveOk ¶

func (o *AmfEventState) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value and a boolean to check if the value has been set.

func (*AmfEventState) GetRemainDuration ¶

func (o *AmfEventState) GetRemainDuration() int32

GetRemainDuration returns the RemainDuration field value if set, zero value otherwise.

func (*AmfEventState) GetRemainDurationOk ¶

func (o *AmfEventState) GetRemainDurationOk() (*int32, bool)

GetRemainDurationOk returns a tuple with the RemainDuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventState) GetRemainReports ¶

func (o *AmfEventState) GetRemainReports() int32

GetRemainReports returns the RemainReports field value if set, zero value otherwise.

func (*AmfEventState) GetRemainReportsOk ¶

func (o *AmfEventState) GetRemainReportsOk() (*int32, bool)

GetRemainReportsOk returns a tuple with the RemainReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventState) HasRemainDuration ¶

func (o *AmfEventState) HasRemainDuration() bool

HasRemainDuration returns a boolean if a field has been set.

func (*AmfEventState) HasRemainReports ¶

func (o *AmfEventState) HasRemainReports() bool

HasRemainReports returns a boolean if a field has been set.

func (AmfEventState) MarshalJSON ¶

func (o AmfEventState) MarshalJSON() ([]byte, error)

func (*AmfEventState) SetActive ¶

func (o *AmfEventState) SetActive(v bool)

SetActive sets field value

func (*AmfEventState) SetRemainDuration ¶

func (o *AmfEventState) SetRemainDuration(v int32)

SetRemainDuration gets a reference to the given int32 and assigns it to the RemainDuration field.

func (*AmfEventState) SetRemainReports ¶

func (o *AmfEventState) SetRemainReports(v int32)

SetRemainReports gets a reference to the given int32 and assigns it to the RemainReports field.

func (AmfEventState) ToMap ¶

func (o AmfEventState) ToMap() (map[string]interface{}, error)

type AmfEventSubsSyncInfo ¶

type AmfEventSubsSyncInfo struct {
	SubscriptionList []AmfEventSubscriptionInfo `json:"subscriptionList"`
}

AmfEventSubsSyncInfo AMF Event Subscriptions Information for synchronization

func NewAmfEventSubsSyncInfo ¶

func NewAmfEventSubsSyncInfo(subscriptionList []AmfEventSubscriptionInfo) *AmfEventSubsSyncInfo

NewAmfEventSubsSyncInfo instantiates a new AmfEventSubsSyncInfo 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 NewAmfEventSubsSyncInfoWithDefaults ¶

func NewAmfEventSubsSyncInfoWithDefaults() *AmfEventSubsSyncInfo

NewAmfEventSubsSyncInfoWithDefaults instantiates a new AmfEventSubsSyncInfo 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 (*AmfEventSubsSyncInfo) GetSubscriptionList ¶

func (o *AmfEventSubsSyncInfo) GetSubscriptionList() []AmfEventSubscriptionInfo

GetSubscriptionList returns the SubscriptionList field value

func (*AmfEventSubsSyncInfo) GetSubscriptionListOk ¶

func (o *AmfEventSubsSyncInfo) GetSubscriptionListOk() ([]AmfEventSubscriptionInfo, bool)

GetSubscriptionListOk returns a tuple with the SubscriptionList field value and a boolean to check if the value has been set.

func (AmfEventSubsSyncInfo) MarshalJSON ¶

func (o AmfEventSubsSyncInfo) MarshalJSON() ([]byte, error)

func (*AmfEventSubsSyncInfo) SetSubscriptionList ¶

func (o *AmfEventSubsSyncInfo) SetSubscriptionList(v []AmfEventSubscriptionInfo)

SetSubscriptionList sets field value

func (AmfEventSubsSyncInfo) ToMap ¶

func (o AmfEventSubsSyncInfo) ToMap() (map[string]interface{}, error)

type AmfEventSubscription ¶

type AmfEventSubscription struct {
	EventList []AmfEvent `json:"eventList"`
	// String providing an URI formatted according to RFC 3986.
	EventNotifyUri      string `json:"eventNotifyUri"`
	NotifyCorrelationId string `json:"notifyCorrelationId"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	NfId string `json:"nfId"`
	// String providing an URI formatted according to RFC 3986.
	SubsChangeNotifyUri           *string `json:"subsChangeNotifyUri,omitempty"`
	SubsChangeNotifyCorrelationId *string `json:"subsChangeNotifyCorrelationId,omitempty"`
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,omitempty"`
	// String identifying a group of devices network internal globally unique ID which identifies a set of IMSIs, as specified in clause 19.9 of 3GPP TS 23.003.
	GroupId         *string  `json:"groupId,omitempty"`
	ExcludeSupiList []string `json:"excludeSupiList,omitempty"`
	ExcludeGpsiList []string `json:"excludeGpsiList,omitempty"`
	IncludeSupiList []string `json:"includeSupiList,omitempty"`
	IncludeGpsiList []string `json:"includeGpsiList,omitempty"`
	// 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.
	Gpsi *string `json:"gpsi,omitempty"`
	// String representing a Permanent Equipment Identifier that may contain - an IMEI or IMEISV, as  specified in clause 6.2 of 3GPP TS 23.003; a MAC address for a 5G-RG or FN-RG via  wireline  access, with an indication that this address cannot be trusted for regulatory purpose if this  address cannot be used as an Equipment Identifier of the FN-RG, as specified in clause 4.7.7  of 3GPP TS23.316. Examples are imei-012345678901234 or imeisv-0123456789012345.
	Pei           *string       `json:"pei,omitempty"`
	AnyUE         *bool         `json:"anyUE,omitempty"`
	Options       *AmfEventMode `json:"options,omitempty"`
	SourceNfType  *NFType       `json:"sourceNfType,omitempty"`
	TermNotifyInd *bool         `json:"termNotifyInd,omitempty"`
}

AmfEventSubscription Represents an individual event subscription resource on AMF

func NewAmfEventSubscription ¶

func NewAmfEventSubscription(eventList []AmfEvent, eventNotifyUri string, notifyCorrelationId string, nfId string) *AmfEventSubscription

NewAmfEventSubscription instantiates a new AmfEventSubscription 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 NewAmfEventSubscriptionWithDefaults ¶

func NewAmfEventSubscriptionWithDefaults() *AmfEventSubscription

NewAmfEventSubscriptionWithDefaults instantiates a new AmfEventSubscription 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 (*AmfEventSubscription) GetAnyUE ¶

func (o *AmfEventSubscription) GetAnyUE() bool

GetAnyUE returns the AnyUE field value if set, zero value otherwise.

func (*AmfEventSubscription) GetAnyUEOk ¶

func (o *AmfEventSubscription) GetAnyUEOk() (*bool, bool)

GetAnyUEOk returns a tuple with the AnyUE field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetEventList ¶

func (o *AmfEventSubscription) GetEventList() []AmfEvent

GetEventList returns the EventList field value

func (*AmfEventSubscription) GetEventListOk ¶

func (o *AmfEventSubscription) GetEventListOk() ([]AmfEvent, bool)

GetEventListOk returns a tuple with the EventList field value and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetEventNotifyUri ¶

func (o *AmfEventSubscription) GetEventNotifyUri() string

GetEventNotifyUri returns the EventNotifyUri field value

func (*AmfEventSubscription) GetEventNotifyUriOk ¶

func (o *AmfEventSubscription) GetEventNotifyUriOk() (*string, bool)

GetEventNotifyUriOk returns a tuple with the EventNotifyUri field value and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetExcludeGpsiList ¶

func (o *AmfEventSubscription) GetExcludeGpsiList() []string

GetExcludeGpsiList returns the ExcludeGpsiList field value if set, zero value otherwise.

func (*AmfEventSubscription) GetExcludeGpsiListOk ¶

func (o *AmfEventSubscription) GetExcludeGpsiListOk() ([]string, bool)

GetExcludeGpsiListOk returns a tuple with the ExcludeGpsiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetExcludeSupiList ¶

func (o *AmfEventSubscription) GetExcludeSupiList() []string

GetExcludeSupiList returns the ExcludeSupiList field value if set, zero value otherwise.

func (*AmfEventSubscription) GetExcludeSupiListOk ¶

func (o *AmfEventSubscription) GetExcludeSupiListOk() ([]string, bool)

GetExcludeSupiListOk returns a tuple with the ExcludeSupiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetGpsi ¶

func (o *AmfEventSubscription) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*AmfEventSubscription) GetGpsiOk ¶

func (o *AmfEventSubscription) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetGroupId ¶

func (o *AmfEventSubscription) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*AmfEventSubscription) GetGroupIdOk ¶

func (o *AmfEventSubscription) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetIncludeGpsiList ¶

func (o *AmfEventSubscription) GetIncludeGpsiList() []string

GetIncludeGpsiList returns the IncludeGpsiList field value if set, zero value otherwise.

func (*AmfEventSubscription) GetIncludeGpsiListOk ¶

func (o *AmfEventSubscription) GetIncludeGpsiListOk() ([]string, bool)

GetIncludeGpsiListOk returns a tuple with the IncludeGpsiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetIncludeSupiList ¶

func (o *AmfEventSubscription) GetIncludeSupiList() []string

GetIncludeSupiList returns the IncludeSupiList field value if set, zero value otherwise.

func (*AmfEventSubscription) GetIncludeSupiListOk ¶

func (o *AmfEventSubscription) GetIncludeSupiListOk() ([]string, bool)

GetIncludeSupiListOk returns a tuple with the IncludeSupiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetNfId ¶

func (o *AmfEventSubscription) GetNfId() string

GetNfId returns the NfId field value

func (*AmfEventSubscription) GetNfIdOk ¶

func (o *AmfEventSubscription) GetNfIdOk() (*string, bool)

GetNfIdOk returns a tuple with the NfId field value and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetNotifyCorrelationId ¶

func (o *AmfEventSubscription) GetNotifyCorrelationId() string

GetNotifyCorrelationId returns the NotifyCorrelationId field value

func (*AmfEventSubscription) GetNotifyCorrelationIdOk ¶

func (o *AmfEventSubscription) GetNotifyCorrelationIdOk() (*string, bool)

GetNotifyCorrelationIdOk returns a tuple with the NotifyCorrelationId field value and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetOptions ¶

func (o *AmfEventSubscription) GetOptions() AmfEventMode

GetOptions returns the Options field value if set, zero value otherwise.

func (*AmfEventSubscription) GetOptionsOk ¶

func (o *AmfEventSubscription) GetOptionsOk() (*AmfEventMode, bool)

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetPei ¶

func (o *AmfEventSubscription) GetPei() string

GetPei returns the Pei field value if set, zero value otherwise.

func (*AmfEventSubscription) GetPeiOk ¶

func (o *AmfEventSubscription) GetPeiOk() (*string, bool)

GetPeiOk returns a tuple with the Pei field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetSourceNfType ¶

func (o *AmfEventSubscription) GetSourceNfType() NFType

GetSourceNfType returns the SourceNfType field value if set, zero value otherwise.

func (*AmfEventSubscription) GetSourceNfTypeOk ¶

func (o *AmfEventSubscription) GetSourceNfTypeOk() (*NFType, bool)

GetSourceNfTypeOk returns a tuple with the SourceNfType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetSubsChangeNotifyCorrelationId ¶

func (o *AmfEventSubscription) GetSubsChangeNotifyCorrelationId() string

GetSubsChangeNotifyCorrelationId returns the SubsChangeNotifyCorrelationId field value if set, zero value otherwise.

func (*AmfEventSubscription) GetSubsChangeNotifyCorrelationIdOk ¶

func (o *AmfEventSubscription) GetSubsChangeNotifyCorrelationIdOk() (*string, bool)

GetSubsChangeNotifyCorrelationIdOk returns a tuple with the SubsChangeNotifyCorrelationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetSubsChangeNotifyUri ¶

func (o *AmfEventSubscription) GetSubsChangeNotifyUri() string

GetSubsChangeNotifyUri returns the SubsChangeNotifyUri field value if set, zero value otherwise.

func (*AmfEventSubscription) GetSubsChangeNotifyUriOk ¶

func (o *AmfEventSubscription) GetSubsChangeNotifyUriOk() (*string, bool)

GetSubsChangeNotifyUriOk returns a tuple with the SubsChangeNotifyUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetSupi ¶

func (o *AmfEventSubscription) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*AmfEventSubscription) GetSupiOk ¶

func (o *AmfEventSubscription) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) GetTermNotifyInd ¶

func (o *AmfEventSubscription) GetTermNotifyInd() bool

GetTermNotifyInd returns the TermNotifyInd field value if set, zero value otherwise.

func (*AmfEventSubscription) GetTermNotifyIndOk ¶

func (o *AmfEventSubscription) GetTermNotifyIndOk() (*bool, bool)

GetTermNotifyIndOk returns a tuple with the TermNotifyInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscription) HasAnyUE ¶

func (o *AmfEventSubscription) HasAnyUE() bool

HasAnyUE returns a boolean if a field has been set.

func (*AmfEventSubscription) HasExcludeGpsiList ¶

func (o *AmfEventSubscription) HasExcludeGpsiList() bool

HasExcludeGpsiList returns a boolean if a field has been set.

func (*AmfEventSubscription) HasExcludeSupiList ¶

func (o *AmfEventSubscription) HasExcludeSupiList() bool

HasExcludeSupiList returns a boolean if a field has been set.

func (*AmfEventSubscription) HasGpsi ¶

func (o *AmfEventSubscription) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*AmfEventSubscription) HasGroupId ¶

func (o *AmfEventSubscription) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*AmfEventSubscription) HasIncludeGpsiList ¶

func (o *AmfEventSubscription) HasIncludeGpsiList() bool

HasIncludeGpsiList returns a boolean if a field has been set.

func (*AmfEventSubscription) HasIncludeSupiList ¶

func (o *AmfEventSubscription) HasIncludeSupiList() bool

HasIncludeSupiList returns a boolean if a field has been set.

func (*AmfEventSubscription) HasOptions ¶

func (o *AmfEventSubscription) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*AmfEventSubscription) HasPei ¶

func (o *AmfEventSubscription) HasPei() bool

HasPei returns a boolean if a field has been set.

func (*AmfEventSubscription) HasSourceNfType ¶

func (o *AmfEventSubscription) HasSourceNfType() bool

HasSourceNfType returns a boolean if a field has been set.

func (*AmfEventSubscription) HasSubsChangeNotifyCorrelationId ¶

func (o *AmfEventSubscription) HasSubsChangeNotifyCorrelationId() bool

HasSubsChangeNotifyCorrelationId returns a boolean if a field has been set.

func (*AmfEventSubscription) HasSubsChangeNotifyUri ¶

func (o *AmfEventSubscription) HasSubsChangeNotifyUri() bool

HasSubsChangeNotifyUri returns a boolean if a field has been set.

func (*AmfEventSubscription) HasSupi ¶

func (o *AmfEventSubscription) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (*AmfEventSubscription) HasTermNotifyInd ¶

func (o *AmfEventSubscription) HasTermNotifyInd() bool

HasTermNotifyInd returns a boolean if a field has been set.

func (AmfEventSubscription) MarshalJSON ¶

func (o AmfEventSubscription) MarshalJSON() ([]byte, error)

func (*AmfEventSubscription) SetAnyUE ¶

func (o *AmfEventSubscription) SetAnyUE(v bool)

SetAnyUE gets a reference to the given bool and assigns it to the AnyUE field.

func (*AmfEventSubscription) SetEventList ¶

func (o *AmfEventSubscription) SetEventList(v []AmfEvent)

SetEventList sets field value

func (*AmfEventSubscription) SetEventNotifyUri ¶

func (o *AmfEventSubscription) SetEventNotifyUri(v string)

SetEventNotifyUri sets field value

func (*AmfEventSubscription) SetExcludeGpsiList ¶

func (o *AmfEventSubscription) SetExcludeGpsiList(v []string)

SetExcludeGpsiList gets a reference to the given []string and assigns it to the ExcludeGpsiList field.

func (*AmfEventSubscription) SetExcludeSupiList ¶

func (o *AmfEventSubscription) SetExcludeSupiList(v []string)

SetExcludeSupiList gets a reference to the given []string and assigns it to the ExcludeSupiList field.

func (*AmfEventSubscription) SetGpsi ¶

func (o *AmfEventSubscription) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*AmfEventSubscription) SetGroupId ¶

func (o *AmfEventSubscription) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*AmfEventSubscription) SetIncludeGpsiList ¶

func (o *AmfEventSubscription) SetIncludeGpsiList(v []string)

SetIncludeGpsiList gets a reference to the given []string and assigns it to the IncludeGpsiList field.

func (*AmfEventSubscription) SetIncludeSupiList ¶

func (o *AmfEventSubscription) SetIncludeSupiList(v []string)

SetIncludeSupiList gets a reference to the given []string and assigns it to the IncludeSupiList field.

func (*AmfEventSubscription) SetNfId ¶

func (o *AmfEventSubscription) SetNfId(v string)

SetNfId sets field value

func (*AmfEventSubscription) SetNotifyCorrelationId ¶

func (o *AmfEventSubscription) SetNotifyCorrelationId(v string)

SetNotifyCorrelationId sets field value

func (*AmfEventSubscription) SetOptions ¶

func (o *AmfEventSubscription) SetOptions(v AmfEventMode)

SetOptions gets a reference to the given AmfEventMode and assigns it to the Options field.

func (*AmfEventSubscription) SetPei ¶

func (o *AmfEventSubscription) SetPei(v string)

SetPei gets a reference to the given string and assigns it to the Pei field.

func (*AmfEventSubscription) SetSourceNfType ¶

func (o *AmfEventSubscription) SetSourceNfType(v NFType)

SetSourceNfType gets a reference to the given NFType and assigns it to the SourceNfType field.

func (*AmfEventSubscription) SetSubsChangeNotifyCorrelationId ¶

func (o *AmfEventSubscription) SetSubsChangeNotifyCorrelationId(v string)

SetSubsChangeNotifyCorrelationId gets a reference to the given string and assigns it to the SubsChangeNotifyCorrelationId field.

func (*AmfEventSubscription) SetSubsChangeNotifyUri ¶

func (o *AmfEventSubscription) SetSubsChangeNotifyUri(v string)

SetSubsChangeNotifyUri gets a reference to the given string and assigns it to the SubsChangeNotifyUri field.

func (*AmfEventSubscription) SetSupi ¶

func (o *AmfEventSubscription) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (*AmfEventSubscription) SetTermNotifyInd ¶

func (o *AmfEventSubscription) SetTermNotifyInd(v bool)

SetTermNotifyInd gets a reference to the given bool and assigns it to the TermNotifyInd field.

func (AmfEventSubscription) ToMap ¶

func (o AmfEventSubscription) ToMap() (map[string]interface{}, error)

type AmfEventSubscriptionInfo ¶

type AmfEventSubscriptionInfo struct {
	// String providing an URI formatted according to RFC 3986.
	SubId               string  `json:"subId"`
	NotifyCorrelationId *string `json:"notifyCorrelationId,omitempty"`
	RefIdList           []int32 `json:"refIdList"`
	// String providing an URI formatted according to RFC 3986.
	OldSubId *string `json:"oldSubId,omitempty"`
}

AmfEventSubscriptionInfo Individual AMF Event Subscription Information

func NewAmfEventSubscriptionInfo ¶

func NewAmfEventSubscriptionInfo(subId string, refIdList []int32) *AmfEventSubscriptionInfo

NewAmfEventSubscriptionInfo instantiates a new AmfEventSubscriptionInfo 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 NewAmfEventSubscriptionInfoWithDefaults ¶

func NewAmfEventSubscriptionInfoWithDefaults() *AmfEventSubscriptionInfo

NewAmfEventSubscriptionInfoWithDefaults instantiates a new AmfEventSubscriptionInfo 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 (*AmfEventSubscriptionInfo) GetNotifyCorrelationId ¶

func (o *AmfEventSubscriptionInfo) GetNotifyCorrelationId() string

GetNotifyCorrelationId returns the NotifyCorrelationId field value if set, zero value otherwise.

func (*AmfEventSubscriptionInfo) GetNotifyCorrelationIdOk ¶

func (o *AmfEventSubscriptionInfo) GetNotifyCorrelationIdOk() (*string, bool)

GetNotifyCorrelationIdOk returns a tuple with the NotifyCorrelationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscriptionInfo) GetOldSubId ¶

func (o *AmfEventSubscriptionInfo) GetOldSubId() string

GetOldSubId returns the OldSubId field value if set, zero value otherwise.

func (*AmfEventSubscriptionInfo) GetOldSubIdOk ¶

func (o *AmfEventSubscriptionInfo) GetOldSubIdOk() (*string, bool)

GetOldSubIdOk returns a tuple with the OldSubId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfEventSubscriptionInfo) GetRefIdList ¶

func (o *AmfEventSubscriptionInfo) GetRefIdList() []int32

GetRefIdList returns the RefIdList field value

func (*AmfEventSubscriptionInfo) GetRefIdListOk ¶

func (o *AmfEventSubscriptionInfo) GetRefIdListOk() ([]int32, bool)

GetRefIdListOk returns a tuple with the RefIdList field value and a boolean to check if the value has been set.

func (*AmfEventSubscriptionInfo) GetSubId ¶

func (o *AmfEventSubscriptionInfo) GetSubId() string

GetSubId returns the SubId field value

func (*AmfEventSubscriptionInfo) GetSubIdOk ¶

func (o *AmfEventSubscriptionInfo) GetSubIdOk() (*string, bool)

GetSubIdOk returns a tuple with the SubId field value and a boolean to check if the value has been set.

func (*AmfEventSubscriptionInfo) HasNotifyCorrelationId ¶

func (o *AmfEventSubscriptionInfo) HasNotifyCorrelationId() bool

HasNotifyCorrelationId returns a boolean if a field has been set.

func (*AmfEventSubscriptionInfo) HasOldSubId ¶

func (o *AmfEventSubscriptionInfo) HasOldSubId() bool

HasOldSubId returns a boolean if a field has been set.

func (AmfEventSubscriptionInfo) MarshalJSON ¶

func (o AmfEventSubscriptionInfo) MarshalJSON() ([]byte, error)

func (*AmfEventSubscriptionInfo) SetNotifyCorrelationId ¶

func (o *AmfEventSubscriptionInfo) SetNotifyCorrelationId(v string)

SetNotifyCorrelationId gets a reference to the given string and assigns it to the NotifyCorrelationId field.

func (*AmfEventSubscriptionInfo) SetOldSubId ¶

func (o *AmfEventSubscriptionInfo) SetOldSubId(v string)

SetOldSubId gets a reference to the given string and assigns it to the OldSubId field.

func (*AmfEventSubscriptionInfo) SetRefIdList ¶

func (o *AmfEventSubscriptionInfo) SetRefIdList(v []int32)

SetRefIdList sets field value

func (*AmfEventSubscriptionInfo) SetSubId ¶

func (o *AmfEventSubscriptionInfo) SetSubId(v string)

SetSubId sets field value

func (AmfEventSubscriptionInfo) ToMap ¶

func (o AmfEventSubscriptionInfo) ToMap() (map[string]interface{}, error)

type AmfEventTrigger ¶

type AmfEventTrigger struct {
	String *string
}

AmfEventTrigger Describes how AMF should generate the report for the event

func (*AmfEventTrigger) MarshalJSON ¶

func (src *AmfEventTrigger) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*AmfEventTrigger) UnmarshalJSON ¶

func (dst *AmfEventTrigger) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type AmfEventType ¶

type AmfEventType struct {
	String *string
}

AmfEventType Describes the supported event types of Namf_EventExposure Service

func (*AmfEventType) MarshalJSON ¶

func (src *AmfEventType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*AmfEventType) UnmarshalJSON ¶

func (dst *AmfEventType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type AmfInfo ¶

type AmfInfo struct {
	// String identifying the AMF Set ID (10 bits) as specified in clause 2.10.1 of 3GPP TS 23.003.  It is encoded as a string of 3 hexadecimal characters where the first character is limited to  values 0 to 3 (i.e. 10 bits).
	AmfSetId string `json:"amfSetId"`
	// String identifying the AMF Set ID (10 bits) as specified in clause 2.10.1 of 3GPP TS 23.003.  It is encoded as a string of 3 hexadecimal characters where the first character is limited to  values 0 to 3 (i.e. 10 bits)
	AmfRegionId             string              `json:"amfRegionId"`
	GuamiList               []Guami             `json:"guamiList"`
	TaiList                 []Tai               `json:"taiList,omitempty"`
	TaiRangeList            []TaiRange          `json:"taiRangeList,omitempty"`
	BackupInfoAmfFailure    []Guami             `json:"backupInfoAmfFailure,omitempty"`
	BackupInfoAmfRemoval    []Guami             `json:"backupInfoAmfRemoval,omitempty"`
	N2InterfaceAmfInfo      *N2InterfaceAmfInfo `json:"n2InterfaceAmfInfo,omitempty"`
	AmfOnboardingCapability *bool               `json:"amfOnboardingCapability,omitempty"`
}

AmfInfo Information of an AMF NF Instance

func NewAmfInfo ¶

func NewAmfInfo(amfSetId string, amfRegionId string, guamiList []Guami) *AmfInfo

NewAmfInfo instantiates a new AmfInfo 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 NewAmfInfoWithDefaults ¶

func NewAmfInfoWithDefaults() *AmfInfo

NewAmfInfoWithDefaults instantiates a new AmfInfo 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 (*AmfInfo) GetAmfOnboardingCapability ¶

func (o *AmfInfo) GetAmfOnboardingCapability() bool

GetAmfOnboardingCapability returns the AmfOnboardingCapability field value if set, zero value otherwise.

func (*AmfInfo) GetAmfOnboardingCapabilityOk ¶

func (o *AmfInfo) GetAmfOnboardingCapabilityOk() (*bool, bool)

GetAmfOnboardingCapabilityOk returns a tuple with the AmfOnboardingCapability field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfInfo) GetAmfRegionId ¶

func (o *AmfInfo) GetAmfRegionId() string

GetAmfRegionId returns the AmfRegionId field value

func (*AmfInfo) GetAmfRegionIdOk ¶

func (o *AmfInfo) GetAmfRegionIdOk() (*string, bool)

GetAmfRegionIdOk returns a tuple with the AmfRegionId field value and a boolean to check if the value has been set.

func (*AmfInfo) GetAmfSetId ¶

func (o *AmfInfo) GetAmfSetId() string

GetAmfSetId returns the AmfSetId field value

func (*AmfInfo) GetAmfSetIdOk ¶

func (o *AmfInfo) GetAmfSetIdOk() (*string, bool)

GetAmfSetIdOk returns a tuple with the AmfSetId field value and a boolean to check if the value has been set.

func (*AmfInfo) GetBackupInfoAmfFailure ¶

func (o *AmfInfo) GetBackupInfoAmfFailure() []Guami

GetBackupInfoAmfFailure returns the BackupInfoAmfFailure field value if set, zero value otherwise.

func (*AmfInfo) GetBackupInfoAmfFailureOk ¶

func (o *AmfInfo) GetBackupInfoAmfFailureOk() ([]Guami, bool)

GetBackupInfoAmfFailureOk returns a tuple with the BackupInfoAmfFailure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfInfo) GetBackupInfoAmfRemoval ¶

func (o *AmfInfo) GetBackupInfoAmfRemoval() []Guami

GetBackupInfoAmfRemoval returns the BackupInfoAmfRemoval field value if set, zero value otherwise.

func (*AmfInfo) GetBackupInfoAmfRemovalOk ¶

func (o *AmfInfo) GetBackupInfoAmfRemovalOk() ([]Guami, bool)

GetBackupInfoAmfRemovalOk returns a tuple with the BackupInfoAmfRemoval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfInfo) GetGuamiList ¶

func (o *AmfInfo) GetGuamiList() []Guami

GetGuamiList returns the GuamiList field value

func (*AmfInfo) GetGuamiListOk ¶

func (o *AmfInfo) GetGuamiListOk() ([]Guami, bool)

GetGuamiListOk returns a tuple with the GuamiList field value and a boolean to check if the value has been set.

func (*AmfInfo) GetN2InterfaceAmfInfo ¶

func (o *AmfInfo) GetN2InterfaceAmfInfo() N2InterfaceAmfInfo

GetN2InterfaceAmfInfo returns the N2InterfaceAmfInfo field value if set, zero value otherwise.

func (*AmfInfo) GetN2InterfaceAmfInfoOk ¶

func (o *AmfInfo) GetN2InterfaceAmfInfoOk() (*N2InterfaceAmfInfo, bool)

GetN2InterfaceAmfInfoOk returns a tuple with the N2InterfaceAmfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfInfo) GetTaiList ¶

func (o *AmfInfo) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*AmfInfo) GetTaiListOk ¶

func (o *AmfInfo) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfInfo) GetTaiRangeList ¶

func (o *AmfInfo) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*AmfInfo) GetTaiRangeListOk ¶

func (o *AmfInfo) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AmfInfo) HasAmfOnboardingCapability ¶

func (o *AmfInfo) HasAmfOnboardingCapability() bool

HasAmfOnboardingCapability returns a boolean if a field has been set.

func (*AmfInfo) HasBackupInfoAmfFailure ¶

func (o *AmfInfo) HasBackupInfoAmfFailure() bool

HasBackupInfoAmfFailure returns a boolean if a field has been set.

func (*AmfInfo) HasBackupInfoAmfRemoval ¶

func (o *AmfInfo) HasBackupInfoAmfRemoval() bool

HasBackupInfoAmfRemoval returns a boolean if a field has been set.

func (*AmfInfo) HasN2InterfaceAmfInfo ¶

func (o *AmfInfo) HasN2InterfaceAmfInfo() bool

HasN2InterfaceAmfInfo returns a boolean if a field has been set.

func (*AmfInfo) HasTaiList ¶

func (o *AmfInfo) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (*AmfInfo) HasTaiRangeList ¶

func (o *AmfInfo) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (AmfInfo) MarshalJSON ¶

func (o AmfInfo) MarshalJSON() ([]byte, error)

func (*AmfInfo) SetAmfOnboardingCapability ¶

func (o *AmfInfo) SetAmfOnboardingCapability(v bool)

SetAmfOnboardingCapability gets a reference to the given bool and assigns it to the AmfOnboardingCapability field.

func (*AmfInfo) SetAmfRegionId ¶

func (o *AmfInfo) SetAmfRegionId(v string)

SetAmfRegionId sets field value

func (*AmfInfo) SetAmfSetId ¶

func (o *AmfInfo) SetAmfSetId(v string)

SetAmfSetId sets field value

func (*AmfInfo) SetBackupInfoAmfFailure ¶

func (o *AmfInfo) SetBackupInfoAmfFailure(v []Guami)

SetBackupInfoAmfFailure gets a reference to the given []Guami and assigns it to the BackupInfoAmfFailure field.

func (*AmfInfo) SetBackupInfoAmfRemoval ¶

func (o *AmfInfo) SetBackupInfoAmfRemoval(v []Guami)

SetBackupInfoAmfRemoval gets a reference to the given []Guami and assigns it to the BackupInfoAmfRemoval field.

func (*AmfInfo) SetGuamiList ¶

func (o *AmfInfo) SetGuamiList(v []Guami)

SetGuamiList sets field value

func (*AmfInfo) SetN2InterfaceAmfInfo ¶

func (o *AmfInfo) SetN2InterfaceAmfInfo(v N2InterfaceAmfInfo)

SetN2InterfaceAmfInfo gets a reference to the given N2InterfaceAmfInfo and assigns it to the N2InterfaceAmfInfo field.

func (*AmfInfo) SetTaiList ¶

func (o *AmfInfo) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (*AmfInfo) SetTaiRangeList ¶

func (o *AmfInfo) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (AmfInfo) ToMap ¶

func (o AmfInfo) ToMap() (map[string]interface{}, error)

type AnNodeType ¶

type AnNodeType struct {
	String *string
}

AnNodeType Access Network Node Type (gNB, ng-eNB...)

func (*AnNodeType) MarshalJSON ¶

func (src *AnNodeType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*AnNodeType) UnmarshalJSON ¶

func (dst *AnNodeType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type AnalyticsMetadata ¶

type AnalyticsMetadata struct {
	String *string
}

AnalyticsMetadata Possible values are: - NUM_OF_SAMPLES: Number of data samples used for the generation of the output analytics. - DATA_WINDOW: Data time window of the data samples. - DATA_STAT_PROPS: Dataset statistical properties of the data used to generate the analytics. - STRATEGY: Output strategy used for the reporting of the analytics. - ACCURACY: Level of accuracy reached for the analytics.

func (*AnalyticsMetadata) MarshalJSON ¶

func (src *AnalyticsMetadata) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*AnalyticsMetadata) UnmarshalJSON ¶

func (dst *AnalyticsMetadata) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type AnalyticsMetadataIndication ¶

type AnalyticsMetadataIndication struct {
	DataWindow    *TimeWindow                  `json:"dataWindow,omitempty"`
	DataStatProps []DatasetStatisticalProperty `json:"dataStatProps,omitempty"`
	Strategy      *OutputStrategy              `json:"strategy,omitempty"`
	AggrNwdafIds  []string                     `json:"aggrNwdafIds,omitempty"`
}

AnalyticsMetadataIndication Contains analytics metadata information requested to be used during analytics generation.

func NewAnalyticsMetadataIndication ¶

func NewAnalyticsMetadataIndication() *AnalyticsMetadataIndication

NewAnalyticsMetadataIndication instantiates a new AnalyticsMetadataIndication 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 NewAnalyticsMetadataIndicationWithDefaults ¶

func NewAnalyticsMetadataIndicationWithDefaults() *AnalyticsMetadataIndication

NewAnalyticsMetadataIndicationWithDefaults instantiates a new AnalyticsMetadataIndication 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 (*AnalyticsMetadataIndication) GetAggrNwdafIds ¶

func (o *AnalyticsMetadataIndication) GetAggrNwdafIds() []string

GetAggrNwdafIds returns the AggrNwdafIds field value if set, zero value otherwise.

func (*AnalyticsMetadataIndication) GetAggrNwdafIdsOk ¶

func (o *AnalyticsMetadataIndication) GetAggrNwdafIdsOk() ([]string, bool)

GetAggrNwdafIdsOk returns a tuple with the AggrNwdafIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnalyticsMetadataIndication) GetDataStatProps ¶

GetDataStatProps returns the DataStatProps field value if set, zero value otherwise.

func (*AnalyticsMetadataIndication) GetDataStatPropsOk ¶

func (o *AnalyticsMetadataIndication) GetDataStatPropsOk() ([]DatasetStatisticalProperty, bool)

GetDataStatPropsOk returns a tuple with the DataStatProps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnalyticsMetadataIndication) GetDataWindow ¶

func (o *AnalyticsMetadataIndication) GetDataWindow() TimeWindow

GetDataWindow returns the DataWindow field value if set, zero value otherwise.

func (*AnalyticsMetadataIndication) GetDataWindowOk ¶

func (o *AnalyticsMetadataIndication) GetDataWindowOk() (*TimeWindow, bool)

GetDataWindowOk returns a tuple with the DataWindow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnalyticsMetadataIndication) GetStrategy ¶

GetStrategy returns the Strategy field value if set, zero value otherwise.

func (*AnalyticsMetadataIndication) GetStrategyOk ¶

func (o *AnalyticsMetadataIndication) GetStrategyOk() (*OutputStrategy, bool)

GetStrategyOk returns a tuple with the Strategy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnalyticsMetadataIndication) HasAggrNwdafIds ¶

func (o *AnalyticsMetadataIndication) HasAggrNwdafIds() bool

HasAggrNwdafIds returns a boolean if a field has been set.

func (*AnalyticsMetadataIndication) HasDataStatProps ¶

func (o *AnalyticsMetadataIndication) HasDataStatProps() bool

HasDataStatProps returns a boolean if a field has been set.

func (*AnalyticsMetadataIndication) HasDataWindow ¶

func (o *AnalyticsMetadataIndication) HasDataWindow() bool

HasDataWindow returns a boolean if a field has been set.

func (*AnalyticsMetadataIndication) HasStrategy ¶

func (o *AnalyticsMetadataIndication) HasStrategy() bool

HasStrategy returns a boolean if a field has been set.

func (AnalyticsMetadataIndication) MarshalJSON ¶

func (o AnalyticsMetadataIndication) MarshalJSON() ([]byte, error)

func (*AnalyticsMetadataIndication) SetAggrNwdafIds ¶

func (o *AnalyticsMetadataIndication) SetAggrNwdafIds(v []string)

SetAggrNwdafIds gets a reference to the given []string and assigns it to the AggrNwdafIds field.

func (*AnalyticsMetadataIndication) SetDataStatProps ¶

SetDataStatProps gets a reference to the given []DatasetStatisticalProperty and assigns it to the DataStatProps field.

func (*AnalyticsMetadataIndication) SetDataWindow ¶

func (o *AnalyticsMetadataIndication) SetDataWindow(v TimeWindow)

SetDataWindow gets a reference to the given TimeWindow and assigns it to the DataWindow field.

func (*AnalyticsMetadataIndication) SetStrategy ¶

func (o *AnalyticsMetadataIndication) SetStrategy(v OutputStrategy)

SetStrategy gets a reference to the given OutputStrategy and assigns it to the Strategy field.

func (AnalyticsMetadataIndication) ToMap ¶

func (o AnalyticsMetadataIndication) ToMap() (map[string]interface{}, error)

type AnalyticsMetadataInfo ¶

type AnalyticsMetadataInfo struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	NumSamples    *int32                       `json:"numSamples,omitempty"`
	DataWindow    *TimeWindow                  `json:"dataWindow,omitempty"`
	DataStatProps []DatasetStatisticalProperty `json:"dataStatProps,omitempty"`
	Strategy      *OutputStrategy              `json:"strategy,omitempty"`
	Accuracy      *Accuracy                    `json:"accuracy,omitempty"`
}

AnalyticsMetadataInfo Contains analytics metadata information required for analytics aggregation.

func NewAnalyticsMetadataInfo ¶

func NewAnalyticsMetadataInfo() *AnalyticsMetadataInfo

NewAnalyticsMetadataInfo instantiates a new AnalyticsMetadataInfo 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 NewAnalyticsMetadataInfoWithDefaults ¶

func NewAnalyticsMetadataInfoWithDefaults() *AnalyticsMetadataInfo

NewAnalyticsMetadataInfoWithDefaults instantiates a new AnalyticsMetadataInfo 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 (*AnalyticsMetadataInfo) GetAccuracy ¶

func (o *AnalyticsMetadataInfo) GetAccuracy() Accuracy

GetAccuracy returns the Accuracy field value if set, zero value otherwise.

func (*AnalyticsMetadataInfo) GetAccuracyOk ¶

func (o *AnalyticsMetadataInfo) GetAccuracyOk() (*Accuracy, bool)

GetAccuracyOk returns a tuple with the Accuracy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnalyticsMetadataInfo) GetDataStatProps ¶

func (o *AnalyticsMetadataInfo) GetDataStatProps() []DatasetStatisticalProperty

GetDataStatProps returns the DataStatProps field value if set, zero value otherwise.

func (*AnalyticsMetadataInfo) GetDataStatPropsOk ¶

func (o *AnalyticsMetadataInfo) GetDataStatPropsOk() ([]DatasetStatisticalProperty, bool)

GetDataStatPropsOk returns a tuple with the DataStatProps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnalyticsMetadataInfo) GetDataWindow ¶

func (o *AnalyticsMetadataInfo) GetDataWindow() TimeWindow

GetDataWindow returns the DataWindow field value if set, zero value otherwise.

func (*AnalyticsMetadataInfo) GetDataWindowOk ¶

func (o *AnalyticsMetadataInfo) GetDataWindowOk() (*TimeWindow, bool)

GetDataWindowOk returns a tuple with the DataWindow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnalyticsMetadataInfo) GetNumSamples ¶

func (o *AnalyticsMetadataInfo) GetNumSamples() int32

GetNumSamples returns the NumSamples field value if set, zero value otherwise.

func (*AnalyticsMetadataInfo) GetNumSamplesOk ¶

func (o *AnalyticsMetadataInfo) GetNumSamplesOk() (*int32, bool)

GetNumSamplesOk returns a tuple with the NumSamples field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnalyticsMetadataInfo) GetStrategy ¶

func (o *AnalyticsMetadataInfo) GetStrategy() OutputStrategy

GetStrategy returns the Strategy field value if set, zero value otherwise.

func (*AnalyticsMetadataInfo) GetStrategyOk ¶

func (o *AnalyticsMetadataInfo) GetStrategyOk() (*OutputStrategy, bool)

GetStrategyOk returns a tuple with the Strategy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AnalyticsMetadataInfo) HasAccuracy ¶

func (o *AnalyticsMetadataInfo) HasAccuracy() bool

HasAccuracy returns a boolean if a field has been set.

func (*AnalyticsMetadataInfo) HasDataStatProps ¶

func (o *AnalyticsMetadataInfo) HasDataStatProps() bool

HasDataStatProps returns a boolean if a field has been set.

func (*AnalyticsMetadataInfo) HasDataWindow ¶

func (o *AnalyticsMetadataInfo) HasDataWindow() bool

HasDataWindow returns a boolean if a field has been set.

func (*AnalyticsMetadataInfo) HasNumSamples ¶

func (o *AnalyticsMetadataInfo) HasNumSamples() bool

HasNumSamples returns a boolean if a field has been set.

func (*AnalyticsMetadataInfo) HasStrategy ¶

func (o *AnalyticsMetadataInfo) HasStrategy() bool

HasStrategy returns a boolean if a field has been set.

func (AnalyticsMetadataInfo) MarshalJSON ¶

func (o AnalyticsMetadataInfo) MarshalJSON() ([]byte, error)

func (*AnalyticsMetadataInfo) SetAccuracy ¶

func (o *AnalyticsMetadataInfo) SetAccuracy(v Accuracy)

SetAccuracy gets a reference to the given Accuracy and assigns it to the Accuracy field.

func (*AnalyticsMetadataInfo) SetDataStatProps ¶

func (o *AnalyticsMetadataInfo) SetDataStatProps(v []DatasetStatisticalProperty)

SetDataStatProps gets a reference to the given []DatasetStatisticalProperty and assigns it to the DataStatProps field.

func (*AnalyticsMetadataInfo) SetDataWindow ¶

func (o *AnalyticsMetadataInfo) SetDataWindow(v TimeWindow)

SetDataWindow gets a reference to the given TimeWindow and assigns it to the DataWindow field.

func (*AnalyticsMetadataInfo) SetNumSamples ¶

func (o *AnalyticsMetadataInfo) SetNumSamples(v int32)

SetNumSamples gets a reference to the given int32 and assigns it to the NumSamples field.

func (*AnalyticsMetadataInfo) SetStrategy ¶

func (o *AnalyticsMetadataInfo) SetStrategy(v OutputStrategy)

SetStrategy gets a reference to the given OutputStrategy and assigns it to the Strategy field.

func (AnalyticsMetadataInfo) ToMap ¶

func (o AnalyticsMetadataInfo) ToMap() (map[string]interface{}, error)

type AnalyticsSubset ¶

type AnalyticsSubset struct {
	String *string
}

AnalyticsSubset Possible values are: - NUM_OF_UE_REG: The number of UE registered. This value is only applicable to NSI_LOAD_LEVEL event. - NUM_OF_PDU_SESS_ESTBL: The number of PDU sessions established. This value is only applicable to NSI_LOAD_LEVEL event. - RES_USAGE: The current usage of the virtual resources assigned to the NF instances belonging to a particular network slice instance. This value is only applicable to NSI_LOAD_LEVEL event. - NUM_OF_EXCEED_RES_USAGE_LOAD_LEVEL_THR: The number of times the resource usage threshold of the network slice instance is reached or exceeded if a threshold value is provided by the consumer. This value is only applicable to NSI_LOAD_LEVEL event. - PERIOD_OF_EXCEED_RES_USAGE_LOAD_LEVEL_THR: The time interval between each time the threshold being met or exceeded on the network slice (instance). This value is only applicable to NSI_LOAD_LEVEL event. - EXCEED_LOAD_LEVEL_THR_IND: Whether the Load Level Threshold is met or exceeded by the statistics value. This value is only applicable to NSI_LOAD_LEVEL event. - LIST_OF_TOP_APP_UL: The list of applications that contribute the most to the traffic in the UL direction. This value is only applicable to USER_DATA_CONGESTION event. - LIST_OF_TOP_APP_DL: The list of applications that contribute the most to the traffic in the DL direction. This value is only applicable to USER_DATA_CONGESTION event. - NF_STATUS: The availability status of the NF on the Analytics target period, expressed as a percentage of time per status value (registered, suspended, undiscoverable). This value is only applicable to NF_LOAD event. - NF_RESOURCE_USAGE: The average usage of assigned resources (CPU, memory, storage). This value is only applicable to NF_LOAD event. - NF_LOAD: The average load of the NF instance over the Analytics target period. This value is only applicable to NF_LOAD event. - NF_PEAK_LOAD: The maximum load of the NF instance over the Analytics target period. This value is only applicable to NF_LOAD event. - NF_LOAD_AVG_IN_AOI: The average load of the NF instances over the area of interest. This value is only applicable to NF_LOAD event. - DISPER_AMOUNT: Indicates the dispersion amount of the reported data volume or transaction dispersion type. This value is only applicable to DISPERSION event. - DISPER_CLASS: Indicates the dispersion mobility class: fixed, camper, traveller upon set its usage threshold, and/or the top-heavy class upon set its percentile rating threshold. This value is only applicable to DISPERSION event. - RANKING: Data/transaction usage ranking high (i.e.value 1), medium (2) or low (3). This value is only applicable to DISPERSION event. - PERCENTILE_RANKING: Percentile ranking of the target UE in the Cumulative Distribution Function of data usage for the population of all UEs. This value is only applicable to DISPERSION event. - RSSI: Indicated the RSSI in the unit of dBm. This value is only applicable to WLAN_PERFORMANCE event. - RTT: Indicates the RTT in the unit of millisecond. This value is only applicable to WLAN_PERFORMANCE event. - TRAFFIC_INFO: Traffic information including UL/DL data rate and/or Traffic volume. This value is only applicable to WLAN_PERFORMANCE event. - NUMBER_OF_UES: Number of UEs observed for the SSID. This value is only applicable to WLAN_PERFORMANCE event. - APP_LIST_FOR_UE_COMM: The analytics of the application list used by UE. This value is only applicable to UE_COMM event. - N4_SESS_INACT_TIMER_FOR_UE_COMM: The N4 Session inactivity timer. This value is only applicable to UE_COMM event. - AVG_TRAFFIC_RATE: Indicates average traffic rate. This value is only applicable to DN_PERFORMANCE event. - MAX_TRAFFIC_RATE: Indicates maximum traffic rate. This value is only applicable to DN_PERFORMANCE event. - AVG_PACKET_DELAY: Indicates average Packet Delay. This value is only applicable to DN_PERFORMANCE event. - MAX_PACKET_DELAY: Indicates maximum Packet Delay. This value is only applicable to DN_PERFORMANCE event. - AVG_PACKET_LOSS_RATE: Indicates average Loss Rate. This value is only applicable to DN_PERFORMANCE event. - UE_LOCATION: Indicates UE location information. This value is only applicable to SERVICE_EXPERIENCE event. - LIST_OF_HIGH_EXP_UE: Indicates list of high experienced UE. This value is only applicable to SM_CONGESTION event. - LIST_OF_MEDIUM_EXP_UE: Indicates list of medium experienced UE. This value is only applicable to SM_CONGESTION event. - LIST_OF_LOW_EXP_UE: Indicates list of low experienced UE. This value is only applicable to SM_CONGESTION event. - AVG_UL_PKT_DROP_RATE: Indicates average uplink packet drop rate on GTP-U path on N3. This value is only applicable to RED_TRANS_EXP event. - VAR_UL_PKT_DROP_RATE: Indicates variance of uplink packet drop rate on GTP-U path on N3. This value is only applicable to RED_TRANS_EXP event. - AVG_DL_PKT_DROP_RATE: Indicates average downlink packet drop rate on GTP-U path on N3. This value is only applicable to RED_TRANS_EXP event. - VAR_DL_PKT_DROP_RATE: Indicates variance of downlink packet drop rate on GTP-U path on N3. This value is only applicable to RED_TRANS_EXP event. - AVG_UL_PKT_DELAY: Indicates average uplink packet delay round trip on GTP-U path on N3. This value is only applicable to RED_TRANS_EXP event. - VAR_UL_PKT_DELAY: Indicates variance uplink packet delay round trip on GTP-U path on N3. This value is only applicable to RED_TRANS_EXP event. - AVG_DL_PKT_DELAY: Indicates average downlink packet delay round trip on GTP-U path on N3. This value is only applicable to RED_TRANS_EXP event. - VAR_DL_PKT_DELAY: Indicates variance downlink packet delay round trip on GTP-U path on N3. This value is only applicable to RED_TRANS_EXP event.

func (*AnalyticsSubset) MarshalJSON ¶

func (src *AnalyticsSubset) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*AnalyticsSubset) UnmarshalJSON ¶

func (dst *AnalyticsSubset) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ApiCreateADRFDataRetrievalSubscriptionRequest ¶

type ApiCreateADRFDataRetrievalSubscriptionRequest struct {
	ApiService *ADRFDataRetrievalSubscriptionsCollectionApiService
	// contains filtered or unexported fields
}

func (ApiCreateADRFDataRetrievalSubscriptionRequest) Execute ¶

func (ApiCreateADRFDataRetrievalSubscriptionRequest) NadrfDataRetrievalSubscription ¶

Individual ADRF Data Retrieval Subscription resource to be created.

type ApiCreateADRFDataStoreRecordRequest ¶

type ApiCreateADRFDataStoreRecordRequest struct {
	ApiService *ADRFDataStoreRecordsCollectionApiService
	// contains filtered or unexported fields
}

func (ApiCreateADRFDataStoreRecordRequest) Execute ¶

func (ApiCreateADRFDataStoreRecordRequest) NadrfDataStoreRecord ¶

ADRF data store record to be stored.

type ApiCreateADRFStorageSubscriptionRequest ¶

type ApiCreateADRFStorageSubscriptionRequest struct {
	ApiService *ADRFStorageSubscriptionsApiService
	// contains filtered or unexported fields
}

func (ApiCreateADRFStorageSubscriptionRequest) Execute ¶

func (ApiCreateADRFStorageSubscriptionRequest) NadrfDataStoreSubscription ¶

type ApiDeleteADRFDataRequest ¶

type ApiDeleteADRFDataRequest struct {
	ApiService *ADRFStoredDataApiService
	// contains filtered or unexported fields
}

func (ApiDeleteADRFDataRequest) Execute ¶

func (r ApiDeleteADRFDataRequest) Execute() (*http.Response, error)

func (ApiDeleteADRFDataRequest) NadrfStoredDataSpec ¶

func (r ApiDeleteADRFDataRequest) NadrfStoredDataSpec(nadrfStoredDataSpec NadrfStoredDataSpec) ApiDeleteADRFDataRequest

type ApiDeleteADRFDataRetrievalSubscriptionRequest ¶

type ApiDeleteADRFDataRetrievalSubscriptionRequest struct {
	ApiService *IndividualADRFDataRetrievalSubscriptionDocumentApiService
	// contains filtered or unexported fields
}

func (ApiDeleteADRFDataRetrievalSubscriptionRequest) Execute ¶

type ApiDeleteADRFDataStoreRecordRequest ¶

type ApiDeleteADRFDataStoreRecordRequest struct {
	ApiService *IndividualADRFDataStoreRecordDocumentApiService
	// contains filtered or unexported fields
}

func (ApiDeleteADRFDataStoreRecordRequest) Execute ¶

type ApiDeleteADRFStorageSubscriptionRequest ¶

type ApiDeleteADRFStorageSubscriptionRequest struct {
	ApiService *ADRFStorageSubscriptionsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteADRFStorageSubscriptionRequest) Execute ¶

func (ApiDeleteADRFStorageSubscriptionRequest) NadrfDataStoreSubscriptionRef ¶

func (r ApiDeleteADRFStorageSubscriptionRequest) NadrfDataStoreSubscriptionRef(nadrfDataStoreSubscriptionRef NadrfDataStoreSubscriptionRef) ApiDeleteADRFStorageSubscriptionRequest

type ApiGetAdrfDataStoreRecordsRequest ¶

type ApiGetAdrfDataStoreRecordsRequest struct {
	ApiService *ADRFDataStoreRecordsCollectionApiService
	// contains filtered or unexported fields
}

func (ApiGetAdrfDataStoreRecordsRequest) Execute ¶

func (ApiGetAdrfDataStoreRecordsRequest) FetchCorrelationIds ¶

func (r ApiGetAdrfDataStoreRecordsRequest) FetchCorrelationIds(fetchCorrelationIds []string) ApiGetAdrfDataStoreRecordsRequest

Fetch correlation identifiers received as part of fetch instruction.

func (ApiGetAdrfDataStoreRecordsRequest) StoreTransId ¶

A storage transaction identifier of a data store record in ADRF.

type AppListForUeComm ¶

type AppListForUeComm struct {
	// String providing an application identifier.
	AppId string `json:"appId"`
	// string with format 'date-time' as defined in OpenAPI.
	StartTime *time.Time `json:"startTime,omitempty"`
	// indicating a time in seconds.
	AppDur *int32 `json:"appDur,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	OccurRatio      *int32           `json:"occurRatio,omitempty"`
	SpatialValidity *NetworkAreaInfo `json:"spatialValidity,omitempty"`
}

AppListForUeComm Represents the analytics of the application list used by UE.

func NewAppListForUeComm ¶

func NewAppListForUeComm(appId string) *AppListForUeComm

NewAppListForUeComm instantiates a new AppListForUeComm 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 NewAppListForUeCommWithDefaults ¶

func NewAppListForUeCommWithDefaults() *AppListForUeComm

NewAppListForUeCommWithDefaults instantiates a new AppListForUeComm 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 (*AppListForUeComm) GetAppDur ¶

func (o *AppListForUeComm) GetAppDur() int32

GetAppDur returns the AppDur field value if set, zero value otherwise.

func (*AppListForUeComm) GetAppDurOk ¶

func (o *AppListForUeComm) GetAppDurOk() (*int32, bool)

GetAppDurOk returns a tuple with the AppDur field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppListForUeComm) GetAppId ¶

func (o *AppListForUeComm) GetAppId() string

GetAppId returns the AppId field value

func (*AppListForUeComm) GetAppIdOk ¶

func (o *AppListForUeComm) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value and a boolean to check if the value has been set.

func (*AppListForUeComm) GetOccurRatio ¶

func (o *AppListForUeComm) GetOccurRatio() int32

GetOccurRatio returns the OccurRatio field value if set, zero value otherwise.

func (*AppListForUeComm) GetOccurRatioOk ¶

func (o *AppListForUeComm) GetOccurRatioOk() (*int32, bool)

GetOccurRatioOk returns a tuple with the OccurRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppListForUeComm) GetSpatialValidity ¶

func (o *AppListForUeComm) GetSpatialValidity() NetworkAreaInfo

GetSpatialValidity returns the SpatialValidity field value if set, zero value otherwise.

func (*AppListForUeComm) GetSpatialValidityOk ¶

func (o *AppListForUeComm) GetSpatialValidityOk() (*NetworkAreaInfo, bool)

GetSpatialValidityOk returns a tuple with the SpatialValidity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppListForUeComm) GetStartTime ¶

func (o *AppListForUeComm) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*AppListForUeComm) GetStartTimeOk ¶

func (o *AppListForUeComm) GetStartTimeOk() (*time.Time, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AppListForUeComm) HasAppDur ¶

func (o *AppListForUeComm) HasAppDur() bool

HasAppDur returns a boolean if a field has been set.

func (*AppListForUeComm) HasOccurRatio ¶

func (o *AppListForUeComm) HasOccurRatio() bool

HasOccurRatio returns a boolean if a field has been set.

func (*AppListForUeComm) HasSpatialValidity ¶

func (o *AppListForUeComm) HasSpatialValidity() bool

HasSpatialValidity returns a boolean if a field has been set.

func (*AppListForUeComm) HasStartTime ¶

func (o *AppListForUeComm) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (AppListForUeComm) MarshalJSON ¶

func (o AppListForUeComm) MarshalJSON() ([]byte, error)

func (*AppListForUeComm) SetAppDur ¶

func (o *AppListForUeComm) SetAppDur(v int32)

SetAppDur gets a reference to the given int32 and assigns it to the AppDur field.

func (*AppListForUeComm) SetAppId ¶

func (o *AppListForUeComm) SetAppId(v string)

SetAppId sets field value

func (*AppListForUeComm) SetOccurRatio ¶

func (o *AppListForUeComm) SetOccurRatio(v int32)

SetOccurRatio gets a reference to the given int32 and assigns it to the OccurRatio field.

func (*AppListForUeComm) SetSpatialValidity ¶

func (o *AppListForUeComm) SetSpatialValidity(v NetworkAreaInfo)

SetSpatialValidity gets a reference to the given NetworkAreaInfo and assigns it to the SpatialValidity field.

func (*AppListForUeComm) SetStartTime ¶

func (o *AppListForUeComm) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (AppListForUeComm) ToMap ¶

func (o AppListForUeComm) ToMap() (map[string]interface{}, error)

type ApplicationVolume ¶

type ApplicationVolume struct {
	// String providing an application identifier.
	AppId string `json:"appId"`
	// Unsigned integer identifying a volume in units of bytes.
	AppVolume int64 `json:"appVolume"`
}

ApplicationVolume Application data volume per Application Id.

func NewApplicationVolume ¶

func NewApplicationVolume(appId string, appVolume int64) *ApplicationVolume

NewApplicationVolume instantiates a new ApplicationVolume 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 NewApplicationVolumeWithDefaults ¶

func NewApplicationVolumeWithDefaults() *ApplicationVolume

NewApplicationVolumeWithDefaults instantiates a new ApplicationVolume 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 (*ApplicationVolume) GetAppId ¶

func (o *ApplicationVolume) GetAppId() string

GetAppId returns the AppId field value

func (*ApplicationVolume) GetAppIdOk ¶

func (o *ApplicationVolume) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value and a boolean to check if the value has been set.

func (*ApplicationVolume) GetAppVolume ¶

func (o *ApplicationVolume) GetAppVolume() int64

GetAppVolume returns the AppVolume field value

func (*ApplicationVolume) GetAppVolumeOk ¶

func (o *ApplicationVolume) GetAppVolumeOk() (*int64, bool)

GetAppVolumeOk returns a tuple with the AppVolume field value and a boolean to check if the value has been set.

func (ApplicationVolume) MarshalJSON ¶

func (o ApplicationVolume) MarshalJSON() ([]byte, error)

func (*ApplicationVolume) SetAppId ¶

func (o *ApplicationVolume) SetAppId(v string)

SetAppId sets field value

func (*ApplicationVolume) SetAppVolume ¶

func (o *ApplicationVolume) SetAppVolume(v int64)

SetAppVolume sets field value

func (ApplicationVolume) ToMap ¶

func (o ApplicationVolume) ToMap() (map[string]interface{}, error)

type AppliedSmccType ¶

type AppliedSmccType struct {
	String *string
}

AppliedSmccType Possible values are: - DNN_CC: Indicates the DNN based congestion control. - SNSSAI_CC: Indicates the S-NSSAI based congestion control.

func (*AppliedSmccType) MarshalJSON ¶

func (src *AppliedSmccType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*AppliedSmccType) UnmarshalJSON ¶

func (dst *AppliedSmccType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type AssociationType ¶

type AssociationType struct {
	String *string
}

AssociationType struct for AssociationType

func (*AssociationType) MarshalJSON ¶

func (src *AssociationType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*AssociationType) UnmarshalJSON ¶

func (dst *AssociationType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type AtsssCapability ¶

type AtsssCapability struct {
	// Indicates the ATSSS-LL capability to support procedures related to Access Traffic Steering, Switching, Splitting (see clauses 4.2.10, 5.32 of 3GPP TS 23.501). true: Supported false (default): Not Supported
	AtsssLL *bool `json:"atsssLL,omitempty"`
	// Indicates the MPTCP capability to support procedures related to Access Traffic Steering, Switching, Splitting (see clauses 4.2.10, 5.32 of 3GPP TS 23.501 true: Supported false (default): Not Supported
	Mptcp *bool `json:"mptcp,omitempty"`
	// This IE is only used by the UPF to indicate whether the UPF supports RTT measurement without PMF (see clauses 5.32.2, 6.3.3.3 of 3GPP TS 23.501 true: Supported false (default): Not Supported
	RttWithoutPmf *bool `json:"rttWithoutPmf,omitempty"`
}

AtsssCapability Containes Capability to support procedures related to Access Traffic Steering, Switching, Splitting.

func NewAtsssCapability ¶

func NewAtsssCapability() *AtsssCapability

NewAtsssCapability instantiates a new AtsssCapability 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 NewAtsssCapabilityWithDefaults ¶

func NewAtsssCapabilityWithDefaults() *AtsssCapability

NewAtsssCapabilityWithDefaults instantiates a new AtsssCapability 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 (*AtsssCapability) GetAtsssLL ¶

func (o *AtsssCapability) GetAtsssLL() bool

GetAtsssLL returns the AtsssLL field value if set, zero value otherwise.

func (*AtsssCapability) GetAtsssLLOk ¶

func (o *AtsssCapability) GetAtsssLLOk() (*bool, bool)

GetAtsssLLOk returns a tuple with the AtsssLL field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AtsssCapability) GetMptcp ¶

func (o *AtsssCapability) GetMptcp() bool

GetMptcp returns the Mptcp field value if set, zero value otherwise.

func (*AtsssCapability) GetMptcpOk ¶

func (o *AtsssCapability) GetMptcpOk() (*bool, bool)

GetMptcpOk returns a tuple with the Mptcp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AtsssCapability) GetRttWithoutPmf ¶

func (o *AtsssCapability) GetRttWithoutPmf() bool

GetRttWithoutPmf returns the RttWithoutPmf field value if set, zero value otherwise.

func (*AtsssCapability) GetRttWithoutPmfOk ¶

func (o *AtsssCapability) GetRttWithoutPmfOk() (*bool, bool)

GetRttWithoutPmfOk returns a tuple with the RttWithoutPmf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AtsssCapability) HasAtsssLL ¶

func (o *AtsssCapability) HasAtsssLL() bool

HasAtsssLL returns a boolean if a field has been set.

func (*AtsssCapability) HasMptcp ¶

func (o *AtsssCapability) HasMptcp() bool

HasMptcp returns a boolean if a field has been set.

func (*AtsssCapability) HasRttWithoutPmf ¶

func (o *AtsssCapability) HasRttWithoutPmf() bool

HasRttWithoutPmf returns a boolean if a field has been set.

func (AtsssCapability) MarshalJSON ¶

func (o AtsssCapability) MarshalJSON() ([]byte, error)

func (*AtsssCapability) SetAtsssLL ¶

func (o *AtsssCapability) SetAtsssLL(v bool)

SetAtsssLL gets a reference to the given bool and assigns it to the AtsssLL field.

func (*AtsssCapability) SetMptcp ¶

func (o *AtsssCapability) SetMptcp(v bool)

SetMptcp gets a reference to the given bool and assigns it to the Mptcp field.

func (*AtsssCapability) SetRttWithoutPmf ¶

func (o *AtsssCapability) SetRttWithoutPmf(v bool)

SetRttWithoutPmf gets a reference to the given bool and assigns it to the RttWithoutPmf field.

func (AtsssCapability) ToMap ¶

func (o AtsssCapability) ToMap() (map[string]interface{}, error)

type AusfInfo ¶

type AusfInfo struct {
	// Identifier of a group of NFs.
	GroupId           *string     `json:"groupId,omitempty"`
	SupiRanges        []SupiRange `json:"supiRanges,omitempty"`
	RoutingIndicators []string    `json:"routingIndicators,omitempty"`
	SuciInfos         []SuciInfo  `json:"suciInfos,omitempty"`
}

AusfInfo Information of an AUSF NF Instance

func NewAusfInfo ¶

func NewAusfInfo() *AusfInfo

NewAusfInfo instantiates a new AusfInfo 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 NewAusfInfoWithDefaults ¶

func NewAusfInfoWithDefaults() *AusfInfo

NewAusfInfoWithDefaults instantiates a new AusfInfo 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 (*AusfInfo) GetGroupId ¶

func (o *AusfInfo) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*AusfInfo) GetGroupIdOk ¶

func (o *AusfInfo) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AusfInfo) GetRoutingIndicators ¶

func (o *AusfInfo) GetRoutingIndicators() []string

GetRoutingIndicators returns the RoutingIndicators field value if set, zero value otherwise.

func (*AusfInfo) GetRoutingIndicatorsOk ¶

func (o *AusfInfo) GetRoutingIndicatorsOk() ([]string, bool)

GetRoutingIndicatorsOk returns a tuple with the RoutingIndicators field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AusfInfo) GetSuciInfos ¶

func (o *AusfInfo) GetSuciInfos() []SuciInfo

GetSuciInfos returns the SuciInfos field value if set, zero value otherwise.

func (*AusfInfo) GetSuciInfosOk ¶

func (o *AusfInfo) GetSuciInfosOk() ([]SuciInfo, bool)

GetSuciInfosOk returns a tuple with the SuciInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AusfInfo) GetSupiRanges ¶

func (o *AusfInfo) GetSupiRanges() []SupiRange

GetSupiRanges returns the SupiRanges field value if set, zero value otherwise.

func (*AusfInfo) GetSupiRangesOk ¶

func (o *AusfInfo) GetSupiRangesOk() ([]SupiRange, bool)

GetSupiRangesOk returns a tuple with the SupiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AusfInfo) HasGroupId ¶

func (o *AusfInfo) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*AusfInfo) HasRoutingIndicators ¶

func (o *AusfInfo) HasRoutingIndicators() bool

HasRoutingIndicators returns a boolean if a field has been set.

func (*AusfInfo) HasSuciInfos ¶

func (o *AusfInfo) HasSuciInfos() bool

HasSuciInfos returns a boolean if a field has been set.

func (*AusfInfo) HasSupiRanges ¶

func (o *AusfInfo) HasSupiRanges() bool

HasSupiRanges returns a boolean if a field has been set.

func (AusfInfo) MarshalJSON ¶

func (o AusfInfo) MarshalJSON() ([]byte, error)

func (*AusfInfo) SetGroupId ¶

func (o *AusfInfo) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*AusfInfo) SetRoutingIndicators ¶

func (o *AusfInfo) SetRoutingIndicators(v []string)

SetRoutingIndicators gets a reference to the given []string and assigns it to the RoutingIndicators field.

func (*AusfInfo) SetSuciInfos ¶

func (o *AusfInfo) SetSuciInfos(v []SuciInfo)

SetSuciInfos gets a reference to the given []SuciInfo and assigns it to the SuciInfos field.

func (*AusfInfo) SetSupiRanges ¶

func (o *AusfInfo) SetSupiRanges(v []SupiRange)

SetSupiRanges gets a reference to the given []SupiRange and assigns it to the SupiRanges field.

func (AusfInfo) ToMap ¶

func (o AusfInfo) ToMap() (map[string]interface{}, error)

type BaseRecord ¶

type BaseRecord struct {
	// string with format 'date-time' as defined in OpenAPI.
	Timestamp time.Time `json:"timestamp"`
}

BaseRecord struct for BaseRecord

func NewBaseRecord ¶

func NewBaseRecord(timestamp time.Time) *BaseRecord

NewBaseRecord instantiates a new BaseRecord 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 NewBaseRecordWithDefaults ¶

func NewBaseRecordWithDefaults() *BaseRecord

NewBaseRecordWithDefaults instantiates a new BaseRecord 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 (*BaseRecord) GetTimestamp ¶

func (o *BaseRecord) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*BaseRecord) GetTimestampOk ¶

func (o *BaseRecord) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value and a boolean to check if the value has been set.

func (BaseRecord) MarshalJSON ¶

func (o BaseRecord) MarshalJSON() ([]byte, error)

func (*BaseRecord) SetTimestamp ¶

func (o *BaseRecord) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (BaseRecord) ToMap ¶

func (o BaseRecord) ToMap() (map[string]interface{}, error)

type BasicAuth ¶

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type BatteryIndication ¶

type BatteryIndication struct {
	// This IE shall indicate whether the UE is battery powered or not. true: the UE is battery powered; false or absent: the UE is not battery powered
	BatteryInd *bool `json:"batteryInd,omitempty"`
	// This IE shall indicate whether the battery of the UE is replaceable or not. true: the battery of the UE is replaceable; false or absent: the battery of the UE is not replaceable.
	ReplaceableInd *bool `json:"replaceableInd,omitempty"`
	// This IE shall indicate whether the battery of the UE is rechargeable or not. true: the battery of UE is rechargeable; false or absent: the battery of the UE is not rechargeable.
	RechargeableInd *bool `json:"rechargeableInd,omitempty"`
}

BatteryIndication Parameters \"replaceableInd\" and \"rechargeableInd\" are only included if the value of Parameter \"batteryInd\" is true.

func NewBatteryIndication ¶

func NewBatteryIndication() *BatteryIndication

NewBatteryIndication instantiates a new BatteryIndication 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 NewBatteryIndicationWithDefaults ¶

func NewBatteryIndicationWithDefaults() *BatteryIndication

NewBatteryIndicationWithDefaults instantiates a new BatteryIndication 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 (*BatteryIndication) GetBatteryInd ¶

func (o *BatteryIndication) GetBatteryInd() bool

GetBatteryInd returns the BatteryInd field value if set, zero value otherwise.

func (*BatteryIndication) GetBatteryIndOk ¶

func (o *BatteryIndication) GetBatteryIndOk() (*bool, bool)

GetBatteryIndOk returns a tuple with the BatteryInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BatteryIndication) GetRechargeableInd ¶

func (o *BatteryIndication) GetRechargeableInd() bool

GetRechargeableInd returns the RechargeableInd field value if set, zero value otherwise.

func (*BatteryIndication) GetRechargeableIndOk ¶

func (o *BatteryIndication) GetRechargeableIndOk() (*bool, bool)

GetRechargeableIndOk returns a tuple with the RechargeableInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BatteryIndication) GetReplaceableInd ¶

func (o *BatteryIndication) GetReplaceableInd() bool

GetReplaceableInd returns the ReplaceableInd field value if set, zero value otherwise.

func (*BatteryIndication) GetReplaceableIndOk ¶

func (o *BatteryIndication) GetReplaceableIndOk() (*bool, bool)

GetReplaceableIndOk returns a tuple with the ReplaceableInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BatteryIndication) HasBatteryInd ¶

func (o *BatteryIndication) HasBatteryInd() bool

HasBatteryInd returns a boolean if a field has been set.

func (*BatteryIndication) HasRechargeableInd ¶

func (o *BatteryIndication) HasRechargeableInd() bool

HasRechargeableInd returns a boolean if a field has been set.

func (*BatteryIndication) HasReplaceableInd ¶

func (o *BatteryIndication) HasReplaceableInd() bool

HasReplaceableInd returns a boolean if a field has been set.

func (BatteryIndication) MarshalJSON ¶

func (o BatteryIndication) MarshalJSON() ([]byte, error)

func (*BatteryIndication) SetBatteryInd ¶

func (o *BatteryIndication) SetBatteryInd(v bool)

SetBatteryInd gets a reference to the given bool and assigns it to the BatteryInd field.

func (*BatteryIndication) SetRechargeableInd ¶

func (o *BatteryIndication) SetRechargeableInd(v bool)

SetRechargeableInd gets a reference to the given bool and assigns it to the RechargeableInd field.

func (*BatteryIndication) SetReplaceableInd ¶

func (o *BatteryIndication) SetReplaceableInd(v bool)

SetReplaceableInd gets a reference to the given bool and assigns it to the ReplaceableInd field.

func (BatteryIndication) ToMap ¶

func (o BatteryIndication) ToMap() (map[string]interface{}, error)

type BsfInfo ¶

type BsfInfo struct {
	DnnList           []string           `json:"dnnList,omitempty"`
	IpDomainList      []string           `json:"ipDomainList,omitempty"`
	Ipv4AddressRanges []Ipv4AddressRange `json:"ipv4AddressRanges,omitempty"`
	Ipv6PrefixRanges  []Ipv6PrefixRange  `json:"ipv6PrefixRanges,omitempty"`
	// Fully Qualified Domain Name
	RxDiamHost *string `json:"rxDiamHost,omitempty"`
	// Fully Qualified Domain Name
	RxDiamRealm *string `json:"rxDiamRealm,omitempty"`
	// Identifier of a group of NFs.
	GroupId    *string         `json:"groupId,omitempty"`
	SupiRanges []SupiRange     `json:"supiRanges,omitempty"`
	GpsiRanges []IdentityRange `json:"gpsiRanges,omitempty"`
}

BsfInfo Information of a BSF NF Instance

func NewBsfInfo ¶

func NewBsfInfo() *BsfInfo

NewBsfInfo instantiates a new BsfInfo 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 NewBsfInfoWithDefaults ¶

func NewBsfInfoWithDefaults() *BsfInfo

NewBsfInfoWithDefaults instantiates a new BsfInfo 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 (*BsfInfo) GetDnnList ¶

func (o *BsfInfo) GetDnnList() []string

GetDnnList returns the DnnList field value if set, zero value otherwise.

func (*BsfInfo) GetDnnListOk ¶

func (o *BsfInfo) GetDnnListOk() ([]string, bool)

GetDnnListOk returns a tuple with the DnnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BsfInfo) GetGpsiRanges ¶

func (o *BsfInfo) GetGpsiRanges() []IdentityRange

GetGpsiRanges returns the GpsiRanges field value if set, zero value otherwise.

func (*BsfInfo) GetGpsiRangesOk ¶

func (o *BsfInfo) GetGpsiRangesOk() ([]IdentityRange, bool)

GetGpsiRangesOk returns a tuple with the GpsiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BsfInfo) GetGroupId ¶

func (o *BsfInfo) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*BsfInfo) GetGroupIdOk ¶

func (o *BsfInfo) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BsfInfo) GetIpDomainList ¶

func (o *BsfInfo) GetIpDomainList() []string

GetIpDomainList returns the IpDomainList field value if set, zero value otherwise.

func (*BsfInfo) GetIpDomainListOk ¶

func (o *BsfInfo) GetIpDomainListOk() ([]string, bool)

GetIpDomainListOk returns a tuple with the IpDomainList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BsfInfo) GetIpv4AddressRanges ¶

func (o *BsfInfo) GetIpv4AddressRanges() []Ipv4AddressRange

GetIpv4AddressRanges returns the Ipv4AddressRanges field value if set, zero value otherwise.

func (*BsfInfo) GetIpv4AddressRangesOk ¶

func (o *BsfInfo) GetIpv4AddressRangesOk() ([]Ipv4AddressRange, bool)

GetIpv4AddressRangesOk returns a tuple with the Ipv4AddressRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BsfInfo) GetIpv6PrefixRanges ¶

func (o *BsfInfo) GetIpv6PrefixRanges() []Ipv6PrefixRange

GetIpv6PrefixRanges returns the Ipv6PrefixRanges field value if set, zero value otherwise.

func (*BsfInfo) GetIpv6PrefixRangesOk ¶

func (o *BsfInfo) GetIpv6PrefixRangesOk() ([]Ipv6PrefixRange, bool)

GetIpv6PrefixRangesOk returns a tuple with the Ipv6PrefixRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BsfInfo) GetRxDiamHost ¶

func (o *BsfInfo) GetRxDiamHost() string

GetRxDiamHost returns the RxDiamHost field value if set, zero value otherwise.

func (*BsfInfo) GetRxDiamHostOk ¶

func (o *BsfInfo) GetRxDiamHostOk() (*string, bool)

GetRxDiamHostOk returns a tuple with the RxDiamHost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BsfInfo) GetRxDiamRealm ¶

func (o *BsfInfo) GetRxDiamRealm() string

GetRxDiamRealm returns the RxDiamRealm field value if set, zero value otherwise.

func (*BsfInfo) GetRxDiamRealmOk ¶

func (o *BsfInfo) GetRxDiamRealmOk() (*string, bool)

GetRxDiamRealmOk returns a tuple with the RxDiamRealm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BsfInfo) GetSupiRanges ¶

func (o *BsfInfo) GetSupiRanges() []SupiRange

GetSupiRanges returns the SupiRanges field value if set, zero value otherwise.

func (*BsfInfo) GetSupiRangesOk ¶

func (o *BsfInfo) GetSupiRangesOk() ([]SupiRange, bool)

GetSupiRangesOk returns a tuple with the SupiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BsfInfo) HasDnnList ¶

func (o *BsfInfo) HasDnnList() bool

HasDnnList returns a boolean if a field has been set.

func (*BsfInfo) HasGpsiRanges ¶

func (o *BsfInfo) HasGpsiRanges() bool

HasGpsiRanges returns a boolean if a field has been set.

func (*BsfInfo) HasGroupId ¶

func (o *BsfInfo) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*BsfInfo) HasIpDomainList ¶

func (o *BsfInfo) HasIpDomainList() bool

HasIpDomainList returns a boolean if a field has been set.

func (*BsfInfo) HasIpv4AddressRanges ¶

func (o *BsfInfo) HasIpv4AddressRanges() bool

HasIpv4AddressRanges returns a boolean if a field has been set.

func (*BsfInfo) HasIpv6PrefixRanges ¶

func (o *BsfInfo) HasIpv6PrefixRanges() bool

HasIpv6PrefixRanges returns a boolean if a field has been set.

func (*BsfInfo) HasRxDiamHost ¶

func (o *BsfInfo) HasRxDiamHost() bool

HasRxDiamHost returns a boolean if a field has been set.

func (*BsfInfo) HasRxDiamRealm ¶

func (o *BsfInfo) HasRxDiamRealm() bool

HasRxDiamRealm returns a boolean if a field has been set.

func (*BsfInfo) HasSupiRanges ¶

func (o *BsfInfo) HasSupiRanges() bool

HasSupiRanges returns a boolean if a field has been set.

func (BsfInfo) MarshalJSON ¶

func (o BsfInfo) MarshalJSON() ([]byte, error)

func (*BsfInfo) SetDnnList ¶

func (o *BsfInfo) SetDnnList(v []string)

SetDnnList gets a reference to the given []string and assigns it to the DnnList field.

func (*BsfInfo) SetGpsiRanges ¶

func (o *BsfInfo) SetGpsiRanges(v []IdentityRange)

SetGpsiRanges gets a reference to the given []IdentityRange and assigns it to the GpsiRanges field.

func (*BsfInfo) SetGroupId ¶

func (o *BsfInfo) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*BsfInfo) SetIpDomainList ¶

func (o *BsfInfo) SetIpDomainList(v []string)

SetIpDomainList gets a reference to the given []string and assigns it to the IpDomainList field.

func (*BsfInfo) SetIpv4AddressRanges ¶

func (o *BsfInfo) SetIpv4AddressRanges(v []Ipv4AddressRange)

SetIpv4AddressRanges gets a reference to the given []Ipv4AddressRange and assigns it to the Ipv4AddressRanges field.

func (*BsfInfo) SetIpv6PrefixRanges ¶

func (o *BsfInfo) SetIpv6PrefixRanges(v []Ipv6PrefixRange)

SetIpv6PrefixRanges gets a reference to the given []Ipv6PrefixRange and assigns it to the Ipv6PrefixRanges field.

func (*BsfInfo) SetRxDiamHost ¶

func (o *BsfInfo) SetRxDiamHost(v string)

SetRxDiamHost gets a reference to the given string and assigns it to the RxDiamHost field.

func (*BsfInfo) SetRxDiamRealm ¶

func (o *BsfInfo) SetRxDiamRealm(v string)

SetRxDiamRealm gets a reference to the given string and assigns it to the RxDiamRealm field.

func (*BsfInfo) SetSupiRanges ¶

func (o *BsfInfo) SetSupiRanges(v []SupiRange)

SetSupiRanges gets a reference to the given []SupiRange and assigns it to the SupiRanges field.

func (BsfInfo) ToMap ¶

func (o BsfInfo) ToMap() (map[string]interface{}, error)

type BwRequirement ¶

type BwRequirement struct {
	// String providing an application identifier.
	AppId string `json:"appId"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MarBwDl *string `json:"marBwDl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MarBwUl *string `json:"marBwUl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MirBwDl *string `json:"mirBwDl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MirBwUl *string `json:"mirBwUl,omitempty"`
}

BwRequirement Represents bandwidth requirements.

func NewBwRequirement ¶

func NewBwRequirement(appId string) *BwRequirement

NewBwRequirement instantiates a new BwRequirement 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 NewBwRequirementWithDefaults ¶

func NewBwRequirementWithDefaults() *BwRequirement

NewBwRequirementWithDefaults instantiates a new BwRequirement 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 (*BwRequirement) GetAppId ¶

func (o *BwRequirement) GetAppId() string

GetAppId returns the AppId field value

func (*BwRequirement) GetAppIdOk ¶

func (o *BwRequirement) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value and a boolean to check if the value has been set.

func (*BwRequirement) GetMarBwDl ¶

func (o *BwRequirement) GetMarBwDl() string

GetMarBwDl returns the MarBwDl field value if set, zero value otherwise.

func (*BwRequirement) GetMarBwDlOk ¶

func (o *BwRequirement) GetMarBwDlOk() (*string, bool)

GetMarBwDlOk returns a tuple with the MarBwDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BwRequirement) GetMarBwUl ¶

func (o *BwRequirement) GetMarBwUl() string

GetMarBwUl returns the MarBwUl field value if set, zero value otherwise.

func (*BwRequirement) GetMarBwUlOk ¶

func (o *BwRequirement) GetMarBwUlOk() (*string, bool)

GetMarBwUlOk returns a tuple with the MarBwUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BwRequirement) GetMirBwDl ¶

func (o *BwRequirement) GetMirBwDl() string

GetMirBwDl returns the MirBwDl field value if set, zero value otherwise.

func (*BwRequirement) GetMirBwDlOk ¶

func (o *BwRequirement) GetMirBwDlOk() (*string, bool)

GetMirBwDlOk returns a tuple with the MirBwDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BwRequirement) GetMirBwUl ¶

func (o *BwRequirement) GetMirBwUl() string

GetMirBwUl returns the MirBwUl field value if set, zero value otherwise.

func (*BwRequirement) GetMirBwUlOk ¶

func (o *BwRequirement) GetMirBwUlOk() (*string, bool)

GetMirBwUlOk returns a tuple with the MirBwUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BwRequirement) HasMarBwDl ¶

func (o *BwRequirement) HasMarBwDl() bool

HasMarBwDl returns a boolean if a field has been set.

func (*BwRequirement) HasMarBwUl ¶

func (o *BwRequirement) HasMarBwUl() bool

HasMarBwUl returns a boolean if a field has been set.

func (*BwRequirement) HasMirBwDl ¶

func (o *BwRequirement) HasMirBwDl() bool

HasMirBwDl returns a boolean if a field has been set.

func (*BwRequirement) HasMirBwUl ¶

func (o *BwRequirement) HasMirBwUl() bool

HasMirBwUl returns a boolean if a field has been set.

func (BwRequirement) MarshalJSON ¶

func (o BwRequirement) MarshalJSON() ([]byte, error)

func (*BwRequirement) SetAppId ¶

func (o *BwRequirement) SetAppId(v string)

SetAppId sets field value

func (*BwRequirement) SetMarBwDl ¶

func (o *BwRequirement) SetMarBwDl(v string)

SetMarBwDl gets a reference to the given string and assigns it to the MarBwDl field.

func (*BwRequirement) SetMarBwUl ¶

func (o *BwRequirement) SetMarBwUl(v string)

SetMarBwUl gets a reference to the given string and assigns it to the MarBwUl field.

func (*BwRequirement) SetMirBwDl ¶

func (o *BwRequirement) SetMirBwDl(v string)

SetMirBwDl gets a reference to the given string and assigns it to the MirBwDl field.

func (*BwRequirement) SetMirBwUl ¶

func (o *BwRequirement) SetMirBwUl(v string)

SetMirBwUl gets a reference to the given string and assigns it to the MirBwUl field.

func (BwRequirement) ToMap ¶

func (o BwRequirement) ToMap() (map[string]interface{}, error)

type CacheStatus ¶

type CacheStatus struct {
	String *string
}

CacheStatus struct for CacheStatus

func (*CacheStatus) MarshalJSON ¶

func (src *CacheStatus) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CacheStatus) UnmarshalJSON ¶

func (dst *CacheStatus) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type CellGlobalId ¶

type CellGlobalId struct {
	PlmnId PlmnId `json:"plmnId"`
	Lac    string `json:"lac"`
	CellId string `json:"cellId"`
}

CellGlobalId Contains a Cell Global Identification as defined in 3GPP TS 23.003, clause 4.3.1.

func NewCellGlobalId ¶

func NewCellGlobalId(plmnId PlmnId, lac string, cellId string) *CellGlobalId

NewCellGlobalId instantiates a new CellGlobalId 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 NewCellGlobalIdWithDefaults ¶

func NewCellGlobalIdWithDefaults() *CellGlobalId

NewCellGlobalIdWithDefaults instantiates a new CellGlobalId 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 (*CellGlobalId) GetCellId ¶

func (o *CellGlobalId) GetCellId() string

GetCellId returns the CellId field value

func (*CellGlobalId) GetCellIdOk ¶

func (o *CellGlobalId) GetCellIdOk() (*string, bool)

GetCellIdOk returns a tuple with the CellId field value and a boolean to check if the value has been set.

func (*CellGlobalId) GetLac ¶

func (o *CellGlobalId) GetLac() string

GetLac returns the Lac field value

func (*CellGlobalId) GetLacOk ¶

func (o *CellGlobalId) GetLacOk() (*string, bool)

GetLacOk returns a tuple with the Lac field value and a boolean to check if the value has been set.

func (*CellGlobalId) GetPlmnId ¶

func (o *CellGlobalId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*CellGlobalId) GetPlmnIdOk ¶

func (o *CellGlobalId) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (CellGlobalId) MarshalJSON ¶

func (o CellGlobalId) MarshalJSON() ([]byte, error)

func (*CellGlobalId) SetCellId ¶

func (o *CellGlobalId) SetCellId(v string)

SetCellId sets field value

func (*CellGlobalId) SetLac ¶

func (o *CellGlobalId) SetLac(v string)

SetLac sets field value

func (*CellGlobalId) SetPlmnId ¶

func (o *CellGlobalId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (CellGlobalId) ToMap ¶

func (o CellGlobalId) ToMap() (map[string]interface{}, error)

type ChangeItem ¶

type ChangeItem struct {
	Op ChangeType `json:"op"`
	// contains a JSON pointer value (as defined in IETF RFC 6901) that references a target  location within the resource on which the change has been applied.
	Path string `json:"path"`
	// indicates the path of the source JSON element (according to JSON Pointer syntax)  being moved or copied to the location indicated by the \"path\" attribute. It shall  be present if the \"op\" attribute is of value \"MOVE\".
	From      *string     `json:"from,omitempty"`
	OrigValue interface{} `json:"origValue,omitempty"`
	NewValue  interface{} `json:"newValue,omitempty"`
}

ChangeItem It contains data which need to be changed.

func NewChangeItem ¶

func NewChangeItem(op ChangeType, path string) *ChangeItem

NewChangeItem instantiates a new ChangeItem 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 NewChangeItemWithDefaults ¶

func NewChangeItemWithDefaults() *ChangeItem

NewChangeItemWithDefaults instantiates a new ChangeItem 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 (*ChangeItem) GetFrom ¶

func (o *ChangeItem) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*ChangeItem) GetFromOk ¶

func (o *ChangeItem) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ChangeItem) GetNewValue ¶

func (o *ChangeItem) GetNewValue() interface{}

GetNewValue returns the NewValue field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ChangeItem) GetNewValueOk ¶

func (o *ChangeItem) GetNewValueOk() (*interface{}, bool)

GetNewValueOk returns a tuple with the NewValue field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ChangeItem) GetOp ¶

func (o *ChangeItem) GetOp() ChangeType

GetOp returns the Op field value

func (*ChangeItem) GetOpOk ¶

func (o *ChangeItem) GetOpOk() (*ChangeType, bool)

GetOpOk returns a tuple with the Op field value and a boolean to check if the value has been set.

func (*ChangeItem) GetOrigValue ¶

func (o *ChangeItem) GetOrigValue() interface{}

GetOrigValue returns the OrigValue field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ChangeItem) GetOrigValueOk ¶

func (o *ChangeItem) GetOrigValueOk() (*interface{}, bool)

GetOrigValueOk returns a tuple with the OrigValue field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ChangeItem) GetPath ¶

func (o *ChangeItem) GetPath() string

GetPath returns the Path field value

func (*ChangeItem) GetPathOk ¶

func (o *ChangeItem) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (*ChangeItem) HasFrom ¶

func (o *ChangeItem) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*ChangeItem) HasNewValue ¶

func (o *ChangeItem) HasNewValue() bool

HasNewValue returns a boolean if a field has been set.

func (*ChangeItem) HasOrigValue ¶

func (o *ChangeItem) HasOrigValue() bool

HasOrigValue returns a boolean if a field has been set.

func (ChangeItem) MarshalJSON ¶

func (o ChangeItem) MarshalJSON() ([]byte, error)

func (*ChangeItem) SetFrom ¶

func (o *ChangeItem) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*ChangeItem) SetNewValue ¶

func (o *ChangeItem) SetNewValue(v interface{})

SetNewValue gets a reference to the given interface{} and assigns it to the NewValue field.

func (*ChangeItem) SetOp ¶

func (o *ChangeItem) SetOp(v ChangeType)

SetOp sets field value

func (*ChangeItem) SetOrigValue ¶

func (o *ChangeItem) SetOrigValue(v interface{})

SetOrigValue gets a reference to the given interface{} and assigns it to the OrigValue field.

func (*ChangeItem) SetPath ¶

func (o *ChangeItem) SetPath(v string)

SetPath sets field value

func (ChangeItem) ToMap ¶

func (o ChangeItem) ToMap() (map[string]interface{}, error)

type ChangeOfSupiPeiAssociationReport ¶

type ChangeOfSupiPeiAssociationReport struct {
	// String representing a Permanent Equipment Identifier that may contain - an IMEI or IMEISV, as  specified in clause 6.2 of 3GPP TS 23.003; a MAC address for a 5G-RG or FN-RG via  wireline  access, with an indication that this address cannot be trusted for regulatory purpose if this  address cannot be used as an Equipment Identifier of the FN-RG, as specified in clause 4.7.7  of 3GPP TS23.316. Examples are imei-012345678901234 or imeisv-0123456789012345.
	NewPei string `json:"newPei"`
}

ChangeOfSupiPeiAssociationReport struct for ChangeOfSupiPeiAssociationReport

func NewChangeOfSupiPeiAssociationReport ¶

func NewChangeOfSupiPeiAssociationReport(newPei string) *ChangeOfSupiPeiAssociationReport

NewChangeOfSupiPeiAssociationReport instantiates a new ChangeOfSupiPeiAssociationReport 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 NewChangeOfSupiPeiAssociationReportWithDefaults ¶

func NewChangeOfSupiPeiAssociationReportWithDefaults() *ChangeOfSupiPeiAssociationReport

NewChangeOfSupiPeiAssociationReportWithDefaults instantiates a new ChangeOfSupiPeiAssociationReport 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 (*ChangeOfSupiPeiAssociationReport) GetNewPei ¶

GetNewPei returns the NewPei field value

func (*ChangeOfSupiPeiAssociationReport) GetNewPeiOk ¶

func (o *ChangeOfSupiPeiAssociationReport) GetNewPeiOk() (*string, bool)

GetNewPeiOk returns a tuple with the NewPei field value and a boolean to check if the value has been set.

func (ChangeOfSupiPeiAssociationReport) MarshalJSON ¶

func (o ChangeOfSupiPeiAssociationReport) MarshalJSON() ([]byte, error)

func (*ChangeOfSupiPeiAssociationReport) SetNewPei ¶

func (o *ChangeOfSupiPeiAssociationReport) SetNewPei(v string)

SetNewPei sets field value

func (ChangeOfSupiPeiAssociationReport) ToMap ¶

func (o ChangeOfSupiPeiAssociationReport) ToMap() (map[string]interface{}, error)

type ChangeType ¶

type ChangeType struct {
	String *string
}

ChangeType Indicates the type of change to be performed.

func (*ChangeType) MarshalJSON ¶

func (src *ChangeType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ChangeType) UnmarshalJSON ¶

func (dst *ChangeType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ChfInfo ¶

type ChfInfo struct {
	SupiRangeList []SupiRange     `json:"supiRangeList,omitempty"`
	GpsiRangeList []IdentityRange `json:"gpsiRangeList,omitempty"`
	PlmnRangeList []PlmnRange     `json:"plmnRangeList,omitempty"`
	// Identifier of a group of NFs.
	GroupId *string `json:"groupId,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	PrimaryChfInstance *string `json:"primaryChfInstance,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	SecondaryChfInstance *string `json:"secondaryChfInstance,omitempty"`
}

ChfInfo Information of a CHF NF Instance

func NewChfInfo ¶

func NewChfInfo() *ChfInfo

NewChfInfo instantiates a new ChfInfo 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 NewChfInfoWithDefaults ¶

func NewChfInfoWithDefaults() *ChfInfo

NewChfInfoWithDefaults instantiates a new ChfInfo 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 (*ChfInfo) GetGpsiRangeList ¶

func (o *ChfInfo) GetGpsiRangeList() []IdentityRange

GetGpsiRangeList returns the GpsiRangeList field value if set, zero value otherwise.

func (*ChfInfo) GetGpsiRangeListOk ¶

func (o *ChfInfo) GetGpsiRangeListOk() ([]IdentityRange, bool)

GetGpsiRangeListOk returns a tuple with the GpsiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ChfInfo) GetGroupId ¶

func (o *ChfInfo) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*ChfInfo) GetGroupIdOk ¶

func (o *ChfInfo) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ChfInfo) GetPlmnRangeList ¶

func (o *ChfInfo) GetPlmnRangeList() []PlmnRange

GetPlmnRangeList returns the PlmnRangeList field value if set, zero value otherwise.

func (*ChfInfo) GetPlmnRangeListOk ¶

func (o *ChfInfo) GetPlmnRangeListOk() ([]PlmnRange, bool)

GetPlmnRangeListOk returns a tuple with the PlmnRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ChfInfo) GetPrimaryChfInstance ¶

func (o *ChfInfo) GetPrimaryChfInstance() string

GetPrimaryChfInstance returns the PrimaryChfInstance field value if set, zero value otherwise.

func (*ChfInfo) GetPrimaryChfInstanceOk ¶

func (o *ChfInfo) GetPrimaryChfInstanceOk() (*string, bool)

GetPrimaryChfInstanceOk returns a tuple with the PrimaryChfInstance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ChfInfo) GetSecondaryChfInstance ¶

func (o *ChfInfo) GetSecondaryChfInstance() string

GetSecondaryChfInstance returns the SecondaryChfInstance field value if set, zero value otherwise.

func (*ChfInfo) GetSecondaryChfInstanceOk ¶

func (o *ChfInfo) GetSecondaryChfInstanceOk() (*string, bool)

GetSecondaryChfInstanceOk returns a tuple with the SecondaryChfInstance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ChfInfo) GetSupiRangeList ¶

func (o *ChfInfo) GetSupiRangeList() []SupiRange

GetSupiRangeList returns the SupiRangeList field value if set, zero value otherwise.

func (*ChfInfo) GetSupiRangeListOk ¶

func (o *ChfInfo) GetSupiRangeListOk() ([]SupiRange, bool)

GetSupiRangeListOk returns a tuple with the SupiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ChfInfo) HasGpsiRangeList ¶

func (o *ChfInfo) HasGpsiRangeList() bool

HasGpsiRangeList returns a boolean if a field has been set.

func (*ChfInfo) HasGroupId ¶

func (o *ChfInfo) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*ChfInfo) HasPlmnRangeList ¶

func (o *ChfInfo) HasPlmnRangeList() bool

HasPlmnRangeList returns a boolean if a field has been set.

func (*ChfInfo) HasPrimaryChfInstance ¶

func (o *ChfInfo) HasPrimaryChfInstance() bool

HasPrimaryChfInstance returns a boolean if a field has been set.

func (*ChfInfo) HasSecondaryChfInstance ¶

func (o *ChfInfo) HasSecondaryChfInstance() bool

HasSecondaryChfInstance returns a boolean if a field has been set.

func (*ChfInfo) HasSupiRangeList ¶

func (o *ChfInfo) HasSupiRangeList() bool

HasSupiRangeList returns a boolean if a field has been set.

func (ChfInfo) MarshalJSON ¶

func (o ChfInfo) MarshalJSON() ([]byte, error)

func (*ChfInfo) SetGpsiRangeList ¶

func (o *ChfInfo) SetGpsiRangeList(v []IdentityRange)

SetGpsiRangeList gets a reference to the given []IdentityRange and assigns it to the GpsiRangeList field.

func (*ChfInfo) SetGroupId ¶

func (o *ChfInfo) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*ChfInfo) SetPlmnRangeList ¶

func (o *ChfInfo) SetPlmnRangeList(v []PlmnRange)

SetPlmnRangeList gets a reference to the given []PlmnRange and assigns it to the PlmnRangeList field.

func (*ChfInfo) SetPrimaryChfInstance ¶

func (o *ChfInfo) SetPrimaryChfInstance(v string)

SetPrimaryChfInstance gets a reference to the given string and assigns it to the PrimaryChfInstance field.

func (*ChfInfo) SetSecondaryChfInstance ¶

func (o *ChfInfo) SetSecondaryChfInstance(v string)

SetSecondaryChfInstance gets a reference to the given string and assigns it to the SecondaryChfInstance field.

func (*ChfInfo) SetSupiRangeList ¶

func (o *ChfInfo) SetSupiRangeList(v []SupiRange)

SetSupiRangeList gets a reference to the given []SupiRange and assigns it to the SupiRangeList field.

func (ChfInfo) ToMap ¶

func (o ChfInfo) ToMap() (map[string]interface{}, error)

type CircumstanceDescription ¶

type CircumstanceDescription struct {
	// string with format 'float' as defined in OpenAPI.
	Freq *float32 `json:"freq,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	Tm      *time.Time       `json:"tm,omitempty"`
	LocArea *NetworkAreaInfo `json:"locArea,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	Vol *int64 `json:"vol,omitempty"`
}

CircumstanceDescription Contains the description of a circumstance.

func NewCircumstanceDescription ¶

func NewCircumstanceDescription() *CircumstanceDescription

NewCircumstanceDescription instantiates a new CircumstanceDescription 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 NewCircumstanceDescriptionWithDefaults ¶

func NewCircumstanceDescriptionWithDefaults() *CircumstanceDescription

NewCircumstanceDescriptionWithDefaults instantiates a new CircumstanceDescription 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 (*CircumstanceDescription) GetFreq ¶

func (o *CircumstanceDescription) GetFreq() float32

GetFreq returns the Freq field value if set, zero value otherwise.

func (*CircumstanceDescription) GetFreqOk ¶

func (o *CircumstanceDescription) GetFreqOk() (*float32, bool)

GetFreqOk returns a tuple with the Freq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CircumstanceDescription) GetLocArea ¶

func (o *CircumstanceDescription) GetLocArea() NetworkAreaInfo

GetLocArea returns the LocArea field value if set, zero value otherwise.

func (*CircumstanceDescription) GetLocAreaOk ¶

func (o *CircumstanceDescription) GetLocAreaOk() (*NetworkAreaInfo, bool)

GetLocAreaOk returns a tuple with the LocArea field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CircumstanceDescription) GetTm ¶

func (o *CircumstanceDescription) GetTm() time.Time

GetTm returns the Tm field value if set, zero value otherwise.

func (*CircumstanceDescription) GetTmOk ¶

func (o *CircumstanceDescription) GetTmOk() (*time.Time, bool)

GetTmOk returns a tuple with the Tm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CircumstanceDescription) GetVol ¶

func (o *CircumstanceDescription) GetVol() int64

GetVol returns the Vol field value if set, zero value otherwise.

func (*CircumstanceDescription) GetVolOk ¶

func (o *CircumstanceDescription) GetVolOk() (*int64, bool)

GetVolOk returns a tuple with the Vol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CircumstanceDescription) HasFreq ¶

func (o *CircumstanceDescription) HasFreq() bool

HasFreq returns a boolean if a field has been set.

func (*CircumstanceDescription) HasLocArea ¶

func (o *CircumstanceDescription) HasLocArea() bool

HasLocArea returns a boolean if a field has been set.

func (*CircumstanceDescription) HasTm ¶

func (o *CircumstanceDescription) HasTm() bool

HasTm returns a boolean if a field has been set.

func (*CircumstanceDescription) HasVol ¶

func (o *CircumstanceDescription) HasVol() bool

HasVol returns a boolean if a field has been set.

func (CircumstanceDescription) MarshalJSON ¶

func (o CircumstanceDescription) MarshalJSON() ([]byte, error)

func (*CircumstanceDescription) SetFreq ¶

func (o *CircumstanceDescription) SetFreq(v float32)

SetFreq gets a reference to the given float32 and assigns it to the Freq field.

func (*CircumstanceDescription) SetLocArea ¶

func (o *CircumstanceDescription) SetLocArea(v NetworkAreaInfo)

SetLocArea gets a reference to the given NetworkAreaInfo and assigns it to the LocArea field.

func (*CircumstanceDescription) SetTm ¶

func (o *CircumstanceDescription) SetTm(v time.Time)

SetTm gets a reference to the given time.Time and assigns it to the Tm field.

func (*CircumstanceDescription) SetVol ¶

func (o *CircumstanceDescription) SetVol(v int64)

SetVol gets a reference to the given int64 and assigns it to the Vol field.

func (CircumstanceDescription) ToMap ¶

func (o CircumstanceDescription) ToMap() (map[string]interface{}, error)

type CivicAddress ¶

type CivicAddress struct {
	Country    *string `json:"country,omitempty"`
	A1         *string `json:"A1,omitempty"`
	A2         *string `json:"A2,omitempty"`
	A3         *string `json:"A3,omitempty"`
	A4         *string `json:"A4,omitempty"`
	A5         *string `json:"A5,omitempty"`
	A6         *string `json:"A6,omitempty"`
	PRD        *string `json:"PRD,omitempty"`
	POD        *string `json:"POD,omitempty"`
	STS        *string `json:"STS,omitempty"`
	HNO        *string `json:"HNO,omitempty"`
	HNS        *string `json:"HNS,omitempty"`
	LMK        *string `json:"LMK,omitempty"`
	LOC        *string `json:"LOC,omitempty"`
	NAM        *string `json:"NAM,omitempty"`
	PC         *string `json:"PC,omitempty"`
	BLD        *string `json:"BLD,omitempty"`
	UNIT       *string `json:"UNIT,omitempty"`
	FLR        *string `json:"FLR,omitempty"`
	ROOM       *string `json:"ROOM,omitempty"`
	PLC        *string `json:"PLC,omitempty"`
	PCN        *string `json:"PCN,omitempty"`
	POBOX      *string `json:"POBOX,omitempty"`
	ADDCODE    *string `json:"ADDCODE,omitempty"`
	SEAT       *string `json:"SEAT,omitempty"`
	RD         *string `json:"RD,omitempty"`
	RDSEC      *string `json:"RDSEC,omitempty"`
	RDBR       *string `json:"RDBR,omitempty"`
	RDSUBBR    *string `json:"RDSUBBR,omitempty"`
	PRM        *string `json:"PRM,omitempty"`
	POM        *string `json:"POM,omitempty"`
	UsageRules *string `json:"usageRules,omitempty"`
	Method     *string `json:"method,omitempty"`
	ProvidedBy *string `json:"providedBy,omitempty"`
}

CivicAddress Indicates a Civic address.

func NewCivicAddress ¶

func NewCivicAddress() *CivicAddress

NewCivicAddress instantiates a new CivicAddress 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 NewCivicAddressWithDefaults ¶

func NewCivicAddressWithDefaults() *CivicAddress

NewCivicAddressWithDefaults instantiates a new CivicAddress 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 (*CivicAddress) GetA1 ¶

func (o *CivicAddress) GetA1() string

GetA1 returns the A1 field value if set, zero value otherwise.

func (*CivicAddress) GetA1Ok ¶

func (o *CivicAddress) GetA1Ok() (*string, bool)

GetA1Ok returns a tuple with the A1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetA2 ¶

func (o *CivicAddress) GetA2() string

GetA2 returns the A2 field value if set, zero value otherwise.

func (*CivicAddress) GetA2Ok ¶

func (o *CivicAddress) GetA2Ok() (*string, bool)

GetA2Ok returns a tuple with the A2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetA3 ¶

func (o *CivicAddress) GetA3() string

GetA3 returns the A3 field value if set, zero value otherwise.

func (*CivicAddress) GetA3Ok ¶

func (o *CivicAddress) GetA3Ok() (*string, bool)

GetA3Ok returns a tuple with the A3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetA4 ¶

func (o *CivicAddress) GetA4() string

GetA4 returns the A4 field value if set, zero value otherwise.

func (*CivicAddress) GetA4Ok ¶

func (o *CivicAddress) GetA4Ok() (*string, bool)

GetA4Ok returns a tuple with the A4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetA5 ¶

func (o *CivicAddress) GetA5() string

GetA5 returns the A5 field value if set, zero value otherwise.

func (*CivicAddress) GetA5Ok ¶

func (o *CivicAddress) GetA5Ok() (*string, bool)

GetA5Ok returns a tuple with the A5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetA6 ¶

func (o *CivicAddress) GetA6() string

GetA6 returns the A6 field value if set, zero value otherwise.

func (*CivicAddress) GetA6Ok ¶

func (o *CivicAddress) GetA6Ok() (*string, bool)

GetA6Ok returns a tuple with the A6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetADDCODE ¶

func (o *CivicAddress) GetADDCODE() string

GetADDCODE returns the ADDCODE field value if set, zero value otherwise.

func (*CivicAddress) GetADDCODEOk ¶

func (o *CivicAddress) GetADDCODEOk() (*string, bool)

GetADDCODEOk returns a tuple with the ADDCODE field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetBLD ¶

func (o *CivicAddress) GetBLD() string

GetBLD returns the BLD field value if set, zero value otherwise.

func (*CivicAddress) GetBLDOk ¶

func (o *CivicAddress) GetBLDOk() (*string, bool)

GetBLDOk returns a tuple with the BLD field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetCountry ¶

func (o *CivicAddress) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*CivicAddress) GetCountryOk ¶

func (o *CivicAddress) GetCountryOk() (*string, bool)

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetFLR ¶

func (o *CivicAddress) GetFLR() string

GetFLR returns the FLR field value if set, zero value otherwise.

func (*CivicAddress) GetFLROk ¶

func (o *CivicAddress) GetFLROk() (*string, bool)

GetFLROk returns a tuple with the FLR field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetHNO ¶

func (o *CivicAddress) GetHNO() string

GetHNO returns the HNO field value if set, zero value otherwise.

func (*CivicAddress) GetHNOOk ¶

func (o *CivicAddress) GetHNOOk() (*string, bool)

GetHNOOk returns a tuple with the HNO field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetHNS ¶

func (o *CivicAddress) GetHNS() string

GetHNS returns the HNS field value if set, zero value otherwise.

func (*CivicAddress) GetHNSOk ¶

func (o *CivicAddress) GetHNSOk() (*string, bool)

GetHNSOk returns a tuple with the HNS field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetLMK ¶

func (o *CivicAddress) GetLMK() string

GetLMK returns the LMK field value if set, zero value otherwise.

func (*CivicAddress) GetLMKOk ¶

func (o *CivicAddress) GetLMKOk() (*string, bool)

GetLMKOk returns a tuple with the LMK field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetLOC ¶

func (o *CivicAddress) GetLOC() string

GetLOC returns the LOC field value if set, zero value otherwise.

func (*CivicAddress) GetLOCOk ¶

func (o *CivicAddress) GetLOCOk() (*string, bool)

GetLOCOk returns a tuple with the LOC field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetMethod ¶

func (o *CivicAddress) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*CivicAddress) GetMethodOk ¶

func (o *CivicAddress) GetMethodOk() (*string, bool)

GetMethodOk returns a tuple with the Method field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetNAM ¶

func (o *CivicAddress) GetNAM() string

GetNAM returns the NAM field value if set, zero value otherwise.

func (*CivicAddress) GetNAMOk ¶

func (o *CivicAddress) GetNAMOk() (*string, bool)

GetNAMOk returns a tuple with the NAM field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetPC ¶

func (o *CivicAddress) GetPC() string

GetPC returns the PC field value if set, zero value otherwise.

func (*CivicAddress) GetPCN ¶

func (o *CivicAddress) GetPCN() string

GetPCN returns the PCN field value if set, zero value otherwise.

func (*CivicAddress) GetPCNOk ¶

func (o *CivicAddress) GetPCNOk() (*string, bool)

GetPCNOk returns a tuple with the PCN field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetPCOk ¶

func (o *CivicAddress) GetPCOk() (*string, bool)

GetPCOk returns a tuple with the PC field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetPLC ¶

func (o *CivicAddress) GetPLC() string

GetPLC returns the PLC field value if set, zero value otherwise.

func (*CivicAddress) GetPLCOk ¶

func (o *CivicAddress) GetPLCOk() (*string, bool)

GetPLCOk returns a tuple with the PLC field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetPOBOX ¶

func (o *CivicAddress) GetPOBOX() string

GetPOBOX returns the POBOX field value if set, zero value otherwise.

func (*CivicAddress) GetPOBOXOk ¶

func (o *CivicAddress) GetPOBOXOk() (*string, bool)

GetPOBOXOk returns a tuple with the POBOX field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetPOD ¶

func (o *CivicAddress) GetPOD() string

GetPOD returns the POD field value if set, zero value otherwise.

func (*CivicAddress) GetPODOk ¶

func (o *CivicAddress) GetPODOk() (*string, bool)

GetPODOk returns a tuple with the POD field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetPOM ¶

func (o *CivicAddress) GetPOM() string

GetPOM returns the POM field value if set, zero value otherwise.

func (*CivicAddress) GetPOMOk ¶

func (o *CivicAddress) GetPOMOk() (*string, bool)

GetPOMOk returns a tuple with the POM field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetPRD ¶

func (o *CivicAddress) GetPRD() string

GetPRD returns the PRD field value if set, zero value otherwise.

func (*CivicAddress) GetPRDOk ¶

func (o *CivicAddress) GetPRDOk() (*string, bool)

GetPRDOk returns a tuple with the PRD field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetPRM ¶

func (o *CivicAddress) GetPRM() string

GetPRM returns the PRM field value if set, zero value otherwise.

func (*CivicAddress) GetPRMOk ¶

func (o *CivicAddress) GetPRMOk() (*string, bool)

GetPRMOk returns a tuple with the PRM field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetProvidedBy ¶

func (o *CivicAddress) GetProvidedBy() string

GetProvidedBy returns the ProvidedBy field value if set, zero value otherwise.

func (*CivicAddress) GetProvidedByOk ¶

func (o *CivicAddress) GetProvidedByOk() (*string, bool)

GetProvidedByOk returns a tuple with the ProvidedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetRD ¶

func (o *CivicAddress) GetRD() string

GetRD returns the RD field value if set, zero value otherwise.

func (*CivicAddress) GetRDBR ¶

func (o *CivicAddress) GetRDBR() string

GetRDBR returns the RDBR field value if set, zero value otherwise.

func (*CivicAddress) GetRDBROk ¶

func (o *CivicAddress) GetRDBROk() (*string, bool)

GetRDBROk returns a tuple with the RDBR field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetRDOk ¶

func (o *CivicAddress) GetRDOk() (*string, bool)

GetRDOk returns a tuple with the RD field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetRDSEC ¶

func (o *CivicAddress) GetRDSEC() string

GetRDSEC returns the RDSEC field value if set, zero value otherwise.

func (*CivicAddress) GetRDSECOk ¶

func (o *CivicAddress) GetRDSECOk() (*string, bool)

GetRDSECOk returns a tuple with the RDSEC field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetRDSUBBR ¶

func (o *CivicAddress) GetRDSUBBR() string

GetRDSUBBR returns the RDSUBBR field value if set, zero value otherwise.

func (*CivicAddress) GetRDSUBBROk ¶

func (o *CivicAddress) GetRDSUBBROk() (*string, bool)

GetRDSUBBROk returns a tuple with the RDSUBBR field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetROOM ¶

func (o *CivicAddress) GetROOM() string

GetROOM returns the ROOM field value if set, zero value otherwise.

func (*CivicAddress) GetROOMOk ¶

func (o *CivicAddress) GetROOMOk() (*string, bool)

GetROOMOk returns a tuple with the ROOM field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetSEAT ¶

func (o *CivicAddress) GetSEAT() string

GetSEAT returns the SEAT field value if set, zero value otherwise.

func (*CivicAddress) GetSEATOk ¶

func (o *CivicAddress) GetSEATOk() (*string, bool)

GetSEATOk returns a tuple with the SEAT field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetSTS ¶

func (o *CivicAddress) GetSTS() string

GetSTS returns the STS field value if set, zero value otherwise.

func (*CivicAddress) GetSTSOk ¶

func (o *CivicAddress) GetSTSOk() (*string, bool)

GetSTSOk returns a tuple with the STS field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetUNIT ¶

func (o *CivicAddress) GetUNIT() string

GetUNIT returns the UNIT field value if set, zero value otherwise.

func (*CivicAddress) GetUNITOk ¶

func (o *CivicAddress) GetUNITOk() (*string, bool)

GetUNITOk returns a tuple with the UNIT field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) GetUsageRules ¶

func (o *CivicAddress) GetUsageRules() string

GetUsageRules returns the UsageRules field value if set, zero value otherwise.

func (*CivicAddress) GetUsageRulesOk ¶

func (o *CivicAddress) GetUsageRulesOk() (*string, bool)

GetUsageRulesOk returns a tuple with the UsageRules field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CivicAddress) HasA1 ¶

func (o *CivicAddress) HasA1() bool

HasA1 returns a boolean if a field has been set.

func (*CivicAddress) HasA2 ¶

func (o *CivicAddress) HasA2() bool

HasA2 returns a boolean if a field has been set.

func (*CivicAddress) HasA3 ¶

func (o *CivicAddress) HasA3() bool

HasA3 returns a boolean if a field has been set.

func (*CivicAddress) HasA4 ¶

func (o *CivicAddress) HasA4() bool

HasA4 returns a boolean if a field has been set.

func (*CivicAddress) HasA5 ¶

func (o *CivicAddress) HasA5() bool

HasA5 returns a boolean if a field has been set.

func (*CivicAddress) HasA6 ¶

func (o *CivicAddress) HasA6() bool

HasA6 returns a boolean if a field has been set.

func (*CivicAddress) HasADDCODE ¶

func (o *CivicAddress) HasADDCODE() bool

HasADDCODE returns a boolean if a field has been set.

func (*CivicAddress) HasBLD ¶

func (o *CivicAddress) HasBLD() bool

HasBLD returns a boolean if a field has been set.

func (*CivicAddress) HasCountry ¶

func (o *CivicAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*CivicAddress) HasFLR ¶

func (o *CivicAddress) HasFLR() bool

HasFLR returns a boolean if a field has been set.

func (*CivicAddress) HasHNO ¶

func (o *CivicAddress) HasHNO() bool

HasHNO returns a boolean if a field has been set.

func (*CivicAddress) HasHNS ¶

func (o *CivicAddress) HasHNS() bool

HasHNS returns a boolean if a field has been set.

func (*CivicAddress) HasLMK ¶

func (o *CivicAddress) HasLMK() bool

HasLMK returns a boolean if a field has been set.

func (*CivicAddress) HasLOC ¶

func (o *CivicAddress) HasLOC() bool

HasLOC returns a boolean if a field has been set.

func (*CivicAddress) HasMethod ¶

func (o *CivicAddress) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*CivicAddress) HasNAM ¶

func (o *CivicAddress) HasNAM() bool

HasNAM returns a boolean if a field has been set.

func (*CivicAddress) HasPC ¶

func (o *CivicAddress) HasPC() bool

HasPC returns a boolean if a field has been set.

func (*CivicAddress) HasPCN ¶

func (o *CivicAddress) HasPCN() bool

HasPCN returns a boolean if a field has been set.

func (*CivicAddress) HasPLC ¶

func (o *CivicAddress) HasPLC() bool

HasPLC returns a boolean if a field has been set.

func (*CivicAddress) HasPOBOX ¶

func (o *CivicAddress) HasPOBOX() bool

HasPOBOX returns a boolean if a field has been set.

func (*CivicAddress) HasPOD ¶

func (o *CivicAddress) HasPOD() bool

HasPOD returns a boolean if a field has been set.

func (*CivicAddress) HasPOM ¶

func (o *CivicAddress) HasPOM() bool

HasPOM returns a boolean if a field has been set.

func (*CivicAddress) HasPRD ¶

func (o *CivicAddress) HasPRD() bool

HasPRD returns a boolean if a field has been set.

func (*CivicAddress) HasPRM ¶

func (o *CivicAddress) HasPRM() bool

HasPRM returns a boolean if a field has been set.

func (*CivicAddress) HasProvidedBy ¶

func (o *CivicAddress) HasProvidedBy() bool

HasProvidedBy returns a boolean if a field has been set.

func (*CivicAddress) HasRD ¶

func (o *CivicAddress) HasRD() bool

HasRD returns a boolean if a field has been set.

func (*CivicAddress) HasRDBR ¶

func (o *CivicAddress) HasRDBR() bool

HasRDBR returns a boolean if a field has been set.

func (*CivicAddress) HasRDSEC ¶

func (o *CivicAddress) HasRDSEC() bool

HasRDSEC returns a boolean if a field has been set.

func (*CivicAddress) HasRDSUBBR ¶

func (o *CivicAddress) HasRDSUBBR() bool

HasRDSUBBR returns a boolean if a field has been set.

func (*CivicAddress) HasROOM ¶

func (o *CivicAddress) HasROOM() bool

HasROOM returns a boolean if a field has been set.

func (*CivicAddress) HasSEAT ¶

func (o *CivicAddress) HasSEAT() bool

HasSEAT returns a boolean if a field has been set.

func (*CivicAddress) HasSTS ¶

func (o *CivicAddress) HasSTS() bool

HasSTS returns a boolean if a field has been set.

func (*CivicAddress) HasUNIT ¶

func (o *CivicAddress) HasUNIT() bool

HasUNIT returns a boolean if a field has been set.

func (*CivicAddress) HasUsageRules ¶

func (o *CivicAddress) HasUsageRules() bool

HasUsageRules returns a boolean if a field has been set.

func (CivicAddress) MarshalJSON ¶

func (o CivicAddress) MarshalJSON() ([]byte, error)

func (*CivicAddress) SetA1 ¶

func (o *CivicAddress) SetA1(v string)

SetA1 gets a reference to the given string and assigns it to the A1 field.

func (*CivicAddress) SetA2 ¶

func (o *CivicAddress) SetA2(v string)

SetA2 gets a reference to the given string and assigns it to the A2 field.

func (*CivicAddress) SetA3 ¶

func (o *CivicAddress) SetA3(v string)

SetA3 gets a reference to the given string and assigns it to the A3 field.

func (*CivicAddress) SetA4 ¶

func (o *CivicAddress) SetA4(v string)

SetA4 gets a reference to the given string and assigns it to the A4 field.

func (*CivicAddress) SetA5 ¶

func (o *CivicAddress) SetA5(v string)

SetA5 gets a reference to the given string and assigns it to the A5 field.

func (*CivicAddress) SetA6 ¶

func (o *CivicAddress) SetA6(v string)

SetA6 gets a reference to the given string and assigns it to the A6 field.

func (*CivicAddress) SetADDCODE ¶

func (o *CivicAddress) SetADDCODE(v string)

SetADDCODE gets a reference to the given string and assigns it to the ADDCODE field.

func (*CivicAddress) SetBLD ¶

func (o *CivicAddress) SetBLD(v string)

SetBLD gets a reference to the given string and assigns it to the BLD field.

func (*CivicAddress) SetCountry ¶

func (o *CivicAddress) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*CivicAddress) SetFLR ¶

func (o *CivicAddress) SetFLR(v string)

SetFLR gets a reference to the given string and assigns it to the FLR field.

func (*CivicAddress) SetHNO ¶

func (o *CivicAddress) SetHNO(v string)

SetHNO gets a reference to the given string and assigns it to the HNO field.

func (*CivicAddress) SetHNS ¶

func (o *CivicAddress) SetHNS(v string)

SetHNS gets a reference to the given string and assigns it to the HNS field.

func (*CivicAddress) SetLMK ¶

func (o *CivicAddress) SetLMK(v string)

SetLMK gets a reference to the given string and assigns it to the LMK field.

func (*CivicAddress) SetLOC ¶

func (o *CivicAddress) SetLOC(v string)

SetLOC gets a reference to the given string and assigns it to the LOC field.

func (*CivicAddress) SetMethod ¶

func (o *CivicAddress) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*CivicAddress) SetNAM ¶

func (o *CivicAddress) SetNAM(v string)

SetNAM gets a reference to the given string and assigns it to the NAM field.

func (*CivicAddress) SetPC ¶

func (o *CivicAddress) SetPC(v string)

SetPC gets a reference to the given string and assigns it to the PC field.

func (*CivicAddress) SetPCN ¶

func (o *CivicAddress) SetPCN(v string)

SetPCN gets a reference to the given string and assigns it to the PCN field.

func (*CivicAddress) SetPLC ¶

func (o *CivicAddress) SetPLC(v string)

SetPLC gets a reference to the given string and assigns it to the PLC field.

func (*CivicAddress) SetPOBOX ¶

func (o *CivicAddress) SetPOBOX(v string)

SetPOBOX gets a reference to the given string and assigns it to the POBOX field.

func (*CivicAddress) SetPOD ¶

func (o *CivicAddress) SetPOD(v string)

SetPOD gets a reference to the given string and assigns it to the POD field.

func (*CivicAddress) SetPOM ¶

func (o *CivicAddress) SetPOM(v string)

SetPOM gets a reference to the given string and assigns it to the POM field.

func (*CivicAddress) SetPRD ¶

func (o *CivicAddress) SetPRD(v string)

SetPRD gets a reference to the given string and assigns it to the PRD field.

func (*CivicAddress) SetPRM ¶

func (o *CivicAddress) SetPRM(v string)

SetPRM gets a reference to the given string and assigns it to the PRM field.

func (*CivicAddress) SetProvidedBy ¶

func (o *CivicAddress) SetProvidedBy(v string)

SetProvidedBy gets a reference to the given string and assigns it to the ProvidedBy field.

func (*CivicAddress) SetRD ¶

func (o *CivicAddress) SetRD(v string)

SetRD gets a reference to the given string and assigns it to the RD field.

func (*CivicAddress) SetRDBR ¶

func (o *CivicAddress) SetRDBR(v string)

SetRDBR gets a reference to the given string and assigns it to the RDBR field.

func (*CivicAddress) SetRDSEC ¶

func (o *CivicAddress) SetRDSEC(v string)

SetRDSEC gets a reference to the given string and assigns it to the RDSEC field.

func (*CivicAddress) SetRDSUBBR ¶

func (o *CivicAddress) SetRDSUBBR(v string)

SetRDSUBBR gets a reference to the given string and assigns it to the RDSUBBR field.

func (*CivicAddress) SetROOM ¶

func (o *CivicAddress) SetROOM(v string)

SetROOM gets a reference to the given string and assigns it to the ROOM field.

func (*CivicAddress) SetSEAT ¶

func (o *CivicAddress) SetSEAT(v string)

SetSEAT gets a reference to the given string and assigns it to the SEAT field.

func (*CivicAddress) SetSTS ¶

func (o *CivicAddress) SetSTS(v string)

SetSTS gets a reference to the given string and assigns it to the STS field.

func (*CivicAddress) SetUNIT ¶

func (o *CivicAddress) SetUNIT(v string)

SetUNIT gets a reference to the given string and assigns it to the UNIT field.

func (*CivicAddress) SetUsageRules ¶

func (o *CivicAddress) SetUsageRules(v string)

SetUsageRules gets a reference to the given string and assigns it to the UsageRules field.

func (CivicAddress) ToMap ¶

func (o CivicAddress) ToMap() (map[string]interface{}, error)

type ClassCriterion ¶

type ClassCriterion struct {
	DisperClass DispersionClass `json:"disperClass"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	ClassThreshold int32             `json:"classThreshold"`
	ThresMatch     MatchingDirection `json:"thresMatch"`
}

ClassCriterion Indicates the dispersion class criterion for fixed, camper and/or traveller UE, and/or the top-heavy UE dispersion class criterion.

func NewClassCriterion ¶

func NewClassCriterion(disperClass DispersionClass, classThreshold int32, thresMatch MatchingDirection) *ClassCriterion

NewClassCriterion instantiates a new ClassCriterion 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 NewClassCriterionWithDefaults ¶

func NewClassCriterionWithDefaults() *ClassCriterion

NewClassCriterionWithDefaults instantiates a new ClassCriterion 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 (*ClassCriterion) GetClassThreshold ¶

func (o *ClassCriterion) GetClassThreshold() int32

GetClassThreshold returns the ClassThreshold field value

func (*ClassCriterion) GetClassThresholdOk ¶

func (o *ClassCriterion) GetClassThresholdOk() (*int32, bool)

GetClassThresholdOk returns a tuple with the ClassThreshold field value and a boolean to check if the value has been set.

func (*ClassCriterion) GetDisperClass ¶

func (o *ClassCriterion) GetDisperClass() DispersionClass

GetDisperClass returns the DisperClass field value

func (*ClassCriterion) GetDisperClassOk ¶

func (o *ClassCriterion) GetDisperClassOk() (*DispersionClass, bool)

GetDisperClassOk returns a tuple with the DisperClass field value and a boolean to check if the value has been set.

func (*ClassCriterion) GetThresMatch ¶

func (o *ClassCriterion) GetThresMatch() MatchingDirection

GetThresMatch returns the ThresMatch field value

func (*ClassCriterion) GetThresMatchOk ¶

func (o *ClassCriterion) GetThresMatchOk() (*MatchingDirection, bool)

GetThresMatchOk returns a tuple with the ThresMatch field value and a boolean to check if the value has been set.

func (ClassCriterion) MarshalJSON ¶

func (o ClassCriterion) MarshalJSON() ([]byte, error)

func (*ClassCriterion) SetClassThreshold ¶

func (o *ClassCriterion) SetClassThreshold(v int32)

SetClassThreshold sets field value

func (*ClassCriterion) SetDisperClass ¶

func (o *ClassCriterion) SetDisperClass(v DispersionClass)

SetDisperClass sets field value

func (*ClassCriterion) SetThresMatch ¶

func (o *ClassCriterion) SetThresMatch(v MatchingDirection)

SetThresMatch sets field value

func (ClassCriterion) ToMap ¶

func (o ClassCriterion) ToMap() (map[string]interface{}, error)

type CmInfo ¶

type CmInfo struct {
	CmState    CmState    `json:"cmState"`
	AccessType AccessType `json:"accessType"`
}

CmInfo Represents the connection management state of a UE for an access type

func NewCmInfo ¶

func NewCmInfo(cmState CmState, accessType AccessType) *CmInfo

NewCmInfo instantiates a new CmInfo 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 NewCmInfoWithDefaults ¶

func NewCmInfoWithDefaults() *CmInfo

NewCmInfoWithDefaults instantiates a new CmInfo 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 (*CmInfo) GetAccessType ¶

func (o *CmInfo) GetAccessType() AccessType

GetAccessType returns the AccessType field value

func (*CmInfo) GetAccessTypeOk ¶

func (o *CmInfo) GetAccessTypeOk() (*AccessType, bool)

GetAccessTypeOk returns a tuple with the AccessType field value and a boolean to check if the value has been set.

func (*CmInfo) GetCmState ¶

func (o *CmInfo) GetCmState() CmState

GetCmState returns the CmState field value

func (*CmInfo) GetCmStateOk ¶

func (o *CmInfo) GetCmStateOk() (*CmState, bool)

GetCmStateOk returns a tuple with the CmState field value and a boolean to check if the value has been set.

func (CmInfo) MarshalJSON ¶

func (o CmInfo) MarshalJSON() ([]byte, error)

func (*CmInfo) SetAccessType ¶

func (o *CmInfo) SetAccessType(v AccessType)

SetAccessType sets field value

func (*CmInfo) SetCmState ¶

func (o *CmInfo) SetCmState(v CmState)

SetCmState sets field value

func (CmInfo) ToMap ¶

func (o CmInfo) ToMap() (map[string]interface{}, error)

type CmInfoReport ¶

type CmInfoReport struct {
	OldCmInfoList []CmInfo `json:"oldCmInfoList,omitempty"`
	NewCmInfoList []CmInfo `json:"newCmInfoList"`
}

CmInfoReport struct for CmInfoReport

func NewCmInfoReport ¶

func NewCmInfoReport(newCmInfoList []CmInfo) *CmInfoReport

NewCmInfoReport instantiates a new CmInfoReport 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 NewCmInfoReportWithDefaults ¶

func NewCmInfoReportWithDefaults() *CmInfoReport

NewCmInfoReportWithDefaults instantiates a new CmInfoReport 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 (*CmInfoReport) GetNewCmInfoList ¶

func (o *CmInfoReport) GetNewCmInfoList() []CmInfo

GetNewCmInfoList returns the NewCmInfoList field value

func (*CmInfoReport) GetNewCmInfoListOk ¶

func (o *CmInfoReport) GetNewCmInfoListOk() ([]CmInfo, bool)

GetNewCmInfoListOk returns a tuple with the NewCmInfoList field value and a boolean to check if the value has been set.

func (*CmInfoReport) GetOldCmInfoList ¶

func (o *CmInfoReport) GetOldCmInfoList() []CmInfo

GetOldCmInfoList returns the OldCmInfoList field value if set, zero value otherwise.

func (*CmInfoReport) GetOldCmInfoListOk ¶

func (o *CmInfoReport) GetOldCmInfoListOk() ([]CmInfo, bool)

GetOldCmInfoListOk returns a tuple with the OldCmInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CmInfoReport) HasOldCmInfoList ¶

func (o *CmInfoReport) HasOldCmInfoList() bool

HasOldCmInfoList returns a boolean if a field has been set.

func (CmInfoReport) MarshalJSON ¶

func (o CmInfoReport) MarshalJSON() ([]byte, error)

func (*CmInfoReport) SetNewCmInfoList ¶

func (o *CmInfoReport) SetNewCmInfoList(v []CmInfo)

SetNewCmInfoList sets field value

func (*CmInfoReport) SetOldCmInfoList ¶

func (o *CmInfoReport) SetOldCmInfoList(v []CmInfo)

SetOldCmInfoList gets a reference to the given []CmInfo and assigns it to the OldCmInfoList field.

func (CmInfoReport) ToMap ¶

func (o CmInfoReport) ToMap() (map[string]interface{}, error)

type CmState ¶

type CmState struct {
	String *string
}

CmState Describes the connection management state of a UE

func (*CmState) MarshalJSON ¶

func (src *CmState) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CmState) UnmarshalJSON ¶

func (dst *CmState) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type CnType ¶

type CnType struct {
	String *string
}

CnType struct for CnType

func (*CnType) MarshalJSON ¶

func (src *CnType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CnType) UnmarshalJSON ¶

func (dst *CnType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type CnTypeChangeReport ¶

type CnTypeChangeReport struct {
	NewCnType CnType  `json:"newCnType"`
	OldCnType *CnType `json:"oldCnType,omitempty"`
}

CnTypeChangeReport struct for CnTypeChangeReport

func NewCnTypeChangeReport ¶

func NewCnTypeChangeReport(newCnType CnType) *CnTypeChangeReport

NewCnTypeChangeReport instantiates a new CnTypeChangeReport 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 NewCnTypeChangeReportWithDefaults ¶

func NewCnTypeChangeReportWithDefaults() *CnTypeChangeReport

NewCnTypeChangeReportWithDefaults instantiates a new CnTypeChangeReport 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 (*CnTypeChangeReport) GetNewCnType ¶

func (o *CnTypeChangeReport) GetNewCnType() CnType

GetNewCnType returns the NewCnType field value

func (*CnTypeChangeReport) GetNewCnTypeOk ¶

func (o *CnTypeChangeReport) GetNewCnTypeOk() (*CnType, bool)

GetNewCnTypeOk returns a tuple with the NewCnType field value and a boolean to check if the value has been set.

func (*CnTypeChangeReport) GetOldCnType ¶

func (o *CnTypeChangeReport) GetOldCnType() CnType

GetOldCnType returns the OldCnType field value if set, zero value otherwise.

func (*CnTypeChangeReport) GetOldCnTypeOk ¶

func (o *CnTypeChangeReport) GetOldCnTypeOk() (*CnType, bool)

GetOldCnTypeOk returns a tuple with the OldCnType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CnTypeChangeReport) HasOldCnType ¶

func (o *CnTypeChangeReport) HasOldCnType() bool

HasOldCnType returns a boolean if a field has been set.

func (CnTypeChangeReport) MarshalJSON ¶

func (o CnTypeChangeReport) MarshalJSON() ([]byte, error)

func (*CnTypeChangeReport) SetNewCnType ¶

func (o *CnTypeChangeReport) SetNewCnType(v CnType)

SetNewCnType sets field value

func (*CnTypeChangeReport) SetOldCnType ¶

func (o *CnTypeChangeReport) SetOldCnType(v CnType)

SetOldCnType gets a reference to the given CnType and assigns it to the OldCnType field.

func (CnTypeChangeReport) ToMap ¶

func (o CnTypeChangeReport) ToMap() (map[string]interface{}, error)

type CollectiveBehaviourFilter ¶

type CollectiveBehaviourFilter struct {
	Type CollectiveBehaviourFilterType `json:"type"`
	// Value of the parameter type as in the type attribute.
	Value string `json:"value"`
	// Indicates whether request list of UE IDs that fulfill a collective behaviour within the area of interest. This attribute shall set to \"true\" if request the list of UE IDs, otherwise, set to \"false\". May only be present and sets to \"true\" if \"AfEvent\" sets to \"COLLECTIVE_BEHAVIOUR\".
	ListOfUeInd *bool `json:"listOfUeInd,omitempty"`
}

CollectiveBehaviourFilter Contains the collective behaviour filter information to be collected from UE.

func NewCollectiveBehaviourFilter ¶

func NewCollectiveBehaviourFilter(type_ CollectiveBehaviourFilterType, value string) *CollectiveBehaviourFilter

NewCollectiveBehaviourFilter instantiates a new CollectiveBehaviourFilter 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 NewCollectiveBehaviourFilterWithDefaults ¶

func NewCollectiveBehaviourFilterWithDefaults() *CollectiveBehaviourFilter

NewCollectiveBehaviourFilterWithDefaults instantiates a new CollectiveBehaviourFilter 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 (*CollectiveBehaviourFilter) GetListOfUeInd ¶

func (o *CollectiveBehaviourFilter) GetListOfUeInd() bool

GetListOfUeInd returns the ListOfUeInd field value if set, zero value otherwise.

func (*CollectiveBehaviourFilter) GetListOfUeIndOk ¶

func (o *CollectiveBehaviourFilter) GetListOfUeIndOk() (*bool, bool)

GetListOfUeIndOk returns a tuple with the ListOfUeInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CollectiveBehaviourFilter) GetType ¶

GetType returns the Type field value

func (*CollectiveBehaviourFilter) GetTypeOk ¶

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*CollectiveBehaviourFilter) GetValue ¶

func (o *CollectiveBehaviourFilter) GetValue() string

GetValue returns the Value field value

func (*CollectiveBehaviourFilter) GetValueOk ¶

func (o *CollectiveBehaviourFilter) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (*CollectiveBehaviourFilter) HasListOfUeInd ¶

func (o *CollectiveBehaviourFilter) HasListOfUeInd() bool

HasListOfUeInd returns a boolean if a field has been set.

func (CollectiveBehaviourFilter) MarshalJSON ¶

func (o CollectiveBehaviourFilter) MarshalJSON() ([]byte, error)

func (*CollectiveBehaviourFilter) SetListOfUeInd ¶

func (o *CollectiveBehaviourFilter) SetListOfUeInd(v bool)

SetListOfUeInd gets a reference to the given bool and assigns it to the ListOfUeInd field.

func (*CollectiveBehaviourFilter) SetType ¶

SetType sets field value

func (*CollectiveBehaviourFilter) SetValue ¶

func (o *CollectiveBehaviourFilter) SetValue(v string)

SetValue sets field value

func (CollectiveBehaviourFilter) ToMap ¶

func (o CollectiveBehaviourFilter) ToMap() (map[string]interface{}, error)

type CollectiveBehaviourFilterType ¶

type CollectiveBehaviourFilterType struct {
	String *string
}

CollectiveBehaviourFilterType Represents collective behaviour parameter type.

func (*CollectiveBehaviourFilterType) MarshalJSON ¶

func (src *CollectiveBehaviourFilterType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CollectiveBehaviourFilterType) UnmarshalJSON ¶

func (dst *CollectiveBehaviourFilterType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type CollectiveBehaviourInfo ¶

type CollectiveBehaviourInfo struct {
	Interface *interface{}
}

CollectiveBehaviourInfo - Contains the collective behaviour information to be reported to the subscriber.

func InterfaceAsCollectiveBehaviourInfo ¶

func InterfaceAsCollectiveBehaviourInfo(v *interface{}) CollectiveBehaviourInfo

interface{}AsCollectiveBehaviourInfo is a convenience function that returns interface{} wrapped in CollectiveBehaviourInfo

func (*CollectiveBehaviourInfo) GetActualInstance ¶

func (obj *CollectiveBehaviourInfo) GetActualInstance() interface{}

Get the actual instance

func (CollectiveBehaviourInfo) MarshalJSON ¶

func (src CollectiveBehaviourInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CollectiveBehaviourInfo) UnmarshalJSON ¶

func (dst *CollectiveBehaviourInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type CollocatedNfInstance ¶

type CollocatedNfInstance struct {
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	NfInstanceId string           `json:"nfInstanceId"`
	NfType       CollocatedNfType `json:"nfType"`
}

CollocatedNfInstance Information of an collocated NF Instance registered in the NRF

func NewCollocatedNfInstance ¶

func NewCollocatedNfInstance(nfInstanceId string, nfType CollocatedNfType) *CollocatedNfInstance

NewCollocatedNfInstance instantiates a new CollocatedNfInstance 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 NewCollocatedNfInstanceWithDefaults ¶

func NewCollocatedNfInstanceWithDefaults() *CollocatedNfInstance

NewCollocatedNfInstanceWithDefaults instantiates a new CollocatedNfInstance 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 (*CollocatedNfInstance) GetNfInstanceId ¶

func (o *CollocatedNfInstance) GetNfInstanceId() string

GetNfInstanceId returns the NfInstanceId field value

func (*CollocatedNfInstance) GetNfInstanceIdOk ¶

func (o *CollocatedNfInstance) GetNfInstanceIdOk() (*string, bool)

GetNfInstanceIdOk returns a tuple with the NfInstanceId field value and a boolean to check if the value has been set.

func (*CollocatedNfInstance) GetNfType ¶

func (o *CollocatedNfInstance) GetNfType() CollocatedNfType

GetNfType returns the NfType field value

func (*CollocatedNfInstance) GetNfTypeOk ¶

func (o *CollocatedNfInstance) GetNfTypeOk() (*CollocatedNfType, bool)

GetNfTypeOk returns a tuple with the NfType field value and a boolean to check if the value has been set.

func (CollocatedNfInstance) MarshalJSON ¶

func (o CollocatedNfInstance) MarshalJSON() ([]byte, error)

func (*CollocatedNfInstance) SetNfInstanceId ¶

func (o *CollocatedNfInstance) SetNfInstanceId(v string)

SetNfInstanceId sets field value

func (*CollocatedNfInstance) SetNfType ¶

func (o *CollocatedNfInstance) SetNfType(v CollocatedNfType)

SetNfType sets field value

func (CollocatedNfInstance) ToMap ¶

func (o CollocatedNfInstance) ToMap() (map[string]interface{}, error)

type CollocatedNfType ¶

type CollocatedNfType struct {
	String *string
}

CollocatedNfType NF types for a collocated NF

func (*CollocatedNfType) MarshalJSON ¶

func (src *CollocatedNfType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CollocatedNfType) UnmarshalJSON ¶

func (dst *CollocatedNfType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type CommunicationCollection ¶

type CommunicationCollection struct {
	// string with format 'date-time' as defined in OpenAPI.
	StartTime time.Time `json:"startTime"`
	// string with format 'date-time' as defined in OpenAPI.
	EndTime time.Time `json:"endTime"`
	// Unsigned integer identifying a volume in units of bytes.
	UlVol int64 `json:"ulVol"`
	// Unsigned integer identifying a volume in units of bytes.
	DlVol int64 `json:"dlVol"`
}

CommunicationCollection Contains communication information.

func NewCommunicationCollection ¶

func NewCommunicationCollection(startTime time.Time, endTime time.Time, ulVol int64, dlVol int64) *CommunicationCollection

NewCommunicationCollection instantiates a new CommunicationCollection 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 NewCommunicationCollectionWithDefaults ¶

func NewCommunicationCollectionWithDefaults() *CommunicationCollection

NewCommunicationCollectionWithDefaults instantiates a new CommunicationCollection 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 (*CommunicationCollection) GetDlVol ¶

func (o *CommunicationCollection) GetDlVol() int64

GetDlVol returns the DlVol field value

func (*CommunicationCollection) GetDlVolOk ¶

func (o *CommunicationCollection) GetDlVolOk() (*int64, bool)

GetDlVolOk returns a tuple with the DlVol field value and a boolean to check if the value has been set.

func (*CommunicationCollection) GetEndTime ¶

func (o *CommunicationCollection) GetEndTime() time.Time

GetEndTime returns the EndTime field value

func (*CommunicationCollection) GetEndTimeOk ¶

func (o *CommunicationCollection) GetEndTimeOk() (*time.Time, bool)

GetEndTimeOk returns a tuple with the EndTime field value and a boolean to check if the value has been set.

func (*CommunicationCollection) GetStartTime ¶

func (o *CommunicationCollection) GetStartTime() time.Time

GetStartTime returns the StartTime field value

func (*CommunicationCollection) GetStartTimeOk ¶

func (o *CommunicationCollection) GetStartTimeOk() (*time.Time, bool)

GetStartTimeOk returns a tuple with the StartTime field value and a boolean to check if the value has been set.

func (*CommunicationCollection) GetUlVol ¶

func (o *CommunicationCollection) GetUlVol() int64

GetUlVol returns the UlVol field value

func (*CommunicationCollection) GetUlVolOk ¶

func (o *CommunicationCollection) GetUlVolOk() (*int64, bool)

GetUlVolOk returns a tuple with the UlVol field value and a boolean to check if the value has been set.

func (CommunicationCollection) MarshalJSON ¶

func (o CommunicationCollection) MarshalJSON() ([]byte, error)

func (*CommunicationCollection) SetDlVol ¶

func (o *CommunicationCollection) SetDlVol(v int64)

SetDlVol sets field value

func (*CommunicationCollection) SetEndTime ¶

func (o *CommunicationCollection) SetEndTime(v time.Time)

SetEndTime sets field value

func (*CommunicationCollection) SetStartTime ¶

func (o *CommunicationCollection) SetStartTime(v time.Time)

SetStartTime sets field value

func (*CommunicationCollection) SetUlVol ¶

func (o *CommunicationCollection) SetUlVol(v int64)

SetUlVol sets field value

func (CommunicationCollection) ToMap ¶

func (o CommunicationCollection) ToMap() (map[string]interface{}, error)

type CommunicationFailure ¶

type CommunicationFailure struct {
	NasReleaseCode *string    `json:"nasReleaseCode,omitempty"`
	RanReleaseCode *NgApCause `json:"ranReleaseCode,omitempty"`
}

CommunicationFailure Describes a communication failure detected by AMF

func NewCommunicationFailure ¶

func NewCommunicationFailure() *CommunicationFailure

NewCommunicationFailure instantiates a new CommunicationFailure 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 NewCommunicationFailureWithDefaults ¶

func NewCommunicationFailureWithDefaults() *CommunicationFailure

NewCommunicationFailureWithDefaults instantiates a new CommunicationFailure 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 (*CommunicationFailure) GetNasReleaseCode ¶

func (o *CommunicationFailure) GetNasReleaseCode() string

GetNasReleaseCode returns the NasReleaseCode field value if set, zero value otherwise.

func (*CommunicationFailure) GetNasReleaseCodeOk ¶

func (o *CommunicationFailure) GetNasReleaseCodeOk() (*string, bool)

GetNasReleaseCodeOk returns a tuple with the NasReleaseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommunicationFailure) GetRanReleaseCode ¶

func (o *CommunicationFailure) GetRanReleaseCode() NgApCause

GetRanReleaseCode returns the RanReleaseCode field value if set, zero value otherwise.

func (*CommunicationFailure) GetRanReleaseCodeOk ¶

func (o *CommunicationFailure) GetRanReleaseCodeOk() (*NgApCause, bool)

GetRanReleaseCodeOk returns a tuple with the RanReleaseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommunicationFailure) HasNasReleaseCode ¶

func (o *CommunicationFailure) HasNasReleaseCode() bool

HasNasReleaseCode returns a boolean if a field has been set.

func (*CommunicationFailure) HasRanReleaseCode ¶

func (o *CommunicationFailure) HasRanReleaseCode() bool

HasRanReleaseCode returns a boolean if a field has been set.

func (CommunicationFailure) MarshalJSON ¶

func (o CommunicationFailure) MarshalJSON() ([]byte, error)

func (*CommunicationFailure) SetNasReleaseCode ¶

func (o *CommunicationFailure) SetNasReleaseCode(v string)

SetNasReleaseCode gets a reference to the given string and assigns it to the NasReleaseCode field.

func (*CommunicationFailure) SetRanReleaseCode ¶

func (o *CommunicationFailure) SetRanReleaseCode(v NgApCause)

SetRanReleaseCode gets a reference to the given NgApCause and assigns it to the RanReleaseCode field.

func (CommunicationFailure) ToMap ¶

func (o CommunicationFailure) ToMap() (map[string]interface{}, error)

type ConditionEventType ¶

type ConditionEventType struct {
	String *string
}

ConditionEventType Indicates whether a notification is due to the NF Instance to start or stop being part of a condition for a subscription to a set of NFs

func (*ConditionEventType) MarshalJSON ¶

func (src *ConditionEventType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ConditionEventType) UnmarshalJSON ¶

func (dst *ConditionEventType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type Configuration ¶

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration ¶

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader ¶

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL ¶

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext ¶

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type CongestionInfo ¶

type CongestionInfo struct {
	CongType  CongestionType `json:"congType"`
	TimeIntev TimeWindow     `json:"timeIntev"`
	Nsi       ThresholdLevel `json:"nsi"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Confidence   *int32           `json:"confidence,omitempty"`
	TopAppListUl []TopApplication `json:"topAppListUl,omitempty"`
	TopAppListDl []TopApplication `json:"topAppListDl,omitempty"`
}

CongestionInfo Represents the congestion information.

func NewCongestionInfo ¶

func NewCongestionInfo(congType CongestionType, timeIntev TimeWindow, nsi ThresholdLevel) *CongestionInfo

NewCongestionInfo instantiates a new CongestionInfo 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 NewCongestionInfoWithDefaults ¶

func NewCongestionInfoWithDefaults() *CongestionInfo

NewCongestionInfoWithDefaults instantiates a new CongestionInfo 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 (*CongestionInfo) GetConfidence ¶

func (o *CongestionInfo) GetConfidence() int32

GetConfidence returns the Confidence field value if set, zero value otherwise.

func (*CongestionInfo) GetConfidenceOk ¶

func (o *CongestionInfo) GetConfidenceOk() (*int32, bool)

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 (*CongestionInfo) GetCongType ¶

func (o *CongestionInfo) GetCongType() CongestionType

GetCongType returns the CongType field value

func (*CongestionInfo) GetCongTypeOk ¶

func (o *CongestionInfo) GetCongTypeOk() (*CongestionType, bool)

GetCongTypeOk returns a tuple with the CongType field value and a boolean to check if the value has been set.

func (*CongestionInfo) GetNsi ¶

func (o *CongestionInfo) GetNsi() ThresholdLevel

GetNsi returns the Nsi field value

func (*CongestionInfo) GetNsiOk ¶

func (o *CongestionInfo) GetNsiOk() (*ThresholdLevel, bool)

GetNsiOk returns a tuple with the Nsi field value and a boolean to check if the value has been set.

func (*CongestionInfo) GetTimeIntev ¶

func (o *CongestionInfo) GetTimeIntev() TimeWindow

GetTimeIntev returns the TimeIntev field value

func (*CongestionInfo) GetTimeIntevOk ¶

func (o *CongestionInfo) GetTimeIntevOk() (*TimeWindow, bool)

GetTimeIntevOk returns a tuple with the TimeIntev field value and a boolean to check if the value has been set.

func (*CongestionInfo) GetTopAppListDl ¶

func (o *CongestionInfo) GetTopAppListDl() []TopApplication

GetTopAppListDl returns the TopAppListDl field value if set, zero value otherwise.

func (*CongestionInfo) GetTopAppListDlOk ¶

func (o *CongestionInfo) GetTopAppListDlOk() ([]TopApplication, bool)

GetTopAppListDlOk returns a tuple with the TopAppListDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CongestionInfo) GetTopAppListUl ¶

func (o *CongestionInfo) GetTopAppListUl() []TopApplication

GetTopAppListUl returns the TopAppListUl field value if set, zero value otherwise.

func (*CongestionInfo) GetTopAppListUlOk ¶

func (o *CongestionInfo) GetTopAppListUlOk() ([]TopApplication, bool)

GetTopAppListUlOk returns a tuple with the TopAppListUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CongestionInfo) HasConfidence ¶

func (o *CongestionInfo) HasConfidence() bool

HasConfidence returns a boolean if a field has been set.

func (*CongestionInfo) HasTopAppListDl ¶

func (o *CongestionInfo) HasTopAppListDl() bool

HasTopAppListDl returns a boolean if a field has been set.

func (*CongestionInfo) HasTopAppListUl ¶

func (o *CongestionInfo) HasTopAppListUl() bool

HasTopAppListUl returns a boolean if a field has been set.

func (CongestionInfo) MarshalJSON ¶

func (o CongestionInfo) MarshalJSON() ([]byte, error)

func (*CongestionInfo) SetConfidence ¶

func (o *CongestionInfo) SetConfidence(v int32)

SetConfidence gets a reference to the given int32 and assigns it to the Confidence field.

func (*CongestionInfo) SetCongType ¶

func (o *CongestionInfo) SetCongType(v CongestionType)

SetCongType sets field value

func (*CongestionInfo) SetNsi ¶

func (o *CongestionInfo) SetNsi(v ThresholdLevel)

SetNsi sets field value

func (*CongestionInfo) SetTimeIntev ¶

func (o *CongestionInfo) SetTimeIntev(v TimeWindow)

SetTimeIntev sets field value

func (*CongestionInfo) SetTopAppListDl ¶

func (o *CongestionInfo) SetTopAppListDl(v []TopApplication)

SetTopAppListDl gets a reference to the given []TopApplication and assigns it to the TopAppListDl field.

func (*CongestionInfo) SetTopAppListUl ¶

func (o *CongestionInfo) SetTopAppListUl(v []TopApplication)

SetTopAppListUl gets a reference to the given []TopApplication and assigns it to the TopAppListUl field.

func (CongestionInfo) ToMap ¶

func (o CongestionInfo) ToMap() (map[string]interface{}, error)

type CongestionType ¶

type CongestionType struct {
	String *string
}

CongestionType Possible values are: - USER_PLANE: The congestion analytics type is User Plane. - CONTROL_PLANE: The congestion analytics type is Control Plane. - USER_AND_CONTROL_PLANE: The congestion analytics type is User Plane and Control Plane.

func (*CongestionType) MarshalJSON ¶

func (src *CongestionType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CongestionType) UnmarshalJSON ¶

func (dst *CongestionType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ConsumerNfInformation ¶

type ConsumerNfInformation struct {
	OneOfAnyTypeAnyType *OneOfAnyTypeAnyType
	Interface           *interface{}
}

ConsumerNfInformation - Represents the analytics consumer NF Information.

func InterfaceAsConsumerNfInformation ¶

func InterfaceAsConsumerNfInformation(v *interface{}) ConsumerNfInformation

interface{}AsConsumerNfInformation is a convenience function that returns interface{} wrapped in ConsumerNfInformation

func OneOfAnyTypeAnyTypeAsConsumerNfInformation ¶

func OneOfAnyTypeAnyTypeAsConsumerNfInformation(v *OneOfAnyTypeAnyType) ConsumerNfInformation

OneOfAnyTypeAnyTypeAsConsumerNfInformation is a convenience function that returns OneOfAnyTypeAnyType wrapped in ConsumerNfInformation

func (*ConsumerNfInformation) GetActualInstance ¶

func (obj *ConsumerNfInformation) GetActualInstance() interface{}

Get the actual instance

func (ConsumerNfInformation) MarshalJSON ¶

func (src ConsumerNfInformation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ConsumerNfInformation) UnmarshalJSON ¶

func (dst *ConsumerNfInformation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ContextInfo ¶

type ContextInfo struct {
	OrigHeaders    []string `json:"origHeaders,omitempty"`
	RequestHeaders []string `json:"requestHeaders,omitempty"`
}

ContextInfo struct for ContextInfo

func NewContextInfo ¶

func NewContextInfo() *ContextInfo

NewContextInfo instantiates a new ContextInfo 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 NewContextInfoWithDefaults ¶

func NewContextInfoWithDefaults() *ContextInfo

NewContextInfoWithDefaults instantiates a new ContextInfo 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 (*ContextInfo) GetOrigHeaders ¶

func (o *ContextInfo) GetOrigHeaders() []string

GetOrigHeaders returns the OrigHeaders field value if set, zero value otherwise.

func (*ContextInfo) GetOrigHeadersOk ¶

func (o *ContextInfo) GetOrigHeadersOk() ([]string, bool)

GetOrigHeadersOk returns a tuple with the OrigHeaders field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContextInfo) GetRequestHeaders ¶

func (o *ContextInfo) GetRequestHeaders() []string

GetRequestHeaders returns the RequestHeaders field value if set, zero value otherwise.

func (*ContextInfo) GetRequestHeadersOk ¶

func (o *ContextInfo) GetRequestHeadersOk() ([]string, bool)

GetRequestHeadersOk returns a tuple with the RequestHeaders field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContextInfo) HasOrigHeaders ¶

func (o *ContextInfo) HasOrigHeaders() bool

HasOrigHeaders returns a boolean if a field has been set.

func (*ContextInfo) HasRequestHeaders ¶

func (o *ContextInfo) HasRequestHeaders() bool

HasRequestHeaders returns a boolean if a field has been set.

func (ContextInfo) MarshalJSON ¶

func (o ContextInfo) MarshalJSON() ([]byte, error)

func (*ContextInfo) SetOrigHeaders ¶

func (o *ContextInfo) SetOrigHeaders(v []string)

SetOrigHeaders gets a reference to the given []string and assigns it to the OrigHeaders field.

func (*ContextInfo) SetRequestHeaders ¶

func (o *ContextInfo) SetRequestHeaders(v []string)

SetRequestHeaders gets a reference to the given []string and assigns it to the RequestHeaders field.

func (ContextInfo) ToMap ¶

func (o ContextInfo) ToMap() (map[string]interface{}, error)

type DataNotification ¶

type DataNotification struct {
	Interface *interface{}
}

DataNotification - Represents a Data Subscription Notification.

func InterfaceAsDataNotification ¶

func InterfaceAsDataNotification(v *interface{}) DataNotification

interface{}AsDataNotification is a convenience function that returns interface{} wrapped in DataNotification

func (*DataNotification) GetActualInstance ¶

func (obj *DataNotification) GetActualInstance() interface{}

Get the actual instance

func (DataNotification) MarshalJSON ¶

func (src DataNotification) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DataNotification) UnmarshalJSON ¶

func (dst *DataNotification) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type DataSetId ¶

type DataSetId struct {
	String *string
}

DataSetId Types of data sets and subsets stored in UDR

func (*DataSetId) MarshalJSON ¶

func (src *DataSetId) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DataSetId) UnmarshalJSON ¶

func (dst *DataSetId) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type DataSubscription ¶

type DataSubscription struct {
	Interface *interface{}
}

DataSubscription - Contains a data specification.

func InterfaceAsDataSubscription ¶

func InterfaceAsDataSubscription(v *interface{}) DataSubscription

interface{}AsDataSubscription is a convenience function that returns interface{} wrapped in DataSubscription

func (*DataSubscription) GetActualInstance ¶

func (obj *DataSubscription) GetActualInstance() interface{}

Get the actual instance

func (DataSubscription) MarshalJSON ¶

func (src DataSubscription) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DataSubscription) UnmarshalJSON ¶

func (dst *DataSubscription) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type DatalinkReportingConfiguration ¶

type DatalinkReportingConfiguration struct {
	DddTrafficDes []DddTrafficDescriptor `json:"dddTrafficDes,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"`
	Slice         *Snssai                `json:"slice,omitempty"`
	DddStatusList []DlDataDeliveryStatus `json:"dddStatusList,omitempty"`
}

DatalinkReportingConfiguration struct for DatalinkReportingConfiguration

func NewDatalinkReportingConfiguration ¶

func NewDatalinkReportingConfiguration() *DatalinkReportingConfiguration

NewDatalinkReportingConfiguration instantiates a new DatalinkReportingConfiguration 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 NewDatalinkReportingConfigurationWithDefaults ¶

func NewDatalinkReportingConfigurationWithDefaults() *DatalinkReportingConfiguration

NewDatalinkReportingConfigurationWithDefaults instantiates a new DatalinkReportingConfiguration 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 (*DatalinkReportingConfiguration) GetDddStatusList ¶

func (o *DatalinkReportingConfiguration) GetDddStatusList() []DlDataDeliveryStatus

GetDddStatusList returns the DddStatusList field value if set, zero value otherwise.

func (*DatalinkReportingConfiguration) GetDddStatusListOk ¶

func (o *DatalinkReportingConfiguration) GetDddStatusListOk() ([]DlDataDeliveryStatus, bool)

GetDddStatusListOk returns a tuple with the DddStatusList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatalinkReportingConfiguration) GetDddTrafficDes ¶

func (o *DatalinkReportingConfiguration) GetDddTrafficDes() []DddTrafficDescriptor

GetDddTrafficDes returns the DddTrafficDes field value if set, zero value otherwise.

func (*DatalinkReportingConfiguration) GetDddTrafficDesOk ¶

func (o *DatalinkReportingConfiguration) GetDddTrafficDesOk() ([]DddTrafficDescriptor, bool)

GetDddTrafficDesOk returns a tuple with the DddTrafficDes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatalinkReportingConfiguration) GetDnn ¶

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*DatalinkReportingConfiguration) GetDnnOk ¶

func (o *DatalinkReportingConfiguration) GetDnnOk() (*string, bool)

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 (*DatalinkReportingConfiguration) GetSlice ¶

func (o *DatalinkReportingConfiguration) GetSlice() Snssai

GetSlice returns the Slice field value if set, zero value otherwise.

func (*DatalinkReportingConfiguration) GetSliceOk ¶

func (o *DatalinkReportingConfiguration) GetSliceOk() (*Snssai, bool)

GetSliceOk returns a tuple with the Slice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DatalinkReportingConfiguration) HasDddStatusList ¶

func (o *DatalinkReportingConfiguration) HasDddStatusList() bool

HasDddStatusList returns a boolean if a field has been set.

func (*DatalinkReportingConfiguration) HasDddTrafficDes ¶

func (o *DatalinkReportingConfiguration) HasDddTrafficDes() bool

HasDddTrafficDes returns a boolean if a field has been set.

func (*DatalinkReportingConfiguration) HasDnn ¶

HasDnn returns a boolean if a field has been set.

func (*DatalinkReportingConfiguration) HasSlice ¶

func (o *DatalinkReportingConfiguration) HasSlice() bool

HasSlice returns a boolean if a field has been set.

func (DatalinkReportingConfiguration) MarshalJSON ¶

func (o DatalinkReportingConfiguration) MarshalJSON() ([]byte, error)

func (*DatalinkReportingConfiguration) SetDddStatusList ¶

func (o *DatalinkReportingConfiguration) SetDddStatusList(v []DlDataDeliveryStatus)

SetDddStatusList gets a reference to the given []DlDataDeliveryStatus and assigns it to the DddStatusList field.

func (*DatalinkReportingConfiguration) SetDddTrafficDes ¶

func (o *DatalinkReportingConfiguration) SetDddTrafficDes(v []DddTrafficDescriptor)

SetDddTrafficDes gets a reference to the given []DddTrafficDescriptor and assigns it to the DddTrafficDes field.

func (*DatalinkReportingConfiguration) SetDnn ¶

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*DatalinkReportingConfiguration) SetSlice ¶

func (o *DatalinkReportingConfiguration) SetSlice(v Snssai)

SetSlice gets a reference to the given Snssai and assigns it to the Slice field.

func (DatalinkReportingConfiguration) ToMap ¶

func (o DatalinkReportingConfiguration) ToMap() (map[string]interface{}, error)

type DatasetStatisticalProperty ¶

type DatasetStatisticalProperty struct {
	String *string
}

DatasetStatisticalProperty Possible values are: - UNIFORM_DIST_DATA: Indicates the use of data samples that are uniformly distributed according to the different aspects of the requested analytics. - NO_OUTLIERS: Indicates that the data samples shall disregard data samples that are at the extreme boundaries of the value range.

func (*DatasetStatisticalProperty) MarshalJSON ¶

func (src *DatasetStatisticalProperty) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DatasetStatisticalProperty) UnmarshalJSON ¶

func (dst *DatasetStatisticalProperty) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type DccfCond ¶

type DccfCond struct {
	ConditionType      string     `json:"conditionType"`
	TaiList            []Tai      `json:"taiList,omitempty"`
	TaiRangeList       []TaiRange `json:"taiRangeList,omitempty"`
	ServingNfTypeList  []NFType   `json:"servingNfTypeList,omitempty"`
	ServingNfSetIdList []string   `json:"servingNfSetIdList,omitempty"`
}

DccfCond Subscription to a set of NF Instances (DCCFs), identified by NF types, NF Set Id(s) or DCCF Serving Area information, i.e. list of TAIs served by the DCCF

func NewDccfCond ¶

func NewDccfCond(conditionType string) *DccfCond

NewDccfCond instantiates a new DccfCond 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 NewDccfCondWithDefaults ¶

func NewDccfCondWithDefaults() *DccfCond

NewDccfCondWithDefaults instantiates a new DccfCond 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 (*DccfCond) GetConditionType ¶

func (o *DccfCond) GetConditionType() string

GetConditionType returns the ConditionType field value

func (*DccfCond) GetConditionTypeOk ¶

func (o *DccfCond) GetConditionTypeOk() (*string, bool)

GetConditionTypeOk returns a tuple with the ConditionType field value and a boolean to check if the value has been set.

func (*DccfCond) GetServingNfSetIdList ¶

func (o *DccfCond) GetServingNfSetIdList() []string

GetServingNfSetIdList returns the ServingNfSetIdList field value if set, zero value otherwise.

func (*DccfCond) GetServingNfSetIdListOk ¶

func (o *DccfCond) GetServingNfSetIdListOk() ([]string, bool)

GetServingNfSetIdListOk returns a tuple with the ServingNfSetIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DccfCond) GetServingNfTypeList ¶

func (o *DccfCond) GetServingNfTypeList() []NFType

GetServingNfTypeList returns the ServingNfTypeList field value if set, zero value otherwise.

func (*DccfCond) GetServingNfTypeListOk ¶

func (o *DccfCond) GetServingNfTypeListOk() ([]NFType, bool)

GetServingNfTypeListOk returns a tuple with the ServingNfTypeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DccfCond) GetTaiList ¶

func (o *DccfCond) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*DccfCond) GetTaiListOk ¶

func (o *DccfCond) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DccfCond) GetTaiRangeList ¶

func (o *DccfCond) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*DccfCond) GetTaiRangeListOk ¶

func (o *DccfCond) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DccfCond) HasServingNfSetIdList ¶

func (o *DccfCond) HasServingNfSetIdList() bool

HasServingNfSetIdList returns a boolean if a field has been set.

func (*DccfCond) HasServingNfTypeList ¶

func (o *DccfCond) HasServingNfTypeList() bool

HasServingNfTypeList returns a boolean if a field has been set.

func (*DccfCond) HasTaiList ¶

func (o *DccfCond) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (*DccfCond) HasTaiRangeList ¶

func (o *DccfCond) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (DccfCond) MarshalJSON ¶

func (o DccfCond) MarshalJSON() ([]byte, error)

func (*DccfCond) SetConditionType ¶

func (o *DccfCond) SetConditionType(v string)

SetConditionType sets field value

func (*DccfCond) SetServingNfSetIdList ¶

func (o *DccfCond) SetServingNfSetIdList(v []string)

SetServingNfSetIdList gets a reference to the given []string and assigns it to the ServingNfSetIdList field.

func (*DccfCond) SetServingNfTypeList ¶

func (o *DccfCond) SetServingNfTypeList(v []NFType)

SetServingNfTypeList gets a reference to the given []NFType and assigns it to the ServingNfTypeList field.

func (*DccfCond) SetTaiList ¶

func (o *DccfCond) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (*DccfCond) SetTaiRangeList ¶

func (o *DccfCond) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (DccfCond) ToMap ¶

func (o DccfCond) ToMap() (map[string]interface{}, error)

type DccfEvent ¶

type DccfEvent struct {
	Interface *interface{}
}

DccfEvent - Identifies the (event exposure or analytics) event that the processing instructions shall apply to. Contains all event IDs related to DCCF.

func InterfaceAsDccfEvent ¶

func InterfaceAsDccfEvent(v *interface{}) DccfEvent

interface{}AsDccfEvent is a convenience function that returns interface{} wrapped in DccfEvent

func (*DccfEvent) GetActualInstance ¶

func (obj *DccfEvent) GetActualInstance() interface{}

Get the actual instance

func (DccfEvent) MarshalJSON ¶

func (src DccfEvent) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DccfEvent) UnmarshalJSON ¶

func (dst *DccfEvent) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type DccfInfo ¶

type DccfInfo struct {
	ServingNfTypeList  []NFType   `json:"servingNfTypeList,omitempty"`
	ServingNfSetIdList []string   `json:"servingNfSetIdList,omitempty"`
	TaiList            []Tai      `json:"taiList,omitempty"`
	TaiRangeList       []TaiRange `json:"taiRangeList,omitempty"`
}

DccfInfo Information of a DCCF NF Instance

func NewDccfInfo ¶

func NewDccfInfo() *DccfInfo

NewDccfInfo instantiates a new DccfInfo 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 NewDccfInfoWithDefaults ¶

func NewDccfInfoWithDefaults() *DccfInfo

NewDccfInfoWithDefaults instantiates a new DccfInfo 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 (*DccfInfo) GetServingNfSetIdList ¶

func (o *DccfInfo) GetServingNfSetIdList() []string

GetServingNfSetIdList returns the ServingNfSetIdList field value if set, zero value otherwise.

func (*DccfInfo) GetServingNfSetIdListOk ¶

func (o *DccfInfo) GetServingNfSetIdListOk() ([]string, bool)

GetServingNfSetIdListOk returns a tuple with the ServingNfSetIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DccfInfo) GetServingNfTypeList ¶

func (o *DccfInfo) GetServingNfTypeList() []NFType

GetServingNfTypeList returns the ServingNfTypeList field value if set, zero value otherwise.

func (*DccfInfo) GetServingNfTypeListOk ¶

func (o *DccfInfo) GetServingNfTypeListOk() ([]NFType, bool)

GetServingNfTypeListOk returns a tuple with the ServingNfTypeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DccfInfo) GetTaiList ¶

func (o *DccfInfo) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*DccfInfo) GetTaiListOk ¶

func (o *DccfInfo) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DccfInfo) GetTaiRangeList ¶

func (o *DccfInfo) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*DccfInfo) GetTaiRangeListOk ¶

func (o *DccfInfo) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DccfInfo) HasServingNfSetIdList ¶

func (o *DccfInfo) HasServingNfSetIdList() bool

HasServingNfSetIdList returns a boolean if a field has been set.

func (*DccfInfo) HasServingNfTypeList ¶

func (o *DccfInfo) HasServingNfTypeList() bool

HasServingNfTypeList returns a boolean if a field has been set.

func (*DccfInfo) HasTaiList ¶

func (o *DccfInfo) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (*DccfInfo) HasTaiRangeList ¶

func (o *DccfInfo) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (DccfInfo) MarshalJSON ¶

func (o DccfInfo) MarshalJSON() ([]byte, error)

func (*DccfInfo) SetServingNfSetIdList ¶

func (o *DccfInfo) SetServingNfSetIdList(v []string)

SetServingNfSetIdList gets a reference to the given []string and assigns it to the ServingNfSetIdList field.

func (*DccfInfo) SetServingNfTypeList ¶

func (o *DccfInfo) SetServingNfTypeList(v []NFType)

SetServingNfTypeList gets a reference to the given []NFType and assigns it to the ServingNfTypeList field.

func (*DccfInfo) SetTaiList ¶

func (o *DccfInfo) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (*DccfInfo) SetTaiRangeList ¶

func (o *DccfInfo) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (DccfInfo) ToMap ¶

func (o DccfInfo) ToMap() (map[string]interface{}, error)

type DddTrafficDescriptor ¶

type DddTrafficDescriptor struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string   `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber *int32 `json:"portNumber,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	MacAddr *string `json:"macAddr,omitempty"`
}

DddTrafficDescriptor Contains a Traffic Descriptor.

func NewDddTrafficDescriptor ¶

func NewDddTrafficDescriptor() *DddTrafficDescriptor

NewDddTrafficDescriptor instantiates a new DddTrafficDescriptor 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 NewDddTrafficDescriptorWithDefaults ¶

func NewDddTrafficDescriptorWithDefaults() *DddTrafficDescriptor

NewDddTrafficDescriptorWithDefaults instantiates a new DddTrafficDescriptor 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 (*DddTrafficDescriptor) GetIpv4Addr ¶

func (o *DddTrafficDescriptor) GetIpv4Addr() string

GetIpv4Addr returns the Ipv4Addr field value if set, zero value otherwise.

func (*DddTrafficDescriptor) GetIpv4AddrOk ¶

func (o *DddTrafficDescriptor) GetIpv4AddrOk() (*string, bool)

GetIpv4AddrOk returns a tuple with the Ipv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DddTrafficDescriptor) GetIpv6Addr ¶

func (o *DddTrafficDescriptor) GetIpv6Addr() Ipv6Addr

GetIpv6Addr returns the Ipv6Addr field value if set, zero value otherwise.

func (*DddTrafficDescriptor) GetIpv6AddrOk ¶

func (o *DddTrafficDescriptor) GetIpv6AddrOk() (*Ipv6Addr, bool)

GetIpv6AddrOk returns a tuple with the Ipv6Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DddTrafficDescriptor) GetMacAddr ¶

func (o *DddTrafficDescriptor) GetMacAddr() string

GetMacAddr returns the MacAddr field value if set, zero value otherwise.

func (*DddTrafficDescriptor) GetMacAddrOk ¶

func (o *DddTrafficDescriptor) GetMacAddrOk() (*string, bool)

GetMacAddrOk returns a tuple with the MacAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DddTrafficDescriptor) GetPortNumber ¶

func (o *DddTrafficDescriptor) GetPortNumber() int32

GetPortNumber returns the PortNumber field value if set, zero value otherwise.

func (*DddTrafficDescriptor) GetPortNumberOk ¶

func (o *DddTrafficDescriptor) GetPortNumberOk() (*int32, bool)

GetPortNumberOk returns a tuple with the PortNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DddTrafficDescriptor) HasIpv4Addr ¶

func (o *DddTrafficDescriptor) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasIpv6Addr ¶

func (o *DddTrafficDescriptor) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasMacAddr ¶

func (o *DddTrafficDescriptor) HasMacAddr() bool

HasMacAddr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasPortNumber ¶

func (o *DddTrafficDescriptor) HasPortNumber() bool

HasPortNumber returns a boolean if a field has been set.

func (DddTrafficDescriptor) MarshalJSON ¶

func (o DddTrafficDescriptor) MarshalJSON() ([]byte, error)

func (*DddTrafficDescriptor) SetIpv4Addr ¶

func (o *DddTrafficDescriptor) SetIpv4Addr(v string)

SetIpv4Addr gets a reference to the given string and assigns it to the Ipv4Addr field.

func (*DddTrafficDescriptor) SetIpv6Addr ¶

func (o *DddTrafficDescriptor) SetIpv6Addr(v Ipv6Addr)

SetIpv6Addr gets a reference to the given Ipv6Addr and assigns it to the Ipv6Addr field.

func (*DddTrafficDescriptor) SetMacAddr ¶

func (o *DddTrafficDescriptor) SetMacAddr(v string)

SetMacAddr gets a reference to the given string and assigns it to the MacAddr field.

func (*DddTrafficDescriptor) SetPortNumber ¶

func (o *DddTrafficDescriptor) SetPortNumber(v int32)

SetPortNumber gets a reference to the given int32 and assigns it to the PortNumber field.

func (DddTrafficDescriptor) ToMap ¶

func (o DddTrafficDescriptor) ToMap() (map[string]interface{}, error)

type DefSubServiceInfo ¶

type DefSubServiceInfo struct {
	Versions []string `json:"versions,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures *string `json:"supportedFeatures,omitempty"`
}

DefSubServiceInfo Service Specific information for Default Notification Subscription.

func NewDefSubServiceInfo ¶

func NewDefSubServiceInfo() *DefSubServiceInfo

NewDefSubServiceInfo instantiates a new DefSubServiceInfo 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 NewDefSubServiceInfoWithDefaults ¶

func NewDefSubServiceInfoWithDefaults() *DefSubServiceInfo

NewDefSubServiceInfoWithDefaults instantiates a new DefSubServiceInfo 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 (*DefSubServiceInfo) GetSupportedFeatures ¶

func (o *DefSubServiceInfo) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*DefSubServiceInfo) GetSupportedFeaturesOk ¶

func (o *DefSubServiceInfo) GetSupportedFeaturesOk() (*string, bool)

GetSupportedFeaturesOk returns a tuple with the SupportedFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DefSubServiceInfo) GetVersions ¶

func (o *DefSubServiceInfo) GetVersions() []string

GetVersions returns the Versions field value if set, zero value otherwise.

func (*DefSubServiceInfo) GetVersionsOk ¶

func (o *DefSubServiceInfo) GetVersionsOk() ([]string, bool)

GetVersionsOk returns a tuple with the Versions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DefSubServiceInfo) HasSupportedFeatures ¶

func (o *DefSubServiceInfo) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*DefSubServiceInfo) HasVersions ¶

func (o *DefSubServiceInfo) HasVersions() bool

HasVersions returns a boolean if a field has been set.

func (DefSubServiceInfo) MarshalJSON ¶

func (o DefSubServiceInfo) MarshalJSON() ([]byte, error)

func (*DefSubServiceInfo) SetSupportedFeatures ¶

func (o *DefSubServiceInfo) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*DefSubServiceInfo) SetVersions ¶

func (o *DefSubServiceInfo) SetVersions(v []string)

SetVersions gets a reference to the given []string and assigns it to the Versions field.

func (DefSubServiceInfo) ToMap ¶

func (o DefSubServiceInfo) ToMap() (map[string]interface{}, error)

type DefaultNotificationSubscription ¶

type DefaultNotificationSubscription struct {
	NotificationType NotificationType `json:"notificationType"`
	// String providing an URI formatted according to RFC 3986.
	CallbackUri        string              `json:"callbackUri"`
	N1MessageClass     *N1MessageClass     `json:"n1MessageClass,omitempty"`
	N2InformationClass *N2InformationClass `json:"n2InformationClass,omitempty"`
	Versions           []string            `json:"versions,omitempty"`
	Binding            *string             `json:"binding,omitempty"`
	AcceptedEncoding   *string             `json:"acceptedEncoding,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures *string `json:"supportedFeatures,omitempty"`
	// A map of service specific information. The name of the corresponding service (as specified in ServiceName data type) is the key.
	ServiceInfoList *map[string]DefSubServiceInfo `json:"serviceInfoList,omitempty"`
}

DefaultNotificationSubscription Data structure for specifying the notifications the NF service subscribes by default, along with callback URI

func NewDefaultNotificationSubscription ¶

func NewDefaultNotificationSubscription(notificationType NotificationType, callbackUri string) *DefaultNotificationSubscription

NewDefaultNotificationSubscription instantiates a new DefaultNotificationSubscription 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 NewDefaultNotificationSubscriptionWithDefaults ¶

func NewDefaultNotificationSubscriptionWithDefaults() *DefaultNotificationSubscription

NewDefaultNotificationSubscriptionWithDefaults instantiates a new DefaultNotificationSubscription 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 (*DefaultNotificationSubscription) GetAcceptedEncoding ¶

func (o *DefaultNotificationSubscription) GetAcceptedEncoding() string

GetAcceptedEncoding returns the AcceptedEncoding field value if set, zero value otherwise.

func (*DefaultNotificationSubscription) GetAcceptedEncodingOk ¶

func (o *DefaultNotificationSubscription) GetAcceptedEncodingOk() (*string, bool)

GetAcceptedEncodingOk returns a tuple with the AcceptedEncoding field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DefaultNotificationSubscription) GetBinding ¶

func (o *DefaultNotificationSubscription) GetBinding() string

GetBinding returns the Binding field value if set, zero value otherwise.

func (*DefaultNotificationSubscription) GetBindingOk ¶

func (o *DefaultNotificationSubscription) GetBindingOk() (*string, bool)

GetBindingOk returns a tuple with the Binding field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DefaultNotificationSubscription) GetCallbackUri ¶

func (o *DefaultNotificationSubscription) GetCallbackUri() string

GetCallbackUri returns the CallbackUri field value

func (*DefaultNotificationSubscription) GetCallbackUriOk ¶

func (o *DefaultNotificationSubscription) GetCallbackUriOk() (*string, bool)

GetCallbackUriOk returns a tuple with the CallbackUri field value and a boolean to check if the value has been set.

func (*DefaultNotificationSubscription) GetN1MessageClass ¶

func (o *DefaultNotificationSubscription) GetN1MessageClass() N1MessageClass

GetN1MessageClass returns the N1MessageClass field value if set, zero value otherwise.

func (*DefaultNotificationSubscription) GetN1MessageClassOk ¶

func (o *DefaultNotificationSubscription) GetN1MessageClassOk() (*N1MessageClass, bool)

GetN1MessageClassOk returns a tuple with the N1MessageClass field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DefaultNotificationSubscription) GetN2InformationClass ¶

func (o *DefaultNotificationSubscription) GetN2InformationClass() N2InformationClass

GetN2InformationClass returns the N2InformationClass field value if set, zero value otherwise.

func (*DefaultNotificationSubscription) GetN2InformationClassOk ¶

func (o *DefaultNotificationSubscription) GetN2InformationClassOk() (*N2InformationClass, bool)

GetN2InformationClassOk returns a tuple with the N2InformationClass field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DefaultNotificationSubscription) GetNotificationType ¶

func (o *DefaultNotificationSubscription) GetNotificationType() NotificationType

GetNotificationType returns the NotificationType field value

func (*DefaultNotificationSubscription) GetNotificationTypeOk ¶

func (o *DefaultNotificationSubscription) GetNotificationTypeOk() (*NotificationType, bool)

GetNotificationTypeOk returns a tuple with the NotificationType field value and a boolean to check if the value has been set.

func (*DefaultNotificationSubscription) GetServiceInfoList ¶

func (o *DefaultNotificationSubscription) GetServiceInfoList() map[string]DefSubServiceInfo

GetServiceInfoList returns the ServiceInfoList field value if set, zero value otherwise.

func (*DefaultNotificationSubscription) GetServiceInfoListOk ¶

func (o *DefaultNotificationSubscription) GetServiceInfoListOk() (*map[string]DefSubServiceInfo, bool)

GetServiceInfoListOk returns a tuple with the ServiceInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DefaultNotificationSubscription) GetSupportedFeatures ¶

func (o *DefaultNotificationSubscription) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*DefaultNotificationSubscription) GetSupportedFeaturesOk ¶

func (o *DefaultNotificationSubscription) GetSupportedFeaturesOk() (*string, bool)

GetSupportedFeaturesOk returns a tuple with the SupportedFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DefaultNotificationSubscription) GetVersions ¶

func (o *DefaultNotificationSubscription) GetVersions() []string

GetVersions returns the Versions field value if set, zero value otherwise.

func (*DefaultNotificationSubscription) GetVersionsOk ¶

func (o *DefaultNotificationSubscription) GetVersionsOk() ([]string, bool)

GetVersionsOk returns a tuple with the Versions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DefaultNotificationSubscription) HasAcceptedEncoding ¶

func (o *DefaultNotificationSubscription) HasAcceptedEncoding() bool

HasAcceptedEncoding returns a boolean if a field has been set.

func (*DefaultNotificationSubscription) HasBinding ¶

func (o *DefaultNotificationSubscription) HasBinding() bool

HasBinding returns a boolean if a field has been set.

func (*DefaultNotificationSubscription) HasN1MessageClass ¶

func (o *DefaultNotificationSubscription) HasN1MessageClass() bool

HasN1MessageClass returns a boolean if a field has been set.

func (*DefaultNotificationSubscription) HasN2InformationClass ¶

func (o *DefaultNotificationSubscription) HasN2InformationClass() bool

HasN2InformationClass returns a boolean if a field has been set.

func (*DefaultNotificationSubscription) HasServiceInfoList ¶

func (o *DefaultNotificationSubscription) HasServiceInfoList() bool

HasServiceInfoList returns a boolean if a field has been set.

func (*DefaultNotificationSubscription) HasSupportedFeatures ¶

func (o *DefaultNotificationSubscription) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*DefaultNotificationSubscription) HasVersions ¶

func (o *DefaultNotificationSubscription) HasVersions() bool

HasVersions returns a boolean if a field has been set.

func (DefaultNotificationSubscription) MarshalJSON ¶

func (o DefaultNotificationSubscription) MarshalJSON() ([]byte, error)

func (*DefaultNotificationSubscription) SetAcceptedEncoding ¶

func (o *DefaultNotificationSubscription) SetAcceptedEncoding(v string)

SetAcceptedEncoding gets a reference to the given string and assigns it to the AcceptedEncoding field.

func (*DefaultNotificationSubscription) SetBinding ¶

func (o *DefaultNotificationSubscription) SetBinding(v string)

SetBinding gets a reference to the given string and assigns it to the Binding field.

func (*DefaultNotificationSubscription) SetCallbackUri ¶

func (o *DefaultNotificationSubscription) SetCallbackUri(v string)

SetCallbackUri sets field value

func (*DefaultNotificationSubscription) SetN1MessageClass ¶

func (o *DefaultNotificationSubscription) SetN1MessageClass(v N1MessageClass)

SetN1MessageClass gets a reference to the given N1MessageClass and assigns it to the N1MessageClass field.

func (*DefaultNotificationSubscription) SetN2InformationClass ¶

func (o *DefaultNotificationSubscription) SetN2InformationClass(v N2InformationClass)

SetN2InformationClass gets a reference to the given N2InformationClass and assigns it to the N2InformationClass field.

func (*DefaultNotificationSubscription) SetNotificationType ¶

func (o *DefaultNotificationSubscription) SetNotificationType(v NotificationType)

SetNotificationType sets field value

func (*DefaultNotificationSubscription) SetServiceInfoList ¶

func (o *DefaultNotificationSubscription) SetServiceInfoList(v map[string]DefSubServiceInfo)

SetServiceInfoList gets a reference to the given map[string]DefSubServiceInfo and assigns it to the ServiceInfoList field.

func (*DefaultNotificationSubscription) SetSupportedFeatures ¶

func (o *DefaultNotificationSubscription) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*DefaultNotificationSubscription) SetVersions ¶

func (o *DefaultNotificationSubscription) SetVersions(v []string)

SetVersions gets a reference to the given []string and assigns it to the Versions field.

func (DefaultNotificationSubscription) ToMap ¶

func (o DefaultNotificationSubscription) ToMap() (map[string]interface{}, error)

type DispersionArea ¶

type DispersionArea struct {
	TaiList  []Tai  `json:"taiList,omitempty"`
	NcgiList []Ncgi `json:"ncgiList,omitempty"`
	EcgiList []Ecgi `json:"ecgiList,omitempty"`
	N3gaInd  *bool  `json:"n3gaInd,omitempty"`
}

DispersionArea Dispersion Area

func NewDispersionArea ¶

func NewDispersionArea() *DispersionArea

NewDispersionArea instantiates a new DispersionArea 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 NewDispersionAreaWithDefaults ¶

func NewDispersionAreaWithDefaults() *DispersionArea

NewDispersionAreaWithDefaults instantiates a new DispersionArea 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 (*DispersionArea) GetEcgiList ¶

func (o *DispersionArea) GetEcgiList() []Ecgi

GetEcgiList returns the EcgiList field value if set, zero value otherwise.

func (*DispersionArea) GetEcgiListOk ¶

func (o *DispersionArea) GetEcgiListOk() ([]Ecgi, bool)

GetEcgiListOk returns a tuple with the EcgiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionArea) GetN3gaInd ¶

func (o *DispersionArea) GetN3gaInd() bool

GetN3gaInd returns the N3gaInd field value if set, zero value otherwise.

func (*DispersionArea) GetN3gaIndOk ¶

func (o *DispersionArea) GetN3gaIndOk() (*bool, bool)

GetN3gaIndOk returns a tuple with the N3gaInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionArea) GetNcgiList ¶

func (o *DispersionArea) GetNcgiList() []Ncgi

GetNcgiList returns the NcgiList field value if set, zero value otherwise.

func (*DispersionArea) GetNcgiListOk ¶

func (o *DispersionArea) GetNcgiListOk() ([]Ncgi, bool)

GetNcgiListOk returns a tuple with the NcgiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionArea) GetTaiList ¶

func (o *DispersionArea) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*DispersionArea) GetTaiListOk ¶

func (o *DispersionArea) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionArea) HasEcgiList ¶

func (o *DispersionArea) HasEcgiList() bool

HasEcgiList returns a boolean if a field has been set.

func (*DispersionArea) HasN3gaInd ¶

func (o *DispersionArea) HasN3gaInd() bool

HasN3gaInd returns a boolean if a field has been set.

func (*DispersionArea) HasNcgiList ¶

func (o *DispersionArea) HasNcgiList() bool

HasNcgiList returns a boolean if a field has been set.

func (*DispersionArea) HasTaiList ¶

func (o *DispersionArea) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (DispersionArea) MarshalJSON ¶

func (o DispersionArea) MarshalJSON() ([]byte, error)

func (*DispersionArea) SetEcgiList ¶

func (o *DispersionArea) SetEcgiList(v []Ecgi)

SetEcgiList gets a reference to the given []Ecgi and assigns it to the EcgiList field.

func (*DispersionArea) SetN3gaInd ¶

func (o *DispersionArea) SetN3gaInd(v bool)

SetN3gaInd gets a reference to the given bool and assigns it to the N3gaInd field.

func (*DispersionArea) SetNcgiList ¶

func (o *DispersionArea) SetNcgiList(v []Ncgi)

SetNcgiList gets a reference to the given []Ncgi and assigns it to the NcgiList field.

func (*DispersionArea) SetTaiList ¶

func (o *DispersionArea) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (DispersionArea) ToMap ¶

func (o DispersionArea) ToMap() (map[string]interface{}, error)

type DispersionClass ¶

type DispersionClass struct {
	String *string
}

DispersionClass - Possible values are: - FIXED: Dispersion class as fixed UE its data or transaction usage at a location or a slice, is higher than its class threshold set for its all data or transaction usage. - CAMPER: Dispersion class as camper UE, its data or transaction usage at a location or a slice, is higher than its class threshold and lower than the fixed class threshold set for its all data or transaction usage.. - TRAVELLER: Dispersion class as traveller UE, its data or transaction usage at a location or a slice, is lower than the camper class threshold set for its all data or transaction usage. - TOP_HEAVY: Dispersion class as Top_Heavy UE, who's dispersion percentile rating at a location or a slice, is higher than its class threshold.

func StringAsDispersionClass ¶

func StringAsDispersionClass(v *string) DispersionClass

stringAsDispersionClass is a convenience function that returns string wrapped in DispersionClass

func (*DispersionClass) GetActualInstance ¶

func (obj *DispersionClass) GetActualInstance() interface{}

Get the actual instance

func (DispersionClass) MarshalJSON ¶

func (src DispersionClass) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DispersionClass) UnmarshalJSON ¶

func (dst *DispersionClass) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type DispersionCollection ¶

type DispersionCollection struct {
	UeLoc      *UserLocation       `json:"ueLoc,omitempty"`
	Snssai     *Snssai             `json:"snssai,omitempty"`
	Supis      []string            `json:"supis,omitempty"`
	Gpsis      []string            `json:"gpsis,omitempty"`
	AppVolumes []ApplicationVolume `json:"appVolumes,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	DisperAmount *int32           `json:"disperAmount,omitempty"`
	DisperClass  *DispersionClass `json:"disperClass,omitempty"`
	// Integer where the allowed values correspond to 1, 2, 3 only.
	UsageRank *int32 `json:"usageRank,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	PercentileRank *int32 `json:"percentileRank,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	UeRatio *int32 `json:"ueRatio,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Confidence *int32 `json:"confidence,omitempty"`
}

DispersionCollection Dispersion collection per UE location or per slice.

func NewDispersionCollection ¶

func NewDispersionCollection() *DispersionCollection

NewDispersionCollection instantiates a new DispersionCollection 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 NewDispersionCollectionWithDefaults ¶

func NewDispersionCollectionWithDefaults() *DispersionCollection

NewDispersionCollectionWithDefaults instantiates a new DispersionCollection 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 (*DispersionCollection) GetAppVolumes ¶

func (o *DispersionCollection) GetAppVolumes() []ApplicationVolume

GetAppVolumes returns the AppVolumes field value if set, zero value otherwise.

func (*DispersionCollection) GetAppVolumesOk ¶

func (o *DispersionCollection) GetAppVolumesOk() ([]ApplicationVolume, bool)

GetAppVolumesOk returns a tuple with the AppVolumes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionCollection) GetConfidence ¶

func (o *DispersionCollection) GetConfidence() int32

GetConfidence returns the Confidence field value if set, zero value otherwise.

func (*DispersionCollection) GetConfidenceOk ¶

func (o *DispersionCollection) GetConfidenceOk() (*int32, bool)

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 (*DispersionCollection) GetDisperAmount ¶

func (o *DispersionCollection) GetDisperAmount() int32

GetDisperAmount returns the DisperAmount field value if set, zero value otherwise.

func (*DispersionCollection) GetDisperAmountOk ¶

func (o *DispersionCollection) GetDisperAmountOk() (*int32, bool)

GetDisperAmountOk returns a tuple with the DisperAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionCollection) GetDisperClass ¶

func (o *DispersionCollection) GetDisperClass() DispersionClass

GetDisperClass returns the DisperClass field value if set, zero value otherwise.

func (*DispersionCollection) GetDisperClassOk ¶

func (o *DispersionCollection) GetDisperClassOk() (*DispersionClass, bool)

GetDisperClassOk returns a tuple with the DisperClass field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionCollection) GetGpsis ¶

func (o *DispersionCollection) GetGpsis() []string

GetGpsis returns the Gpsis field value if set, zero value otherwise.

func (*DispersionCollection) GetGpsisOk ¶

func (o *DispersionCollection) GetGpsisOk() ([]string, bool)

GetGpsisOk returns a tuple with the Gpsis field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionCollection) GetPercentileRank ¶

func (o *DispersionCollection) GetPercentileRank() int32

GetPercentileRank returns the PercentileRank field value if set, zero value otherwise.

func (*DispersionCollection) GetPercentileRankOk ¶

func (o *DispersionCollection) GetPercentileRankOk() (*int32, bool)

GetPercentileRankOk returns a tuple with the PercentileRank field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionCollection) GetSnssai ¶

func (o *DispersionCollection) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*DispersionCollection) GetSnssaiOk ¶

func (o *DispersionCollection) GetSnssaiOk() (*Snssai, bool)

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 (*DispersionCollection) GetSupis ¶

func (o *DispersionCollection) GetSupis() []string

GetSupis returns the Supis field value if set, zero value otherwise.

func (*DispersionCollection) GetSupisOk ¶

func (o *DispersionCollection) GetSupisOk() ([]string, bool)

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 (*DispersionCollection) GetUeLoc ¶

func (o *DispersionCollection) GetUeLoc() UserLocation

GetUeLoc returns the UeLoc field value if set, zero value otherwise.

func (*DispersionCollection) GetUeLocOk ¶

func (o *DispersionCollection) GetUeLocOk() (*UserLocation, bool)

GetUeLocOk returns a tuple with the UeLoc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionCollection) GetUeRatio ¶

func (o *DispersionCollection) GetUeRatio() int32

GetUeRatio returns the UeRatio field value if set, zero value otherwise.

func (*DispersionCollection) GetUeRatioOk ¶

func (o *DispersionCollection) GetUeRatioOk() (*int32, bool)

GetUeRatioOk returns a tuple with the UeRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionCollection) GetUsageRank ¶

func (o *DispersionCollection) GetUsageRank() int32

GetUsageRank returns the UsageRank field value if set, zero value otherwise.

func (*DispersionCollection) GetUsageRankOk ¶

func (o *DispersionCollection) GetUsageRankOk() (*int32, bool)

GetUsageRankOk returns a tuple with the UsageRank field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionCollection) HasAppVolumes ¶

func (o *DispersionCollection) HasAppVolumes() bool

HasAppVolumes returns a boolean if a field has been set.

func (*DispersionCollection) HasConfidence ¶

func (o *DispersionCollection) HasConfidence() bool

HasConfidence returns a boolean if a field has been set.

func (*DispersionCollection) HasDisperAmount ¶

func (o *DispersionCollection) HasDisperAmount() bool

HasDisperAmount returns a boolean if a field has been set.

func (*DispersionCollection) HasDisperClass ¶

func (o *DispersionCollection) HasDisperClass() bool

HasDisperClass returns a boolean if a field has been set.

func (*DispersionCollection) HasGpsis ¶

func (o *DispersionCollection) HasGpsis() bool

HasGpsis returns a boolean if a field has been set.

func (*DispersionCollection) HasPercentileRank ¶

func (o *DispersionCollection) HasPercentileRank() bool

HasPercentileRank returns a boolean if a field has been set.

func (*DispersionCollection) HasSnssai ¶

func (o *DispersionCollection) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*DispersionCollection) HasSupis ¶

func (o *DispersionCollection) HasSupis() bool

HasSupis returns a boolean if a field has been set.

func (*DispersionCollection) HasUeLoc ¶

func (o *DispersionCollection) HasUeLoc() bool

HasUeLoc returns a boolean if a field has been set.

func (*DispersionCollection) HasUeRatio ¶

func (o *DispersionCollection) HasUeRatio() bool

HasUeRatio returns a boolean if a field has been set.

func (*DispersionCollection) HasUsageRank ¶

func (o *DispersionCollection) HasUsageRank() bool

HasUsageRank returns a boolean if a field has been set.

func (DispersionCollection) MarshalJSON ¶

func (o DispersionCollection) MarshalJSON() ([]byte, error)

func (*DispersionCollection) SetAppVolumes ¶

func (o *DispersionCollection) SetAppVolumes(v []ApplicationVolume)

SetAppVolumes gets a reference to the given []ApplicationVolume and assigns it to the AppVolumes field.

func (*DispersionCollection) SetConfidence ¶

func (o *DispersionCollection) SetConfidence(v int32)

SetConfidence gets a reference to the given int32 and assigns it to the Confidence field.

func (*DispersionCollection) SetDisperAmount ¶

func (o *DispersionCollection) SetDisperAmount(v int32)

SetDisperAmount gets a reference to the given int32 and assigns it to the DisperAmount field.

func (*DispersionCollection) SetDisperClass ¶

func (o *DispersionCollection) SetDisperClass(v DispersionClass)

SetDisperClass gets a reference to the given DispersionClass and assigns it to the DisperClass field.

func (*DispersionCollection) SetGpsis ¶

func (o *DispersionCollection) SetGpsis(v []string)

SetGpsis gets a reference to the given []string and assigns it to the Gpsis field.

func (*DispersionCollection) SetPercentileRank ¶

func (o *DispersionCollection) SetPercentileRank(v int32)

SetPercentileRank gets a reference to the given int32 and assigns it to the PercentileRank field.

func (*DispersionCollection) SetSnssai ¶

func (o *DispersionCollection) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (*DispersionCollection) SetSupis ¶

func (o *DispersionCollection) SetSupis(v []string)

SetSupis gets a reference to the given []string and assigns it to the Supis field.

func (*DispersionCollection) SetUeLoc ¶

func (o *DispersionCollection) SetUeLoc(v UserLocation)

SetUeLoc gets a reference to the given UserLocation and assigns it to the UeLoc field.

func (*DispersionCollection) SetUeRatio ¶

func (o *DispersionCollection) SetUeRatio(v int32)

SetUeRatio gets a reference to the given int32 and assigns it to the UeRatio field.

func (*DispersionCollection) SetUsageRank ¶

func (o *DispersionCollection) SetUsageRank(v int32)

SetUsageRank gets a reference to the given int32 and assigns it to the UsageRank field.

func (DispersionCollection) ToMap ¶

func (o DispersionCollection) ToMap() (map[string]interface{}, error)

type DispersionCollection1 ¶

type DispersionCollection1 struct {
	Interface *interface{}
}

DispersionCollection1 - Contains the dispersion information collected for an AF.

func InterfaceAsDispersionCollection1 ¶

func InterfaceAsDispersionCollection1(v *interface{}) DispersionCollection1

interface{}AsDispersionCollection1 is a convenience function that returns interface{} wrapped in DispersionCollection1

func (*DispersionCollection1) GetActualInstance ¶

func (obj *DispersionCollection1) GetActualInstance() interface{}

Get the actual instance

func (DispersionCollection1) MarshalJSON ¶

func (src DispersionCollection1) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DispersionCollection1) UnmarshalJSON ¶

func (dst *DispersionCollection1) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type DispersionInfo ¶

type DispersionInfo struct {
	// string with format 'date-time' as defined in OpenAPI.
	TsStart time.Time `json:"tsStart"`
	// indicating a time in seconds.
	TsDuration     int32                  `json:"tsDuration"`
	DisperCollects []DispersionCollection `json:"disperCollects"`
	DisperType     DispersionType         `json:"disperType"`
}

DispersionInfo Represents the Dispersion information. When subscribed event is \"DISPERSION\", the \"disperInfos\" attribute shall be included.

func NewDispersionInfo ¶

func NewDispersionInfo(tsStart time.Time, tsDuration int32, disperCollects []DispersionCollection, disperType DispersionType) *DispersionInfo

NewDispersionInfo instantiates a new DispersionInfo 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 NewDispersionInfoWithDefaults ¶

func NewDispersionInfoWithDefaults() *DispersionInfo

NewDispersionInfoWithDefaults instantiates a new DispersionInfo 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 (*DispersionInfo) GetDisperCollects ¶

func (o *DispersionInfo) GetDisperCollects() []DispersionCollection

GetDisperCollects returns the DisperCollects field value

func (*DispersionInfo) GetDisperCollectsOk ¶

func (o *DispersionInfo) GetDisperCollectsOk() ([]DispersionCollection, bool)

GetDisperCollectsOk returns a tuple with the DisperCollects field value and a boolean to check if the value has been set.

func (*DispersionInfo) GetDisperType ¶

func (o *DispersionInfo) GetDisperType() DispersionType

GetDisperType returns the DisperType field value

func (*DispersionInfo) GetDisperTypeOk ¶

func (o *DispersionInfo) GetDisperTypeOk() (*DispersionType, bool)

GetDisperTypeOk returns a tuple with the DisperType field value and a boolean to check if the value has been set.

func (*DispersionInfo) GetTsDuration ¶

func (o *DispersionInfo) GetTsDuration() int32

GetTsDuration returns the TsDuration field value

func (*DispersionInfo) GetTsDurationOk ¶

func (o *DispersionInfo) GetTsDurationOk() (*int32, bool)

GetTsDurationOk returns a tuple with the TsDuration field value and a boolean to check if the value has been set.

func (*DispersionInfo) GetTsStart ¶

func (o *DispersionInfo) GetTsStart() time.Time

GetTsStart returns the TsStart field value

func (*DispersionInfo) GetTsStartOk ¶

func (o *DispersionInfo) GetTsStartOk() (*time.Time, bool)

GetTsStartOk returns a tuple with the TsStart field value and a boolean to check if the value has been set.

func (DispersionInfo) MarshalJSON ¶

func (o DispersionInfo) MarshalJSON() ([]byte, error)

func (*DispersionInfo) SetDisperCollects ¶

func (o *DispersionInfo) SetDisperCollects(v []DispersionCollection)

SetDisperCollects sets field value

func (*DispersionInfo) SetDisperType ¶

func (o *DispersionInfo) SetDisperType(v DispersionType)

SetDisperType sets field value

func (*DispersionInfo) SetTsDuration ¶

func (o *DispersionInfo) SetTsDuration(v int32)

SetTsDuration sets field value

func (*DispersionInfo) SetTsStart ¶

func (o *DispersionInfo) SetTsStart(v time.Time)

SetTsStart sets field value

func (DispersionInfo) ToMap ¶

func (o DispersionInfo) ToMap() (map[string]interface{}, error)

type DispersionOrderingCriterion ¶

type DispersionOrderingCriterion struct {
	String *string
}

DispersionOrderingCriterion Possible values are: - TIME_SLOT_START: Indicates the order of time slot start. - DISPERSION: Indicates the order of data/transaction dispersion. - CLASSIFICATION: Indicates the order of data/transaction classification. - RANKING: Indicates the order of data/transaction ranking. - PERCENTILE_RANKING: Indicates the order of data/transaction percentile ranking.

func (*DispersionOrderingCriterion) MarshalJSON ¶

func (src *DispersionOrderingCriterion) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DispersionOrderingCriterion) UnmarshalJSON ¶

func (dst *DispersionOrderingCriterion) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type DispersionRequirement ¶

type DispersionRequirement struct {
	DisperType      DispersionType               `json:"disperType"`
	ClassCriters    []ClassCriterion             `json:"classCriters,omitempty"`
	RankCriters     []RankingCriterion           `json:"rankCriters,omitempty"`
	DispOrderCriter *DispersionOrderingCriterion `json:"dispOrderCriter,omitempty"`
	Order           *MatchingDirection           `json:"order,omitempty"`
}

DispersionRequirement Represents the dispersion analytics requirements.

func NewDispersionRequirement ¶

func NewDispersionRequirement(disperType DispersionType) *DispersionRequirement

NewDispersionRequirement instantiates a new DispersionRequirement 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 NewDispersionRequirementWithDefaults ¶

func NewDispersionRequirementWithDefaults() *DispersionRequirement

NewDispersionRequirementWithDefaults instantiates a new DispersionRequirement 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 (*DispersionRequirement) GetClassCriters ¶

func (o *DispersionRequirement) GetClassCriters() []ClassCriterion

GetClassCriters returns the ClassCriters field value if set, zero value otherwise.

func (*DispersionRequirement) GetClassCritersOk ¶

func (o *DispersionRequirement) GetClassCritersOk() ([]ClassCriterion, bool)

GetClassCritersOk returns a tuple with the ClassCriters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionRequirement) GetDispOrderCriter ¶

func (o *DispersionRequirement) GetDispOrderCriter() DispersionOrderingCriterion

GetDispOrderCriter returns the DispOrderCriter field value if set, zero value otherwise.

func (*DispersionRequirement) GetDispOrderCriterOk ¶

func (o *DispersionRequirement) GetDispOrderCriterOk() (*DispersionOrderingCriterion, bool)

GetDispOrderCriterOk returns a tuple with the DispOrderCriter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionRequirement) GetDisperType ¶

func (o *DispersionRequirement) GetDisperType() DispersionType

GetDisperType returns the DisperType field value

func (*DispersionRequirement) GetDisperTypeOk ¶

func (o *DispersionRequirement) GetDisperTypeOk() (*DispersionType, bool)

GetDisperTypeOk returns a tuple with the DisperType field value and a boolean to check if the value has been set.

func (*DispersionRequirement) GetOrder ¶

GetOrder returns the Order field value if set, zero value otherwise.

func (*DispersionRequirement) GetOrderOk ¶

func (o *DispersionRequirement) GetOrderOk() (*MatchingDirection, bool)

GetOrderOk returns a tuple with the Order field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionRequirement) GetRankCriters ¶

func (o *DispersionRequirement) GetRankCriters() []RankingCriterion

GetRankCriters returns the RankCriters field value if set, zero value otherwise.

func (*DispersionRequirement) GetRankCritersOk ¶

func (o *DispersionRequirement) GetRankCritersOk() ([]RankingCriterion, bool)

GetRankCritersOk returns a tuple with the RankCriters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DispersionRequirement) HasClassCriters ¶

func (o *DispersionRequirement) HasClassCriters() bool

HasClassCriters returns a boolean if a field has been set.

func (*DispersionRequirement) HasDispOrderCriter ¶

func (o *DispersionRequirement) HasDispOrderCriter() bool

HasDispOrderCriter returns a boolean if a field has been set.

func (*DispersionRequirement) HasOrder ¶

func (o *DispersionRequirement) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (*DispersionRequirement) HasRankCriters ¶

func (o *DispersionRequirement) HasRankCriters() bool

HasRankCriters returns a boolean if a field has been set.

func (DispersionRequirement) MarshalJSON ¶

func (o DispersionRequirement) MarshalJSON() ([]byte, error)

func (*DispersionRequirement) SetClassCriters ¶

func (o *DispersionRequirement) SetClassCriters(v []ClassCriterion)

SetClassCriters gets a reference to the given []ClassCriterion and assigns it to the ClassCriters field.

func (*DispersionRequirement) SetDispOrderCriter ¶

func (o *DispersionRequirement) SetDispOrderCriter(v DispersionOrderingCriterion)

SetDispOrderCriter gets a reference to the given DispersionOrderingCriterion and assigns it to the DispOrderCriter field.

func (*DispersionRequirement) SetDisperType ¶

func (o *DispersionRequirement) SetDisperType(v DispersionType)

SetDisperType sets field value

func (*DispersionRequirement) SetOrder ¶

SetOrder gets a reference to the given MatchingDirection and assigns it to the Order field.

func (*DispersionRequirement) SetRankCriters ¶

func (o *DispersionRequirement) SetRankCriters(v []RankingCriterion)

SetRankCriters gets a reference to the given []RankingCriterion and assigns it to the RankCriters field.

func (DispersionRequirement) ToMap ¶

func (o DispersionRequirement) ToMap() (map[string]interface{}, error)

type DispersionType ¶

type DispersionType struct {
	String *string
}

DispersionType - Possible values are: - DVDA: Data Volume Dispersion Analytics. - TDA: Transactions Dispersion Analytics. - DVDA_AND_TDA: Data Volume Dispersion Analytics and Transactions Dispersion Analytics.

func StringAsDispersionType ¶

func StringAsDispersionType(v *string) DispersionType

stringAsDispersionType is a convenience function that returns string wrapped in DispersionType

func (*DispersionType) GetActualInstance ¶

func (obj *DispersionType) GetActualInstance() interface{}

Get the actual instance

func (DispersionType) MarshalJSON ¶

func (src DispersionType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DispersionType) UnmarshalJSON ¶

func (dst *DispersionType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type DlDataDeliveryStatus ¶

type DlDataDeliveryStatus struct {
	String *string
}

DlDataDeliveryStatus Possible values are: - BUFFERED: The first downlink data is buffered with extended buffering matching the source of the downlink traffic. - TRANSMITTED: The first downlink data matching the source of the downlink traffic is transmitted after previous buffering or discarding of corresponding packet(s) because the UE of the PDU Session becomes ACTIVE, and buffered data can be delivered to UE. - DISCARDED: The first downlink data matching the source of the downlink traffic is discarded because the Extended Buffering time, as determined by the SMF, expires or the amount of downlink data to be buffered is exceeded.

func (*DlDataDeliveryStatus) MarshalJSON ¶

func (src *DlDataDeliveryStatus) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DlDataDeliveryStatus) UnmarshalJSON ¶

func (dst *DlDataDeliveryStatus) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type DnPerf ¶

type DnPerf struct {
	AppServerInsAddr *AddrFqdn       `json:"appServerInsAddr,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"`
	PerfData         PerfData         `json:"perfData"`
	SpatialValidCon  *NetworkAreaInfo `json:"spatialValidCon,omitempty"`
	TemporalValidCon *TimeWindow      `json:"temporalValidCon,omitempty"`
}

DnPerf Represents DN performance for the application.

func NewDnPerf ¶

func NewDnPerf(perfData PerfData) *DnPerf

NewDnPerf instantiates a new DnPerf 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 NewDnPerfWithDefaults ¶

func NewDnPerfWithDefaults() *DnPerf

NewDnPerfWithDefaults instantiates a new DnPerf 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 (*DnPerf) GetAppServerInsAddr ¶

func (o *DnPerf) GetAppServerInsAddr() AddrFqdn

GetAppServerInsAddr returns the AppServerInsAddr field value if set, zero value otherwise.

func (*DnPerf) GetAppServerInsAddrOk ¶

func (o *DnPerf) GetAppServerInsAddrOk() (*AddrFqdn, bool)

GetAppServerInsAddrOk returns a tuple with the AppServerInsAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnPerf) GetDnai ¶

func (o *DnPerf) GetDnai() string

GetDnai returns the Dnai field value if set, zero value otherwise.

func (*DnPerf) GetDnaiOk ¶

func (o *DnPerf) GetDnaiOk() (*string, bool)

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 (*DnPerf) GetPerfData ¶

func (o *DnPerf) GetPerfData() PerfData

GetPerfData returns the PerfData field value

func (*DnPerf) GetPerfDataOk ¶

func (o *DnPerf) GetPerfDataOk() (*PerfData, bool)

GetPerfDataOk returns a tuple with the PerfData field value and a boolean to check if the value has been set.

func (*DnPerf) GetSpatialValidCon ¶

func (o *DnPerf) GetSpatialValidCon() NetworkAreaInfo

GetSpatialValidCon returns the SpatialValidCon field value if set, zero value otherwise.

func (*DnPerf) GetSpatialValidConOk ¶

func (o *DnPerf) GetSpatialValidConOk() (*NetworkAreaInfo, bool)

GetSpatialValidConOk returns a tuple with the SpatialValidCon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnPerf) GetTemporalValidCon ¶

func (o *DnPerf) GetTemporalValidCon() TimeWindow

GetTemporalValidCon returns the TemporalValidCon field value if set, zero value otherwise.

func (*DnPerf) GetTemporalValidConOk ¶

func (o *DnPerf) GetTemporalValidConOk() (*TimeWindow, bool)

GetTemporalValidConOk returns a tuple with the TemporalValidCon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnPerf) GetUpfInfo ¶

func (o *DnPerf) GetUpfInfo() UpfInformation

GetUpfInfo returns the UpfInfo field value if set, zero value otherwise.

func (*DnPerf) GetUpfInfoOk ¶

func (o *DnPerf) GetUpfInfoOk() (*UpfInformation, bool)

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 (*DnPerf) HasAppServerInsAddr ¶

func (o *DnPerf) HasAppServerInsAddr() bool

HasAppServerInsAddr returns a boolean if a field has been set.

func (*DnPerf) HasDnai ¶

func (o *DnPerf) HasDnai() bool

HasDnai returns a boolean if a field has been set.

func (*DnPerf) HasSpatialValidCon ¶

func (o *DnPerf) HasSpatialValidCon() bool

HasSpatialValidCon returns a boolean if a field has been set.

func (*DnPerf) HasTemporalValidCon ¶

func (o *DnPerf) HasTemporalValidCon() bool

HasTemporalValidCon returns a boolean if a field has been set.

func (*DnPerf) HasUpfInfo ¶

func (o *DnPerf) HasUpfInfo() bool

HasUpfInfo returns a boolean if a field has been set.

func (DnPerf) MarshalJSON ¶

func (o DnPerf) MarshalJSON() ([]byte, error)

func (*DnPerf) SetAppServerInsAddr ¶

func (o *DnPerf) SetAppServerInsAddr(v AddrFqdn)

SetAppServerInsAddr gets a reference to the given AddrFqdn and assigns it to the AppServerInsAddr field.

func (*DnPerf) SetDnai ¶

func (o *DnPerf) SetDnai(v string)

SetDnai gets a reference to the given string and assigns it to the Dnai field.

func (*DnPerf) SetPerfData ¶

func (o *DnPerf) SetPerfData(v PerfData)

SetPerfData sets field value

func (*DnPerf) SetSpatialValidCon ¶

func (o *DnPerf) SetSpatialValidCon(v NetworkAreaInfo)

SetSpatialValidCon gets a reference to the given NetworkAreaInfo and assigns it to the SpatialValidCon field.

func (*DnPerf) SetTemporalValidCon ¶

func (o *DnPerf) SetTemporalValidCon(v TimeWindow)

SetTemporalValidCon gets a reference to the given TimeWindow and assigns it to the TemporalValidCon field.

func (*DnPerf) SetUpfInfo ¶

func (o *DnPerf) SetUpfInfo(v UpfInformation)

SetUpfInfo gets a reference to the given UpfInformation and assigns it to the UpfInfo field.

func (DnPerf) ToMap ¶

func (o DnPerf) ToMap() (map[string]interface{}, error)

type DnPerfInfo ¶

type DnPerfInfo struct {
	// String providing an application identifier.
	AppId *string `json:"appId,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"`
	Snssai *Snssai  `json:"snssai,omitempty"`
	DnPerf []DnPerf `json:"dnPerf"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Confidence *int32 `json:"confidence,omitempty"`
}

DnPerfInfo Represents DN performance information.

func NewDnPerfInfo ¶

func NewDnPerfInfo(dnPerf []DnPerf) *DnPerfInfo

NewDnPerfInfo instantiates a new DnPerfInfo 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 NewDnPerfInfoWithDefaults ¶

func NewDnPerfInfoWithDefaults() *DnPerfInfo

NewDnPerfInfoWithDefaults instantiates a new DnPerfInfo 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 (*DnPerfInfo) GetAppId ¶

func (o *DnPerfInfo) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*DnPerfInfo) GetAppIdOk ¶

func (o *DnPerfInfo) GetAppIdOk() (*string, bool)

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 (*DnPerfInfo) GetConfidence ¶

func (o *DnPerfInfo) GetConfidence() int32

GetConfidence returns the Confidence field value if set, zero value otherwise.

func (*DnPerfInfo) GetConfidenceOk ¶

func (o *DnPerfInfo) GetConfidenceOk() (*int32, bool)

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 (*DnPerfInfo) GetDnPerf ¶

func (o *DnPerfInfo) GetDnPerf() []DnPerf

GetDnPerf returns the DnPerf field value

func (*DnPerfInfo) GetDnPerfOk ¶

func (o *DnPerfInfo) GetDnPerfOk() ([]DnPerf, bool)

GetDnPerfOk returns a tuple with the DnPerf field value and a boolean to check if the value has been set.

func (*DnPerfInfo) GetDnn ¶

func (o *DnPerfInfo) GetDnn() string

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*DnPerfInfo) GetDnnOk ¶

func (o *DnPerfInfo) GetDnnOk() (*string, bool)

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 (*DnPerfInfo) GetSnssai ¶

func (o *DnPerfInfo) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*DnPerfInfo) GetSnssaiOk ¶

func (o *DnPerfInfo) GetSnssaiOk() (*Snssai, bool)

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 (*DnPerfInfo) HasAppId ¶

func (o *DnPerfInfo) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*DnPerfInfo) HasConfidence ¶

func (o *DnPerfInfo) HasConfidence() bool

HasConfidence returns a boolean if a field has been set.

func (*DnPerfInfo) HasDnn ¶

func (o *DnPerfInfo) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*DnPerfInfo) HasSnssai ¶

func (o *DnPerfInfo) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (DnPerfInfo) MarshalJSON ¶

func (o DnPerfInfo) MarshalJSON() ([]byte, error)

func (*DnPerfInfo) SetAppId ¶

func (o *DnPerfInfo) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*DnPerfInfo) SetConfidence ¶

func (o *DnPerfInfo) SetConfidence(v int32)

SetConfidence gets a reference to the given int32 and assigns it to the Confidence field.

func (*DnPerfInfo) SetDnPerf ¶

func (o *DnPerfInfo) SetDnPerf(v []DnPerf)

SetDnPerf sets field value

func (*DnPerfInfo) SetDnn ¶

func (o *DnPerfInfo) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*DnPerfInfo) SetSnssai ¶

func (o *DnPerfInfo) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (DnPerfInfo) ToMap ¶

func (o DnPerfInfo) ToMap() (map[string]interface{}, error)

type DnPerfOrderingCriterion ¶

type DnPerfOrderingCriterion struct {
	String *string
}

DnPerfOrderingCriterion Possible values are: - AVERAGE_TRAFFIC_RATE: Indicates the average traffic rate. - MAXIMUM_TRAFFIC_RATE: Indicates the maximum traffic rate. - AVERAGE_PACKET_DELAY: Indicates the average packet delay. - MAXIMUM_PACKET_DELAY: Indicates the maximum packet delay. - AVERAGE_PACKET_LOSS_RATE: Indicates the average packet loss rate.

func (*DnPerfOrderingCriterion) MarshalJSON ¶

func (src *DnPerfOrderingCriterion) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DnPerfOrderingCriterion) UnmarshalJSON ¶

func (dst *DnPerfOrderingCriterion) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type DnPerformanceReq ¶

type DnPerformanceReq struct {
	DnPerfOrderCriter *DnPerfOrderingCriterion `json:"dnPerfOrderCriter,omitempty"`
	Order             *MatchingDirection       `json:"order,omitempty"`
	ReportThresholds  []ThresholdLevel         `json:"reportThresholds,omitempty"`
}

DnPerformanceReq Represents other DN performance analytics requirements.

func NewDnPerformanceReq ¶

func NewDnPerformanceReq() *DnPerformanceReq

NewDnPerformanceReq instantiates a new DnPerformanceReq 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 NewDnPerformanceReqWithDefaults ¶

func NewDnPerformanceReqWithDefaults() *DnPerformanceReq

NewDnPerformanceReqWithDefaults instantiates a new DnPerformanceReq 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 (*DnPerformanceReq) GetDnPerfOrderCriter ¶

func (o *DnPerformanceReq) GetDnPerfOrderCriter() DnPerfOrderingCriterion

GetDnPerfOrderCriter returns the DnPerfOrderCriter field value if set, zero value otherwise.

func (*DnPerformanceReq) GetDnPerfOrderCriterOk ¶

func (o *DnPerformanceReq) GetDnPerfOrderCriterOk() (*DnPerfOrderingCriterion, bool)

GetDnPerfOrderCriterOk returns a tuple with the DnPerfOrderCriter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnPerformanceReq) GetOrder ¶

func (o *DnPerformanceReq) GetOrder() MatchingDirection

GetOrder returns the Order field value if set, zero value otherwise.

func (*DnPerformanceReq) GetOrderOk ¶

func (o *DnPerformanceReq) GetOrderOk() (*MatchingDirection, bool)

GetOrderOk returns a tuple with the Order field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnPerformanceReq) GetReportThresholds ¶

func (o *DnPerformanceReq) GetReportThresholds() []ThresholdLevel

GetReportThresholds returns the ReportThresholds field value if set, zero value otherwise.

func (*DnPerformanceReq) GetReportThresholdsOk ¶

func (o *DnPerformanceReq) GetReportThresholdsOk() ([]ThresholdLevel, bool)

GetReportThresholdsOk returns a tuple with the ReportThresholds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnPerformanceReq) HasDnPerfOrderCriter ¶

func (o *DnPerformanceReq) HasDnPerfOrderCriter() bool

HasDnPerfOrderCriter returns a boolean if a field has been set.

func (*DnPerformanceReq) HasOrder ¶

func (o *DnPerformanceReq) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (*DnPerformanceReq) HasReportThresholds ¶

func (o *DnPerformanceReq) HasReportThresholds() bool

HasReportThresholds returns a boolean if a field has been set.

func (DnPerformanceReq) MarshalJSON ¶

func (o DnPerformanceReq) MarshalJSON() ([]byte, error)

func (*DnPerformanceReq) SetDnPerfOrderCriter ¶

func (o *DnPerformanceReq) SetDnPerfOrderCriter(v DnPerfOrderingCriterion)

SetDnPerfOrderCriter gets a reference to the given DnPerfOrderingCriterion and assigns it to the DnPerfOrderCriter field.

func (*DnPerformanceReq) SetOrder ¶

func (o *DnPerformanceReq) SetOrder(v MatchingDirection)

SetOrder gets a reference to the given MatchingDirection and assigns it to the Order field.

func (*DnPerformanceReq) SetReportThresholds ¶

func (o *DnPerformanceReq) SetReportThresholds(v []ThresholdLevel)

SetReportThresholds gets a reference to the given []ThresholdLevel and assigns it to the ReportThresholds field.

func (DnPerformanceReq) ToMap ¶

func (o DnPerformanceReq) ToMap() (map[string]interface{}, error)

type DnaiChangeType ¶

type DnaiChangeType struct {
	String *string
}

DnaiChangeType Possible values are: - EARLY: Early notification of UP path reconfiguration. - EARLY_LATE: Early and late notification of UP path reconfiguration. This value shall only be present in the subscription to the DNAI change event. - LATE: Late notification of UP path reconfiguration.

func (*DnaiChangeType) MarshalJSON ¶

func (src *DnaiChangeType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DnaiChangeType) UnmarshalJSON ¶

func (dst *DnaiChangeType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type DnnEasdfInfoItem ¶

type DnnEasdfInfoItem struct {
	Dnn      DnnSmfInfoItemDnn `json:"dnn"`
	DnaiList []string          `json:"dnaiList,omitempty"`
}

DnnEasdfInfoItem Set of parameters supported by EASDF for a given DNN

func NewDnnEasdfInfoItem ¶

func NewDnnEasdfInfoItem(dnn DnnSmfInfoItemDnn) *DnnEasdfInfoItem

NewDnnEasdfInfoItem instantiates a new DnnEasdfInfoItem 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 NewDnnEasdfInfoItemWithDefaults ¶

func NewDnnEasdfInfoItemWithDefaults() *DnnEasdfInfoItem

NewDnnEasdfInfoItemWithDefaults instantiates a new DnnEasdfInfoItem 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 (*DnnEasdfInfoItem) GetDnaiList ¶

func (o *DnnEasdfInfoItem) GetDnaiList() []string

GetDnaiList returns the DnaiList field value if set, zero value otherwise.

func (*DnnEasdfInfoItem) GetDnaiListOk ¶

func (o *DnnEasdfInfoItem) GetDnaiListOk() ([]string, bool)

GetDnaiListOk returns a tuple with the DnaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnnEasdfInfoItem) GetDnn ¶

func (o *DnnEasdfInfoItem) GetDnn() DnnSmfInfoItemDnn

GetDnn returns the Dnn field value

func (*DnnEasdfInfoItem) GetDnnOk ¶

func (o *DnnEasdfInfoItem) GetDnnOk() (*DnnSmfInfoItemDnn, bool)

GetDnnOk returns a tuple with the Dnn field value and a boolean to check if the value has been set.

func (*DnnEasdfInfoItem) HasDnaiList ¶

func (o *DnnEasdfInfoItem) HasDnaiList() bool

HasDnaiList returns a boolean if a field has been set.

func (DnnEasdfInfoItem) MarshalJSON ¶

func (o DnnEasdfInfoItem) MarshalJSON() ([]byte, error)

func (*DnnEasdfInfoItem) SetDnaiList ¶

func (o *DnnEasdfInfoItem) SetDnaiList(v []string)

SetDnaiList gets a reference to the given []string and assigns it to the DnaiList field.

func (*DnnEasdfInfoItem) SetDnn ¶

func (o *DnnEasdfInfoItem) SetDnn(v DnnSmfInfoItemDnn)

SetDnn sets field value

func (DnnEasdfInfoItem) ToMap ¶

func (o DnnEasdfInfoItem) ToMap() (map[string]interface{}, error)

type DnnInfoItem ¶

type DnnInfoItem struct {
	Dnn DnnSmfInfoItemDnn `json:"dnn"`
}

DnnInfoItem Set of parameters supported by NF for a given DNN

func NewDnnInfoItem ¶

func NewDnnInfoItem(dnn DnnSmfInfoItemDnn) *DnnInfoItem

NewDnnInfoItem instantiates a new DnnInfoItem 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 NewDnnInfoItemWithDefaults ¶

func NewDnnInfoItemWithDefaults() *DnnInfoItem

NewDnnInfoItemWithDefaults instantiates a new DnnInfoItem 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 (*DnnInfoItem) GetDnn ¶

func (o *DnnInfoItem) GetDnn() DnnSmfInfoItemDnn

GetDnn returns the Dnn field value

func (*DnnInfoItem) GetDnnOk ¶

func (o *DnnInfoItem) GetDnnOk() (*DnnSmfInfoItemDnn, bool)

GetDnnOk returns a tuple with the Dnn field value and a boolean to check if the value has been set.

func (DnnInfoItem) MarshalJSON ¶

func (o DnnInfoItem) MarshalJSON() ([]byte, error)

func (*DnnInfoItem) SetDnn ¶

func (o *DnnInfoItem) SetDnn(v DnnSmfInfoItemDnn)

SetDnn sets field value

func (DnnInfoItem) ToMap ¶

func (o DnnInfoItem) ToMap() (map[string]interface{}, error)

type DnnMbSmfInfoItem ¶

type DnnMbSmfInfoItem struct {
	Dnn DnnSmfInfoItemDnn `json:"dnn"`
}

DnnMbSmfInfoItem Parameters supported by an MB-SMF for a given DNN

func NewDnnMbSmfInfoItem ¶

func NewDnnMbSmfInfoItem(dnn DnnSmfInfoItemDnn) *DnnMbSmfInfoItem

NewDnnMbSmfInfoItem instantiates a new DnnMbSmfInfoItem 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 NewDnnMbSmfInfoItemWithDefaults ¶

func NewDnnMbSmfInfoItemWithDefaults() *DnnMbSmfInfoItem

NewDnnMbSmfInfoItemWithDefaults instantiates a new DnnMbSmfInfoItem 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 (*DnnMbSmfInfoItem) GetDnn ¶

func (o *DnnMbSmfInfoItem) GetDnn() DnnSmfInfoItemDnn

GetDnn returns the Dnn field value

func (*DnnMbSmfInfoItem) GetDnnOk ¶

func (o *DnnMbSmfInfoItem) GetDnnOk() (*DnnSmfInfoItemDnn, bool)

GetDnnOk returns a tuple with the Dnn field value and a boolean to check if the value has been set.

func (DnnMbSmfInfoItem) MarshalJSON ¶

func (o DnnMbSmfInfoItem) MarshalJSON() ([]byte, error)

func (*DnnMbSmfInfoItem) SetDnn ¶

func (o *DnnMbSmfInfoItem) SetDnn(v DnnSmfInfoItemDnn)

SetDnn sets field value

func (DnnMbSmfInfoItem) ToMap ¶

func (o DnnMbSmfInfoItem) ToMap() (map[string]interface{}, error)

type DnnSmfInfoItem ¶

type DnnSmfInfoItem struct {
	Dnn      DnnSmfInfoItemDnn             `json:"dnn"`
	DnaiList []DnnSmfInfoItemDnaiListInner `json:"dnaiList,omitempty"`
}

DnnSmfInfoItem Set of parameters supported by SMF for a given DNN

func NewDnnSmfInfoItem ¶

func NewDnnSmfInfoItem(dnn DnnSmfInfoItemDnn) *DnnSmfInfoItem

NewDnnSmfInfoItem instantiates a new DnnSmfInfoItem 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 NewDnnSmfInfoItemWithDefaults ¶

func NewDnnSmfInfoItemWithDefaults() *DnnSmfInfoItem

NewDnnSmfInfoItemWithDefaults instantiates a new DnnSmfInfoItem 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 (*DnnSmfInfoItem) GetDnaiList ¶

func (o *DnnSmfInfoItem) GetDnaiList() []DnnSmfInfoItemDnaiListInner

GetDnaiList returns the DnaiList field value if set, zero value otherwise.

func (*DnnSmfInfoItem) GetDnaiListOk ¶

func (o *DnnSmfInfoItem) GetDnaiListOk() ([]DnnSmfInfoItemDnaiListInner, bool)

GetDnaiListOk returns a tuple with the DnaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnnSmfInfoItem) GetDnn ¶

func (o *DnnSmfInfoItem) GetDnn() DnnSmfInfoItemDnn

GetDnn returns the Dnn field value

func (*DnnSmfInfoItem) GetDnnOk ¶

func (o *DnnSmfInfoItem) GetDnnOk() (*DnnSmfInfoItemDnn, bool)

GetDnnOk returns a tuple with the Dnn field value and a boolean to check if the value has been set.

func (*DnnSmfInfoItem) HasDnaiList ¶

func (o *DnnSmfInfoItem) HasDnaiList() bool

HasDnaiList returns a boolean if a field has been set.

func (DnnSmfInfoItem) MarshalJSON ¶

func (o DnnSmfInfoItem) MarshalJSON() ([]byte, error)

func (*DnnSmfInfoItem) SetDnaiList ¶

func (o *DnnSmfInfoItem) SetDnaiList(v []DnnSmfInfoItemDnaiListInner)

SetDnaiList gets a reference to the given []DnnSmfInfoItemDnaiListInner and assigns it to the DnaiList field.

func (*DnnSmfInfoItem) SetDnn ¶

func (o *DnnSmfInfoItem) SetDnn(v DnnSmfInfoItemDnn)

SetDnn sets field value

func (DnnSmfInfoItem) ToMap ¶

func (o DnnSmfInfoItem) ToMap() (map[string]interface{}, error)

type DnnSmfInfoItemDnaiListInner ¶

type DnnSmfInfoItemDnaiListInner struct {
	String *string
}

DnnSmfInfoItemDnaiListInner struct for DnnSmfInfoItemDnaiListInner

func (*DnnSmfInfoItemDnaiListInner) MarshalJSON ¶

func (src *DnnSmfInfoItemDnaiListInner) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DnnSmfInfoItemDnaiListInner) UnmarshalJSON ¶

func (dst *DnnSmfInfoItemDnaiListInner) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type DnnSmfInfoItemDnn ¶

type DnnSmfInfoItemDnn struct {
	String *string
}

DnnSmfInfoItemDnn struct for DnnSmfInfoItemDnn

func (*DnnSmfInfoItemDnn) MarshalJSON ¶

func (src *DnnSmfInfoItemDnn) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*DnnSmfInfoItemDnn) UnmarshalJSON ¶

func (dst *DnnSmfInfoItemDnn) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type DnnTsctsfInfoItem ¶

type DnnTsctsfInfoItem struct {
	Dnn DnnSmfInfoItemDnn `json:"dnn"`
}

DnnTsctsfInfoItem Parameters supported by an TSCTSF for a given DNN

func NewDnnTsctsfInfoItem ¶

func NewDnnTsctsfInfoItem(dnn DnnSmfInfoItemDnn) *DnnTsctsfInfoItem

NewDnnTsctsfInfoItem instantiates a new DnnTsctsfInfoItem 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 NewDnnTsctsfInfoItemWithDefaults ¶

func NewDnnTsctsfInfoItemWithDefaults() *DnnTsctsfInfoItem

NewDnnTsctsfInfoItemWithDefaults instantiates a new DnnTsctsfInfoItem 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 (*DnnTsctsfInfoItem) GetDnn ¶

GetDnn returns the Dnn field value

func (*DnnTsctsfInfoItem) GetDnnOk ¶

func (o *DnnTsctsfInfoItem) GetDnnOk() (*DnnSmfInfoItemDnn, bool)

GetDnnOk returns a tuple with the Dnn field value and a boolean to check if the value has been set.

func (DnnTsctsfInfoItem) MarshalJSON ¶

func (o DnnTsctsfInfoItem) MarshalJSON() ([]byte, error)

func (*DnnTsctsfInfoItem) SetDnn ¶

func (o *DnnTsctsfInfoItem) SetDnn(v DnnSmfInfoItemDnn)

SetDnn sets field value

func (DnnTsctsfInfoItem) ToMap ¶

func (o DnnTsctsfInfoItem) ToMap() (map[string]interface{}, error)

type DnnUpfInfoItem ¶

type DnnUpfInfoItem struct {
	// 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"`
	DnaiList          []string           `json:"dnaiList,omitempty"`
	PduSessionTypes   []PduSessionType   `json:"pduSessionTypes,omitempty"`
	Ipv4AddressRanges []Ipv4AddressRange `json:"ipv4AddressRanges,omitempty"`
	Ipv6PrefixRanges  []Ipv6PrefixRange  `json:"ipv6PrefixRanges,omitempty"`
	Ipv4IndexList     []IpIndex          `json:"ipv4IndexList,omitempty"`
	Ipv6IndexList     []IpIndex          `json:"ipv6IndexList,omitempty"`
	// The N6 Network Instance associated with the S-NSSAI and DNN.
	NetworkInstance *string `json:"networkInstance,omitempty"`
	// Map of network instance per DNAI for the DNN, where the key of the map is the DNAI. When present, the value of each entry of the map shall contain a N6 network instance that is configured for the DNAI indicated by the key.
	DnaiNwInstanceList *map[string]string `json:"dnaiNwInstanceList,omitempty"`
}

DnnUpfInfoItem Set of parameters supported by UPF for a given DNN

func NewDnnUpfInfoItem ¶

func NewDnnUpfInfoItem(dnn string) *DnnUpfInfoItem

NewDnnUpfInfoItem instantiates a new DnnUpfInfoItem 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 NewDnnUpfInfoItemWithDefaults ¶

func NewDnnUpfInfoItemWithDefaults() *DnnUpfInfoItem

NewDnnUpfInfoItemWithDefaults instantiates a new DnnUpfInfoItem 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 (*DnnUpfInfoItem) GetDnaiList ¶

func (o *DnnUpfInfoItem) GetDnaiList() []string

GetDnaiList returns the DnaiList field value if set, zero value otherwise.

func (*DnnUpfInfoItem) GetDnaiListOk ¶

func (o *DnnUpfInfoItem) GetDnaiListOk() ([]string, bool)

GetDnaiListOk returns a tuple with the DnaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnnUpfInfoItem) GetDnaiNwInstanceList ¶

func (o *DnnUpfInfoItem) GetDnaiNwInstanceList() map[string]string

GetDnaiNwInstanceList returns the DnaiNwInstanceList field value if set, zero value otherwise.

func (*DnnUpfInfoItem) GetDnaiNwInstanceListOk ¶

func (o *DnnUpfInfoItem) GetDnaiNwInstanceListOk() (*map[string]string, bool)

GetDnaiNwInstanceListOk returns a tuple with the DnaiNwInstanceList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnnUpfInfoItem) GetDnn ¶

func (o *DnnUpfInfoItem) GetDnn() string

GetDnn returns the Dnn field value

func (*DnnUpfInfoItem) GetDnnOk ¶

func (o *DnnUpfInfoItem) GetDnnOk() (*string, bool)

GetDnnOk returns a tuple with the Dnn field value and a boolean to check if the value has been set.

func (*DnnUpfInfoItem) GetIpv4AddressRanges ¶

func (o *DnnUpfInfoItem) GetIpv4AddressRanges() []Ipv4AddressRange

GetIpv4AddressRanges returns the Ipv4AddressRanges field value if set, zero value otherwise.

func (*DnnUpfInfoItem) GetIpv4AddressRangesOk ¶

func (o *DnnUpfInfoItem) GetIpv4AddressRangesOk() ([]Ipv4AddressRange, bool)

GetIpv4AddressRangesOk returns a tuple with the Ipv4AddressRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnnUpfInfoItem) GetIpv4IndexList ¶

func (o *DnnUpfInfoItem) GetIpv4IndexList() []IpIndex

GetIpv4IndexList returns the Ipv4IndexList field value if set, zero value otherwise.

func (*DnnUpfInfoItem) GetIpv4IndexListOk ¶

func (o *DnnUpfInfoItem) GetIpv4IndexListOk() ([]IpIndex, bool)

GetIpv4IndexListOk returns a tuple with the Ipv4IndexList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnnUpfInfoItem) GetIpv6IndexList ¶

func (o *DnnUpfInfoItem) GetIpv6IndexList() []IpIndex

GetIpv6IndexList returns the Ipv6IndexList field value if set, zero value otherwise.

func (*DnnUpfInfoItem) GetIpv6IndexListOk ¶

func (o *DnnUpfInfoItem) GetIpv6IndexListOk() ([]IpIndex, bool)

GetIpv6IndexListOk returns a tuple with the Ipv6IndexList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnnUpfInfoItem) GetIpv6PrefixRanges ¶

func (o *DnnUpfInfoItem) GetIpv6PrefixRanges() []Ipv6PrefixRange

GetIpv6PrefixRanges returns the Ipv6PrefixRanges field value if set, zero value otherwise.

func (*DnnUpfInfoItem) GetIpv6PrefixRangesOk ¶

func (o *DnnUpfInfoItem) GetIpv6PrefixRangesOk() ([]Ipv6PrefixRange, bool)

GetIpv6PrefixRangesOk returns a tuple with the Ipv6PrefixRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnnUpfInfoItem) GetNetworkInstance ¶

func (o *DnnUpfInfoItem) GetNetworkInstance() string

GetNetworkInstance returns the NetworkInstance field value if set, zero value otherwise.

func (*DnnUpfInfoItem) GetNetworkInstanceOk ¶

func (o *DnnUpfInfoItem) GetNetworkInstanceOk() (*string, bool)

GetNetworkInstanceOk returns a tuple with the NetworkInstance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnnUpfInfoItem) GetPduSessionTypes ¶

func (o *DnnUpfInfoItem) GetPduSessionTypes() []PduSessionType

GetPduSessionTypes returns the PduSessionTypes field value if set, zero value otherwise.

func (*DnnUpfInfoItem) GetPduSessionTypesOk ¶

func (o *DnnUpfInfoItem) GetPduSessionTypesOk() ([]PduSessionType, bool)

GetPduSessionTypesOk returns a tuple with the PduSessionTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DnnUpfInfoItem) HasDnaiList ¶

func (o *DnnUpfInfoItem) HasDnaiList() bool

HasDnaiList returns a boolean if a field has been set.

func (*DnnUpfInfoItem) HasDnaiNwInstanceList ¶

func (o *DnnUpfInfoItem) HasDnaiNwInstanceList() bool

HasDnaiNwInstanceList returns a boolean if a field has been set.

func (*DnnUpfInfoItem) HasIpv4AddressRanges ¶

func (o *DnnUpfInfoItem) HasIpv4AddressRanges() bool

HasIpv4AddressRanges returns a boolean if a field has been set.

func (*DnnUpfInfoItem) HasIpv4IndexList ¶

func (o *DnnUpfInfoItem) HasIpv4IndexList() bool

HasIpv4IndexList returns a boolean if a field has been set.

func (*DnnUpfInfoItem) HasIpv6IndexList ¶

func (o *DnnUpfInfoItem) HasIpv6IndexList() bool

HasIpv6IndexList returns a boolean if a field has been set.

func (*DnnUpfInfoItem) HasIpv6PrefixRanges ¶

func (o *DnnUpfInfoItem) HasIpv6PrefixRanges() bool

HasIpv6PrefixRanges returns a boolean if a field has been set.

func (*DnnUpfInfoItem) HasNetworkInstance ¶

func (o *DnnUpfInfoItem) HasNetworkInstance() bool

HasNetworkInstance returns a boolean if a field has been set.

func (*DnnUpfInfoItem) HasPduSessionTypes ¶

func (o *DnnUpfInfoItem) HasPduSessionTypes() bool

HasPduSessionTypes returns a boolean if a field has been set.

func (DnnUpfInfoItem) MarshalJSON ¶

func (o DnnUpfInfoItem) MarshalJSON() ([]byte, error)

func (*DnnUpfInfoItem) SetDnaiList ¶

func (o *DnnUpfInfoItem) SetDnaiList(v []string)

SetDnaiList gets a reference to the given []string and assigns it to the DnaiList field.

func (*DnnUpfInfoItem) SetDnaiNwInstanceList ¶

func (o *DnnUpfInfoItem) SetDnaiNwInstanceList(v map[string]string)

SetDnaiNwInstanceList gets a reference to the given map[string]string and assigns it to the DnaiNwInstanceList field.

func (*DnnUpfInfoItem) SetDnn ¶

func (o *DnnUpfInfoItem) SetDnn(v string)

SetDnn sets field value

func (*DnnUpfInfoItem) SetIpv4AddressRanges ¶

func (o *DnnUpfInfoItem) SetIpv4AddressRanges(v []Ipv4AddressRange)

SetIpv4AddressRanges gets a reference to the given []Ipv4AddressRange and assigns it to the Ipv4AddressRanges field.

func (*DnnUpfInfoItem) SetIpv4IndexList ¶

func (o *DnnUpfInfoItem) SetIpv4IndexList(v []IpIndex)

SetIpv4IndexList gets a reference to the given []IpIndex and assigns it to the Ipv4IndexList field.

func (*DnnUpfInfoItem) SetIpv6IndexList ¶

func (o *DnnUpfInfoItem) SetIpv6IndexList(v []IpIndex)

SetIpv6IndexList gets a reference to the given []IpIndex and assigns it to the Ipv6IndexList field.

func (*DnnUpfInfoItem) SetIpv6PrefixRanges ¶

func (o *DnnUpfInfoItem) SetIpv6PrefixRanges(v []Ipv6PrefixRange)

SetIpv6PrefixRanges gets a reference to the given []Ipv6PrefixRange and assigns it to the Ipv6PrefixRanges field.

func (*DnnUpfInfoItem) SetNetworkInstance ¶

func (o *DnnUpfInfoItem) SetNetworkInstance(v string)

SetNetworkInstance gets a reference to the given string and assigns it to the NetworkInstance field.

func (*DnnUpfInfoItem) SetPduSessionTypes ¶

func (o *DnnUpfInfoItem) SetPduSessionTypes(v []PduSessionType)

SetPduSessionTypes gets a reference to the given []PduSessionType and assigns it to the PduSessionTypes field.

func (DnnUpfInfoItem) ToMap ¶

func (o DnnUpfInfoItem) ToMap() (map[string]interface{}, error)

type DynamicPolicy ¶

type DynamicPolicy struct {
	// String chosen by the 5GMS AF to serve as an identifier in a resource URI.
	DynamicPolicyId string `json:"dynamicPolicyId"`
	// String chosen by the 5GMS AF to serve as an identifier in a resource URI.
	PolicyTemplateId            string                       `json:"policyTemplateId"`
	ServiceDataFlowDescriptions []ServiceDataFlowDescription `json:"serviceDataFlowDescriptions"`
	// String chosen by the 5GMS AF to serve as an identifier in a resource URI.
	ProvisioningSessionId string              `json:"provisioningSessionId"`
	QosSpecification      *M5QoSSpecification `json:"qosSpecification,omitempty"`
	EnforcementMethod     *string             `json:"enforcementMethod,omitempty"`
	EnforcementBitRate    *int32              `json:"enforcementBitRate,omitempty"`
}

DynamicPolicy A representation of a Dynamic Policy resource.

func NewDynamicPolicy ¶

func NewDynamicPolicy(dynamicPolicyId string, policyTemplateId string, serviceDataFlowDescriptions []ServiceDataFlowDescription, provisioningSessionId string) *DynamicPolicy

NewDynamicPolicy instantiates a new DynamicPolicy 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 NewDynamicPolicyWithDefaults ¶

func NewDynamicPolicyWithDefaults() *DynamicPolicy

NewDynamicPolicyWithDefaults instantiates a new DynamicPolicy 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 (*DynamicPolicy) GetDynamicPolicyId ¶

func (o *DynamicPolicy) GetDynamicPolicyId() string

GetDynamicPolicyId returns the DynamicPolicyId field value

func (*DynamicPolicy) GetDynamicPolicyIdOk ¶

func (o *DynamicPolicy) GetDynamicPolicyIdOk() (*string, bool)

GetDynamicPolicyIdOk returns a tuple with the DynamicPolicyId field value and a boolean to check if the value has been set.

func (*DynamicPolicy) GetEnforcementBitRate ¶

func (o *DynamicPolicy) GetEnforcementBitRate() int32

GetEnforcementBitRate returns the EnforcementBitRate field value if set, zero value otherwise.

func (*DynamicPolicy) GetEnforcementBitRateOk ¶

func (o *DynamicPolicy) GetEnforcementBitRateOk() (*int32, bool)

GetEnforcementBitRateOk returns a tuple with the EnforcementBitRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DynamicPolicy) GetEnforcementMethod ¶

func (o *DynamicPolicy) GetEnforcementMethod() string

GetEnforcementMethod returns the EnforcementMethod field value if set, zero value otherwise.

func (*DynamicPolicy) GetEnforcementMethodOk ¶

func (o *DynamicPolicy) GetEnforcementMethodOk() (*string, bool)

GetEnforcementMethodOk returns a tuple with the EnforcementMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DynamicPolicy) GetPolicyTemplateId ¶

func (o *DynamicPolicy) GetPolicyTemplateId() string

GetPolicyTemplateId returns the PolicyTemplateId field value

func (*DynamicPolicy) GetPolicyTemplateIdOk ¶

func (o *DynamicPolicy) GetPolicyTemplateIdOk() (*string, bool)

GetPolicyTemplateIdOk returns a tuple with the PolicyTemplateId field value and a boolean to check if the value has been set.

func (*DynamicPolicy) GetProvisioningSessionId ¶

func (o *DynamicPolicy) GetProvisioningSessionId() string

GetProvisioningSessionId returns the ProvisioningSessionId field value

func (*DynamicPolicy) GetProvisioningSessionIdOk ¶

func (o *DynamicPolicy) GetProvisioningSessionIdOk() (*string, bool)

GetProvisioningSessionIdOk returns a tuple with the ProvisioningSessionId field value and a boolean to check if the value has been set.

func (*DynamicPolicy) GetQosSpecification ¶

func (o *DynamicPolicy) GetQosSpecification() M5QoSSpecification

GetQosSpecification returns the QosSpecification field value if set, zero value otherwise.

func (*DynamicPolicy) GetQosSpecificationOk ¶

func (o *DynamicPolicy) GetQosSpecificationOk() (*M5QoSSpecification, bool)

GetQosSpecificationOk returns a tuple with the QosSpecification field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DynamicPolicy) GetServiceDataFlowDescriptions ¶

func (o *DynamicPolicy) GetServiceDataFlowDescriptions() []ServiceDataFlowDescription

GetServiceDataFlowDescriptions returns the ServiceDataFlowDescriptions field value

func (*DynamicPolicy) GetServiceDataFlowDescriptionsOk ¶

func (o *DynamicPolicy) GetServiceDataFlowDescriptionsOk() ([]ServiceDataFlowDescription, bool)

GetServiceDataFlowDescriptionsOk returns a tuple with the ServiceDataFlowDescriptions field value and a boolean to check if the value has been set.

func (*DynamicPolicy) HasEnforcementBitRate ¶

func (o *DynamicPolicy) HasEnforcementBitRate() bool

HasEnforcementBitRate returns a boolean if a field has been set.

func (*DynamicPolicy) HasEnforcementMethod ¶

func (o *DynamicPolicy) HasEnforcementMethod() bool

HasEnforcementMethod returns a boolean if a field has been set.

func (*DynamicPolicy) HasQosSpecification ¶

func (o *DynamicPolicy) HasQosSpecification() bool

HasQosSpecification returns a boolean if a field has been set.

func (DynamicPolicy) MarshalJSON ¶

func (o DynamicPolicy) MarshalJSON() ([]byte, error)

func (*DynamicPolicy) SetDynamicPolicyId ¶

func (o *DynamicPolicy) SetDynamicPolicyId(v string)

SetDynamicPolicyId sets field value

func (*DynamicPolicy) SetEnforcementBitRate ¶

func (o *DynamicPolicy) SetEnforcementBitRate(v int32)

SetEnforcementBitRate gets a reference to the given int32 and assigns it to the EnforcementBitRate field.

func (*DynamicPolicy) SetEnforcementMethod ¶

func (o *DynamicPolicy) SetEnforcementMethod(v string)

SetEnforcementMethod gets a reference to the given string and assigns it to the EnforcementMethod field.

func (*DynamicPolicy) SetPolicyTemplateId ¶

func (o *DynamicPolicy) SetPolicyTemplateId(v string)

SetPolicyTemplateId sets field value

func (*DynamicPolicy) SetProvisioningSessionId ¶

func (o *DynamicPolicy) SetProvisioningSessionId(v string)

SetProvisioningSessionId sets field value

func (*DynamicPolicy) SetQosSpecification ¶

func (o *DynamicPolicy) SetQosSpecification(v M5QoSSpecification)

SetQosSpecification gets a reference to the given M5QoSSpecification and assigns it to the QosSpecification field.

func (*DynamicPolicy) SetServiceDataFlowDescriptions ¶

func (o *DynamicPolicy) SetServiceDataFlowDescriptions(v []ServiceDataFlowDescription)

SetServiceDataFlowDescriptions sets field value

func (DynamicPolicy) ToMap ¶

func (o DynamicPolicy) ToMap() (map[string]interface{}, error)

type EasdfInfo ¶

type EasdfInfo struct {
	SNssaiEasdfInfoList  []SnssaiEasdfInfoItem `json:"sNssaiEasdfInfoList,omitempty"`
	EasdfN6IpAddressList []IpAddr              `json:"easdfN6IpAddressList,omitempty"`
	UpfN6IpAddressList   []IpAddr              `json:"upfN6IpAddressList,omitempty"`
}

EasdfInfo Information of an EASDF NF Instance

func NewEasdfInfo ¶

func NewEasdfInfo() *EasdfInfo

NewEasdfInfo instantiates a new EasdfInfo 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 NewEasdfInfoWithDefaults ¶

func NewEasdfInfoWithDefaults() *EasdfInfo

NewEasdfInfoWithDefaults instantiates a new EasdfInfo 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 (*EasdfInfo) GetEasdfN6IpAddressList ¶

func (o *EasdfInfo) GetEasdfN6IpAddressList() []IpAddr

GetEasdfN6IpAddressList returns the EasdfN6IpAddressList field value if set, zero value otherwise.

func (*EasdfInfo) GetEasdfN6IpAddressListOk ¶

func (o *EasdfInfo) GetEasdfN6IpAddressListOk() ([]IpAddr, bool)

GetEasdfN6IpAddressListOk returns a tuple with the EasdfN6IpAddressList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EasdfInfo) GetSNssaiEasdfInfoList ¶

func (o *EasdfInfo) GetSNssaiEasdfInfoList() []SnssaiEasdfInfoItem

GetSNssaiEasdfInfoList returns the SNssaiEasdfInfoList field value if set, zero value otherwise.

func (*EasdfInfo) GetSNssaiEasdfInfoListOk ¶

func (o *EasdfInfo) GetSNssaiEasdfInfoListOk() ([]SnssaiEasdfInfoItem, bool)

GetSNssaiEasdfInfoListOk returns a tuple with the SNssaiEasdfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EasdfInfo) GetUpfN6IpAddressList ¶

func (o *EasdfInfo) GetUpfN6IpAddressList() []IpAddr

GetUpfN6IpAddressList returns the UpfN6IpAddressList field value if set, zero value otherwise.

func (*EasdfInfo) GetUpfN6IpAddressListOk ¶

func (o *EasdfInfo) GetUpfN6IpAddressListOk() ([]IpAddr, bool)

GetUpfN6IpAddressListOk returns a tuple with the UpfN6IpAddressList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EasdfInfo) HasEasdfN6IpAddressList ¶

func (o *EasdfInfo) HasEasdfN6IpAddressList() bool

HasEasdfN6IpAddressList returns a boolean if a field has been set.

func (*EasdfInfo) HasSNssaiEasdfInfoList ¶

func (o *EasdfInfo) HasSNssaiEasdfInfoList() bool

HasSNssaiEasdfInfoList returns a boolean if a field has been set.

func (*EasdfInfo) HasUpfN6IpAddressList ¶

func (o *EasdfInfo) HasUpfN6IpAddressList() bool

HasUpfN6IpAddressList returns a boolean if a field has been set.

func (EasdfInfo) MarshalJSON ¶

func (o EasdfInfo) MarshalJSON() ([]byte, error)

func (*EasdfInfo) SetEasdfN6IpAddressList ¶

func (o *EasdfInfo) SetEasdfN6IpAddressList(v []IpAddr)

SetEasdfN6IpAddressList gets a reference to the given []IpAddr and assigns it to the EasdfN6IpAddressList field.

func (*EasdfInfo) SetSNssaiEasdfInfoList ¶

func (o *EasdfInfo) SetSNssaiEasdfInfoList(v []SnssaiEasdfInfoItem)

SetSNssaiEasdfInfoList gets a reference to the given []SnssaiEasdfInfoItem and assigns it to the SNssaiEasdfInfoList field.

func (*EasdfInfo) SetUpfN6IpAddressList ¶

func (o *EasdfInfo) SetUpfN6IpAddressList(v []IpAddr)

SetUpfN6IpAddressList gets a reference to the given []IpAddr and assigns it to the UpfN6IpAddressList field.

func (EasdfInfo) ToMap ¶

func (o EasdfInfo) ToMap() (map[string]interface{}, error)

type Ecgi ¶

type Ecgi struct {
	PlmnId PlmnId `json:"plmnId"`
	// 28-bit string identifying an E-UTRA Cell Id as specified in clause 9.3.1.9 of  3GPP TS 38.413, in hexadecimal representation. Each character in the string shall take a  value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most  significant character representing the 4 most significant bits of the Cell Id shall appear  first in the string, and the character representing the 4 least significant bit of the  Cell Id shall appear last in the string.
	EutraCellId string `json:"eutraCellId"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

Ecgi Contains the ECGI (E-UTRAN Cell Global Identity), as described in 3GPP 23.003

func NewEcgi ¶

func NewEcgi(plmnId PlmnId, eutraCellId string) *Ecgi

NewEcgi instantiates a new Ecgi 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 NewEcgiWithDefaults ¶

func NewEcgiWithDefaults() *Ecgi

NewEcgiWithDefaults instantiates a new Ecgi 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 (*Ecgi) GetEutraCellId ¶

func (o *Ecgi) GetEutraCellId() string

GetEutraCellId returns the EutraCellId field value

func (*Ecgi) GetEutraCellIdOk ¶

func (o *Ecgi) GetEutraCellIdOk() (*string, bool)

GetEutraCellIdOk returns a tuple with the EutraCellId field value and a boolean to check if the value has been set.

func (*Ecgi) GetNid ¶

func (o *Ecgi) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*Ecgi) GetNidOk ¶

func (o *Ecgi) GetNidOk() (*string, bool)

GetNidOk returns a tuple with the Nid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Ecgi) GetPlmnId ¶

func (o *Ecgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Ecgi) GetPlmnIdOk ¶

func (o *Ecgi) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*Ecgi) HasNid ¶

func (o *Ecgi) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Ecgi) MarshalJSON ¶

func (o Ecgi) MarshalJSON() ([]byte, error)

func (*Ecgi) SetEutraCellId ¶

func (o *Ecgi) SetEutraCellId(v string)

SetEutraCellId sets field value

func (*Ecgi) SetNid ¶

func (o *Ecgi) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (*Ecgi) SetPlmnId ¶

func (o *Ecgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Ecgi) ToMap ¶

func (o Ecgi) ToMap() (map[string]interface{}, error)

type EeSubscription ¶

type EeSubscription struct {
	// String providing an URI formatted according to RFC 3986.
	CallbackReference string `json:"callbackReference"`
	// A map (list of key-value pairs where ReferenceId serves as key) of MonitoringConfigurations
	MonitoringConfigurations map[string]MonitoringConfiguration `json:"monitoringConfigurations"`
	ReportingOptions         *ReportingOptions1                 `json:"reportingOptions,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures *string      `json:"supportedFeatures,omitempty"`
	SubscriptionId    *string      `json:"subscriptionId,omitempty"`
	ContextInfo       *ContextInfo `json:"contextInfo,omitempty"`
	EpcAppliedInd     *bool        `json:"epcAppliedInd,omitempty"`
	// Fully Qualified Domain Name
	ScefDiamHost *string `json:"scefDiamHost,omitempty"`
	// Fully Qualified Domain Name
	ScefDiamRealm       *string `json:"scefDiamRealm,omitempty"`
	NotifyCorrelationId *string `json:"notifyCorrelationId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	SecondCallbackRef *string `json:"secondCallbackRef,omitempty"`
	// 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.
	Gpsi            *string  `json:"gpsi,omitempty"`
	ExcludeGpsiList []string `json:"excludeGpsiList,omitempty"`
	IncludeGpsiList []string `json:"includeGpsiList,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	DataRestorationCallbackUri *string `json:"dataRestorationCallbackUri,omitempty"`
}

EeSubscription struct for EeSubscription

func NewEeSubscription ¶

func NewEeSubscription(callbackReference string, monitoringConfigurations map[string]MonitoringConfiguration) *EeSubscription

NewEeSubscription instantiates a new EeSubscription 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 NewEeSubscriptionWithDefaults ¶

func NewEeSubscriptionWithDefaults() *EeSubscription

NewEeSubscriptionWithDefaults instantiates a new EeSubscription 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 (*EeSubscription) GetCallbackReference ¶

func (o *EeSubscription) GetCallbackReference() string

GetCallbackReference returns the CallbackReference field value

func (*EeSubscription) GetCallbackReferenceOk ¶

func (o *EeSubscription) GetCallbackReferenceOk() (*string, bool)

GetCallbackReferenceOk returns a tuple with the CallbackReference field value and a boolean to check if the value has been set.

func (*EeSubscription) GetContextInfo ¶

func (o *EeSubscription) GetContextInfo() ContextInfo

GetContextInfo returns the ContextInfo field value if set, zero value otherwise.

func (*EeSubscription) GetContextInfoOk ¶

func (o *EeSubscription) GetContextInfoOk() (*ContextInfo, bool)

GetContextInfoOk returns a tuple with the ContextInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EeSubscription) GetDataRestorationCallbackUri ¶

func (o *EeSubscription) GetDataRestorationCallbackUri() string

GetDataRestorationCallbackUri returns the DataRestorationCallbackUri field value if set, zero value otherwise.

func (*EeSubscription) GetDataRestorationCallbackUriOk ¶

func (o *EeSubscription) GetDataRestorationCallbackUriOk() (*string, bool)

GetDataRestorationCallbackUriOk returns a tuple with the DataRestorationCallbackUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EeSubscription) GetEpcAppliedInd ¶

func (o *EeSubscription) GetEpcAppliedInd() bool

GetEpcAppliedInd returns the EpcAppliedInd field value if set, zero value otherwise.

func (*EeSubscription) GetEpcAppliedIndOk ¶

func (o *EeSubscription) GetEpcAppliedIndOk() (*bool, bool)

GetEpcAppliedIndOk returns a tuple with the EpcAppliedInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EeSubscription) GetExcludeGpsiList ¶

func (o *EeSubscription) GetExcludeGpsiList() []string

GetExcludeGpsiList returns the ExcludeGpsiList field value if set, zero value otherwise.

func (*EeSubscription) GetExcludeGpsiListOk ¶

func (o *EeSubscription) GetExcludeGpsiListOk() ([]string, bool)

GetExcludeGpsiListOk returns a tuple with the ExcludeGpsiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EeSubscription) GetGpsi ¶

func (o *EeSubscription) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*EeSubscription) GetGpsiOk ¶

func (o *EeSubscription) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EeSubscription) GetIncludeGpsiList ¶

func (o *EeSubscription) GetIncludeGpsiList() []string

GetIncludeGpsiList returns the IncludeGpsiList field value if set, zero value otherwise.

func (*EeSubscription) GetIncludeGpsiListOk ¶

func (o *EeSubscription) GetIncludeGpsiListOk() ([]string, bool)

GetIncludeGpsiListOk returns a tuple with the IncludeGpsiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EeSubscription) GetMonitoringConfigurations ¶

func (o *EeSubscription) GetMonitoringConfigurations() map[string]MonitoringConfiguration

GetMonitoringConfigurations returns the MonitoringConfigurations field value

func (*EeSubscription) GetMonitoringConfigurationsOk ¶

func (o *EeSubscription) GetMonitoringConfigurationsOk() (*map[string]MonitoringConfiguration, bool)

GetMonitoringConfigurationsOk returns a tuple with the MonitoringConfigurations field value and a boolean to check if the value has been set.

func (*EeSubscription) GetNotifyCorrelationId ¶

func (o *EeSubscription) GetNotifyCorrelationId() string

GetNotifyCorrelationId returns the NotifyCorrelationId field value if set, zero value otherwise.

func (*EeSubscription) GetNotifyCorrelationIdOk ¶

func (o *EeSubscription) GetNotifyCorrelationIdOk() (*string, bool)

GetNotifyCorrelationIdOk returns a tuple with the NotifyCorrelationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EeSubscription) GetReportingOptions ¶

func (o *EeSubscription) GetReportingOptions() ReportingOptions1

GetReportingOptions returns the ReportingOptions field value if set, zero value otherwise.

func (*EeSubscription) GetReportingOptionsOk ¶

func (o *EeSubscription) GetReportingOptionsOk() (*ReportingOptions1, bool)

GetReportingOptionsOk returns a tuple with the ReportingOptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EeSubscription) GetScefDiamHost ¶

func (o *EeSubscription) GetScefDiamHost() string

GetScefDiamHost returns the ScefDiamHost field value if set, zero value otherwise.

func (*EeSubscription) GetScefDiamHostOk ¶

func (o *EeSubscription) GetScefDiamHostOk() (*string, bool)

GetScefDiamHostOk returns a tuple with the ScefDiamHost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EeSubscription) GetScefDiamRealm ¶

func (o *EeSubscription) GetScefDiamRealm() string

GetScefDiamRealm returns the ScefDiamRealm field value if set, zero value otherwise.

func (*EeSubscription) GetScefDiamRealmOk ¶

func (o *EeSubscription) GetScefDiamRealmOk() (*string, bool)

GetScefDiamRealmOk returns a tuple with the ScefDiamRealm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EeSubscription) GetSecondCallbackRef ¶

func (o *EeSubscription) GetSecondCallbackRef() string

GetSecondCallbackRef returns the SecondCallbackRef field value if set, zero value otherwise.

func (*EeSubscription) GetSecondCallbackRefOk ¶

func (o *EeSubscription) GetSecondCallbackRefOk() (*string, bool)

GetSecondCallbackRefOk returns a tuple with the SecondCallbackRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EeSubscription) GetSubscriptionId ¶

func (o *EeSubscription) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise.

func (*EeSubscription) GetSubscriptionIdOk ¶

func (o *EeSubscription) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EeSubscription) GetSupportedFeatures ¶

func (o *EeSubscription) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*EeSubscription) GetSupportedFeaturesOk ¶

func (o *EeSubscription) GetSupportedFeaturesOk() (*string, bool)

GetSupportedFeaturesOk returns a tuple with the SupportedFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EeSubscription) HasContextInfo ¶

func (o *EeSubscription) HasContextInfo() bool

HasContextInfo returns a boolean if a field has been set.

func (*EeSubscription) HasDataRestorationCallbackUri ¶

func (o *EeSubscription) HasDataRestorationCallbackUri() bool

HasDataRestorationCallbackUri returns a boolean if a field has been set.

func (*EeSubscription) HasEpcAppliedInd ¶

func (o *EeSubscription) HasEpcAppliedInd() bool

HasEpcAppliedInd returns a boolean if a field has been set.

func (*EeSubscription) HasExcludeGpsiList ¶

func (o *EeSubscription) HasExcludeGpsiList() bool

HasExcludeGpsiList returns a boolean if a field has been set.

func (*EeSubscription) HasGpsi ¶

func (o *EeSubscription) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*EeSubscription) HasIncludeGpsiList ¶

func (o *EeSubscription) HasIncludeGpsiList() bool

HasIncludeGpsiList returns a boolean if a field has been set.

func (*EeSubscription) HasNotifyCorrelationId ¶

func (o *EeSubscription) HasNotifyCorrelationId() bool

HasNotifyCorrelationId returns a boolean if a field has been set.

func (*EeSubscription) HasReportingOptions ¶

func (o *EeSubscription) HasReportingOptions() bool

HasReportingOptions returns a boolean if a field has been set.

func (*EeSubscription) HasScefDiamHost ¶

func (o *EeSubscription) HasScefDiamHost() bool

HasScefDiamHost returns a boolean if a field has been set.

func (*EeSubscription) HasScefDiamRealm ¶

func (o *EeSubscription) HasScefDiamRealm() bool

HasScefDiamRealm returns a boolean if a field has been set.

func (*EeSubscription) HasSecondCallbackRef ¶

func (o *EeSubscription) HasSecondCallbackRef() bool

HasSecondCallbackRef returns a boolean if a field has been set.

func (*EeSubscription) HasSubscriptionId ¶

func (o *EeSubscription) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*EeSubscription) HasSupportedFeatures ¶

func (o *EeSubscription) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (EeSubscription) MarshalJSON ¶

func (o EeSubscription) MarshalJSON() ([]byte, error)

func (*EeSubscription) SetCallbackReference ¶

func (o *EeSubscription) SetCallbackReference(v string)

SetCallbackReference sets field value

func (*EeSubscription) SetContextInfo ¶

func (o *EeSubscription) SetContextInfo(v ContextInfo)

SetContextInfo gets a reference to the given ContextInfo and assigns it to the ContextInfo field.

func (*EeSubscription) SetDataRestorationCallbackUri ¶

func (o *EeSubscription) SetDataRestorationCallbackUri(v string)

SetDataRestorationCallbackUri gets a reference to the given string and assigns it to the DataRestorationCallbackUri field.

func (*EeSubscription) SetEpcAppliedInd ¶

func (o *EeSubscription) SetEpcAppliedInd(v bool)

SetEpcAppliedInd gets a reference to the given bool and assigns it to the EpcAppliedInd field.

func (*EeSubscription) SetExcludeGpsiList ¶

func (o *EeSubscription) SetExcludeGpsiList(v []string)

SetExcludeGpsiList gets a reference to the given []string and assigns it to the ExcludeGpsiList field.

func (*EeSubscription) SetGpsi ¶

func (o *EeSubscription) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*EeSubscription) SetIncludeGpsiList ¶

func (o *EeSubscription) SetIncludeGpsiList(v []string)

SetIncludeGpsiList gets a reference to the given []string and assigns it to the IncludeGpsiList field.

func (*EeSubscription) SetMonitoringConfigurations ¶

func (o *EeSubscription) SetMonitoringConfigurations(v map[string]MonitoringConfiguration)

SetMonitoringConfigurations sets field value

func (*EeSubscription) SetNotifyCorrelationId ¶

func (o *EeSubscription) SetNotifyCorrelationId(v string)

SetNotifyCorrelationId gets a reference to the given string and assigns it to the NotifyCorrelationId field.

func (*EeSubscription) SetReportingOptions ¶

func (o *EeSubscription) SetReportingOptions(v ReportingOptions1)

SetReportingOptions gets a reference to the given ReportingOptions1 and assigns it to the ReportingOptions field.

func (*EeSubscription) SetScefDiamHost ¶

func (o *EeSubscription) SetScefDiamHost(v string)

SetScefDiamHost gets a reference to the given string and assigns it to the ScefDiamHost field.

func (*EeSubscription) SetScefDiamRealm ¶

func (o *EeSubscription) SetScefDiamRealm(v string)

SetScefDiamRealm gets a reference to the given string and assigns it to the ScefDiamRealm field.

func (*EeSubscription) SetSecondCallbackRef ¶

func (o *EeSubscription) SetSecondCallbackRef(v string)

SetSecondCallbackRef gets a reference to the given string and assigns it to the SecondCallbackRef field.

func (*EeSubscription) SetSubscriptionId ¶

func (o *EeSubscription) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given string and assigns it to the SubscriptionId field.

func (*EeSubscription) SetSupportedFeatures ¶

func (o *EeSubscription) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (EeSubscription) ToMap ¶

func (o EeSubscription) ToMap() (map[string]interface{}, error)

type EllipsoidArc ¶

type EllipsoidArc struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of the inner radius.
	InnerRadius int32 `json:"innerRadius"`
	// Indicates value of uncertainty.
	UncertaintyRadius float32 `json:"uncertaintyRadius"`
	// Indicates value of angle.
	OffsetAngle int32 `json:"offsetAngle"`
	// Indicates value of angle.
	IncludedAngle int32 `json:"includedAngle"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

EllipsoidArc Ellipsoid Arc.

func NewEllipsoidArc ¶

func NewEllipsoidArc(point GeographicalCoordinates, innerRadius int32, uncertaintyRadius float32, offsetAngle int32, includedAngle int32, confidence int32, shape SupportedGADShapes) *EllipsoidArc

NewEllipsoidArc instantiates a new EllipsoidArc 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 NewEllipsoidArcWithDefaults ¶

func NewEllipsoidArcWithDefaults() *EllipsoidArc

NewEllipsoidArcWithDefaults instantiates a new EllipsoidArc 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 (*EllipsoidArc) GetConfidence ¶

func (o *EllipsoidArc) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*EllipsoidArc) GetConfidenceOk ¶

func (o *EllipsoidArc) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*EllipsoidArc) GetIncludedAngle ¶

func (o *EllipsoidArc) GetIncludedAngle() int32

GetIncludedAngle returns the IncludedAngle field value

func (*EllipsoidArc) GetIncludedAngleOk ¶

func (o *EllipsoidArc) GetIncludedAngleOk() (*int32, bool)

GetIncludedAngleOk returns a tuple with the IncludedAngle field value and a boolean to check if the value has been set.

func (*EllipsoidArc) GetInnerRadius ¶

func (o *EllipsoidArc) GetInnerRadius() int32

GetInnerRadius returns the InnerRadius field value

func (*EllipsoidArc) GetInnerRadiusOk ¶

func (o *EllipsoidArc) GetInnerRadiusOk() (*int32, bool)

GetInnerRadiusOk returns a tuple with the InnerRadius field value and a boolean to check if the value has been set.

func (*EllipsoidArc) GetOffsetAngle ¶

func (o *EllipsoidArc) GetOffsetAngle() int32

GetOffsetAngle returns the OffsetAngle field value

func (*EllipsoidArc) GetOffsetAngleOk ¶

func (o *EllipsoidArc) GetOffsetAngleOk() (*int32, bool)

GetOffsetAngleOk returns a tuple with the OffsetAngle field value and a boolean to check if the value has been set.

func (*EllipsoidArc) GetPoint ¶

func (o *EllipsoidArc) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*EllipsoidArc) GetPointOk ¶

func (o *EllipsoidArc) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*EllipsoidArc) GetUncertaintyRadius ¶

func (o *EllipsoidArc) GetUncertaintyRadius() float32

GetUncertaintyRadius returns the UncertaintyRadius field value

func (*EllipsoidArc) GetUncertaintyRadiusOk ¶

func (o *EllipsoidArc) GetUncertaintyRadiusOk() (*float32, bool)

GetUncertaintyRadiusOk returns a tuple with the UncertaintyRadius field value and a boolean to check if the value has been set.

func (EllipsoidArc) MarshalJSON ¶

func (o EllipsoidArc) MarshalJSON() ([]byte, error)

func (*EllipsoidArc) SetConfidence ¶

func (o *EllipsoidArc) SetConfidence(v int32)

SetConfidence sets field value

func (*EllipsoidArc) SetIncludedAngle ¶

func (o *EllipsoidArc) SetIncludedAngle(v int32)

SetIncludedAngle sets field value

func (*EllipsoidArc) SetInnerRadius ¶

func (o *EllipsoidArc) SetInnerRadius(v int32)

SetInnerRadius sets field value

func (*EllipsoidArc) SetOffsetAngle ¶

func (o *EllipsoidArc) SetOffsetAngle(v int32)

SetOffsetAngle sets field value

func (*EllipsoidArc) SetPoint ¶

func (o *EllipsoidArc) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (*EllipsoidArc) SetUncertaintyRadius ¶

func (o *EllipsoidArc) SetUncertaintyRadius(v float32)

SetUncertaintyRadius sets field value

func (EllipsoidArc) ToMap ¶

func (o EllipsoidArc) ToMap() (map[string]interface{}, error)

type EllipsoidArcAllOf ¶

type EllipsoidArcAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of the inner radius.
	InnerRadius int32 `json:"innerRadius"`
	// Indicates value of uncertainty.
	UncertaintyRadius float32 `json:"uncertaintyRadius"`
	// Indicates value of angle.
	OffsetAngle int32 `json:"offsetAngle"`
	// Indicates value of angle.
	IncludedAngle int32 `json:"includedAngle"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

EllipsoidArcAllOf struct for EllipsoidArcAllOf

func NewEllipsoidArcAllOf ¶

func NewEllipsoidArcAllOf(point GeographicalCoordinates, innerRadius int32, uncertaintyRadius float32, offsetAngle int32, includedAngle int32, confidence int32) *EllipsoidArcAllOf

NewEllipsoidArcAllOf instantiates a new EllipsoidArcAllOf 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 NewEllipsoidArcAllOfWithDefaults ¶

func NewEllipsoidArcAllOfWithDefaults() *EllipsoidArcAllOf

NewEllipsoidArcAllOfWithDefaults instantiates a new EllipsoidArcAllOf 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 (*EllipsoidArcAllOf) GetConfidence ¶

func (o *EllipsoidArcAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*EllipsoidArcAllOf) GetConfidenceOk ¶

func (o *EllipsoidArcAllOf) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*EllipsoidArcAllOf) GetIncludedAngle ¶

func (o *EllipsoidArcAllOf) GetIncludedAngle() int32

GetIncludedAngle returns the IncludedAngle field value

func (*EllipsoidArcAllOf) GetIncludedAngleOk ¶

func (o *EllipsoidArcAllOf) GetIncludedAngleOk() (*int32, bool)

GetIncludedAngleOk returns a tuple with the IncludedAngle field value and a boolean to check if the value has been set.

func (*EllipsoidArcAllOf) GetInnerRadius ¶

func (o *EllipsoidArcAllOf) GetInnerRadius() int32

GetInnerRadius returns the InnerRadius field value

func (*EllipsoidArcAllOf) GetInnerRadiusOk ¶

func (o *EllipsoidArcAllOf) GetInnerRadiusOk() (*int32, bool)

GetInnerRadiusOk returns a tuple with the InnerRadius field value and a boolean to check if the value has been set.

func (*EllipsoidArcAllOf) GetOffsetAngle ¶

func (o *EllipsoidArcAllOf) GetOffsetAngle() int32

GetOffsetAngle returns the OffsetAngle field value

func (*EllipsoidArcAllOf) GetOffsetAngleOk ¶

func (o *EllipsoidArcAllOf) GetOffsetAngleOk() (*int32, bool)

GetOffsetAngleOk returns a tuple with the OffsetAngle field value and a boolean to check if the value has been set.

func (*EllipsoidArcAllOf) GetPoint ¶

GetPoint returns the Point field value

func (*EllipsoidArcAllOf) GetPointOk ¶

func (o *EllipsoidArcAllOf) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*EllipsoidArcAllOf) GetUncertaintyRadius ¶

func (o *EllipsoidArcAllOf) GetUncertaintyRadius() float32

GetUncertaintyRadius returns the UncertaintyRadius field value

func (*EllipsoidArcAllOf) GetUncertaintyRadiusOk ¶

func (o *EllipsoidArcAllOf) GetUncertaintyRadiusOk() (*float32, bool)

GetUncertaintyRadiusOk returns a tuple with the UncertaintyRadius field value and a boolean to check if the value has been set.

func (EllipsoidArcAllOf) MarshalJSON ¶

func (o EllipsoidArcAllOf) MarshalJSON() ([]byte, error)

func (*EllipsoidArcAllOf) SetConfidence ¶

func (o *EllipsoidArcAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*EllipsoidArcAllOf) SetIncludedAngle ¶

func (o *EllipsoidArcAllOf) SetIncludedAngle(v int32)

SetIncludedAngle sets field value

func (*EllipsoidArcAllOf) SetInnerRadius ¶

func (o *EllipsoidArcAllOf) SetInnerRadius(v int32)

SetInnerRadius sets field value

func (*EllipsoidArcAllOf) SetOffsetAngle ¶

func (o *EllipsoidArcAllOf) SetOffsetAngle(v int32)

SetOffsetAngle sets field value

func (*EllipsoidArcAllOf) SetPoint ¶

SetPoint sets field value

func (*EllipsoidArcAllOf) SetUncertaintyRadius ¶

func (o *EllipsoidArcAllOf) SetUncertaintyRadius(v float32)

SetUncertaintyRadius sets field value

func (EllipsoidArcAllOf) ToMap ¶

func (o EllipsoidArcAllOf) ToMap() (map[string]interface{}, error)

type EndpointAddress ¶

type EndpointAddress struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string   `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 16-bit integer.
	PortNumber int32 `json:"portNumber"`
}

EndpointAddress struct for EndpointAddress

func NewEndpointAddress ¶

func NewEndpointAddress(portNumber int32) *EndpointAddress

NewEndpointAddress instantiates a new EndpointAddress 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 NewEndpointAddressWithDefaults ¶

func NewEndpointAddressWithDefaults() *EndpointAddress

NewEndpointAddressWithDefaults instantiates a new EndpointAddress 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 (*EndpointAddress) GetIpv4Addr ¶

func (o *EndpointAddress) GetIpv4Addr() string

GetIpv4Addr returns the Ipv4Addr field value if set, zero value otherwise.

func (*EndpointAddress) GetIpv4AddrOk ¶

func (o *EndpointAddress) GetIpv4AddrOk() (*string, bool)

GetIpv4AddrOk returns a tuple with the Ipv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndpointAddress) GetIpv6Addr ¶

func (o *EndpointAddress) GetIpv6Addr() Ipv6Addr

GetIpv6Addr returns the Ipv6Addr field value if set, zero value otherwise.

func (*EndpointAddress) GetIpv6AddrOk ¶

func (o *EndpointAddress) GetIpv6AddrOk() (*Ipv6Addr, bool)

GetIpv6AddrOk returns a tuple with the Ipv6Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndpointAddress) GetPortNumber ¶

func (o *EndpointAddress) GetPortNumber() int32

GetPortNumber returns the PortNumber field value

func (*EndpointAddress) GetPortNumberOk ¶

func (o *EndpointAddress) GetPortNumberOk() (*int32, bool)

GetPortNumberOk returns a tuple with the PortNumber field value and a boolean to check if the value has been set.

func (*EndpointAddress) HasIpv4Addr ¶

func (o *EndpointAddress) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*EndpointAddress) HasIpv6Addr ¶

func (o *EndpointAddress) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (EndpointAddress) MarshalJSON ¶

func (o EndpointAddress) MarshalJSON() ([]byte, error)

func (*EndpointAddress) SetIpv4Addr ¶

func (o *EndpointAddress) SetIpv4Addr(v string)

SetIpv4Addr gets a reference to the given string and assigns it to the Ipv4Addr field.

func (*EndpointAddress) SetIpv6Addr ¶

func (o *EndpointAddress) SetIpv6Addr(v Ipv6Addr)

SetIpv6Addr gets a reference to the given Ipv6Addr and assigns it to the Ipv6Addr field.

func (*EndpointAddress) SetPortNumber ¶

func (o *EndpointAddress) SetPortNumber(v int32)

SetPortNumber sets field value

func (EndpointAddress) ToMap ¶

func (o EndpointAddress) ToMap() (map[string]interface{}, error)

type EthFlowDescription ¶

type EthFlowDescription struct {
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	DestMacAddr *string `json:"destMacAddr,omitempty"`
	EthType     string  `json:"ethType"`
	// Defines a packet filter of an IP flow.
	FDesc *string        `json:"fDesc,omitempty"`
	FDir  *FlowDirection `json:"fDir,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	SourceMacAddr *string  `json:"sourceMacAddr,omitempty"`
	VlanTags      []string `json:"vlanTags,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	SrcMacAddrEnd *string `json:"srcMacAddrEnd,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	DestMacAddrEnd *string `json:"destMacAddrEnd,omitempty"`
}

EthFlowDescription Identifies an Ethernet flow.

func NewEthFlowDescription ¶

func NewEthFlowDescription(ethType string) *EthFlowDescription

NewEthFlowDescription instantiates a new EthFlowDescription 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 NewEthFlowDescriptionWithDefaults ¶

func NewEthFlowDescriptionWithDefaults() *EthFlowDescription

NewEthFlowDescriptionWithDefaults instantiates a new EthFlowDescription 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 (*EthFlowDescription) GetDestMacAddr ¶

func (o *EthFlowDescription) GetDestMacAddr() string

GetDestMacAddr returns the DestMacAddr field value if set, zero value otherwise.

func (*EthFlowDescription) GetDestMacAddrEnd ¶

func (o *EthFlowDescription) GetDestMacAddrEnd() string

GetDestMacAddrEnd returns the DestMacAddrEnd field value if set, zero value otherwise.

func (*EthFlowDescription) GetDestMacAddrEndOk ¶

func (o *EthFlowDescription) GetDestMacAddrEndOk() (*string, bool)

GetDestMacAddrEndOk returns a tuple with the DestMacAddrEnd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EthFlowDescription) GetDestMacAddrOk ¶

func (o *EthFlowDescription) GetDestMacAddrOk() (*string, bool)

GetDestMacAddrOk returns a tuple with the DestMacAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EthFlowDescription) GetEthType ¶

func (o *EthFlowDescription) GetEthType() string

GetEthType returns the EthType field value

func (*EthFlowDescription) GetEthTypeOk ¶

func (o *EthFlowDescription) GetEthTypeOk() (*string, bool)

GetEthTypeOk returns a tuple with the EthType field value and a boolean to check if the value has been set.

func (*EthFlowDescription) GetFDesc ¶

func (o *EthFlowDescription) GetFDesc() string

GetFDesc returns the FDesc field value if set, zero value otherwise.

func (*EthFlowDescription) GetFDescOk ¶

func (o *EthFlowDescription) GetFDescOk() (*string, bool)

GetFDescOk returns a tuple with the FDesc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EthFlowDescription) GetFDir ¶

func (o *EthFlowDescription) GetFDir() FlowDirection

GetFDir returns the FDir field value if set, zero value otherwise.

func (*EthFlowDescription) GetFDirOk ¶

func (o *EthFlowDescription) GetFDirOk() (*FlowDirection, bool)

GetFDirOk returns a tuple with the FDir field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EthFlowDescription) GetSourceMacAddr ¶

func (o *EthFlowDescription) GetSourceMacAddr() string

GetSourceMacAddr returns the SourceMacAddr field value if set, zero value otherwise.

func (*EthFlowDescription) GetSourceMacAddrOk ¶

func (o *EthFlowDescription) GetSourceMacAddrOk() (*string, bool)

GetSourceMacAddrOk returns a tuple with the SourceMacAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EthFlowDescription) GetSrcMacAddrEnd ¶

func (o *EthFlowDescription) GetSrcMacAddrEnd() string

GetSrcMacAddrEnd returns the SrcMacAddrEnd field value if set, zero value otherwise.

func (*EthFlowDescription) GetSrcMacAddrEndOk ¶

func (o *EthFlowDescription) GetSrcMacAddrEndOk() (*string, bool)

GetSrcMacAddrEndOk returns a tuple with the SrcMacAddrEnd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EthFlowDescription) GetVlanTags ¶

func (o *EthFlowDescription) GetVlanTags() []string

GetVlanTags returns the VlanTags field value if set, zero value otherwise.

func (*EthFlowDescription) GetVlanTagsOk ¶

func (o *EthFlowDescription) GetVlanTagsOk() ([]string, bool)

GetVlanTagsOk returns a tuple with the VlanTags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EthFlowDescription) HasDestMacAddr ¶

func (o *EthFlowDescription) HasDestMacAddr() bool

HasDestMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasDestMacAddrEnd ¶

func (o *EthFlowDescription) HasDestMacAddrEnd() bool

HasDestMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDesc ¶

func (o *EthFlowDescription) HasFDesc() bool

HasFDesc returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDir ¶

func (o *EthFlowDescription) HasFDir() bool

HasFDir returns a boolean if a field has been set.

func (*EthFlowDescription) HasSourceMacAddr ¶

func (o *EthFlowDescription) HasSourceMacAddr() bool

HasSourceMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasSrcMacAddrEnd ¶

func (o *EthFlowDescription) HasSrcMacAddrEnd() bool

HasSrcMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasVlanTags ¶

func (o *EthFlowDescription) HasVlanTags() bool

HasVlanTags returns a boolean if a field has been set.

func (EthFlowDescription) MarshalJSON ¶

func (o EthFlowDescription) MarshalJSON() ([]byte, error)

func (*EthFlowDescription) SetDestMacAddr ¶

func (o *EthFlowDescription) SetDestMacAddr(v string)

SetDestMacAddr gets a reference to the given string and assigns it to the DestMacAddr field.

func (*EthFlowDescription) SetDestMacAddrEnd ¶

func (o *EthFlowDescription) SetDestMacAddrEnd(v string)

SetDestMacAddrEnd gets a reference to the given string and assigns it to the DestMacAddrEnd field.

func (*EthFlowDescription) SetEthType ¶

func (o *EthFlowDescription) SetEthType(v string)

SetEthType sets field value

func (*EthFlowDescription) SetFDesc ¶

func (o *EthFlowDescription) SetFDesc(v string)

SetFDesc gets a reference to the given string and assigns it to the FDesc field.

func (*EthFlowDescription) SetFDir ¶

func (o *EthFlowDescription) SetFDir(v FlowDirection)

SetFDir gets a reference to the given FlowDirection and assigns it to the FDir field.

func (*EthFlowDescription) SetSourceMacAddr ¶

func (o *EthFlowDescription) SetSourceMacAddr(v string)

SetSourceMacAddr gets a reference to the given string and assigns it to the SourceMacAddr field.

func (*EthFlowDescription) SetSrcMacAddrEnd ¶

func (o *EthFlowDescription) SetSrcMacAddrEnd(v string)

SetSrcMacAddrEnd gets a reference to the given string and assigns it to the SrcMacAddrEnd field.

func (*EthFlowDescription) SetVlanTags ¶

func (o *EthFlowDescription) SetVlanTags(v []string)

SetVlanTags gets a reference to the given []string and assigns it to the VlanTags field.

func (EthFlowDescription) ToMap ¶

func (o EthFlowDescription) ToMap() (map[string]interface{}, error)

type EutraLocation ¶

type EutraLocation struct {
	Tai       Tai   `json:"tai"`
	IgnoreTai *bool `json:"ignoreTai,omitempty"`
	Ecgi      Ecgi  `json:"ecgi"`
	// This flag when present shall indicate that the Ecgi shall be ignored When present, it shall be set as follows: - true: ecgi shall be ignored. - false (default): ecgi shall not be ignored.
	IgnoreEcgi *bool `json:"ignoreEcgi,omitempty"`
	// The value represents the elapsed time in minutes since the last network contact of the mobile station.  Value \"0\" indicates that the location information was obtained after a successful paging procedure for Active Location Retrieval when the UE is in idle mode or after a successful NG-RAN location reporting procedure with the eNB when the UE is in connected mode.  Any other value than \"0\" indicates that the location information is the last known one.  See 3GPP TS 29.002 clause 17.7.8.
	AgeOfLocationInformation *int32 `json:"ageOfLocationInformation,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	UeLocationTimestamp *time.Time `json:"ueLocationTimestamp,omitempty"`
	// Refer to geographical Information. See 3GPP TS 23.032 clause 7.3.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeographicalInformation *string `json:"geographicalInformation,omitempty"`
	// Refers to Calling Geodetic Location. See ITU-T Recommendation Q.763 (1999) [24] clause 3.88.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeodeticInformation *string          `json:"geodeticInformation,omitempty"`
	GlobalNgenbId       *GlobalRanNodeId `json:"globalNgenbId,omitempty"`
	GlobalENbId         *GlobalRanNodeId `json:"globalENbId,omitempty"`
}

EutraLocation Contains the E-UTRA user location.

func NewEutraLocation ¶

func NewEutraLocation(tai Tai, ecgi Ecgi) *EutraLocation

NewEutraLocation instantiates a new EutraLocation 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 NewEutraLocationWithDefaults ¶

func NewEutraLocationWithDefaults() *EutraLocation

NewEutraLocationWithDefaults instantiates a new EutraLocation 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 (*EutraLocation) GetAgeOfLocationInformation ¶

func (o *EutraLocation) GetAgeOfLocationInformation() int32

GetAgeOfLocationInformation returns the AgeOfLocationInformation field value if set, zero value otherwise.

func (*EutraLocation) GetAgeOfLocationInformationOk ¶

func (o *EutraLocation) GetAgeOfLocationInformationOk() (*int32, bool)

GetAgeOfLocationInformationOk returns a tuple with the AgeOfLocationInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EutraLocation) GetEcgi ¶

func (o *EutraLocation) GetEcgi() Ecgi

GetEcgi returns the Ecgi field value

func (*EutraLocation) GetEcgiOk ¶

func (o *EutraLocation) GetEcgiOk() (*Ecgi, bool)

GetEcgiOk returns a tuple with the Ecgi field value and a boolean to check if the value has been set.

func (*EutraLocation) GetGeodeticInformation ¶

func (o *EutraLocation) GetGeodeticInformation() string

GetGeodeticInformation returns the GeodeticInformation field value if set, zero value otherwise.

func (*EutraLocation) GetGeodeticInformationOk ¶

func (o *EutraLocation) GetGeodeticInformationOk() (*string, bool)

GetGeodeticInformationOk returns a tuple with the GeodeticInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EutraLocation) GetGeographicalInformation ¶

func (o *EutraLocation) GetGeographicalInformation() string

GetGeographicalInformation returns the GeographicalInformation field value if set, zero value otherwise.

func (*EutraLocation) GetGeographicalInformationOk ¶

func (o *EutraLocation) GetGeographicalInformationOk() (*string, bool)

GetGeographicalInformationOk returns a tuple with the GeographicalInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EutraLocation) GetGlobalENbId ¶

func (o *EutraLocation) GetGlobalENbId() GlobalRanNodeId

GetGlobalENbId returns the GlobalENbId field value if set, zero value otherwise.

func (*EutraLocation) GetGlobalENbIdOk ¶

func (o *EutraLocation) GetGlobalENbIdOk() (*GlobalRanNodeId, bool)

GetGlobalENbIdOk returns a tuple with the GlobalENbId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EutraLocation) GetGlobalNgenbId ¶

func (o *EutraLocation) GetGlobalNgenbId() GlobalRanNodeId

GetGlobalNgenbId returns the GlobalNgenbId field value if set, zero value otherwise.

func (*EutraLocation) GetGlobalNgenbIdOk ¶

func (o *EutraLocation) GetGlobalNgenbIdOk() (*GlobalRanNodeId, bool)

GetGlobalNgenbIdOk returns a tuple with the GlobalNgenbId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EutraLocation) GetIgnoreEcgi ¶

func (o *EutraLocation) GetIgnoreEcgi() bool

GetIgnoreEcgi returns the IgnoreEcgi field value if set, zero value otherwise.

func (*EutraLocation) GetIgnoreEcgiOk ¶

func (o *EutraLocation) GetIgnoreEcgiOk() (*bool, bool)

GetIgnoreEcgiOk returns a tuple with the IgnoreEcgi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EutraLocation) GetIgnoreTai ¶

func (o *EutraLocation) GetIgnoreTai() bool

GetIgnoreTai returns the IgnoreTai field value if set, zero value otherwise.

func (*EutraLocation) GetIgnoreTaiOk ¶

func (o *EutraLocation) GetIgnoreTaiOk() (*bool, bool)

GetIgnoreTaiOk returns a tuple with the IgnoreTai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EutraLocation) GetTai ¶

func (o *EutraLocation) GetTai() Tai

GetTai returns the Tai field value

func (*EutraLocation) GetTaiOk ¶

func (o *EutraLocation) GetTaiOk() (*Tai, bool)

GetTaiOk returns a tuple with the Tai field value and a boolean to check if the value has been set.

func (*EutraLocation) GetUeLocationTimestamp ¶

func (o *EutraLocation) GetUeLocationTimestamp() time.Time

GetUeLocationTimestamp returns the UeLocationTimestamp field value if set, zero value otherwise.

func (*EutraLocation) GetUeLocationTimestampOk ¶

func (o *EutraLocation) GetUeLocationTimestampOk() (*time.Time, bool)

GetUeLocationTimestampOk returns a tuple with the UeLocationTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EutraLocation) HasAgeOfLocationInformation ¶

func (o *EutraLocation) HasAgeOfLocationInformation() bool

HasAgeOfLocationInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGeodeticInformation ¶

func (o *EutraLocation) HasGeodeticInformation() bool

HasGeodeticInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGeographicalInformation ¶

func (o *EutraLocation) HasGeographicalInformation() bool

HasGeographicalInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGlobalENbId ¶

func (o *EutraLocation) HasGlobalENbId() bool

HasGlobalENbId returns a boolean if a field has been set.

func (*EutraLocation) HasGlobalNgenbId ¶

func (o *EutraLocation) HasGlobalNgenbId() bool

HasGlobalNgenbId returns a boolean if a field has been set.

func (*EutraLocation) HasIgnoreEcgi ¶

func (o *EutraLocation) HasIgnoreEcgi() bool

HasIgnoreEcgi returns a boolean if a field has been set.

func (*EutraLocation) HasIgnoreTai ¶

func (o *EutraLocation) HasIgnoreTai() bool

HasIgnoreTai returns a boolean if a field has been set.

func (*EutraLocation) HasUeLocationTimestamp ¶

func (o *EutraLocation) HasUeLocationTimestamp() bool

HasUeLocationTimestamp returns a boolean if a field has been set.

func (EutraLocation) MarshalJSON ¶

func (o EutraLocation) MarshalJSON() ([]byte, error)

func (*EutraLocation) SetAgeOfLocationInformation ¶

func (o *EutraLocation) SetAgeOfLocationInformation(v int32)

SetAgeOfLocationInformation gets a reference to the given int32 and assigns it to the AgeOfLocationInformation field.

func (*EutraLocation) SetEcgi ¶

func (o *EutraLocation) SetEcgi(v Ecgi)

SetEcgi sets field value

func (*EutraLocation) SetGeodeticInformation ¶

func (o *EutraLocation) SetGeodeticInformation(v string)

SetGeodeticInformation gets a reference to the given string and assigns it to the GeodeticInformation field.

func (*EutraLocation) SetGeographicalInformation ¶

func (o *EutraLocation) SetGeographicalInformation(v string)

SetGeographicalInformation gets a reference to the given string and assigns it to the GeographicalInformation field.

func (*EutraLocation) SetGlobalENbId ¶

func (o *EutraLocation) SetGlobalENbId(v GlobalRanNodeId)

SetGlobalENbId gets a reference to the given GlobalRanNodeId and assigns it to the GlobalENbId field.

func (*EutraLocation) SetGlobalNgenbId ¶

func (o *EutraLocation) SetGlobalNgenbId(v GlobalRanNodeId)

SetGlobalNgenbId gets a reference to the given GlobalRanNodeId and assigns it to the GlobalNgenbId field.

func (*EutraLocation) SetIgnoreEcgi ¶

func (o *EutraLocation) SetIgnoreEcgi(v bool)

SetIgnoreEcgi gets a reference to the given bool and assigns it to the IgnoreEcgi field.

func (*EutraLocation) SetIgnoreTai ¶

func (o *EutraLocation) SetIgnoreTai(v bool)

SetIgnoreTai gets a reference to the given bool and assigns it to the IgnoreTai field.

func (*EutraLocation) SetTai ¶

func (o *EutraLocation) SetTai(v Tai)

SetTai sets field value

func (*EutraLocation) SetUeLocationTimestamp ¶

func (o *EutraLocation) SetUeLocationTimestamp(v time.Time)

SetUeLocationTimestamp gets a reference to the given time.Time and assigns it to the UeLocationTimestamp field.

func (EutraLocation) ToMap ¶

func (o EutraLocation) ToMap() (map[string]interface{}, error)

type EventFilter ¶

type EventFilter struct {
	Gpsis         []string                    `json:"gpsis,omitempty"`
	Supis         []string                    `json:"supis,omitempty"`
	ExterGroupIds []string                    `json:"exterGroupIds,omitempty"`
	InterGroupIds []string                    `json:"interGroupIds,omitempty"`
	AnyUeInd      *bool                       `json:"anyUeInd,omitempty"`
	AppIds        []string                    `json:"appIds,omitempty"`
	LocArea       *LocationArea5G             `json:"locArea,omitempty"`
	CollAttrs     []CollectiveBehaviourFilter `json:"collAttrs,omitempty"`
}

EventFilter Represents event filter information for an event.

func NewEventFilter ¶

func NewEventFilter() *EventFilter

NewEventFilter instantiates a new EventFilter 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 NewEventFilterWithDefaults ¶

func NewEventFilterWithDefaults() *EventFilter

NewEventFilterWithDefaults instantiates a new EventFilter 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 (*EventFilter) GetAnyUeInd ¶

func (o *EventFilter) GetAnyUeInd() bool

GetAnyUeInd returns the AnyUeInd field value if set, zero value otherwise.

func (*EventFilter) GetAnyUeIndOk ¶

func (o *EventFilter) GetAnyUeIndOk() (*bool, bool)

GetAnyUeIndOk returns a tuple with the AnyUeInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventFilter) GetAppIds ¶

func (o *EventFilter) GetAppIds() []string

GetAppIds returns the AppIds field value if set, zero value otherwise.

func (*EventFilter) GetAppIdsOk ¶

func (o *EventFilter) GetAppIdsOk() ([]string, bool)

GetAppIdsOk returns a tuple with the AppIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventFilter) GetCollAttrs ¶

func (o *EventFilter) GetCollAttrs() []CollectiveBehaviourFilter

GetCollAttrs returns the CollAttrs field value if set, zero value otherwise.

func (*EventFilter) GetCollAttrsOk ¶

func (o *EventFilter) GetCollAttrsOk() ([]CollectiveBehaviourFilter, bool)

GetCollAttrsOk returns a tuple with the CollAttrs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventFilter) GetExterGroupIds ¶

func (o *EventFilter) GetExterGroupIds() []string

GetExterGroupIds returns the ExterGroupIds field value if set, zero value otherwise.

func (*EventFilter) GetExterGroupIdsOk ¶

func (o *EventFilter) GetExterGroupIdsOk() ([]string, bool)

GetExterGroupIdsOk returns a tuple with the ExterGroupIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventFilter) GetGpsis ¶

func (o *EventFilter) GetGpsis() []string

GetGpsis returns the Gpsis field value if set, zero value otherwise.

func (*EventFilter) GetGpsisOk ¶

func (o *EventFilter) GetGpsisOk() ([]string, bool)

GetGpsisOk returns a tuple with the Gpsis field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventFilter) GetInterGroupIds ¶

func (o *EventFilter) GetInterGroupIds() []string

GetInterGroupIds returns the InterGroupIds field value if set, zero value otherwise.

func (*EventFilter) GetInterGroupIdsOk ¶

func (o *EventFilter) GetInterGroupIdsOk() ([]string, bool)

GetInterGroupIdsOk returns a tuple with the InterGroupIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventFilter) GetLocArea ¶

func (o *EventFilter) GetLocArea() LocationArea5G

GetLocArea returns the LocArea field value if set, zero value otherwise.

func (*EventFilter) GetLocAreaOk ¶

func (o *EventFilter) GetLocAreaOk() (*LocationArea5G, bool)

GetLocAreaOk returns a tuple with the LocArea field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventFilter) GetSupis ¶

func (o *EventFilter) GetSupis() []string

GetSupis returns the Supis field value if set, zero value otherwise.

func (*EventFilter) GetSupisOk ¶

func (o *EventFilter) GetSupisOk() ([]string, bool)

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 (*EventFilter) HasAnyUeInd ¶

func (o *EventFilter) HasAnyUeInd() bool

HasAnyUeInd returns a boolean if a field has been set.

func (*EventFilter) HasAppIds ¶

func (o *EventFilter) HasAppIds() bool

HasAppIds returns a boolean if a field has been set.

func (*EventFilter) HasCollAttrs ¶

func (o *EventFilter) HasCollAttrs() bool

HasCollAttrs returns a boolean if a field has been set.

func (*EventFilter) HasExterGroupIds ¶

func (o *EventFilter) HasExterGroupIds() bool

HasExterGroupIds returns a boolean if a field has been set.

func (*EventFilter) HasGpsis ¶

func (o *EventFilter) HasGpsis() bool

HasGpsis returns a boolean if a field has been set.

func (*EventFilter) HasInterGroupIds ¶

func (o *EventFilter) HasInterGroupIds() bool

HasInterGroupIds returns a boolean if a field has been set.

func (*EventFilter) HasLocArea ¶

func (o *EventFilter) HasLocArea() bool

HasLocArea returns a boolean if a field has been set.

func (*EventFilter) HasSupis ¶

func (o *EventFilter) HasSupis() bool

HasSupis returns a boolean if a field has been set.

func (EventFilter) MarshalJSON ¶

func (o EventFilter) MarshalJSON() ([]byte, error)

func (*EventFilter) SetAnyUeInd ¶

func (o *EventFilter) SetAnyUeInd(v bool)

SetAnyUeInd gets a reference to the given bool and assigns it to the AnyUeInd field.

func (*EventFilter) SetAppIds ¶

func (o *EventFilter) SetAppIds(v []string)

SetAppIds gets a reference to the given []string and assigns it to the AppIds field.

func (*EventFilter) SetCollAttrs ¶

func (o *EventFilter) SetCollAttrs(v []CollectiveBehaviourFilter)

SetCollAttrs gets a reference to the given []CollectiveBehaviourFilter and assigns it to the CollAttrs field.

func (*EventFilter) SetExterGroupIds ¶

func (o *EventFilter) SetExterGroupIds(v []string)

SetExterGroupIds gets a reference to the given []string and assigns it to the ExterGroupIds field.

func (*EventFilter) SetGpsis ¶

func (o *EventFilter) SetGpsis(v []string)

SetGpsis gets a reference to the given []string and assigns it to the Gpsis field.

func (*EventFilter) SetInterGroupIds ¶

func (o *EventFilter) SetInterGroupIds(v []string)

SetInterGroupIds gets a reference to the given []string and assigns it to the InterGroupIds field.

func (*EventFilter) SetLocArea ¶

func (o *EventFilter) SetLocArea(v LocationArea5G)

SetLocArea gets a reference to the given LocationArea5G and assigns it to the LocArea field.

func (*EventFilter) SetSupis ¶

func (o *EventFilter) SetSupis(v []string)

SetSupis gets a reference to the given []string and assigns it to the Supis field.

func (EventFilter) ToMap ¶

func (o EventFilter) ToMap() (map[string]interface{}, error)

type EventId ¶

type EventId struct {
	String *string
}

EventId Possible values are: - LOAD_LEVEL_INFORMATION: Represent the analytics of load level information of corresponding network slice. - NETWORK_PERFORMANCE: Represent the analytics of network performance information. - NF_LOAD: Indicates that the event subscribed is NF Load. - SERVICE_EXPERIENCE: Represent the analytics of service experience information of the specific applications. - UE_MOBILITY: Represent the analytics of UE mobility. - UE_COMMUNICATION: Represent the analytics of UE communication. - QOS_SUSTAINABILITY: Represent the analytics of QoS sustainability information in the certain area. - ABNORMAL_BEHAVIOUR: Indicates that the event subscribed is abnormal behaviour information. - USER_DATA_CONGESTION: Represent the analytics of the user data congestion in the certain area. - NSI_LOAD_LEVEL: Represent the analytics of Network Slice and the optionally associated Network Slice Instance. - SM_CONGESTION: Represent the analytics of Session Management congestion control experience information for specific DNN and/or S-NSSAI. - DISPERSION: Represents the analytics of dispersion. - RED_TRANS_EXP: Represents the analytics of Redundant Transmission Experience. - WLAN_PERFORMANCE: Represents the analytics of WLAN performance. - DN_PERFORMANCE: Represents the analytics of DN performance.

func (*EventId) MarshalJSON ¶

func (src *EventId) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*EventId) UnmarshalJSON ¶

func (dst *EventId) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type EventNotification ¶

type EventNotification struct {
	Event NwdafEvent `json:"event"`
	// string with format 'date-time' as defined in OpenAPI.
	Start *time.Time `json:"start,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	Expiry *time.Time `json:"expiry,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStampGen   *time.Time        `json:"timeStampGen,omitempty"`
	FailNotifyCode *NwdafFailureCode `json:"failNotifyCode,omitempty"`
	// indicating a time in seconds.
	RvWaitTime         *int32                         `json:"rvWaitTime,omitempty"`
	AnaMetaInfo        *AnalyticsMetadataInfo         `json:"anaMetaInfo,omitempty"`
	NfLoadLevelInfos   []NfLoadLevelInformation       `json:"nfLoadLevelInfos,omitempty"`
	NsiLoadLevelInfos  []NsiLoadLevelInfo             `json:"nsiLoadLevelInfos,omitempty"`
	SliceLoadLevelInfo *SliceLoadLevelInformation     `json:"sliceLoadLevelInfo,omitempty"`
	SvcExps            []ServiceExperienceInfo        `json:"svcExps,omitempty"`
	QosSustainInfos    []QosSustainabilityInfo        `json:"qosSustainInfos,omitempty"`
	UeComms            []UeCommunication              `json:"ueComms,omitempty"`
	UeMobs             []UeMobility                   `json:"ueMobs,omitempty"`
	UserDataCongInfos  []UserDataCongestionInfo       `json:"userDataCongInfos,omitempty"`
	AbnorBehavrs       []AbnormalBehaviour            `json:"abnorBehavrs,omitempty"`
	NwPerfs            []NetworkPerfInfo              `json:"nwPerfs,omitempty"`
	DnPerfInfos        []DnPerfInfo                   `json:"dnPerfInfos,omitempty"`
	DisperInfos        []DispersionInfo               `json:"disperInfos,omitempty"`
	RedTransInfos      []RedundantTransmissionExpInfo `json:"redTransInfos,omitempty"`
	WlanInfos          []WlanPerformanceInfo          `json:"wlanInfos,omitempty"`
	SmccExps           []SmcceInfo                    `json:"smccExps,omitempty"`
}

EventNotification Represents a notification on events that occurred.

func NewEventNotification ¶

func NewEventNotification(event NwdafEvent) *EventNotification

NewEventNotification instantiates a new EventNotification 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 NewEventNotificationWithDefaults ¶

func NewEventNotificationWithDefaults() *EventNotification

NewEventNotificationWithDefaults instantiates a new EventNotification 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 (*EventNotification) GetAbnorBehavrs ¶

func (o *EventNotification) GetAbnorBehavrs() []AbnormalBehaviour

GetAbnorBehavrs returns the AbnorBehavrs field value if set, zero value otherwise.

func (*EventNotification) GetAbnorBehavrsOk ¶

func (o *EventNotification) GetAbnorBehavrsOk() ([]AbnormalBehaviour, bool)

GetAbnorBehavrsOk returns a tuple with the AbnorBehavrs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetAnaMetaInfo ¶

func (o *EventNotification) GetAnaMetaInfo() AnalyticsMetadataInfo

GetAnaMetaInfo returns the AnaMetaInfo field value if set, zero value otherwise.

func (*EventNotification) GetAnaMetaInfoOk ¶

func (o *EventNotification) GetAnaMetaInfoOk() (*AnalyticsMetadataInfo, bool)

GetAnaMetaInfoOk returns a tuple with the AnaMetaInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetDisperInfos ¶

func (o *EventNotification) GetDisperInfos() []DispersionInfo

GetDisperInfos returns the DisperInfos field value if set, zero value otherwise.

func (*EventNotification) GetDisperInfosOk ¶

func (o *EventNotification) GetDisperInfosOk() ([]DispersionInfo, bool)

GetDisperInfosOk returns a tuple with the DisperInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetDnPerfInfos ¶

func (o *EventNotification) GetDnPerfInfos() []DnPerfInfo

GetDnPerfInfos returns the DnPerfInfos field value if set, zero value otherwise.

func (*EventNotification) GetDnPerfInfosOk ¶

func (o *EventNotification) GetDnPerfInfosOk() ([]DnPerfInfo, bool)

GetDnPerfInfosOk returns a tuple with the DnPerfInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetEvent ¶

func (o *EventNotification) GetEvent() NwdafEvent

GetEvent returns the Event field value

func (*EventNotification) GetEventOk ¶

func (o *EventNotification) GetEventOk() (*NwdafEvent, bool)

GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.

func (*EventNotification) GetExpiry ¶

func (o *EventNotification) GetExpiry() time.Time

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*EventNotification) GetExpiryOk ¶

func (o *EventNotification) GetExpiryOk() (*time.Time, bool)

GetExpiryOk returns a tuple with the Expiry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetFailNotifyCode ¶

func (o *EventNotification) GetFailNotifyCode() NwdafFailureCode

GetFailNotifyCode returns the FailNotifyCode field value if set, zero value otherwise.

func (*EventNotification) GetFailNotifyCodeOk ¶

func (o *EventNotification) GetFailNotifyCodeOk() (*NwdafFailureCode, bool)

GetFailNotifyCodeOk returns a tuple with the FailNotifyCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetNfLoadLevelInfos ¶

func (o *EventNotification) GetNfLoadLevelInfos() []NfLoadLevelInformation

GetNfLoadLevelInfos returns the NfLoadLevelInfos field value if set, zero value otherwise.

func (*EventNotification) GetNfLoadLevelInfosOk ¶

func (o *EventNotification) GetNfLoadLevelInfosOk() ([]NfLoadLevelInformation, bool)

GetNfLoadLevelInfosOk returns a tuple with the NfLoadLevelInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetNsiLoadLevelInfos ¶

func (o *EventNotification) GetNsiLoadLevelInfos() []NsiLoadLevelInfo

GetNsiLoadLevelInfos returns the NsiLoadLevelInfos field value if set, zero value otherwise.

func (*EventNotification) GetNsiLoadLevelInfosOk ¶

func (o *EventNotification) GetNsiLoadLevelInfosOk() ([]NsiLoadLevelInfo, bool)

GetNsiLoadLevelInfosOk returns a tuple with the NsiLoadLevelInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetNwPerfs ¶

func (o *EventNotification) GetNwPerfs() []NetworkPerfInfo

GetNwPerfs returns the NwPerfs field value if set, zero value otherwise.

func (*EventNotification) GetNwPerfsOk ¶

func (o *EventNotification) GetNwPerfsOk() ([]NetworkPerfInfo, bool)

GetNwPerfsOk returns a tuple with the NwPerfs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetQosSustainInfos ¶

func (o *EventNotification) GetQosSustainInfos() []QosSustainabilityInfo

GetQosSustainInfos returns the QosSustainInfos field value if set, zero value otherwise.

func (*EventNotification) GetQosSustainInfosOk ¶

func (o *EventNotification) GetQosSustainInfosOk() ([]QosSustainabilityInfo, bool)

GetQosSustainInfosOk returns a tuple with the QosSustainInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetRedTransInfos ¶

func (o *EventNotification) GetRedTransInfos() []RedundantTransmissionExpInfo

GetRedTransInfos returns the RedTransInfos field value if set, zero value otherwise.

func (*EventNotification) GetRedTransInfosOk ¶

func (o *EventNotification) GetRedTransInfosOk() ([]RedundantTransmissionExpInfo, bool)

GetRedTransInfosOk returns a tuple with the RedTransInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetRvWaitTime ¶

func (o *EventNotification) GetRvWaitTime() int32

GetRvWaitTime returns the RvWaitTime field value if set, zero value otherwise.

func (*EventNotification) GetRvWaitTimeOk ¶

func (o *EventNotification) GetRvWaitTimeOk() (*int32, bool)

GetRvWaitTimeOk returns a tuple with the RvWaitTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetSliceLoadLevelInfo ¶

func (o *EventNotification) GetSliceLoadLevelInfo() SliceLoadLevelInformation

GetSliceLoadLevelInfo returns the SliceLoadLevelInfo field value if set, zero value otherwise.

func (*EventNotification) GetSliceLoadLevelInfoOk ¶

func (o *EventNotification) GetSliceLoadLevelInfoOk() (*SliceLoadLevelInformation, bool)

GetSliceLoadLevelInfoOk returns a tuple with the SliceLoadLevelInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetSmccExps ¶

func (o *EventNotification) GetSmccExps() []SmcceInfo

GetSmccExps returns the SmccExps field value if set, zero value otherwise.

func (*EventNotification) GetSmccExpsOk ¶

func (o *EventNotification) GetSmccExpsOk() ([]SmcceInfo, bool)

GetSmccExpsOk returns a tuple with the SmccExps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetStart ¶

func (o *EventNotification) GetStart() time.Time

GetStart returns the Start field value if set, zero value otherwise.

func (*EventNotification) GetStartOk ¶

func (o *EventNotification) GetStartOk() (*time.Time, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetSvcExps ¶

func (o *EventNotification) GetSvcExps() []ServiceExperienceInfo

GetSvcExps returns the SvcExps field value if set, zero value otherwise.

func (*EventNotification) GetSvcExpsOk ¶

func (o *EventNotification) GetSvcExpsOk() ([]ServiceExperienceInfo, bool)

GetSvcExpsOk returns a tuple with the SvcExps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetTimeStampGen ¶

func (o *EventNotification) GetTimeStampGen() time.Time

GetTimeStampGen returns the TimeStampGen field value if set, zero value otherwise.

func (*EventNotification) GetTimeStampGenOk ¶

func (o *EventNotification) GetTimeStampGenOk() (*time.Time, bool)

GetTimeStampGenOk returns a tuple with the TimeStampGen field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetUeComms ¶

func (o *EventNotification) GetUeComms() []UeCommunication

GetUeComms returns the UeComms field value if set, zero value otherwise.

func (*EventNotification) GetUeCommsOk ¶

func (o *EventNotification) GetUeCommsOk() ([]UeCommunication, bool)

GetUeCommsOk returns a tuple with the UeComms field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetUeMobs ¶

func (o *EventNotification) GetUeMobs() []UeMobility

GetUeMobs returns the UeMobs field value if set, zero value otherwise.

func (*EventNotification) GetUeMobsOk ¶

func (o *EventNotification) GetUeMobsOk() ([]UeMobility, bool)

GetUeMobsOk returns a tuple with the UeMobs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetUserDataCongInfos ¶

func (o *EventNotification) GetUserDataCongInfos() []UserDataCongestionInfo

GetUserDataCongInfos returns the UserDataCongInfos field value if set, zero value otherwise.

func (*EventNotification) GetUserDataCongInfosOk ¶

func (o *EventNotification) GetUserDataCongInfosOk() ([]UserDataCongestionInfo, bool)

GetUserDataCongInfosOk returns a tuple with the UserDataCongInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) GetWlanInfos ¶

func (o *EventNotification) GetWlanInfos() []WlanPerformanceInfo

GetWlanInfos returns the WlanInfos field value if set, zero value otherwise.

func (*EventNotification) GetWlanInfosOk ¶

func (o *EventNotification) GetWlanInfosOk() ([]WlanPerformanceInfo, bool)

GetWlanInfosOk returns a tuple with the WlanInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification) HasAbnorBehavrs ¶

func (o *EventNotification) HasAbnorBehavrs() bool

HasAbnorBehavrs returns a boolean if a field has been set.

func (*EventNotification) HasAnaMetaInfo ¶

func (o *EventNotification) HasAnaMetaInfo() bool

HasAnaMetaInfo returns a boolean if a field has been set.

func (*EventNotification) HasDisperInfos ¶

func (o *EventNotification) HasDisperInfos() bool

HasDisperInfos returns a boolean if a field has been set.

func (*EventNotification) HasDnPerfInfos ¶

func (o *EventNotification) HasDnPerfInfos() bool

HasDnPerfInfos returns a boolean if a field has been set.

func (*EventNotification) HasExpiry ¶

func (o *EventNotification) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*EventNotification) HasFailNotifyCode ¶

func (o *EventNotification) HasFailNotifyCode() bool

HasFailNotifyCode returns a boolean if a field has been set.

func (*EventNotification) HasNfLoadLevelInfos ¶

func (o *EventNotification) HasNfLoadLevelInfos() bool

HasNfLoadLevelInfos returns a boolean if a field has been set.

func (*EventNotification) HasNsiLoadLevelInfos ¶

func (o *EventNotification) HasNsiLoadLevelInfos() bool

HasNsiLoadLevelInfos returns a boolean if a field has been set.

func (*EventNotification) HasNwPerfs ¶

func (o *EventNotification) HasNwPerfs() bool

HasNwPerfs returns a boolean if a field has been set.

func (*EventNotification) HasQosSustainInfos ¶

func (o *EventNotification) HasQosSustainInfos() bool

HasQosSustainInfos returns a boolean if a field has been set.

func (*EventNotification) HasRedTransInfos ¶

func (o *EventNotification) HasRedTransInfos() bool

HasRedTransInfos returns a boolean if a field has been set.

func (*EventNotification) HasRvWaitTime ¶

func (o *EventNotification) HasRvWaitTime() bool

HasRvWaitTime returns a boolean if a field has been set.

func (*EventNotification) HasSliceLoadLevelInfo ¶

func (o *EventNotification) HasSliceLoadLevelInfo() bool

HasSliceLoadLevelInfo returns a boolean if a field has been set.

func (*EventNotification) HasSmccExps ¶

func (o *EventNotification) HasSmccExps() bool

HasSmccExps returns a boolean if a field has been set.

func (*EventNotification) HasStart ¶

func (o *EventNotification) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*EventNotification) HasSvcExps ¶

func (o *EventNotification) HasSvcExps() bool

HasSvcExps returns a boolean if a field has been set.

func (*EventNotification) HasTimeStampGen ¶

func (o *EventNotification) HasTimeStampGen() bool

HasTimeStampGen returns a boolean if a field has been set.

func (*EventNotification) HasUeComms ¶

func (o *EventNotification) HasUeComms() bool

HasUeComms returns a boolean if a field has been set.

func (*EventNotification) HasUeMobs ¶

func (o *EventNotification) HasUeMobs() bool

HasUeMobs returns a boolean if a field has been set.

func (*EventNotification) HasUserDataCongInfos ¶

func (o *EventNotification) HasUserDataCongInfos() bool

HasUserDataCongInfos returns a boolean if a field has been set.

func (*EventNotification) HasWlanInfos ¶

func (o *EventNotification) HasWlanInfos() bool

HasWlanInfos returns a boolean if a field has been set.

func (EventNotification) MarshalJSON ¶

func (o EventNotification) MarshalJSON() ([]byte, error)

func (*EventNotification) SetAbnorBehavrs ¶

func (o *EventNotification) SetAbnorBehavrs(v []AbnormalBehaviour)

SetAbnorBehavrs gets a reference to the given []AbnormalBehaviour and assigns it to the AbnorBehavrs field.

func (*EventNotification) SetAnaMetaInfo ¶

func (o *EventNotification) SetAnaMetaInfo(v AnalyticsMetadataInfo)

SetAnaMetaInfo gets a reference to the given AnalyticsMetadataInfo and assigns it to the AnaMetaInfo field.

func (*EventNotification) SetDisperInfos ¶

func (o *EventNotification) SetDisperInfos(v []DispersionInfo)

SetDisperInfos gets a reference to the given []DispersionInfo and assigns it to the DisperInfos field.

func (*EventNotification) SetDnPerfInfos ¶

func (o *EventNotification) SetDnPerfInfos(v []DnPerfInfo)

SetDnPerfInfos gets a reference to the given []DnPerfInfo and assigns it to the DnPerfInfos field.

func (*EventNotification) SetEvent ¶

func (o *EventNotification) SetEvent(v NwdafEvent)

SetEvent sets field value

func (*EventNotification) SetExpiry ¶

func (o *EventNotification) SetExpiry(v time.Time)

SetExpiry gets a reference to the given time.Time and assigns it to the Expiry field.

func (*EventNotification) SetFailNotifyCode ¶

func (o *EventNotification) SetFailNotifyCode(v NwdafFailureCode)

SetFailNotifyCode gets a reference to the given NwdafFailureCode and assigns it to the FailNotifyCode field.

func (*EventNotification) SetNfLoadLevelInfos ¶

func (o *EventNotification) SetNfLoadLevelInfos(v []NfLoadLevelInformation)

SetNfLoadLevelInfos gets a reference to the given []NfLoadLevelInformation and assigns it to the NfLoadLevelInfos field.

func (*EventNotification) SetNsiLoadLevelInfos ¶

func (o *EventNotification) SetNsiLoadLevelInfos(v []NsiLoadLevelInfo)

SetNsiLoadLevelInfos gets a reference to the given []NsiLoadLevelInfo and assigns it to the NsiLoadLevelInfos field.

func (*EventNotification) SetNwPerfs ¶

func (o *EventNotification) SetNwPerfs(v []NetworkPerfInfo)

SetNwPerfs gets a reference to the given []NetworkPerfInfo and assigns it to the NwPerfs field.

func (*EventNotification) SetQosSustainInfos ¶

func (o *EventNotification) SetQosSustainInfos(v []QosSustainabilityInfo)

SetQosSustainInfos gets a reference to the given []QosSustainabilityInfo and assigns it to the QosSustainInfos field.

func (*EventNotification) SetRedTransInfos ¶

func (o *EventNotification) SetRedTransInfos(v []RedundantTransmissionExpInfo)

SetRedTransInfos gets a reference to the given []RedundantTransmissionExpInfo and assigns it to the RedTransInfos field.

func (*EventNotification) SetRvWaitTime ¶

func (o *EventNotification) SetRvWaitTime(v int32)

SetRvWaitTime gets a reference to the given int32 and assigns it to the RvWaitTime field.

func (*EventNotification) SetSliceLoadLevelInfo ¶

func (o *EventNotification) SetSliceLoadLevelInfo(v SliceLoadLevelInformation)

SetSliceLoadLevelInfo gets a reference to the given SliceLoadLevelInformation and assigns it to the SliceLoadLevelInfo field.

func (*EventNotification) SetSmccExps ¶

func (o *EventNotification) SetSmccExps(v []SmcceInfo)

SetSmccExps gets a reference to the given []SmcceInfo and assigns it to the SmccExps field.

func (*EventNotification) SetStart ¶

func (o *EventNotification) SetStart(v time.Time)

SetStart gets a reference to the given time.Time and assigns it to the Start field.

func (*EventNotification) SetSvcExps ¶

func (o *EventNotification) SetSvcExps(v []ServiceExperienceInfo)

SetSvcExps gets a reference to the given []ServiceExperienceInfo and assigns it to the SvcExps field.

func (*EventNotification) SetTimeStampGen ¶

func (o *EventNotification) SetTimeStampGen(v time.Time)

SetTimeStampGen gets a reference to the given time.Time and assigns it to the TimeStampGen field.

func (*EventNotification) SetUeComms ¶

func (o *EventNotification) SetUeComms(v []UeCommunication)

SetUeComms gets a reference to the given []UeCommunication and assigns it to the UeComms field.

func (*EventNotification) SetUeMobs ¶

func (o *EventNotification) SetUeMobs(v []UeMobility)

SetUeMobs gets a reference to the given []UeMobility and assigns it to the UeMobs field.

func (*EventNotification) SetUserDataCongInfos ¶

func (o *EventNotification) SetUserDataCongInfos(v []UserDataCongestionInfo)

SetUserDataCongInfos gets a reference to the given []UserDataCongestionInfo and assigns it to the UserDataCongInfos field.

func (*EventNotification) SetWlanInfos ¶

func (o *EventNotification) SetWlanInfos(v []WlanPerformanceInfo)

SetWlanInfos gets a reference to the given []WlanPerformanceInfo and assigns it to the WlanInfos field.

func (EventNotification) ToMap ¶

func (o EventNotification) ToMap() (map[string]interface{}, error)

type EventNotification1 ¶

type EventNotification1 struct {
	Event SmfEvent `json:"event"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp time.Time `json:"timeStamp"`
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,omitempty"`
	// 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.
	Gpsi     *string `json:"gpsi,omitempty"`
	UeIpAddr *IpAddr `json:"ueIpAddr,omitempty"`
	// Transaction Information.
	TransacInfos []TransactionInfo `json:"transacInfos,omitempty"`
	// DNAI (Data network access identifier), see clause 5.6.7 of 3GPP TS 23.501.
	SourceDnai *string `json:"sourceDnai,omitempty"`
	// DNAI (Data network access identifier), see clause 5.6.7 of 3GPP TS 23.501.
	TargetDnai  *string         `json:"targetDnai,omitempty"`
	DnaiChgType *DnaiChangeType `json:"dnaiChgType,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	SourceUeIpv4Addr   *string     `json:"sourceUeIpv4Addr,omitempty"`
	SourceUeIpv6Prefix *Ipv6Prefix `json:"sourceUeIpv6Prefix,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	TargetUeIpv4Addr   *string                 `json:"targetUeIpv4Addr,omitempty"`
	TargetUeIpv6Prefix *Ipv6Prefix             `json:"targetUeIpv6Prefix,omitempty"`
	SourceTraRouting   NullableRouteToLocation `json:"sourceTraRouting,omitempty"`
	TargetTraRouting   NullableRouteToLocation `json:"targetTraRouting,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	UeMac *string `json:"ueMac,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	AdIpv4Addr   *string     `json:"adIpv4Addr,omitempty"`
	AdIpv6Prefix *Ipv6Prefix `json:"adIpv6Prefix,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	ReIpv4Addr   *string     `json:"reIpv4Addr,omitempty"`
	ReIpv6Prefix *Ipv6Prefix `json:"reIpv6Prefix,omitempty"`
	PlmnId       *PlmnId     `json:"plmnId,omitempty"`
	AccType      *AccessType `json:"accType,omitempty"`
	// Unsigned integer identifying a PDU session, within the range 0 to 255, as specified in  clause 11.2.3.1b, bits 1 to 8, of 3GPP TS 24.007. If the PDU Session ID is allocated by the  Core Network for UEs not supporting N1 mode, reserved range 64 to 95 is used. PDU Session ID  within the reserved range is only visible in the Core Network.
	PduSeId          *int32                `json:"pduSeId,omitempty"`
	RatType          *RatType              `json:"ratType,omitempty"`
	DddStatus        *DlDataDeliveryStatus `json:"dddStatus,omitempty"`
	DddTraDescriptor *DddTrafficDescriptor `json:"dddTraDescriptor,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	MaxWaitTime *time.Time            `json:"maxWaitTime,omitempty"`
	CommFailure *CommunicationFailure `json:"commFailure,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr     *string         `json:"ipv4Addr,omitempty"`
	Ipv6Prefixes []Ipv6Prefix    `json:"ipv6Prefixes,omitempty"`
	Ipv6Addrs    []Ipv6Addr      `json:"ipv6Addrs,omitempty"`
	PduSessType  *PduSessionType `json:"pduSessType,omitempty"`
	// Unsigned integer identifying a QoS flow, within the range 0 to 63.
	Qfi *int32 `json:"qfi,omitempty"`
	// String providing an application identifier.
	AppId *string `json:"appId,omitempty"`
	// Descriptor(s) for non-IP traffic. It allows the encoding of multiple UL and/or DL flows. Each entry of the array describes a single Ethernet flow.
	EthFlowDescs []EthFlowDescription `json:"ethFlowDescs,omitempty"`
	// Contains the UL and/or DL Ethernet flows. Each entry of the array describes a single Ethernet flow.
	EthfDescs []EthFlowDescription `json:"ethfDescs,omitempty"`
	// Descriptor(s) for IP traffic. It allows the encoding of multiple UL and/or DL flows. Each entry of the array describes a single IP flow.
	FlowDescs []string `json:"flowDescs,omitempty"`
	// Contains the UL and/or DL IP flows. Each entry of the array describes a single IP flow.
	FDescs []string `json:"fDescs,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"`
	Snssai       *Snssai       `json:"snssai,omitempty"`
	UlDelays     []int32       `json:"ulDelays,omitempty"`
	DlDelays     []int32       `json:"dlDelays,omitempty"`
	RtDelays     []int32       `json:"rtDelays,omitempty"`
	TimeWindow   *TimeWindow   `json:"timeWindow,omitempty"`
	SmNasFromUe  *SmNasFromUe  `json:"smNasFromUe,omitempty"`
	SmNasFromSmf *SmNasFromSmf `json:"smNasFromSmf,omitempty"`
	// Indicates whether the redundant transmission is setup or terminated. Set to \"true\" if  the redundant transmission is setup, otherwise set to \"false\" if the redundant  transmission is terminated. Default value is set to \"false\".
	UpRedTrans *bool   `json:"upRedTrans,omitempty"`
	SsId       *string `json:"ssId,omitempty"`
	BssId      *string `json:"bssId,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	StartWlan *time.Time `json:"startWlan,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	EndWlan      *time.Time              `json:"endWlan,omitempty"`
	PduSessInfos []PduSessionInformation `json:"pduSessInfos,omitempty"`
	UpfInfo      *UpfInformation         `json:"upfInfo,omitempty"`
}

EventNotification1 Represents a notification related to a single event that occurred.

func NewEventNotification1 ¶

func NewEventNotification1(event SmfEvent, timeStamp time.Time) *EventNotification1

NewEventNotification1 instantiates a new EventNotification1 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 NewEventNotification1WithDefaults ¶

func NewEventNotification1WithDefaults() *EventNotification1

NewEventNotification1WithDefaults instantiates a new EventNotification1 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 (*EventNotification1) GetAccType ¶

func (o *EventNotification1) GetAccType() AccessType

GetAccType returns the AccType field value if set, zero value otherwise.

func (*EventNotification1) GetAccTypeOk ¶

func (o *EventNotification1) GetAccTypeOk() (*AccessType, bool)

GetAccTypeOk returns a tuple with the AccType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetAdIpv4Addr ¶

func (o *EventNotification1) GetAdIpv4Addr() string

GetAdIpv4Addr returns the AdIpv4Addr field value if set, zero value otherwise.

func (*EventNotification1) GetAdIpv4AddrOk ¶

func (o *EventNotification1) GetAdIpv4AddrOk() (*string, bool)

GetAdIpv4AddrOk returns a tuple with the AdIpv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetAdIpv6Prefix ¶

func (o *EventNotification1) GetAdIpv6Prefix() Ipv6Prefix

GetAdIpv6Prefix returns the AdIpv6Prefix field value if set, zero value otherwise.

func (*EventNotification1) GetAdIpv6PrefixOk ¶

func (o *EventNotification1) GetAdIpv6PrefixOk() (*Ipv6Prefix, bool)

GetAdIpv6PrefixOk returns a tuple with the AdIpv6Prefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetAppId ¶

func (o *EventNotification1) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*EventNotification1) GetAppIdOk ¶

func (o *EventNotification1) GetAppIdOk() (*string, bool)

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 (*EventNotification1) GetBssId ¶

func (o *EventNotification1) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*EventNotification1) GetBssIdOk ¶

func (o *EventNotification1) GetBssIdOk() (*string, bool)

GetBssIdOk returns a tuple with the BssId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetCommFailure ¶

func (o *EventNotification1) GetCommFailure() CommunicationFailure

GetCommFailure returns the CommFailure field value if set, zero value otherwise.

func (*EventNotification1) GetCommFailureOk ¶

func (o *EventNotification1) GetCommFailureOk() (*CommunicationFailure, bool)

GetCommFailureOk returns a tuple with the CommFailure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetDddStatus ¶

func (o *EventNotification1) GetDddStatus() DlDataDeliveryStatus

GetDddStatus returns the DddStatus field value if set, zero value otherwise.

func (*EventNotification1) GetDddStatusOk ¶

func (o *EventNotification1) GetDddStatusOk() (*DlDataDeliveryStatus, bool)

GetDddStatusOk returns a tuple with the DddStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetDddTraDescriptor ¶

func (o *EventNotification1) GetDddTraDescriptor() DddTrafficDescriptor

GetDddTraDescriptor returns the DddTraDescriptor field value if set, zero value otherwise.

func (*EventNotification1) GetDddTraDescriptorOk ¶

func (o *EventNotification1) GetDddTraDescriptorOk() (*DddTrafficDescriptor, bool)

GetDddTraDescriptorOk returns a tuple with the DddTraDescriptor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetDlDelays ¶

func (o *EventNotification1) GetDlDelays() []int32

GetDlDelays returns the DlDelays field value if set, zero value otherwise.

func (*EventNotification1) GetDlDelaysOk ¶

func (o *EventNotification1) GetDlDelaysOk() ([]int32, bool)

GetDlDelaysOk returns a tuple with the DlDelays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetDnaiChgType ¶

func (o *EventNotification1) GetDnaiChgType() DnaiChangeType

GetDnaiChgType returns the DnaiChgType field value if set, zero value otherwise.

func (*EventNotification1) GetDnaiChgTypeOk ¶

func (o *EventNotification1) GetDnaiChgTypeOk() (*DnaiChangeType, bool)

GetDnaiChgTypeOk returns a tuple with the DnaiChgType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetDnn ¶

func (o *EventNotification1) GetDnn() string

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*EventNotification1) GetDnnOk ¶

func (o *EventNotification1) GetDnnOk() (*string, bool)

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 (*EventNotification1) GetEndWlan ¶

func (o *EventNotification1) GetEndWlan() time.Time

GetEndWlan returns the EndWlan field value if set, zero value otherwise.

func (*EventNotification1) GetEndWlanOk ¶

func (o *EventNotification1) GetEndWlanOk() (*time.Time, bool)

GetEndWlanOk returns a tuple with the EndWlan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetEthFlowDescs ¶

func (o *EventNotification1) GetEthFlowDescs() []EthFlowDescription

GetEthFlowDescs returns the EthFlowDescs field value if set, zero value otherwise.

func (*EventNotification1) GetEthFlowDescsOk ¶

func (o *EventNotification1) GetEthFlowDescsOk() ([]EthFlowDescription, bool)

GetEthFlowDescsOk returns a tuple with the EthFlowDescs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetEthfDescs ¶

func (o *EventNotification1) GetEthfDescs() []EthFlowDescription

GetEthfDescs returns the EthfDescs field value if set, zero value otherwise.

func (*EventNotification1) GetEthfDescsOk ¶

func (o *EventNotification1) GetEthfDescsOk() ([]EthFlowDescription, bool)

GetEthfDescsOk returns a tuple with the EthfDescs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetEvent ¶

func (o *EventNotification1) GetEvent() SmfEvent

GetEvent returns the Event field value

func (*EventNotification1) GetEventOk ¶

func (o *EventNotification1) GetEventOk() (*SmfEvent, bool)

GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.

func (*EventNotification1) GetFDescs ¶

func (o *EventNotification1) GetFDescs() []string

GetFDescs returns the FDescs field value if set, zero value otherwise.

func (*EventNotification1) GetFDescsOk ¶

func (o *EventNotification1) GetFDescsOk() ([]string, bool)

GetFDescsOk returns a tuple with the FDescs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetFlowDescs ¶

func (o *EventNotification1) GetFlowDescs() []string

GetFlowDescs returns the FlowDescs field value if set, zero value otherwise.

func (*EventNotification1) GetFlowDescsOk ¶

func (o *EventNotification1) GetFlowDescsOk() ([]string, bool)

GetFlowDescsOk returns a tuple with the FlowDescs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetGpsi ¶

func (o *EventNotification1) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*EventNotification1) GetGpsiOk ¶

func (o *EventNotification1) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetIpv4Addr ¶

func (o *EventNotification1) GetIpv4Addr() string

GetIpv4Addr returns the Ipv4Addr field value if set, zero value otherwise.

func (*EventNotification1) GetIpv4AddrOk ¶

func (o *EventNotification1) GetIpv4AddrOk() (*string, bool)

GetIpv4AddrOk returns a tuple with the Ipv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetIpv6Addrs ¶

func (o *EventNotification1) GetIpv6Addrs() []Ipv6Addr

GetIpv6Addrs returns the Ipv6Addrs field value if set, zero value otherwise.

func (*EventNotification1) GetIpv6AddrsOk ¶

func (o *EventNotification1) GetIpv6AddrsOk() ([]Ipv6Addr, bool)

GetIpv6AddrsOk returns a tuple with the Ipv6Addrs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetIpv6Prefixes ¶

func (o *EventNotification1) GetIpv6Prefixes() []Ipv6Prefix

GetIpv6Prefixes returns the Ipv6Prefixes field value if set, zero value otherwise.

func (*EventNotification1) GetIpv6PrefixesOk ¶

func (o *EventNotification1) GetIpv6PrefixesOk() ([]Ipv6Prefix, bool)

GetIpv6PrefixesOk returns a tuple with the Ipv6Prefixes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetMaxWaitTime ¶

func (o *EventNotification1) GetMaxWaitTime() time.Time

GetMaxWaitTime returns the MaxWaitTime field value if set, zero value otherwise.

func (*EventNotification1) GetMaxWaitTimeOk ¶

func (o *EventNotification1) GetMaxWaitTimeOk() (*time.Time, bool)

GetMaxWaitTimeOk returns a tuple with the MaxWaitTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetPduSeId ¶

func (o *EventNotification1) GetPduSeId() int32

GetPduSeId returns the PduSeId field value if set, zero value otherwise.

func (*EventNotification1) GetPduSeIdOk ¶

func (o *EventNotification1) GetPduSeIdOk() (*int32, bool)

GetPduSeIdOk returns a tuple with the PduSeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetPduSessInfos ¶

func (o *EventNotification1) GetPduSessInfos() []PduSessionInformation

GetPduSessInfos returns the PduSessInfos field value if set, zero value otherwise.

func (*EventNotification1) GetPduSessInfosOk ¶

func (o *EventNotification1) GetPduSessInfosOk() ([]PduSessionInformation, bool)

GetPduSessInfosOk returns a tuple with the PduSessInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetPduSessType ¶

func (o *EventNotification1) GetPduSessType() PduSessionType

GetPduSessType returns the PduSessType field value if set, zero value otherwise.

func (*EventNotification1) GetPduSessTypeOk ¶

func (o *EventNotification1) GetPduSessTypeOk() (*PduSessionType, bool)

GetPduSessTypeOk returns a tuple with the PduSessType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetPlmnId ¶

func (o *EventNotification1) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value if set, zero value otherwise.

func (*EventNotification1) GetPlmnIdOk ¶

func (o *EventNotification1) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetQfi ¶

func (o *EventNotification1) GetQfi() int32

GetQfi returns the Qfi field value if set, zero value otherwise.

func (*EventNotification1) GetQfiOk ¶

func (o *EventNotification1) GetQfiOk() (*int32, bool)

GetQfiOk returns a tuple with the Qfi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetRatType ¶

func (o *EventNotification1) GetRatType() RatType

GetRatType returns the RatType field value if set, zero value otherwise.

func (*EventNotification1) GetRatTypeOk ¶

func (o *EventNotification1) GetRatTypeOk() (*RatType, bool)

GetRatTypeOk returns a tuple with the RatType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetReIpv4Addr ¶

func (o *EventNotification1) GetReIpv4Addr() string

GetReIpv4Addr returns the ReIpv4Addr field value if set, zero value otherwise.

func (*EventNotification1) GetReIpv4AddrOk ¶

func (o *EventNotification1) GetReIpv4AddrOk() (*string, bool)

GetReIpv4AddrOk returns a tuple with the ReIpv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetReIpv6Prefix ¶

func (o *EventNotification1) GetReIpv6Prefix() Ipv6Prefix

GetReIpv6Prefix returns the ReIpv6Prefix field value if set, zero value otherwise.

func (*EventNotification1) GetReIpv6PrefixOk ¶

func (o *EventNotification1) GetReIpv6PrefixOk() (*Ipv6Prefix, bool)

GetReIpv6PrefixOk returns a tuple with the ReIpv6Prefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetRtDelays ¶

func (o *EventNotification1) GetRtDelays() []int32

GetRtDelays returns the RtDelays field value if set, zero value otherwise.

func (*EventNotification1) GetRtDelaysOk ¶

func (o *EventNotification1) GetRtDelaysOk() ([]int32, bool)

GetRtDelaysOk returns a tuple with the RtDelays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetSmNasFromSmf ¶

func (o *EventNotification1) GetSmNasFromSmf() SmNasFromSmf

GetSmNasFromSmf returns the SmNasFromSmf field value if set, zero value otherwise.

func (*EventNotification1) GetSmNasFromSmfOk ¶

func (o *EventNotification1) GetSmNasFromSmfOk() (*SmNasFromSmf, bool)

GetSmNasFromSmfOk returns a tuple with the SmNasFromSmf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetSmNasFromUe ¶

func (o *EventNotification1) GetSmNasFromUe() SmNasFromUe

GetSmNasFromUe returns the SmNasFromUe field value if set, zero value otherwise.

func (*EventNotification1) GetSmNasFromUeOk ¶

func (o *EventNotification1) GetSmNasFromUeOk() (*SmNasFromUe, bool)

GetSmNasFromUeOk returns a tuple with the SmNasFromUe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetSnssai ¶

func (o *EventNotification1) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*EventNotification1) GetSnssaiOk ¶

func (o *EventNotification1) GetSnssaiOk() (*Snssai, bool)

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 (*EventNotification1) GetSourceDnai ¶

func (o *EventNotification1) GetSourceDnai() string

GetSourceDnai returns the SourceDnai field value if set, zero value otherwise.

func (*EventNotification1) GetSourceDnaiOk ¶

func (o *EventNotification1) GetSourceDnaiOk() (*string, bool)

GetSourceDnaiOk returns a tuple with the SourceDnai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetSourceTraRouting ¶

func (o *EventNotification1) GetSourceTraRouting() RouteToLocation

GetSourceTraRouting returns the SourceTraRouting field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EventNotification1) GetSourceTraRoutingOk ¶

func (o *EventNotification1) GetSourceTraRoutingOk() (*RouteToLocation, bool)

GetSourceTraRoutingOk returns a tuple with the SourceTraRouting field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EventNotification1) GetSourceUeIpv4Addr ¶

func (o *EventNotification1) GetSourceUeIpv4Addr() string

GetSourceUeIpv4Addr returns the SourceUeIpv4Addr field value if set, zero value otherwise.

func (*EventNotification1) GetSourceUeIpv4AddrOk ¶

func (o *EventNotification1) GetSourceUeIpv4AddrOk() (*string, bool)

GetSourceUeIpv4AddrOk returns a tuple with the SourceUeIpv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetSourceUeIpv6Prefix ¶

func (o *EventNotification1) GetSourceUeIpv6Prefix() Ipv6Prefix

GetSourceUeIpv6Prefix returns the SourceUeIpv6Prefix field value if set, zero value otherwise.

func (*EventNotification1) GetSourceUeIpv6PrefixOk ¶

func (o *EventNotification1) GetSourceUeIpv6PrefixOk() (*Ipv6Prefix, bool)

GetSourceUeIpv6PrefixOk returns a tuple with the SourceUeIpv6Prefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetSsId ¶

func (o *EventNotification1) GetSsId() string

GetSsId returns the SsId field value if set, zero value otherwise.

func (*EventNotification1) GetSsIdOk ¶

func (o *EventNotification1) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetStartWlan ¶

func (o *EventNotification1) GetStartWlan() time.Time

GetStartWlan returns the StartWlan field value if set, zero value otherwise.

func (*EventNotification1) GetStartWlanOk ¶

func (o *EventNotification1) GetStartWlanOk() (*time.Time, bool)

GetStartWlanOk returns a tuple with the StartWlan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetSupi ¶

func (o *EventNotification1) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*EventNotification1) GetSupiOk ¶

func (o *EventNotification1) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetTargetDnai ¶

func (o *EventNotification1) GetTargetDnai() string

GetTargetDnai returns the TargetDnai field value if set, zero value otherwise.

func (*EventNotification1) GetTargetDnaiOk ¶

func (o *EventNotification1) GetTargetDnaiOk() (*string, bool)

GetTargetDnaiOk returns a tuple with the TargetDnai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetTargetTraRouting ¶

func (o *EventNotification1) GetTargetTraRouting() RouteToLocation

GetTargetTraRouting returns the TargetTraRouting field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EventNotification1) GetTargetTraRoutingOk ¶

func (o *EventNotification1) GetTargetTraRoutingOk() (*RouteToLocation, bool)

GetTargetTraRoutingOk returns a tuple with the TargetTraRouting field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EventNotification1) GetTargetUeIpv4Addr ¶

func (o *EventNotification1) GetTargetUeIpv4Addr() string

GetTargetUeIpv4Addr returns the TargetUeIpv4Addr field value if set, zero value otherwise.

func (*EventNotification1) GetTargetUeIpv4AddrOk ¶

func (o *EventNotification1) GetTargetUeIpv4AddrOk() (*string, bool)

GetTargetUeIpv4AddrOk returns a tuple with the TargetUeIpv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetTargetUeIpv6Prefix ¶

func (o *EventNotification1) GetTargetUeIpv6Prefix() Ipv6Prefix

GetTargetUeIpv6Prefix returns the TargetUeIpv6Prefix field value if set, zero value otherwise.

func (*EventNotification1) GetTargetUeIpv6PrefixOk ¶

func (o *EventNotification1) GetTargetUeIpv6PrefixOk() (*Ipv6Prefix, bool)

GetTargetUeIpv6PrefixOk returns a tuple with the TargetUeIpv6Prefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetTimeStamp ¶

func (o *EventNotification1) GetTimeStamp() time.Time

GetTimeStamp returns the TimeStamp field value

func (*EventNotification1) GetTimeStampOk ¶

func (o *EventNotification1) GetTimeStampOk() (*time.Time, bool)

GetTimeStampOk returns a tuple with the TimeStamp field value and a boolean to check if the value has been set.

func (*EventNotification1) GetTimeWindow ¶

func (o *EventNotification1) GetTimeWindow() TimeWindow

GetTimeWindow returns the TimeWindow field value if set, zero value otherwise.

func (*EventNotification1) GetTimeWindowOk ¶

func (o *EventNotification1) GetTimeWindowOk() (*TimeWindow, bool)

GetTimeWindowOk returns a tuple with the TimeWindow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetTransacInfos ¶

func (o *EventNotification1) GetTransacInfos() []TransactionInfo

GetTransacInfos returns the TransacInfos field value if set, zero value otherwise.

func (*EventNotification1) GetTransacInfosOk ¶

func (o *EventNotification1) GetTransacInfosOk() ([]TransactionInfo, bool)

GetTransacInfosOk returns a tuple with the TransacInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetUeIpAddr ¶

func (o *EventNotification1) GetUeIpAddr() IpAddr

GetUeIpAddr returns the UeIpAddr field value if set, zero value otherwise.

func (*EventNotification1) GetUeIpAddrOk ¶

func (o *EventNotification1) GetUeIpAddrOk() (*IpAddr, bool)

GetUeIpAddrOk returns a tuple with the UeIpAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetUeMac ¶

func (o *EventNotification1) GetUeMac() string

GetUeMac returns the UeMac field value if set, zero value otherwise.

func (*EventNotification1) GetUeMacOk ¶

func (o *EventNotification1) GetUeMacOk() (*string, bool)

GetUeMacOk returns a tuple with the UeMac field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetUlDelays ¶

func (o *EventNotification1) GetUlDelays() []int32

GetUlDelays returns the UlDelays field value if set, zero value otherwise.

func (*EventNotification1) GetUlDelaysOk ¶

func (o *EventNotification1) GetUlDelaysOk() ([]int32, bool)

GetUlDelaysOk returns a tuple with the UlDelays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetUpRedTrans ¶

func (o *EventNotification1) GetUpRedTrans() bool

GetUpRedTrans returns the UpRedTrans field value if set, zero value otherwise.

func (*EventNotification1) GetUpRedTransOk ¶

func (o *EventNotification1) GetUpRedTransOk() (*bool, bool)

GetUpRedTransOk returns a tuple with the UpRedTrans field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventNotification1) GetUpfInfo ¶

func (o *EventNotification1) GetUpfInfo() UpfInformation

GetUpfInfo returns the UpfInfo field value if set, zero value otherwise.

func (*EventNotification1) GetUpfInfoOk ¶

func (o *EventNotification1) GetUpfInfoOk() (*UpfInformation, bool)

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 (*EventNotification1) HasAccType ¶

func (o *EventNotification1) HasAccType() bool

HasAccType returns a boolean if a field has been set.

func (*EventNotification1) HasAdIpv4Addr ¶

func (o *EventNotification1) HasAdIpv4Addr() bool

HasAdIpv4Addr returns a boolean if a field has been set.

func (*EventNotification1) HasAdIpv6Prefix ¶

func (o *EventNotification1) HasAdIpv6Prefix() bool

HasAdIpv6Prefix returns a boolean if a field has been set.

func (*EventNotification1) HasAppId ¶

func (o *EventNotification1) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*EventNotification1) HasBssId ¶

func (o *EventNotification1) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*EventNotification1) HasCommFailure ¶

func (o *EventNotification1) HasCommFailure() bool

HasCommFailure returns a boolean if a field has been set.

func (*EventNotification1) HasDddStatus ¶

func (o *EventNotification1) HasDddStatus() bool

HasDddStatus returns a boolean if a field has been set.

func (*EventNotification1) HasDddTraDescriptor ¶

func (o *EventNotification1) HasDddTraDescriptor() bool

HasDddTraDescriptor returns a boolean if a field has been set.

func (*EventNotification1) HasDlDelays ¶

func (o *EventNotification1) HasDlDelays() bool

HasDlDelays returns a boolean if a field has been set.

func (*EventNotification1) HasDnaiChgType ¶

func (o *EventNotification1) HasDnaiChgType() bool

HasDnaiChgType returns a boolean if a field has been set.

func (*EventNotification1) HasDnn ¶

func (o *EventNotification1) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*EventNotification1) HasEndWlan ¶

func (o *EventNotification1) HasEndWlan() bool

HasEndWlan returns a boolean if a field has been set.

func (*EventNotification1) HasEthFlowDescs ¶

func (o *EventNotification1) HasEthFlowDescs() bool

HasEthFlowDescs returns a boolean if a field has been set.

func (*EventNotification1) HasEthfDescs ¶

func (o *EventNotification1) HasEthfDescs() bool

HasEthfDescs returns a boolean if a field has been set.

func (*EventNotification1) HasFDescs ¶

func (o *EventNotification1) HasFDescs() bool

HasFDescs returns a boolean if a field has been set.

func (*EventNotification1) HasFlowDescs ¶

func (o *EventNotification1) HasFlowDescs() bool

HasFlowDescs returns a boolean if a field has been set.

func (*EventNotification1) HasGpsi ¶

func (o *EventNotification1) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*EventNotification1) HasIpv4Addr ¶

func (o *EventNotification1) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*EventNotification1) HasIpv6Addrs ¶

func (o *EventNotification1) HasIpv6Addrs() bool

HasIpv6Addrs returns a boolean if a field has been set.

func (*EventNotification1) HasIpv6Prefixes ¶

func (o *EventNotification1) HasIpv6Prefixes() bool

HasIpv6Prefixes returns a boolean if a field has been set.

func (*EventNotification1) HasMaxWaitTime ¶

func (o *EventNotification1) HasMaxWaitTime() bool

HasMaxWaitTime returns a boolean if a field has been set.

func (*EventNotification1) HasPduSeId ¶

func (o *EventNotification1) HasPduSeId() bool

HasPduSeId returns a boolean if a field has been set.

func (*EventNotification1) HasPduSessInfos ¶

func (o *EventNotification1) HasPduSessInfos() bool

HasPduSessInfos returns a boolean if a field has been set.

func (*EventNotification1) HasPduSessType ¶

func (o *EventNotification1) HasPduSessType() bool

HasPduSessType returns a boolean if a field has been set.

func (*EventNotification1) HasPlmnId ¶

func (o *EventNotification1) HasPlmnId() bool

HasPlmnId returns a boolean if a field has been set.

func (*EventNotification1) HasQfi ¶

func (o *EventNotification1) HasQfi() bool

HasQfi returns a boolean if a field has been set.

func (*EventNotification1) HasRatType ¶

func (o *EventNotification1) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (*EventNotification1) HasReIpv4Addr ¶

func (o *EventNotification1) HasReIpv4Addr() bool

HasReIpv4Addr returns a boolean if a field has been set.

func (*EventNotification1) HasReIpv6Prefix ¶

func (o *EventNotification1) HasReIpv6Prefix() bool

HasReIpv6Prefix returns a boolean if a field has been set.

func (*EventNotification1) HasRtDelays ¶

func (o *EventNotification1) HasRtDelays() bool

HasRtDelays returns a boolean if a field has been set.

func (*EventNotification1) HasSmNasFromSmf ¶

func (o *EventNotification1) HasSmNasFromSmf() bool

HasSmNasFromSmf returns a boolean if a field has been set.

func (*EventNotification1) HasSmNasFromUe ¶

func (o *EventNotification1) HasSmNasFromUe() bool

HasSmNasFromUe returns a boolean if a field has been set.

func (*EventNotification1) HasSnssai ¶

func (o *EventNotification1) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*EventNotification1) HasSourceDnai ¶

func (o *EventNotification1) HasSourceDnai() bool

HasSourceDnai returns a boolean if a field has been set.

func (*EventNotification1) HasSourceTraRouting ¶

func (o *EventNotification1) HasSourceTraRouting() bool

HasSourceTraRouting returns a boolean if a field has been set.

func (*EventNotification1) HasSourceUeIpv4Addr ¶

func (o *EventNotification1) HasSourceUeIpv4Addr() bool

HasSourceUeIpv4Addr returns a boolean if a field has been set.

func (*EventNotification1) HasSourceUeIpv6Prefix ¶

func (o *EventNotification1) HasSourceUeIpv6Prefix() bool

HasSourceUeIpv6Prefix returns a boolean if a field has been set.

func (*EventNotification1) HasSsId ¶

func (o *EventNotification1) HasSsId() bool

HasSsId returns a boolean if a field has been set.

func (*EventNotification1) HasStartWlan ¶

func (o *EventNotification1) HasStartWlan() bool

HasStartWlan returns a boolean if a field has been set.

func (*EventNotification1) HasSupi ¶

func (o *EventNotification1) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (*EventNotification1) HasTargetDnai ¶

func (o *EventNotification1) HasTargetDnai() bool

HasTargetDnai returns a boolean if a field has been set.

func (*EventNotification1) HasTargetTraRouting ¶

func (o *EventNotification1) HasTargetTraRouting() bool

HasTargetTraRouting returns a boolean if a field has been set.

func (*EventNotification1) HasTargetUeIpv4Addr ¶

func (o *EventNotification1) HasTargetUeIpv4Addr() bool

HasTargetUeIpv4Addr returns a boolean if a field has been set.

func (*EventNotification1) HasTargetUeIpv6Prefix ¶

func (o *EventNotification1) HasTargetUeIpv6Prefix() bool

HasTargetUeIpv6Prefix returns a boolean if a field has been set.

func (*EventNotification1) HasTimeWindow ¶

func (o *EventNotification1) HasTimeWindow() bool

HasTimeWindow returns a boolean if a field has been set.

func (*EventNotification1) HasTransacInfos ¶

func (o *EventNotification1) HasTransacInfos() bool

HasTransacInfos returns a boolean if a field has been set.

func (*EventNotification1) HasUeIpAddr ¶

func (o *EventNotification1) HasUeIpAddr() bool

HasUeIpAddr returns a boolean if a field has been set.

func (*EventNotification1) HasUeMac ¶

func (o *EventNotification1) HasUeMac() bool

HasUeMac returns a boolean if a field has been set.

func (*EventNotification1) HasUlDelays ¶

func (o *EventNotification1) HasUlDelays() bool

HasUlDelays returns a boolean if a field has been set.

func (*EventNotification1) HasUpRedTrans ¶

func (o *EventNotification1) HasUpRedTrans() bool

HasUpRedTrans returns a boolean if a field has been set.

func (*EventNotification1) HasUpfInfo ¶

func (o *EventNotification1) HasUpfInfo() bool

HasUpfInfo returns a boolean if a field has been set.

func (EventNotification1) MarshalJSON ¶

func (o EventNotification1) MarshalJSON() ([]byte, error)

func (*EventNotification1) SetAccType ¶

func (o *EventNotification1) SetAccType(v AccessType)

SetAccType gets a reference to the given AccessType and assigns it to the AccType field.

func (*EventNotification1) SetAdIpv4Addr ¶

func (o *EventNotification1) SetAdIpv4Addr(v string)

SetAdIpv4Addr gets a reference to the given string and assigns it to the AdIpv4Addr field.

func (*EventNotification1) SetAdIpv6Prefix ¶

func (o *EventNotification1) SetAdIpv6Prefix(v Ipv6Prefix)

SetAdIpv6Prefix gets a reference to the given Ipv6Prefix and assigns it to the AdIpv6Prefix field.

func (*EventNotification1) SetAppId ¶

func (o *EventNotification1) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*EventNotification1) SetBssId ¶

func (o *EventNotification1) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*EventNotification1) SetCommFailure ¶

func (o *EventNotification1) SetCommFailure(v CommunicationFailure)

SetCommFailure gets a reference to the given CommunicationFailure and assigns it to the CommFailure field.

func (*EventNotification1) SetDddStatus ¶

func (o *EventNotification1) SetDddStatus(v DlDataDeliveryStatus)

SetDddStatus gets a reference to the given DlDataDeliveryStatus and assigns it to the DddStatus field.

func (*EventNotification1) SetDddTraDescriptor ¶

func (o *EventNotification1) SetDddTraDescriptor(v DddTrafficDescriptor)

SetDddTraDescriptor gets a reference to the given DddTrafficDescriptor and assigns it to the DddTraDescriptor field.

func (*EventNotification1) SetDlDelays ¶

func (o *EventNotification1) SetDlDelays(v []int32)

SetDlDelays gets a reference to the given []int32 and assigns it to the DlDelays field.

func (*EventNotification1) SetDnaiChgType ¶

func (o *EventNotification1) SetDnaiChgType(v DnaiChangeType)

SetDnaiChgType gets a reference to the given DnaiChangeType and assigns it to the DnaiChgType field.

func (*EventNotification1) SetDnn ¶

func (o *EventNotification1) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*EventNotification1) SetEndWlan ¶

func (o *EventNotification1) SetEndWlan(v time.Time)

SetEndWlan gets a reference to the given time.Time and assigns it to the EndWlan field.

func (*EventNotification1) SetEthFlowDescs ¶

func (o *EventNotification1) SetEthFlowDescs(v []EthFlowDescription)

SetEthFlowDescs gets a reference to the given []EthFlowDescription and assigns it to the EthFlowDescs field.

func (*EventNotification1) SetEthfDescs ¶

func (o *EventNotification1) SetEthfDescs(v []EthFlowDescription)

SetEthfDescs gets a reference to the given []EthFlowDescription and assigns it to the EthfDescs field.

func (*EventNotification1) SetEvent ¶

func (o *EventNotification1) SetEvent(v SmfEvent)

SetEvent sets field value

func (*EventNotification1) SetFDescs ¶

func (o *EventNotification1) SetFDescs(v []string)

SetFDescs gets a reference to the given []string and assigns it to the FDescs field.

func (*EventNotification1) SetFlowDescs ¶

func (o *EventNotification1) SetFlowDescs(v []string)

SetFlowDescs gets a reference to the given []string and assigns it to the FlowDescs field.

func (*EventNotification1) SetGpsi ¶

func (o *EventNotification1) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*EventNotification1) SetIpv4Addr ¶

func (o *EventNotification1) SetIpv4Addr(v string)

SetIpv4Addr gets a reference to the given string and assigns it to the Ipv4Addr field.

func (*EventNotification1) SetIpv6Addrs ¶

func (o *EventNotification1) SetIpv6Addrs(v []Ipv6Addr)

SetIpv6Addrs gets a reference to the given []Ipv6Addr and assigns it to the Ipv6Addrs field.

func (*EventNotification1) SetIpv6Prefixes ¶

func (o *EventNotification1) SetIpv6Prefixes(v []Ipv6Prefix)

SetIpv6Prefixes gets a reference to the given []Ipv6Prefix and assigns it to the Ipv6Prefixes field.

func (*EventNotification1) SetMaxWaitTime ¶

func (o *EventNotification1) SetMaxWaitTime(v time.Time)

SetMaxWaitTime gets a reference to the given time.Time and assigns it to the MaxWaitTime field.

func (*EventNotification1) SetPduSeId ¶

func (o *EventNotification1) SetPduSeId(v int32)

SetPduSeId gets a reference to the given int32 and assigns it to the PduSeId field.

func (*EventNotification1) SetPduSessInfos ¶

func (o *EventNotification1) SetPduSessInfos(v []PduSessionInformation)

SetPduSessInfos gets a reference to the given []PduSessionInformation and assigns it to the PduSessInfos field.

func (*EventNotification1) SetPduSessType ¶

func (o *EventNotification1) SetPduSessType(v PduSessionType)

SetPduSessType gets a reference to the given PduSessionType and assigns it to the PduSessType field.

func (*EventNotification1) SetPlmnId ¶

func (o *EventNotification1) SetPlmnId(v PlmnId)

SetPlmnId gets a reference to the given PlmnId and assigns it to the PlmnId field.

func (*EventNotification1) SetQfi ¶

func (o *EventNotification1) SetQfi(v int32)

SetQfi gets a reference to the given int32 and assigns it to the Qfi field.

func (*EventNotification1) SetRatType ¶

func (o *EventNotification1) SetRatType(v RatType)

SetRatType gets a reference to the given RatType and assigns it to the RatType field.

func (*EventNotification1) SetReIpv4Addr ¶

func (o *EventNotification1) SetReIpv4Addr(v string)

SetReIpv4Addr gets a reference to the given string and assigns it to the ReIpv4Addr field.

func (*EventNotification1) SetReIpv6Prefix ¶

func (o *EventNotification1) SetReIpv6Prefix(v Ipv6Prefix)

SetReIpv6Prefix gets a reference to the given Ipv6Prefix and assigns it to the ReIpv6Prefix field.

func (*EventNotification1) SetRtDelays ¶

func (o *EventNotification1) SetRtDelays(v []int32)

SetRtDelays gets a reference to the given []int32 and assigns it to the RtDelays field.

func (*EventNotification1) SetSmNasFromSmf ¶

func (o *EventNotification1) SetSmNasFromSmf(v SmNasFromSmf)

SetSmNasFromSmf gets a reference to the given SmNasFromSmf and assigns it to the SmNasFromSmf field.

func (*EventNotification1) SetSmNasFromUe ¶

func (o *EventNotification1) SetSmNasFromUe(v SmNasFromUe)

SetSmNasFromUe gets a reference to the given SmNasFromUe and assigns it to the SmNasFromUe field.

func (*EventNotification1) SetSnssai ¶

func (o *EventNotification1) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (*EventNotification1) SetSourceDnai ¶

func (o *EventNotification1) SetSourceDnai(v string)

SetSourceDnai gets a reference to the given string and assigns it to the SourceDnai field.

func (*EventNotification1) SetSourceTraRouting ¶

func (o *EventNotification1) SetSourceTraRouting(v RouteToLocation)

SetSourceTraRouting gets a reference to the given NullableRouteToLocation and assigns it to the SourceTraRouting field.

func (*EventNotification1) SetSourceTraRoutingNil ¶

func (o *EventNotification1) SetSourceTraRoutingNil()

SetSourceTraRoutingNil sets the value for SourceTraRouting to be an explicit nil

func (*EventNotification1) SetSourceUeIpv4Addr ¶

func (o *EventNotification1) SetSourceUeIpv4Addr(v string)

SetSourceUeIpv4Addr gets a reference to the given string and assigns it to the SourceUeIpv4Addr field.

func (*EventNotification1) SetSourceUeIpv6Prefix ¶

func (o *EventNotification1) SetSourceUeIpv6Prefix(v Ipv6Prefix)

SetSourceUeIpv6Prefix gets a reference to the given Ipv6Prefix and assigns it to the SourceUeIpv6Prefix field.

func (*EventNotification1) SetSsId ¶

func (o *EventNotification1) SetSsId(v string)

SetSsId gets a reference to the given string and assigns it to the SsId field.

func (*EventNotification1) SetStartWlan ¶

func (o *EventNotification1) SetStartWlan(v time.Time)

SetStartWlan gets a reference to the given time.Time and assigns it to the StartWlan field.

func (*EventNotification1) SetSupi ¶

func (o *EventNotification1) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (*EventNotification1) SetTargetDnai ¶

func (o *EventNotification1) SetTargetDnai(v string)

SetTargetDnai gets a reference to the given string and assigns it to the TargetDnai field.

func (*EventNotification1) SetTargetTraRouting ¶

func (o *EventNotification1) SetTargetTraRouting(v RouteToLocation)

SetTargetTraRouting gets a reference to the given NullableRouteToLocation and assigns it to the TargetTraRouting field.

func (*EventNotification1) SetTargetTraRoutingNil ¶

func (o *EventNotification1) SetTargetTraRoutingNil()

SetTargetTraRoutingNil sets the value for TargetTraRouting to be an explicit nil

func (*EventNotification1) SetTargetUeIpv4Addr ¶

func (o *EventNotification1) SetTargetUeIpv4Addr(v string)

SetTargetUeIpv4Addr gets a reference to the given string and assigns it to the TargetUeIpv4Addr field.

func (*EventNotification1) SetTargetUeIpv6Prefix ¶

func (o *EventNotification1) SetTargetUeIpv6Prefix(v Ipv6Prefix)

SetTargetUeIpv6Prefix gets a reference to the given Ipv6Prefix and assigns it to the TargetUeIpv6Prefix field.

func (*EventNotification1) SetTimeStamp ¶

func (o *EventNotification1) SetTimeStamp(v time.Time)

SetTimeStamp sets field value

func (*EventNotification1) SetTimeWindow ¶

func (o *EventNotification1) SetTimeWindow(v TimeWindow)

SetTimeWindow gets a reference to the given TimeWindow and assigns it to the TimeWindow field.

func (*EventNotification1) SetTransacInfos ¶

func (o *EventNotification1) SetTransacInfos(v []TransactionInfo)

SetTransacInfos gets a reference to the given []TransactionInfo and assigns it to the TransacInfos field.

func (*EventNotification1) SetUeIpAddr ¶

func (o *EventNotification1) SetUeIpAddr(v IpAddr)

SetUeIpAddr gets a reference to the given IpAddr and assigns it to the UeIpAddr field.

func (*EventNotification1) SetUeMac ¶

func (o *EventNotification1) SetUeMac(v string)

SetUeMac gets a reference to the given string and assigns it to the UeMac field.

func (*EventNotification1) SetUlDelays ¶

func (o *EventNotification1) SetUlDelays(v []int32)

SetUlDelays gets a reference to the given []int32 and assigns it to the UlDelays field.

func (*EventNotification1) SetUpRedTrans ¶

func (o *EventNotification1) SetUpRedTrans(v bool)

SetUpRedTrans gets a reference to the given bool and assigns it to the UpRedTrans field.

func (*EventNotification1) SetUpfInfo ¶

func (o *EventNotification1) SetUpfInfo(v UpfInformation)

SetUpfInfo gets a reference to the given UpfInformation and assigns it to the UpfInfo field.

func (EventNotification1) ToMap ¶

func (o EventNotification1) ToMap() (map[string]interface{}, error)

func (*EventNotification1) UnsetSourceTraRouting ¶

func (o *EventNotification1) UnsetSourceTraRouting()

UnsetSourceTraRouting ensures that no value is present for SourceTraRouting, not even an explicit nil

func (*EventNotification1) UnsetTargetTraRouting ¶

func (o *EventNotification1) UnsetTargetTraRouting()

UnsetTargetTraRouting ensures that no value is present for TargetTraRouting, not even an explicit nil

type EventReportMode ¶

type EventReportMode struct {
	String *string
}

EventReportMode struct for EventReportMode

func (*EventReportMode) MarshalJSON ¶

func (src *EventReportMode) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*EventReportMode) UnmarshalJSON ¶

func (dst *EventReportMode) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type EventReportingRequirement ¶

type EventReportingRequirement struct {
	Accuracy *Accuracy `json:"accuracy,omitempty"`
	// Each element indicates the preferred accuracy level per analytics subset. It may be present if the \"listOfAnaSubsets\" attribute is present in the subscription request when the subscription event is NF_LOAD, UE_COMM, DISPERSION, NETWORK_PERFORMANCE, WLAN_PERFORMANCE, DN_PERFORMANCE or SERVICE_EXPERIENCE.
	AccPerSubset []Accuracy `json:"accPerSubset,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	StartTs *time.Time `json:"startTs,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	EndTs *time.Time `json:"endTs,omitempty"`
	// Offset period in units of seconds to the reporting time, if the value is negative means  statistics in the past offset period, otherwise a positive value means prediction in the  future offset period. May be present if the \"repPeriod\" attribute is included within the  \"evtReq\" attribute.
	OffsetPeriod *int32 `json:"offsetPeriod,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	SampRatio *int32 `json:"sampRatio,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	MaxObjectNbr *int32 `json:"maxObjectNbr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	MaxSupiNbr *int32 `json:"maxSupiNbr,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeAnaNeeded *time.Time                   `json:"timeAnaNeeded,omitempty"`
	AnaMeta       []AnalyticsMetadata          `json:"anaMeta,omitempty"`
	AnaMetaInd    *AnalyticsMetadataIndication `json:"anaMetaInd,omitempty"`
}

EventReportingRequirement Represents the type of reporting that the subscription requires.

func NewEventReportingRequirement ¶

func NewEventReportingRequirement() *EventReportingRequirement

NewEventReportingRequirement instantiates a new EventReportingRequirement 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 NewEventReportingRequirementWithDefaults ¶

func NewEventReportingRequirementWithDefaults() *EventReportingRequirement

NewEventReportingRequirementWithDefaults instantiates a new EventReportingRequirement 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 (*EventReportingRequirement) GetAccPerSubset ¶

func (o *EventReportingRequirement) GetAccPerSubset() []Accuracy

GetAccPerSubset returns the AccPerSubset field value if set, zero value otherwise.

func (*EventReportingRequirement) GetAccPerSubsetOk ¶

func (o *EventReportingRequirement) GetAccPerSubsetOk() ([]Accuracy, bool)

GetAccPerSubsetOk returns a tuple with the AccPerSubset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventReportingRequirement) GetAccuracy ¶

func (o *EventReportingRequirement) GetAccuracy() Accuracy

GetAccuracy returns the Accuracy field value if set, zero value otherwise.

func (*EventReportingRequirement) GetAccuracyOk ¶

func (o *EventReportingRequirement) GetAccuracyOk() (*Accuracy, bool)

GetAccuracyOk returns a tuple with the Accuracy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventReportingRequirement) GetAnaMeta ¶

func (o *EventReportingRequirement) GetAnaMeta() []AnalyticsMetadata

GetAnaMeta returns the AnaMeta field value if set, zero value otherwise.

func (*EventReportingRequirement) GetAnaMetaInd ¶

GetAnaMetaInd returns the AnaMetaInd field value if set, zero value otherwise.

func (*EventReportingRequirement) GetAnaMetaIndOk ¶

GetAnaMetaIndOk returns a tuple with the AnaMetaInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventReportingRequirement) GetAnaMetaOk ¶

func (o *EventReportingRequirement) GetAnaMetaOk() ([]AnalyticsMetadata, bool)

GetAnaMetaOk returns a tuple with the AnaMeta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventReportingRequirement) GetEndTs ¶

func (o *EventReportingRequirement) GetEndTs() time.Time

GetEndTs returns the EndTs field value if set, zero value otherwise.

func (*EventReportingRequirement) GetEndTsOk ¶

func (o *EventReportingRequirement) GetEndTsOk() (*time.Time, bool)

GetEndTsOk returns a tuple with the EndTs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventReportingRequirement) GetMaxObjectNbr ¶

func (o *EventReportingRequirement) GetMaxObjectNbr() int32

GetMaxObjectNbr returns the MaxObjectNbr field value if set, zero value otherwise.

func (*EventReportingRequirement) GetMaxObjectNbrOk ¶

func (o *EventReportingRequirement) GetMaxObjectNbrOk() (*int32, bool)

GetMaxObjectNbrOk returns a tuple with the MaxObjectNbr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventReportingRequirement) GetMaxSupiNbr ¶

func (o *EventReportingRequirement) GetMaxSupiNbr() int32

GetMaxSupiNbr returns the MaxSupiNbr field value if set, zero value otherwise.

func (*EventReportingRequirement) GetMaxSupiNbrOk ¶

func (o *EventReportingRequirement) GetMaxSupiNbrOk() (*int32, bool)

GetMaxSupiNbrOk returns a tuple with the MaxSupiNbr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventReportingRequirement) GetOffsetPeriod ¶

func (o *EventReportingRequirement) GetOffsetPeriod() int32

GetOffsetPeriod returns the OffsetPeriod field value if set, zero value otherwise.

func (*EventReportingRequirement) GetOffsetPeriodOk ¶

func (o *EventReportingRequirement) GetOffsetPeriodOk() (*int32, bool)

GetOffsetPeriodOk returns a tuple with the OffsetPeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventReportingRequirement) GetSampRatio ¶

func (o *EventReportingRequirement) GetSampRatio() int32

GetSampRatio returns the SampRatio field value if set, zero value otherwise.

func (*EventReportingRequirement) GetSampRatioOk ¶

func (o *EventReportingRequirement) GetSampRatioOk() (*int32, bool)

GetSampRatioOk returns a tuple with the SampRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventReportingRequirement) GetStartTs ¶

func (o *EventReportingRequirement) GetStartTs() time.Time

GetStartTs returns the StartTs field value if set, zero value otherwise.

func (*EventReportingRequirement) GetStartTsOk ¶

func (o *EventReportingRequirement) GetStartTsOk() (*time.Time, bool)

GetStartTsOk returns a tuple with the StartTs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventReportingRequirement) GetTimeAnaNeeded ¶

func (o *EventReportingRequirement) GetTimeAnaNeeded() time.Time

GetTimeAnaNeeded returns the TimeAnaNeeded field value if set, zero value otherwise.

func (*EventReportingRequirement) GetTimeAnaNeededOk ¶

func (o *EventReportingRequirement) GetTimeAnaNeededOk() (*time.Time, bool)

GetTimeAnaNeededOk returns a tuple with the TimeAnaNeeded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventReportingRequirement) HasAccPerSubset ¶

func (o *EventReportingRequirement) HasAccPerSubset() bool

HasAccPerSubset returns a boolean if a field has been set.

func (*EventReportingRequirement) HasAccuracy ¶

func (o *EventReportingRequirement) HasAccuracy() bool

HasAccuracy returns a boolean if a field has been set.

func (*EventReportingRequirement) HasAnaMeta ¶

func (o *EventReportingRequirement) HasAnaMeta() bool

HasAnaMeta returns a boolean if a field has been set.

func (*EventReportingRequirement) HasAnaMetaInd ¶

func (o *EventReportingRequirement) HasAnaMetaInd() bool

HasAnaMetaInd returns a boolean if a field has been set.

func (*EventReportingRequirement) HasEndTs ¶

func (o *EventReportingRequirement) HasEndTs() bool

HasEndTs returns a boolean if a field has been set.

func (*EventReportingRequirement) HasMaxObjectNbr ¶

func (o *EventReportingRequirement) HasMaxObjectNbr() bool

HasMaxObjectNbr returns a boolean if a field has been set.

func (*EventReportingRequirement) HasMaxSupiNbr ¶

func (o *EventReportingRequirement) HasMaxSupiNbr() bool

HasMaxSupiNbr returns a boolean if a field has been set.

func (*EventReportingRequirement) HasOffsetPeriod ¶

func (o *EventReportingRequirement) HasOffsetPeriod() bool

HasOffsetPeriod returns a boolean if a field has been set.

func (*EventReportingRequirement) HasSampRatio ¶

func (o *EventReportingRequirement) HasSampRatio() bool

HasSampRatio returns a boolean if a field has been set.

func (*EventReportingRequirement) HasStartTs ¶

func (o *EventReportingRequirement) HasStartTs() bool

HasStartTs returns a boolean if a field has been set.

func (*EventReportingRequirement) HasTimeAnaNeeded ¶

func (o *EventReportingRequirement) HasTimeAnaNeeded() bool

HasTimeAnaNeeded returns a boolean if a field has been set.

func (EventReportingRequirement) MarshalJSON ¶

func (o EventReportingRequirement) MarshalJSON() ([]byte, error)

func (*EventReportingRequirement) SetAccPerSubset ¶

func (o *EventReportingRequirement) SetAccPerSubset(v []Accuracy)

SetAccPerSubset gets a reference to the given []Accuracy and assigns it to the AccPerSubset field.

func (*EventReportingRequirement) SetAccuracy ¶

func (o *EventReportingRequirement) SetAccuracy(v Accuracy)

SetAccuracy gets a reference to the given Accuracy and assigns it to the Accuracy field.

func (*EventReportingRequirement) SetAnaMeta ¶

func (o *EventReportingRequirement) SetAnaMeta(v []AnalyticsMetadata)

SetAnaMeta gets a reference to the given []AnalyticsMetadata and assigns it to the AnaMeta field.

func (*EventReportingRequirement) SetAnaMetaInd ¶

SetAnaMetaInd gets a reference to the given AnalyticsMetadataIndication and assigns it to the AnaMetaInd field.

func (*EventReportingRequirement) SetEndTs ¶

func (o *EventReportingRequirement) SetEndTs(v time.Time)

SetEndTs gets a reference to the given time.Time and assigns it to the EndTs field.

func (*EventReportingRequirement) SetMaxObjectNbr ¶

func (o *EventReportingRequirement) SetMaxObjectNbr(v int32)

SetMaxObjectNbr gets a reference to the given int32 and assigns it to the MaxObjectNbr field.

func (*EventReportingRequirement) SetMaxSupiNbr ¶

func (o *EventReportingRequirement) SetMaxSupiNbr(v int32)

SetMaxSupiNbr gets a reference to the given int32 and assigns it to the MaxSupiNbr field.

func (*EventReportingRequirement) SetOffsetPeriod ¶

func (o *EventReportingRequirement) SetOffsetPeriod(v int32)

SetOffsetPeriod gets a reference to the given int32 and assigns it to the OffsetPeriod field.

func (*EventReportingRequirement) SetSampRatio ¶

func (o *EventReportingRequirement) SetSampRatio(v int32)

SetSampRatio gets a reference to the given int32 and assigns it to the SampRatio field.

func (*EventReportingRequirement) SetStartTs ¶

func (o *EventReportingRequirement) SetStartTs(v time.Time)

SetStartTs gets a reference to the given time.Time and assigns it to the StartTs field.

func (*EventReportingRequirement) SetTimeAnaNeeded ¶

func (o *EventReportingRequirement) SetTimeAnaNeeded(v time.Time)

SetTimeAnaNeeded gets a reference to the given time.Time and assigns it to the TimeAnaNeeded field.

func (EventReportingRequirement) ToMap ¶

func (o EventReportingRequirement) ToMap() (map[string]interface{}, error)

type EventSubscription ¶

type EventSubscription struct {
	// FALSE represents not applicable for all slices. TRUE represents applicable for all slices.
	AnySlice *bool `json:"anySlice,omitempty"`
	// Identification(s) of application to which the subscription applies.
	AppIds []string `json:"appIds,omitempty"`
	// Identification(s) of DNN to which the subscription applies.
	Dnns           []string                   `json:"dnns,omitempty"`
	Dnais          []string                   `json:"dnais,omitempty"`
	Event          NwdafEvent                 `json:"event"`
	ExtraReportReq *EventReportingRequirement `json:"extraReportReq,omitempty"`
	// Identification(s) of LADN DNN to indicate the LADN service area as the AOI.
	LadnDnns []string `json:"ladnDnns,omitempty"`
	// Indicates that the NWDAF shall report the corresponding network slice load level to the NF  service consumer where the load level of the network slice identified by snssais is  reached.
	LoadLevelThreshold *int32              `json:"loadLevelThreshold,omitempty"`
	NotificationMethod *NotificationMethod `json:"notificationMethod,omitempty"`
	MatchingDir        *MatchingDirection  `json:"matchingDir,omitempty"`
	// Shall be supplied in order to start reporting when an average load level is reached.
	NfLoadLvlThds []ThresholdLevel  `json:"nfLoadLvlThds,omitempty"`
	NfInstanceIds []string          `json:"nfInstanceIds,omitempty"`
	NfSetIds      []string          `json:"nfSetIds,omitempty"`
	NfTypes       []NFType          `json:"nfTypes,omitempty"`
	NetworkArea   *NetworkAreaInfo  `json:"networkArea,omitempty"`
	VisitedAreas  []NetworkAreaInfo `json:"visitedAreas,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	MaxTopAppUlNbr *int32 `json:"maxTopAppUlNbr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	MaxTopAppDlNbr *int32                   `json:"maxTopAppDlNbr,omitempty"`
	NsiIdInfos     []NsiIdInfo              `json:"nsiIdInfos,omitempty"`
	NsiLevelThrds  []int32                  `json:"nsiLevelThrds,omitempty"`
	QosRequ        *QosRequirement          `json:"qosRequ,omitempty"`
	QosFlowRetThds []RetainabilityThreshold `json:"qosFlowRetThds,omitempty"`
	RanUeThrouThds []string                 `json:"ranUeThrouThds,omitempty"`
	// indicating a time in seconds.
	RepetitionPeriod *int32 `json:"repetitionPeriod,omitempty"`
	// Identification(s) of network slice to which the subscription applies. It corresponds to  snssais in the data model definition of 3GPP TS 29.520.
	Snssaia          []Snssai                      `json:"snssaia,omitempty"`
	TgtUe            *TargetUeInformation          `json:"tgtUe,omitempty"`
	CongThresholds   []ThresholdLevel              `json:"congThresholds,omitempty"`
	NwPerfRequs      []NetworkPerfRequirement      `json:"nwPerfRequs,omitempty"`
	BwRequs          []BwRequirement               `json:"bwRequs,omitempty"`
	ExcepRequs       []Exception                   `json:"excepRequs,omitempty"`
	ExptAnaType      *ExpectedAnalyticsType        `json:"exptAnaType,omitempty"`
	ExptUeBehav      *ExpectedUeBehaviourData      `json:"exptUeBehav,omitempty"`
	RatFreqs         []RatFreqInformation          `json:"ratFreqs,omitempty"`
	ListOfAnaSubsets []AnalyticsSubset             `json:"listOfAnaSubsets,omitempty"`
	DisperReqs       []DispersionRequirement       `json:"disperReqs,omitempty"`
	RedTransReqs     []RedundantTransmissionExpReq `json:"redTransReqs,omitempty"`
	WlanReqs         []WlanPerformanceReq          `json:"wlanReqs,omitempty"`
	UpfInfo          *UpfInformation               `json:"upfInfo,omitempty"`
	AppServerAddrs   []AddrFqdn                    `json:"appServerAddrs,omitempty"`
	DnPerfReqs       []DnPerformanceReq            `json:"dnPerfReqs,omitempty"`
}

EventSubscription Represents a subscription to a single event.

func NewEventSubscription ¶

func NewEventSubscription(event NwdafEvent) *EventSubscription

NewEventSubscription instantiates a new EventSubscription 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 NewEventSubscriptionWithDefaults ¶

func NewEventSubscriptionWithDefaults() *EventSubscription

NewEventSubscriptionWithDefaults instantiates a new EventSubscription 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 (*EventSubscription) GetAnySlice ¶

func (o *EventSubscription) GetAnySlice() bool

GetAnySlice returns the AnySlice field value if set, zero value otherwise.

func (*EventSubscription) GetAnySliceOk ¶

func (o *EventSubscription) GetAnySliceOk() (*bool, bool)

GetAnySliceOk returns a tuple with the AnySlice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetAppIds ¶

func (o *EventSubscription) GetAppIds() []string

GetAppIds returns the AppIds field value if set, zero value otherwise.

func (*EventSubscription) GetAppIdsOk ¶

func (o *EventSubscription) GetAppIdsOk() ([]string, bool)

GetAppIdsOk returns a tuple with the AppIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetAppServerAddrs ¶

func (o *EventSubscription) GetAppServerAddrs() []AddrFqdn

GetAppServerAddrs returns the AppServerAddrs field value if set, zero value otherwise.

func (*EventSubscription) GetAppServerAddrsOk ¶

func (o *EventSubscription) GetAppServerAddrsOk() ([]AddrFqdn, bool)

GetAppServerAddrsOk returns a tuple with the AppServerAddrs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetBwRequs ¶

func (o *EventSubscription) GetBwRequs() []BwRequirement

GetBwRequs returns the BwRequs field value if set, zero value otherwise.

func (*EventSubscription) GetBwRequsOk ¶

func (o *EventSubscription) GetBwRequsOk() ([]BwRequirement, bool)

GetBwRequsOk returns a tuple with the BwRequs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetCongThresholds ¶

func (o *EventSubscription) GetCongThresholds() []ThresholdLevel

GetCongThresholds returns the CongThresholds field value if set, zero value otherwise.

func (*EventSubscription) GetCongThresholdsOk ¶

func (o *EventSubscription) GetCongThresholdsOk() ([]ThresholdLevel, bool)

GetCongThresholdsOk returns a tuple with the CongThresholds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetDisperReqs ¶

func (o *EventSubscription) GetDisperReqs() []DispersionRequirement

GetDisperReqs returns the DisperReqs field value if set, zero value otherwise.

func (*EventSubscription) GetDisperReqsOk ¶

func (o *EventSubscription) GetDisperReqsOk() ([]DispersionRequirement, bool)

GetDisperReqsOk returns a tuple with the DisperReqs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetDnPerfReqs ¶

func (o *EventSubscription) GetDnPerfReqs() []DnPerformanceReq

GetDnPerfReqs returns the DnPerfReqs field value if set, zero value otherwise.

func (*EventSubscription) GetDnPerfReqsOk ¶

func (o *EventSubscription) GetDnPerfReqsOk() ([]DnPerformanceReq, bool)

GetDnPerfReqsOk returns a tuple with the DnPerfReqs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetDnais ¶

func (o *EventSubscription) GetDnais() []string

GetDnais returns the Dnais field value if set, zero value otherwise.

func (*EventSubscription) GetDnaisOk ¶

func (o *EventSubscription) GetDnaisOk() ([]string, bool)

GetDnaisOk returns a tuple with the Dnais field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetDnns ¶

func (o *EventSubscription) GetDnns() []string

GetDnns returns the Dnns field value if set, zero value otherwise.

func (*EventSubscription) GetDnnsOk ¶

func (o *EventSubscription) GetDnnsOk() ([]string, bool)

GetDnnsOk returns a tuple with the Dnns field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetEvent ¶

func (o *EventSubscription) GetEvent() NwdafEvent

GetEvent returns the Event field value

func (*EventSubscription) GetEventOk ¶

func (o *EventSubscription) GetEventOk() (*NwdafEvent, bool)

GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.

func (*EventSubscription) GetExcepRequs ¶

func (o *EventSubscription) GetExcepRequs() []Exception

GetExcepRequs returns the ExcepRequs field value if set, zero value otherwise.

func (*EventSubscription) GetExcepRequsOk ¶

func (o *EventSubscription) GetExcepRequsOk() ([]Exception, bool)

GetExcepRequsOk returns a tuple with the ExcepRequs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetExptAnaType ¶

func (o *EventSubscription) GetExptAnaType() ExpectedAnalyticsType

GetExptAnaType returns the ExptAnaType field value if set, zero value otherwise.

func (*EventSubscription) GetExptAnaTypeOk ¶

func (o *EventSubscription) GetExptAnaTypeOk() (*ExpectedAnalyticsType, bool)

GetExptAnaTypeOk returns a tuple with the ExptAnaType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetExptUeBehav ¶

func (o *EventSubscription) GetExptUeBehav() ExpectedUeBehaviourData

GetExptUeBehav returns the ExptUeBehav field value if set, zero value otherwise.

func (*EventSubscription) GetExptUeBehavOk ¶

func (o *EventSubscription) GetExptUeBehavOk() (*ExpectedUeBehaviourData, bool)

GetExptUeBehavOk returns a tuple with the ExptUeBehav field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetExtraReportReq ¶

func (o *EventSubscription) GetExtraReportReq() EventReportingRequirement

GetExtraReportReq returns the ExtraReportReq field value if set, zero value otherwise.

func (*EventSubscription) GetExtraReportReqOk ¶

func (o *EventSubscription) GetExtraReportReqOk() (*EventReportingRequirement, bool)

GetExtraReportReqOk returns a tuple with the ExtraReportReq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetLadnDnns ¶

func (o *EventSubscription) GetLadnDnns() []string

GetLadnDnns returns the LadnDnns field value if set, zero value otherwise.

func (*EventSubscription) GetLadnDnnsOk ¶

func (o *EventSubscription) GetLadnDnnsOk() ([]string, bool)

GetLadnDnnsOk returns a tuple with the LadnDnns field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetListOfAnaSubsets ¶

func (o *EventSubscription) GetListOfAnaSubsets() []AnalyticsSubset

GetListOfAnaSubsets returns the ListOfAnaSubsets field value if set, zero value otherwise.

func (*EventSubscription) GetListOfAnaSubsetsOk ¶

func (o *EventSubscription) GetListOfAnaSubsetsOk() ([]AnalyticsSubset, bool)

GetListOfAnaSubsetsOk returns a tuple with the ListOfAnaSubsets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetLoadLevelThreshold ¶

func (o *EventSubscription) GetLoadLevelThreshold() int32

GetLoadLevelThreshold returns the LoadLevelThreshold field value if set, zero value otherwise.

func (*EventSubscription) GetLoadLevelThresholdOk ¶

func (o *EventSubscription) GetLoadLevelThresholdOk() (*int32, bool)

GetLoadLevelThresholdOk returns a tuple with the LoadLevelThreshold field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetMatchingDir ¶

func (o *EventSubscription) GetMatchingDir() MatchingDirection

GetMatchingDir returns the MatchingDir field value if set, zero value otherwise.

func (*EventSubscription) GetMatchingDirOk ¶

func (o *EventSubscription) GetMatchingDirOk() (*MatchingDirection, bool)

GetMatchingDirOk returns a tuple with the MatchingDir field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetMaxTopAppDlNbr ¶

func (o *EventSubscription) GetMaxTopAppDlNbr() int32

GetMaxTopAppDlNbr returns the MaxTopAppDlNbr field value if set, zero value otherwise.

func (*EventSubscription) GetMaxTopAppDlNbrOk ¶

func (o *EventSubscription) GetMaxTopAppDlNbrOk() (*int32, bool)

GetMaxTopAppDlNbrOk returns a tuple with the MaxTopAppDlNbr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetMaxTopAppUlNbr ¶

func (o *EventSubscription) GetMaxTopAppUlNbr() int32

GetMaxTopAppUlNbr returns the MaxTopAppUlNbr field value if set, zero value otherwise.

func (*EventSubscription) GetMaxTopAppUlNbrOk ¶

func (o *EventSubscription) GetMaxTopAppUlNbrOk() (*int32, bool)

GetMaxTopAppUlNbrOk returns a tuple with the MaxTopAppUlNbr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetNetworkArea ¶

func (o *EventSubscription) GetNetworkArea() NetworkAreaInfo

GetNetworkArea returns the NetworkArea field value if set, zero value otherwise.

func (*EventSubscription) GetNetworkAreaOk ¶

func (o *EventSubscription) GetNetworkAreaOk() (*NetworkAreaInfo, bool)

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 (*EventSubscription) GetNfInstanceIds ¶

func (o *EventSubscription) GetNfInstanceIds() []string

GetNfInstanceIds returns the NfInstanceIds field value if set, zero value otherwise.

func (*EventSubscription) GetNfInstanceIdsOk ¶

func (o *EventSubscription) GetNfInstanceIdsOk() ([]string, bool)

GetNfInstanceIdsOk returns a tuple with the NfInstanceIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetNfLoadLvlThds ¶

func (o *EventSubscription) GetNfLoadLvlThds() []ThresholdLevel

GetNfLoadLvlThds returns the NfLoadLvlThds field value if set, zero value otherwise.

func (*EventSubscription) GetNfLoadLvlThdsOk ¶

func (o *EventSubscription) GetNfLoadLvlThdsOk() ([]ThresholdLevel, bool)

GetNfLoadLvlThdsOk returns a tuple with the NfLoadLvlThds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetNfSetIds ¶

func (o *EventSubscription) GetNfSetIds() []string

GetNfSetIds returns the NfSetIds field value if set, zero value otherwise.

func (*EventSubscription) GetNfSetIdsOk ¶

func (o *EventSubscription) GetNfSetIdsOk() ([]string, bool)

GetNfSetIdsOk returns a tuple with the NfSetIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetNfTypes ¶

func (o *EventSubscription) GetNfTypes() []NFType

GetNfTypes returns the NfTypes field value if set, zero value otherwise.

func (*EventSubscription) GetNfTypesOk ¶

func (o *EventSubscription) GetNfTypesOk() ([]NFType, bool)

GetNfTypesOk returns a tuple with the NfTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetNotificationMethod ¶

func (o *EventSubscription) GetNotificationMethod() NotificationMethod

GetNotificationMethod returns the NotificationMethod field value if set, zero value otherwise.

func (*EventSubscription) GetNotificationMethodOk ¶

func (o *EventSubscription) GetNotificationMethodOk() (*NotificationMethod, bool)

GetNotificationMethodOk returns a tuple with the NotificationMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetNsiIdInfos ¶

func (o *EventSubscription) GetNsiIdInfos() []NsiIdInfo

GetNsiIdInfos returns the NsiIdInfos field value if set, zero value otherwise.

func (*EventSubscription) GetNsiIdInfosOk ¶

func (o *EventSubscription) GetNsiIdInfosOk() ([]NsiIdInfo, bool)

GetNsiIdInfosOk returns a tuple with the NsiIdInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetNsiLevelThrds ¶

func (o *EventSubscription) GetNsiLevelThrds() []int32

GetNsiLevelThrds returns the NsiLevelThrds field value if set, zero value otherwise.

func (*EventSubscription) GetNsiLevelThrdsOk ¶

func (o *EventSubscription) GetNsiLevelThrdsOk() ([]int32, bool)

GetNsiLevelThrdsOk returns a tuple with the NsiLevelThrds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetNwPerfRequs ¶

func (o *EventSubscription) GetNwPerfRequs() []NetworkPerfRequirement

GetNwPerfRequs returns the NwPerfRequs field value if set, zero value otherwise.

func (*EventSubscription) GetNwPerfRequsOk ¶

func (o *EventSubscription) GetNwPerfRequsOk() ([]NetworkPerfRequirement, bool)

GetNwPerfRequsOk returns a tuple with the NwPerfRequs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetQosFlowRetThds ¶

func (o *EventSubscription) GetQosFlowRetThds() []RetainabilityThreshold

GetQosFlowRetThds returns the QosFlowRetThds field value if set, zero value otherwise.

func (*EventSubscription) GetQosFlowRetThdsOk ¶

func (o *EventSubscription) GetQosFlowRetThdsOk() ([]RetainabilityThreshold, bool)

GetQosFlowRetThdsOk returns a tuple with the QosFlowRetThds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetQosRequ ¶

func (o *EventSubscription) GetQosRequ() QosRequirement

GetQosRequ returns the QosRequ field value if set, zero value otherwise.

func (*EventSubscription) GetQosRequOk ¶

func (o *EventSubscription) GetQosRequOk() (*QosRequirement, bool)

GetQosRequOk returns a tuple with the QosRequ field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetRanUeThrouThds ¶

func (o *EventSubscription) GetRanUeThrouThds() []string

GetRanUeThrouThds returns the RanUeThrouThds field value if set, zero value otherwise.

func (*EventSubscription) GetRanUeThrouThdsOk ¶

func (o *EventSubscription) GetRanUeThrouThdsOk() ([]string, bool)

GetRanUeThrouThdsOk returns a tuple with the RanUeThrouThds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetRatFreqs ¶

func (o *EventSubscription) GetRatFreqs() []RatFreqInformation

GetRatFreqs returns the RatFreqs field value if set, zero value otherwise.

func (*EventSubscription) GetRatFreqsOk ¶

func (o *EventSubscription) GetRatFreqsOk() ([]RatFreqInformation, bool)

GetRatFreqsOk returns a tuple with the RatFreqs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetRedTransReqs ¶

func (o *EventSubscription) GetRedTransReqs() []RedundantTransmissionExpReq

GetRedTransReqs returns the RedTransReqs field value if set, zero value otherwise.

func (*EventSubscription) GetRedTransReqsOk ¶

func (o *EventSubscription) GetRedTransReqsOk() ([]RedundantTransmissionExpReq, bool)

GetRedTransReqsOk returns a tuple with the RedTransReqs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetRepetitionPeriod ¶

func (o *EventSubscription) GetRepetitionPeriod() int32

GetRepetitionPeriod returns the RepetitionPeriod field value if set, zero value otherwise.

func (*EventSubscription) GetRepetitionPeriodOk ¶

func (o *EventSubscription) GetRepetitionPeriodOk() (*int32, bool)

GetRepetitionPeriodOk returns a tuple with the RepetitionPeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetSnssaia ¶

func (o *EventSubscription) GetSnssaia() []Snssai

GetSnssaia returns the Snssaia field value if set, zero value otherwise.

func (*EventSubscription) GetSnssaiaOk ¶

func (o *EventSubscription) GetSnssaiaOk() ([]Snssai, bool)

GetSnssaiaOk returns a tuple with the Snssaia field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetTgtUe ¶

func (o *EventSubscription) GetTgtUe() TargetUeInformation

GetTgtUe returns the TgtUe field value if set, zero value otherwise.

func (*EventSubscription) GetTgtUeOk ¶

func (o *EventSubscription) GetTgtUeOk() (*TargetUeInformation, bool)

GetTgtUeOk returns a tuple with the TgtUe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetUpfInfo ¶

func (o *EventSubscription) GetUpfInfo() UpfInformation

GetUpfInfo returns the UpfInfo field value if set, zero value otherwise.

func (*EventSubscription) GetUpfInfoOk ¶

func (o *EventSubscription) GetUpfInfoOk() (*UpfInformation, bool)

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 (*EventSubscription) GetVisitedAreas ¶

func (o *EventSubscription) GetVisitedAreas() []NetworkAreaInfo

GetVisitedAreas returns the VisitedAreas field value if set, zero value otherwise.

func (*EventSubscription) GetVisitedAreasOk ¶

func (o *EventSubscription) GetVisitedAreasOk() ([]NetworkAreaInfo, bool)

GetVisitedAreasOk returns a tuple with the VisitedAreas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) GetWlanReqs ¶

func (o *EventSubscription) GetWlanReqs() []WlanPerformanceReq

GetWlanReqs returns the WlanReqs field value if set, zero value otherwise.

func (*EventSubscription) GetWlanReqsOk ¶

func (o *EventSubscription) GetWlanReqsOk() ([]WlanPerformanceReq, bool)

GetWlanReqsOk returns a tuple with the WlanReqs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription) HasAnySlice ¶

func (o *EventSubscription) HasAnySlice() bool

HasAnySlice returns a boolean if a field has been set.

func (*EventSubscription) HasAppIds ¶

func (o *EventSubscription) HasAppIds() bool

HasAppIds returns a boolean if a field has been set.

func (*EventSubscription) HasAppServerAddrs ¶

func (o *EventSubscription) HasAppServerAddrs() bool

HasAppServerAddrs returns a boolean if a field has been set.

func (*EventSubscription) HasBwRequs ¶

func (o *EventSubscription) HasBwRequs() bool

HasBwRequs returns a boolean if a field has been set.

func (*EventSubscription) HasCongThresholds ¶

func (o *EventSubscription) HasCongThresholds() bool

HasCongThresholds returns a boolean if a field has been set.

func (*EventSubscription) HasDisperReqs ¶

func (o *EventSubscription) HasDisperReqs() bool

HasDisperReqs returns a boolean if a field has been set.

func (*EventSubscription) HasDnPerfReqs ¶

func (o *EventSubscription) HasDnPerfReqs() bool

HasDnPerfReqs returns a boolean if a field has been set.

func (*EventSubscription) HasDnais ¶

func (o *EventSubscription) HasDnais() bool

HasDnais returns a boolean if a field has been set.

func (*EventSubscription) HasDnns ¶

func (o *EventSubscription) HasDnns() bool

HasDnns returns a boolean if a field has been set.

func (*EventSubscription) HasExcepRequs ¶

func (o *EventSubscription) HasExcepRequs() bool

HasExcepRequs returns a boolean if a field has been set.

func (*EventSubscription) HasExptAnaType ¶

func (o *EventSubscription) HasExptAnaType() bool

HasExptAnaType returns a boolean if a field has been set.

func (*EventSubscription) HasExptUeBehav ¶

func (o *EventSubscription) HasExptUeBehav() bool

HasExptUeBehav returns a boolean if a field has been set.

func (*EventSubscription) HasExtraReportReq ¶

func (o *EventSubscription) HasExtraReportReq() bool

HasExtraReportReq returns a boolean if a field has been set.

func (*EventSubscription) HasLadnDnns ¶

func (o *EventSubscription) HasLadnDnns() bool

HasLadnDnns returns a boolean if a field has been set.

func (*EventSubscription) HasListOfAnaSubsets ¶

func (o *EventSubscription) HasListOfAnaSubsets() bool

HasListOfAnaSubsets returns a boolean if a field has been set.

func (*EventSubscription) HasLoadLevelThreshold ¶

func (o *EventSubscription) HasLoadLevelThreshold() bool

HasLoadLevelThreshold returns a boolean if a field has been set.

func (*EventSubscription) HasMatchingDir ¶

func (o *EventSubscription) HasMatchingDir() bool

HasMatchingDir returns a boolean if a field has been set.

func (*EventSubscription) HasMaxTopAppDlNbr ¶

func (o *EventSubscription) HasMaxTopAppDlNbr() bool

HasMaxTopAppDlNbr returns a boolean if a field has been set.

func (*EventSubscription) HasMaxTopAppUlNbr ¶

func (o *EventSubscription) HasMaxTopAppUlNbr() bool

HasMaxTopAppUlNbr returns a boolean if a field has been set.

func (*EventSubscription) HasNetworkArea ¶

func (o *EventSubscription) HasNetworkArea() bool

HasNetworkArea returns a boolean if a field has been set.

func (*EventSubscription) HasNfInstanceIds ¶

func (o *EventSubscription) HasNfInstanceIds() bool

HasNfInstanceIds returns a boolean if a field has been set.

func (*EventSubscription) HasNfLoadLvlThds ¶

func (o *EventSubscription) HasNfLoadLvlThds() bool

HasNfLoadLvlThds returns a boolean if a field has been set.

func (*EventSubscription) HasNfSetIds ¶

func (o *EventSubscription) HasNfSetIds() bool

HasNfSetIds returns a boolean if a field has been set.

func (*EventSubscription) HasNfTypes ¶

func (o *EventSubscription) HasNfTypes() bool

HasNfTypes returns a boolean if a field has been set.

func (*EventSubscription) HasNotificationMethod ¶

func (o *EventSubscription) HasNotificationMethod() bool

HasNotificationMethod returns a boolean if a field has been set.

func (*EventSubscription) HasNsiIdInfos ¶

func (o *EventSubscription) HasNsiIdInfos() bool

HasNsiIdInfos returns a boolean if a field has been set.

func (*EventSubscription) HasNsiLevelThrds ¶

func (o *EventSubscription) HasNsiLevelThrds() bool

HasNsiLevelThrds returns a boolean if a field has been set.

func (*EventSubscription) HasNwPerfRequs ¶

func (o *EventSubscription) HasNwPerfRequs() bool

HasNwPerfRequs returns a boolean if a field has been set.

func (*EventSubscription) HasQosFlowRetThds ¶

func (o *EventSubscription) HasQosFlowRetThds() bool

HasQosFlowRetThds returns a boolean if a field has been set.

func (*EventSubscription) HasQosRequ ¶

func (o *EventSubscription) HasQosRequ() bool

HasQosRequ returns a boolean if a field has been set.

func (*EventSubscription) HasRanUeThrouThds ¶

func (o *EventSubscription) HasRanUeThrouThds() bool

HasRanUeThrouThds returns a boolean if a field has been set.

func (*EventSubscription) HasRatFreqs ¶

func (o *EventSubscription) HasRatFreqs() bool

HasRatFreqs returns a boolean if a field has been set.

func (*EventSubscription) HasRedTransReqs ¶

func (o *EventSubscription) HasRedTransReqs() bool

HasRedTransReqs returns a boolean if a field has been set.

func (*EventSubscription) HasRepetitionPeriod ¶

func (o *EventSubscription) HasRepetitionPeriod() bool

HasRepetitionPeriod returns a boolean if a field has been set.

func (*EventSubscription) HasSnssaia ¶

func (o *EventSubscription) HasSnssaia() bool

HasSnssaia returns a boolean if a field has been set.

func (*EventSubscription) HasTgtUe ¶

func (o *EventSubscription) HasTgtUe() bool

HasTgtUe returns a boolean if a field has been set.

func (*EventSubscription) HasUpfInfo ¶

func (o *EventSubscription) HasUpfInfo() bool

HasUpfInfo returns a boolean if a field has been set.

func (*EventSubscription) HasVisitedAreas ¶

func (o *EventSubscription) HasVisitedAreas() bool

HasVisitedAreas returns a boolean if a field has been set.

func (*EventSubscription) HasWlanReqs ¶

func (o *EventSubscription) HasWlanReqs() bool

HasWlanReqs returns a boolean if a field has been set.

func (EventSubscription) MarshalJSON ¶

func (o EventSubscription) MarshalJSON() ([]byte, error)

func (*EventSubscription) SetAnySlice ¶

func (o *EventSubscription) SetAnySlice(v bool)

SetAnySlice gets a reference to the given bool and assigns it to the AnySlice field.

func (*EventSubscription) SetAppIds ¶

func (o *EventSubscription) SetAppIds(v []string)

SetAppIds gets a reference to the given []string and assigns it to the AppIds field.

func (*EventSubscription) SetAppServerAddrs ¶

func (o *EventSubscription) SetAppServerAddrs(v []AddrFqdn)

SetAppServerAddrs gets a reference to the given []AddrFqdn and assigns it to the AppServerAddrs field.

func (*EventSubscription) SetBwRequs ¶

func (o *EventSubscription) SetBwRequs(v []BwRequirement)

SetBwRequs gets a reference to the given []BwRequirement and assigns it to the BwRequs field.

func (*EventSubscription) SetCongThresholds ¶

func (o *EventSubscription) SetCongThresholds(v []ThresholdLevel)

SetCongThresholds gets a reference to the given []ThresholdLevel and assigns it to the CongThresholds field.

func (*EventSubscription) SetDisperReqs ¶

func (o *EventSubscription) SetDisperReqs(v []DispersionRequirement)

SetDisperReqs gets a reference to the given []DispersionRequirement and assigns it to the DisperReqs field.

func (*EventSubscription) SetDnPerfReqs ¶

func (o *EventSubscription) SetDnPerfReqs(v []DnPerformanceReq)

SetDnPerfReqs gets a reference to the given []DnPerformanceReq and assigns it to the DnPerfReqs field.

func (*EventSubscription) SetDnais ¶

func (o *EventSubscription) SetDnais(v []string)

SetDnais gets a reference to the given []string and assigns it to the Dnais field.

func (*EventSubscription) SetDnns ¶

func (o *EventSubscription) SetDnns(v []string)

SetDnns gets a reference to the given []string and assigns it to the Dnns field.

func (*EventSubscription) SetEvent ¶

func (o *EventSubscription) SetEvent(v NwdafEvent)

SetEvent sets field value

func (*EventSubscription) SetExcepRequs ¶

func (o *EventSubscription) SetExcepRequs(v []Exception)

SetExcepRequs gets a reference to the given []Exception and assigns it to the ExcepRequs field.

func (*EventSubscription) SetExptAnaType ¶

func (o *EventSubscription) SetExptAnaType(v ExpectedAnalyticsType)

SetExptAnaType gets a reference to the given ExpectedAnalyticsType and assigns it to the ExptAnaType field.

func (*EventSubscription) SetExptUeBehav ¶

func (o *EventSubscription) SetExptUeBehav(v ExpectedUeBehaviourData)

SetExptUeBehav gets a reference to the given ExpectedUeBehaviourData and assigns it to the ExptUeBehav field.

func (*EventSubscription) SetExtraReportReq ¶

func (o *EventSubscription) SetExtraReportReq(v EventReportingRequirement)

SetExtraReportReq gets a reference to the given EventReportingRequirement and assigns it to the ExtraReportReq field.

func (*EventSubscription) SetLadnDnns ¶

func (o *EventSubscription) SetLadnDnns(v []string)

SetLadnDnns gets a reference to the given []string and assigns it to the LadnDnns field.

func (*EventSubscription) SetListOfAnaSubsets ¶

func (o *EventSubscription) SetListOfAnaSubsets(v []AnalyticsSubset)

SetListOfAnaSubsets gets a reference to the given []AnalyticsSubset and assigns it to the ListOfAnaSubsets field.

func (*EventSubscription) SetLoadLevelThreshold ¶

func (o *EventSubscription) SetLoadLevelThreshold(v int32)

SetLoadLevelThreshold gets a reference to the given int32 and assigns it to the LoadLevelThreshold field.

func (*EventSubscription) SetMatchingDir ¶

func (o *EventSubscription) SetMatchingDir(v MatchingDirection)

SetMatchingDir gets a reference to the given MatchingDirection and assigns it to the MatchingDir field.

func (*EventSubscription) SetMaxTopAppDlNbr ¶

func (o *EventSubscription) SetMaxTopAppDlNbr(v int32)

SetMaxTopAppDlNbr gets a reference to the given int32 and assigns it to the MaxTopAppDlNbr field.

func (*EventSubscription) SetMaxTopAppUlNbr ¶

func (o *EventSubscription) SetMaxTopAppUlNbr(v int32)

SetMaxTopAppUlNbr gets a reference to the given int32 and assigns it to the MaxTopAppUlNbr field.

func (*EventSubscription) SetNetworkArea ¶

func (o *EventSubscription) SetNetworkArea(v NetworkAreaInfo)

SetNetworkArea gets a reference to the given NetworkAreaInfo and assigns it to the NetworkArea field.

func (*EventSubscription) SetNfInstanceIds ¶

func (o *EventSubscription) SetNfInstanceIds(v []string)

SetNfInstanceIds gets a reference to the given []string and assigns it to the NfInstanceIds field.

func (*EventSubscription) SetNfLoadLvlThds ¶

func (o *EventSubscription) SetNfLoadLvlThds(v []ThresholdLevel)

SetNfLoadLvlThds gets a reference to the given []ThresholdLevel and assigns it to the NfLoadLvlThds field.

func (*EventSubscription) SetNfSetIds ¶

func (o *EventSubscription) SetNfSetIds(v []string)

SetNfSetIds gets a reference to the given []string and assigns it to the NfSetIds field.

func (*EventSubscription) SetNfTypes ¶

func (o *EventSubscription) SetNfTypes(v []NFType)

SetNfTypes gets a reference to the given []NFType and assigns it to the NfTypes field.

func (*EventSubscription) SetNotificationMethod ¶

func (o *EventSubscription) SetNotificationMethod(v NotificationMethod)

SetNotificationMethod gets a reference to the given NotificationMethod and assigns it to the NotificationMethod field.

func (*EventSubscription) SetNsiIdInfos ¶

func (o *EventSubscription) SetNsiIdInfos(v []NsiIdInfo)

SetNsiIdInfos gets a reference to the given []NsiIdInfo and assigns it to the NsiIdInfos field.

func (*EventSubscription) SetNsiLevelThrds ¶

func (o *EventSubscription) SetNsiLevelThrds(v []int32)

SetNsiLevelThrds gets a reference to the given []int32 and assigns it to the NsiLevelThrds field.

func (*EventSubscription) SetNwPerfRequs ¶

func (o *EventSubscription) SetNwPerfRequs(v []NetworkPerfRequirement)

SetNwPerfRequs gets a reference to the given []NetworkPerfRequirement and assigns it to the NwPerfRequs field.

func (*EventSubscription) SetQosFlowRetThds ¶

func (o *EventSubscription) SetQosFlowRetThds(v []RetainabilityThreshold)

SetQosFlowRetThds gets a reference to the given []RetainabilityThreshold and assigns it to the QosFlowRetThds field.

func (*EventSubscription) SetQosRequ ¶

func (o *EventSubscription) SetQosRequ(v QosRequirement)

SetQosRequ gets a reference to the given QosRequirement and assigns it to the QosRequ field.

func (*EventSubscription) SetRanUeThrouThds ¶

func (o *EventSubscription) SetRanUeThrouThds(v []string)

SetRanUeThrouThds gets a reference to the given []string and assigns it to the RanUeThrouThds field.

func (*EventSubscription) SetRatFreqs ¶

func (o *EventSubscription) SetRatFreqs(v []RatFreqInformation)

SetRatFreqs gets a reference to the given []RatFreqInformation and assigns it to the RatFreqs field.

func (*EventSubscription) SetRedTransReqs ¶

func (o *EventSubscription) SetRedTransReqs(v []RedundantTransmissionExpReq)

SetRedTransReqs gets a reference to the given []RedundantTransmissionExpReq and assigns it to the RedTransReqs field.

func (*EventSubscription) SetRepetitionPeriod ¶

func (o *EventSubscription) SetRepetitionPeriod(v int32)

SetRepetitionPeriod gets a reference to the given int32 and assigns it to the RepetitionPeriod field.

func (*EventSubscription) SetSnssaia ¶

func (o *EventSubscription) SetSnssaia(v []Snssai)

SetSnssaia gets a reference to the given []Snssai and assigns it to the Snssaia field.

func (*EventSubscription) SetTgtUe ¶

func (o *EventSubscription) SetTgtUe(v TargetUeInformation)

SetTgtUe gets a reference to the given TargetUeInformation and assigns it to the TgtUe field.

func (*EventSubscription) SetUpfInfo ¶

func (o *EventSubscription) SetUpfInfo(v UpfInformation)

SetUpfInfo gets a reference to the given UpfInformation and assigns it to the UpfInfo field.

func (*EventSubscription) SetVisitedAreas ¶

func (o *EventSubscription) SetVisitedAreas(v []NetworkAreaInfo)

SetVisitedAreas gets a reference to the given []NetworkAreaInfo and assigns it to the VisitedAreas field.

func (*EventSubscription) SetWlanReqs ¶

func (o *EventSubscription) SetWlanReqs(v []WlanPerformanceReq)

SetWlanReqs gets a reference to the given []WlanPerformanceReq and assigns it to the WlanReqs field.

func (EventSubscription) ToMap ¶

func (o EventSubscription) ToMap() (map[string]interface{}, error)

type EventSubscription1 ¶

type EventSubscription1 struct {
	Event             SmfEvent               `json:"event"`
	DnaiChgType       *DnaiChangeType        `json:"dnaiChgType,omitempty"`
	DddTraDescriptors []DddTrafficDescriptor `json:"dddTraDescriptors,omitempty"`
	DddStati          []DlDataDeliveryStatus `json:"dddStati,omitempty"`
	AppIds            []string               `json:"appIds,omitempty"`
	TargetPeriod      *TimeWindow            `json:"targetPeriod,omitempty"`
	// Indicates the subscription for UE transaction dispersion collectionon, if it is included and set to \"true\". Default value is \"false\".
	TransacDispInd *bool `json:"transacDispInd,omitempty"`
	// Indicates Session Management Transaction metrics.
	TransacMetrics []TransactionMetric `json:"transacMetrics,omitempty"`
	UeIpAddr       *IpAddr             `json:"ueIpAddr,omitempty"`
}

EventSubscription1 Represents a subscription to a single event.

func NewEventSubscription1 ¶

func NewEventSubscription1(event SmfEvent) *EventSubscription1

NewEventSubscription1 instantiates a new EventSubscription1 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 NewEventSubscription1WithDefaults ¶

func NewEventSubscription1WithDefaults() *EventSubscription1

NewEventSubscription1WithDefaults instantiates a new EventSubscription1 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 (*EventSubscription1) GetAppIds ¶

func (o *EventSubscription1) GetAppIds() []string

GetAppIds returns the AppIds field value if set, zero value otherwise.

func (*EventSubscription1) GetAppIdsOk ¶

func (o *EventSubscription1) GetAppIdsOk() ([]string, bool)

GetAppIdsOk returns a tuple with the AppIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription1) GetDddStati ¶

func (o *EventSubscription1) GetDddStati() []DlDataDeliveryStatus

GetDddStati returns the DddStati field value if set, zero value otherwise.

func (*EventSubscription1) GetDddStatiOk ¶

func (o *EventSubscription1) GetDddStatiOk() ([]DlDataDeliveryStatus, bool)

GetDddStatiOk returns a tuple with the DddStati field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription1) GetDddTraDescriptors ¶

func (o *EventSubscription1) GetDddTraDescriptors() []DddTrafficDescriptor

GetDddTraDescriptors returns the DddTraDescriptors field value if set, zero value otherwise.

func (*EventSubscription1) GetDddTraDescriptorsOk ¶

func (o *EventSubscription1) GetDddTraDescriptorsOk() ([]DddTrafficDescriptor, bool)

GetDddTraDescriptorsOk returns a tuple with the DddTraDescriptors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription1) GetDnaiChgType ¶

func (o *EventSubscription1) GetDnaiChgType() DnaiChangeType

GetDnaiChgType returns the DnaiChgType field value if set, zero value otherwise.

func (*EventSubscription1) GetDnaiChgTypeOk ¶

func (o *EventSubscription1) GetDnaiChgTypeOk() (*DnaiChangeType, bool)

GetDnaiChgTypeOk returns a tuple with the DnaiChgType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription1) GetEvent ¶

func (o *EventSubscription1) GetEvent() SmfEvent

GetEvent returns the Event field value

func (*EventSubscription1) GetEventOk ¶

func (o *EventSubscription1) GetEventOk() (*SmfEvent, bool)

GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.

func (*EventSubscription1) GetTargetPeriod ¶

func (o *EventSubscription1) GetTargetPeriod() TimeWindow

GetTargetPeriod returns the TargetPeriod field value if set, zero value otherwise.

func (*EventSubscription1) GetTargetPeriodOk ¶

func (o *EventSubscription1) GetTargetPeriodOk() (*TimeWindow, bool)

GetTargetPeriodOk returns a tuple with the TargetPeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription1) GetTransacDispInd ¶

func (o *EventSubscription1) GetTransacDispInd() bool

GetTransacDispInd returns the TransacDispInd field value if set, zero value otherwise.

func (*EventSubscription1) GetTransacDispIndOk ¶

func (o *EventSubscription1) GetTransacDispIndOk() (*bool, bool)

GetTransacDispIndOk returns a tuple with the TransacDispInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription1) GetTransacMetrics ¶

func (o *EventSubscription1) GetTransacMetrics() []TransactionMetric

GetTransacMetrics returns the TransacMetrics field value if set, zero value otherwise.

func (*EventSubscription1) GetTransacMetricsOk ¶

func (o *EventSubscription1) GetTransacMetricsOk() ([]TransactionMetric, bool)

GetTransacMetricsOk returns a tuple with the TransacMetrics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription1) GetUeIpAddr ¶

func (o *EventSubscription1) GetUeIpAddr() IpAddr

GetUeIpAddr returns the UeIpAddr field value if set, zero value otherwise.

func (*EventSubscription1) GetUeIpAddrOk ¶

func (o *EventSubscription1) GetUeIpAddrOk() (*IpAddr, bool)

GetUeIpAddrOk returns a tuple with the UeIpAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventSubscription1) HasAppIds ¶

func (o *EventSubscription1) HasAppIds() bool

HasAppIds returns a boolean if a field has been set.

func (*EventSubscription1) HasDddStati ¶

func (o *EventSubscription1) HasDddStati() bool

HasDddStati returns a boolean if a field has been set.

func (*EventSubscription1) HasDddTraDescriptors ¶

func (o *EventSubscription1) HasDddTraDescriptors() bool

HasDddTraDescriptors returns a boolean if a field has been set.

func (*EventSubscription1) HasDnaiChgType ¶

func (o *EventSubscription1) HasDnaiChgType() bool

HasDnaiChgType returns a boolean if a field has been set.

func (*EventSubscription1) HasTargetPeriod ¶

func (o *EventSubscription1) HasTargetPeriod() bool

HasTargetPeriod returns a boolean if a field has been set.

func (*EventSubscription1) HasTransacDispInd ¶

func (o *EventSubscription1) HasTransacDispInd() bool

HasTransacDispInd returns a boolean if a field has been set.

func (*EventSubscription1) HasTransacMetrics ¶

func (o *EventSubscription1) HasTransacMetrics() bool

HasTransacMetrics returns a boolean if a field has been set.

func (*EventSubscription1) HasUeIpAddr ¶

func (o *EventSubscription1) HasUeIpAddr() bool

HasUeIpAddr returns a boolean if a field has been set.

func (EventSubscription1) MarshalJSON ¶

func (o EventSubscription1) MarshalJSON() ([]byte, error)

func (*EventSubscription1) SetAppIds ¶

func (o *EventSubscription1) SetAppIds(v []string)

SetAppIds gets a reference to the given []string and assigns it to the AppIds field.

func (*EventSubscription1) SetDddStati ¶

func (o *EventSubscription1) SetDddStati(v []DlDataDeliveryStatus)

SetDddStati gets a reference to the given []DlDataDeliveryStatus and assigns it to the DddStati field.

func (*EventSubscription1) SetDddTraDescriptors ¶

func (o *EventSubscription1) SetDddTraDescriptors(v []DddTrafficDescriptor)

SetDddTraDescriptors gets a reference to the given []DddTrafficDescriptor and assigns it to the DddTraDescriptors field.

func (*EventSubscription1) SetDnaiChgType ¶

func (o *EventSubscription1) SetDnaiChgType(v DnaiChangeType)

SetDnaiChgType gets a reference to the given DnaiChangeType and assigns it to the DnaiChgType field.

func (*EventSubscription1) SetEvent ¶

func (o *EventSubscription1) SetEvent(v SmfEvent)

SetEvent sets field value

func (*EventSubscription1) SetTargetPeriod ¶

func (o *EventSubscription1) SetTargetPeriod(v TimeWindow)

SetTargetPeriod gets a reference to the given TimeWindow and assigns it to the TargetPeriod field.

func (*EventSubscription1) SetTransacDispInd ¶

func (o *EventSubscription1) SetTransacDispInd(v bool)

SetTransacDispInd gets a reference to the given bool and assigns it to the TransacDispInd field.

func (*EventSubscription1) SetTransacMetrics ¶

func (o *EventSubscription1) SetTransacMetrics(v []TransactionMetric)

SetTransacMetrics gets a reference to the given []TransactionMetric and assigns it to the TransacMetrics field.

func (*EventSubscription1) SetUeIpAddr ¶

func (o *EventSubscription1) SetUeIpAddr(v IpAddr)

SetUeIpAddr gets a reference to the given IpAddr and assigns it to the UeIpAddr field.

func (EventSubscription1) ToMap ¶

func (o EventSubscription1) ToMap() (map[string]interface{}, error)

type EventType ¶

type EventType struct {
	String *string
}

EventType struct for EventType

func (*EventType) MarshalJSON ¶

func (src *EventType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*EventType) UnmarshalJSON ¶

func (dst *EventType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type EventsSubs ¶

type EventsSubs struct {
	Event       AfEvent     `json:"event"`
	EventFilter EventFilter `json:"eventFilter"`
}

EventsSubs Represents an event to be subscribed and the related event filter information.

func NewEventsSubs ¶

func NewEventsSubs(event AfEvent, eventFilter EventFilter) *EventsSubs

NewEventsSubs instantiates a new EventsSubs 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 NewEventsSubsWithDefaults ¶

func NewEventsSubsWithDefaults() *EventsSubs

NewEventsSubsWithDefaults instantiates a new EventsSubs 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 (*EventsSubs) GetEvent ¶

func (o *EventsSubs) GetEvent() AfEvent

GetEvent returns the Event field value

func (*EventsSubs) GetEventFilter ¶

func (o *EventsSubs) GetEventFilter() EventFilter

GetEventFilter returns the EventFilter field value

func (*EventsSubs) GetEventFilterOk ¶

func (o *EventsSubs) GetEventFilterOk() (*EventFilter, bool)

GetEventFilterOk returns a tuple with the EventFilter field value and a boolean to check if the value has been set.

func (*EventsSubs) GetEventOk ¶

func (o *EventsSubs) GetEventOk() (*AfEvent, bool)

GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.

func (EventsSubs) MarshalJSON ¶

func (o EventsSubs) MarshalJSON() ([]byte, error)

func (*EventsSubs) SetEvent ¶

func (o *EventsSubs) SetEvent(v AfEvent)

SetEvent sets field value

func (*EventsSubs) SetEventFilter ¶

func (o *EventsSubs) SetEventFilter(v EventFilter)

SetEventFilter sets field value

func (EventsSubs) ToMap ¶

func (o EventsSubs) ToMap() (map[string]interface{}, error)

type Exception ¶

type Exception struct {
	ExcepId    ExceptionId     `json:"excepId"`
	ExcepLevel *int32          `json:"excepLevel,omitempty"`
	ExcepTrend *ExceptionTrend `json:"excepTrend,omitempty"`
}

Exception Represents the Exception information.

func NewException ¶

func NewException(excepId ExceptionId) *Exception

NewException instantiates a new Exception 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 NewExceptionWithDefaults ¶

func NewExceptionWithDefaults() *Exception

NewExceptionWithDefaults instantiates a new Exception 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 (*Exception) GetExcepId ¶

func (o *Exception) GetExcepId() ExceptionId

GetExcepId returns the ExcepId field value

func (*Exception) GetExcepIdOk ¶

func (o *Exception) GetExcepIdOk() (*ExceptionId, bool)

GetExcepIdOk returns a tuple with the ExcepId field value and a boolean to check if the value has been set.

func (*Exception) GetExcepLevel ¶

func (o *Exception) GetExcepLevel() int32

GetExcepLevel returns the ExcepLevel field value if set, zero value otherwise.

func (*Exception) GetExcepLevelOk ¶

func (o *Exception) GetExcepLevelOk() (*int32, bool)

GetExcepLevelOk returns a tuple with the ExcepLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Exception) GetExcepTrend ¶

func (o *Exception) GetExcepTrend() ExceptionTrend

GetExcepTrend returns the ExcepTrend field value if set, zero value otherwise.

func (*Exception) GetExcepTrendOk ¶

func (o *Exception) GetExcepTrendOk() (*ExceptionTrend, bool)

GetExcepTrendOk returns a tuple with the ExcepTrend field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Exception) HasExcepLevel ¶

func (o *Exception) HasExcepLevel() bool

HasExcepLevel returns a boolean if a field has been set.

func (*Exception) HasExcepTrend ¶

func (o *Exception) HasExcepTrend() bool

HasExcepTrend returns a boolean if a field has been set.

func (Exception) MarshalJSON ¶

func (o Exception) MarshalJSON() ([]byte, error)

func (*Exception) SetExcepId ¶

func (o *Exception) SetExcepId(v ExceptionId)

SetExcepId sets field value

func (*Exception) SetExcepLevel ¶

func (o *Exception) SetExcepLevel(v int32)

SetExcepLevel gets a reference to the given int32 and assigns it to the ExcepLevel field.

func (*Exception) SetExcepTrend ¶

func (o *Exception) SetExcepTrend(v ExceptionTrend)

SetExcepTrend gets a reference to the given ExceptionTrend and assigns it to the ExcepTrend field.

func (Exception) ToMap ¶

func (o Exception) ToMap() (map[string]interface{}, error)

type ExceptionId ¶

type ExceptionId struct {
	String *string
}

ExceptionId Possible values are: - UNEXPECTED_UE_LOCATION: Unexpected UE location - UNEXPECTED_LONG_LIVE_FLOW: Unexpected long-live rate flows - UNEXPECTED_LARGE_RATE_FLOW: Unexpected large rate flows - UNEXPECTED_WAKEUP: Unexpected wakeup - SUSPICION_OF_DDOS_ATTACK: Suspicion of DDoS attack - WRONG_DESTINATION_ADDRESS: Wrong destination address - TOO_FREQUENT_SERVICE_ACCESS: Too frequent Service Access - UNEXPECTED_RADIO_LINK_FAILURES: Unexpected radio link failures - PING_PONG_ACROSS_CELLS: Ping-ponging across neighbouring cells

func (*ExceptionId) MarshalJSON ¶

func (src *ExceptionId) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ExceptionId) UnmarshalJSON ¶

func (dst *ExceptionId) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ExceptionInfo ¶

type ExceptionInfo struct {
	Interface *interface{}
}

ExceptionInfo - Represents the exceptions information provided by the AF.

func InterfaceAsExceptionInfo ¶

func InterfaceAsExceptionInfo(v *interface{}) ExceptionInfo

interface{}AsExceptionInfo is a convenience function that returns interface{} wrapped in ExceptionInfo

func (*ExceptionInfo) GetActualInstance ¶

func (obj *ExceptionInfo) GetActualInstance() interface{}

Get the actual instance

func (ExceptionInfo) MarshalJSON ¶

func (src ExceptionInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ExceptionInfo) UnmarshalJSON ¶

func (dst *ExceptionInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ExceptionTrend ¶

type ExceptionTrend struct {
	String *string
}

ExceptionTrend Possible values are: - UP: Up trend of the exception level. - DOWN: Down trend of the exception level. - UNKNOW: Unknown trend of the exception level. - STABLE: Stable trend of the exception level.

func (*ExceptionTrend) MarshalJSON ¶

func (src *ExceptionTrend) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ExceptionTrend) UnmarshalJSON ¶

func (dst *ExceptionTrend) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ExpectedAnalyticsType ¶

type ExpectedAnalyticsType struct {
	String *string
}

ExpectedAnalyticsType Possible values are: - MOBILITY: Mobility related abnormal behaviour analytics is expected by the consumer. - COMMUN: Communication related abnormal behaviour analytics is expected by the consumer. - MOBILITY_AND_COMMUN: Both mobility and communication related abnormal behaviour analytics is expected by the consumer.

func (*ExpectedAnalyticsType) MarshalJSON ¶

func (src *ExpectedAnalyticsType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ExpectedAnalyticsType) UnmarshalJSON ¶

func (dst *ExpectedAnalyticsType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ExpectedUeBehaviourData ¶

type ExpectedUeBehaviourData struct {
	StationaryIndication *StationaryIndication `json:"stationaryIndication,omitempty"`
	// indicating a time in seconds.
	CommunicationDurationTime *int32 `json:"communicationDurationTime,omitempty"`
	// indicating a time in seconds.
	PeriodicTime               *int32                       `json:"periodicTime,omitempty"`
	ScheduledCommunicationTime *ScheduledCommunicationTime1 `json:"scheduledCommunicationTime,omitempty"`
	ScheduledCommunicationType *ScheduledCommunicationType  `json:"scheduledCommunicationType,omitempty"`
	// Identifies the UE's expected geographical movement. The attribute is only applicable in 5G.
	ExpectedUmts      []LocationArea     `json:"expectedUmts,omitempty"`
	TrafficProfile    *TrafficProfile    `json:"trafficProfile,omitempty"`
	BatteryIndication *BatteryIndication `json:"batteryIndication,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	ValidityTime *time.Time `json:"validityTime,omitempty"`
}

ExpectedUeBehaviourData struct for ExpectedUeBehaviourData

func NewExpectedUeBehaviourData ¶

func NewExpectedUeBehaviourData() *ExpectedUeBehaviourData

NewExpectedUeBehaviourData instantiates a new ExpectedUeBehaviourData 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 NewExpectedUeBehaviourDataWithDefaults ¶

func NewExpectedUeBehaviourDataWithDefaults() *ExpectedUeBehaviourData

NewExpectedUeBehaviourDataWithDefaults instantiates a new ExpectedUeBehaviourData 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 (*ExpectedUeBehaviourData) GetBatteryIndication ¶

func (o *ExpectedUeBehaviourData) GetBatteryIndication() BatteryIndication

GetBatteryIndication returns the BatteryIndication field value if set, zero value otherwise.

func (*ExpectedUeBehaviourData) GetBatteryIndicationOk ¶

func (o *ExpectedUeBehaviourData) GetBatteryIndicationOk() (*BatteryIndication, bool)

GetBatteryIndicationOk returns a tuple with the BatteryIndication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpectedUeBehaviourData) GetCommunicationDurationTime ¶

func (o *ExpectedUeBehaviourData) GetCommunicationDurationTime() int32

GetCommunicationDurationTime returns the CommunicationDurationTime field value if set, zero value otherwise.

func (*ExpectedUeBehaviourData) GetCommunicationDurationTimeOk ¶

func (o *ExpectedUeBehaviourData) GetCommunicationDurationTimeOk() (*int32, bool)

GetCommunicationDurationTimeOk returns a tuple with the CommunicationDurationTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpectedUeBehaviourData) GetExpectedUmts ¶

func (o *ExpectedUeBehaviourData) GetExpectedUmts() []LocationArea

GetExpectedUmts returns the ExpectedUmts field value if set, zero value otherwise.

func (*ExpectedUeBehaviourData) GetExpectedUmtsOk ¶

func (o *ExpectedUeBehaviourData) GetExpectedUmtsOk() ([]LocationArea, bool)

GetExpectedUmtsOk returns a tuple with the ExpectedUmts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpectedUeBehaviourData) GetPeriodicTime ¶

func (o *ExpectedUeBehaviourData) GetPeriodicTime() int32

GetPeriodicTime returns the PeriodicTime field value if set, zero value otherwise.

func (*ExpectedUeBehaviourData) GetPeriodicTimeOk ¶

func (o *ExpectedUeBehaviourData) GetPeriodicTimeOk() (*int32, bool)

GetPeriodicTimeOk returns a tuple with the PeriodicTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpectedUeBehaviourData) GetScheduledCommunicationTime ¶

func (o *ExpectedUeBehaviourData) GetScheduledCommunicationTime() ScheduledCommunicationTime1

GetScheduledCommunicationTime returns the ScheduledCommunicationTime field value if set, zero value otherwise.

func (*ExpectedUeBehaviourData) GetScheduledCommunicationTimeOk ¶

func (o *ExpectedUeBehaviourData) GetScheduledCommunicationTimeOk() (*ScheduledCommunicationTime1, bool)

GetScheduledCommunicationTimeOk returns a tuple with the ScheduledCommunicationTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpectedUeBehaviourData) GetScheduledCommunicationType ¶

func (o *ExpectedUeBehaviourData) GetScheduledCommunicationType() ScheduledCommunicationType

GetScheduledCommunicationType returns the ScheduledCommunicationType field value if set, zero value otherwise.

func (*ExpectedUeBehaviourData) GetScheduledCommunicationTypeOk ¶

func (o *ExpectedUeBehaviourData) GetScheduledCommunicationTypeOk() (*ScheduledCommunicationType, bool)

GetScheduledCommunicationTypeOk returns a tuple with the ScheduledCommunicationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpectedUeBehaviourData) GetStationaryIndication ¶

func (o *ExpectedUeBehaviourData) GetStationaryIndication() StationaryIndication

GetStationaryIndication returns the StationaryIndication field value if set, zero value otherwise.

func (*ExpectedUeBehaviourData) GetStationaryIndicationOk ¶

func (o *ExpectedUeBehaviourData) GetStationaryIndicationOk() (*StationaryIndication, bool)

GetStationaryIndicationOk returns a tuple with the StationaryIndication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpectedUeBehaviourData) GetTrafficProfile ¶

func (o *ExpectedUeBehaviourData) GetTrafficProfile() TrafficProfile

GetTrafficProfile returns the TrafficProfile field value if set, zero value otherwise.

func (*ExpectedUeBehaviourData) GetTrafficProfileOk ¶

func (o *ExpectedUeBehaviourData) GetTrafficProfileOk() (*TrafficProfile, bool)

GetTrafficProfileOk returns a tuple with the TrafficProfile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpectedUeBehaviourData) GetValidityTime ¶

func (o *ExpectedUeBehaviourData) GetValidityTime() time.Time

GetValidityTime returns the ValidityTime field value if set, zero value otherwise.

func (*ExpectedUeBehaviourData) GetValidityTimeOk ¶

func (o *ExpectedUeBehaviourData) GetValidityTimeOk() (*time.Time, bool)

GetValidityTimeOk returns a tuple with the ValidityTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpectedUeBehaviourData) HasBatteryIndication ¶

func (o *ExpectedUeBehaviourData) HasBatteryIndication() bool

HasBatteryIndication returns a boolean if a field has been set.

func (*ExpectedUeBehaviourData) HasCommunicationDurationTime ¶

func (o *ExpectedUeBehaviourData) HasCommunicationDurationTime() bool

HasCommunicationDurationTime returns a boolean if a field has been set.

func (*ExpectedUeBehaviourData) HasExpectedUmts ¶

func (o *ExpectedUeBehaviourData) HasExpectedUmts() bool

HasExpectedUmts returns a boolean if a field has been set.

func (*ExpectedUeBehaviourData) HasPeriodicTime ¶

func (o *ExpectedUeBehaviourData) HasPeriodicTime() bool

HasPeriodicTime returns a boolean if a field has been set.

func (*ExpectedUeBehaviourData) HasScheduledCommunicationTime ¶

func (o *ExpectedUeBehaviourData) HasScheduledCommunicationTime() bool

HasScheduledCommunicationTime returns a boolean if a field has been set.

func (*ExpectedUeBehaviourData) HasScheduledCommunicationType ¶

func (o *ExpectedUeBehaviourData) HasScheduledCommunicationType() bool

HasScheduledCommunicationType returns a boolean if a field has been set.

func (*ExpectedUeBehaviourData) HasStationaryIndication ¶

func (o *ExpectedUeBehaviourData) HasStationaryIndication() bool

HasStationaryIndication returns a boolean if a field has been set.

func (*ExpectedUeBehaviourData) HasTrafficProfile ¶

func (o *ExpectedUeBehaviourData) HasTrafficProfile() bool

HasTrafficProfile returns a boolean if a field has been set.

func (*ExpectedUeBehaviourData) HasValidityTime ¶

func (o *ExpectedUeBehaviourData) HasValidityTime() bool

HasValidityTime returns a boolean if a field has been set.

func (ExpectedUeBehaviourData) MarshalJSON ¶

func (o ExpectedUeBehaviourData) MarshalJSON() ([]byte, error)

func (*ExpectedUeBehaviourData) SetBatteryIndication ¶

func (o *ExpectedUeBehaviourData) SetBatteryIndication(v BatteryIndication)

SetBatteryIndication gets a reference to the given BatteryIndication and assigns it to the BatteryIndication field.

func (*ExpectedUeBehaviourData) SetCommunicationDurationTime ¶

func (o *ExpectedUeBehaviourData) SetCommunicationDurationTime(v int32)

SetCommunicationDurationTime gets a reference to the given int32 and assigns it to the CommunicationDurationTime field.

func (*ExpectedUeBehaviourData) SetExpectedUmts ¶

func (o *ExpectedUeBehaviourData) SetExpectedUmts(v []LocationArea)

SetExpectedUmts gets a reference to the given []LocationArea and assigns it to the ExpectedUmts field.

func (*ExpectedUeBehaviourData) SetPeriodicTime ¶

func (o *ExpectedUeBehaviourData) SetPeriodicTime(v int32)

SetPeriodicTime gets a reference to the given int32 and assigns it to the PeriodicTime field.

func (*ExpectedUeBehaviourData) SetScheduledCommunicationTime ¶

func (o *ExpectedUeBehaviourData) SetScheduledCommunicationTime(v ScheduledCommunicationTime1)

SetScheduledCommunicationTime gets a reference to the given ScheduledCommunicationTime1 and assigns it to the ScheduledCommunicationTime field.

func (*ExpectedUeBehaviourData) SetScheduledCommunicationType ¶

func (o *ExpectedUeBehaviourData) SetScheduledCommunicationType(v ScheduledCommunicationType)

SetScheduledCommunicationType gets a reference to the given ScheduledCommunicationType and assigns it to the ScheduledCommunicationType field.

func (*ExpectedUeBehaviourData) SetStationaryIndication ¶

func (o *ExpectedUeBehaviourData) SetStationaryIndication(v StationaryIndication)

SetStationaryIndication gets a reference to the given StationaryIndication and assigns it to the StationaryIndication field.

func (*ExpectedUeBehaviourData) SetTrafficProfile ¶

func (o *ExpectedUeBehaviourData) SetTrafficProfile(v TrafficProfile)

SetTrafficProfile gets a reference to the given TrafficProfile and assigns it to the TrafficProfile field.

func (*ExpectedUeBehaviourData) SetValidityTime ¶

func (o *ExpectedUeBehaviourData) SetValidityTime(v time.Time)

SetValidityTime gets a reference to the given time.Time and assigns it to the ValidityTime field.

func (ExpectedUeBehaviourData) ToMap ¶

func (o ExpectedUeBehaviourData) ToMap() (map[string]interface{}, error)

type ExtSnssai ¶

type ExtSnssai struct {
	Snssai
	// When present, it shall contain the range(s) of Slice Differentiator values supported for the Slice/Service Type value indicated in the sst attribute of the Snssai data type
	SdRanges []SdRange `json:"sdRanges,omitempty"`
	// When present, it shall be set to true, to indicate that all SD values are supported for the Slice/Service Type value indicated in the sst attribute of the Snssai data type.
	WildcardSd *bool `json:"wildcardSd,omitempty"`
}

ExtSnssai The sdRanges and wildcardSd attributes shall be exclusive from each other. If one of these attributes is present, the sd attribute shall also be present and it shall contain one Slice Differentiator value within the range of SD (if the sdRanges attribute is present) or with any value (if the wildcardSd attribute is present).

func NewExtSnssai ¶

func NewExtSnssai(sst int32) *ExtSnssai

NewExtSnssai instantiates a new ExtSnssai 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 NewExtSnssaiWithDefaults ¶

func NewExtSnssaiWithDefaults() *ExtSnssai

NewExtSnssaiWithDefaults instantiates a new ExtSnssai 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 (*ExtSnssai) GetSdRanges ¶

func (o *ExtSnssai) GetSdRanges() []SdRange

GetSdRanges returns the SdRanges field value if set, zero value otherwise.

func (*ExtSnssai) GetSdRangesOk ¶

func (o *ExtSnssai) GetSdRangesOk() ([]SdRange, bool)

GetSdRangesOk returns a tuple with the SdRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtSnssai) GetWildcardSd ¶

func (o *ExtSnssai) GetWildcardSd() bool

GetWildcardSd returns the WildcardSd field value if set, zero value otherwise.

func (*ExtSnssai) GetWildcardSdOk ¶

func (o *ExtSnssai) GetWildcardSdOk() (*bool, bool)

GetWildcardSdOk returns a tuple with the WildcardSd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtSnssai) HasSdRanges ¶

func (o *ExtSnssai) HasSdRanges() bool

HasSdRanges returns a boolean if a field has been set.

func (*ExtSnssai) HasWildcardSd ¶

func (o *ExtSnssai) HasWildcardSd() bool

HasWildcardSd returns a boolean if a field has been set.

func (ExtSnssai) MarshalJSON ¶

func (o ExtSnssai) MarshalJSON() ([]byte, error)

func (*ExtSnssai) SetSdRanges ¶

func (o *ExtSnssai) SetSdRanges(v []SdRange)

SetSdRanges gets a reference to the given []SdRange and assigns it to the SdRanges field.

func (*ExtSnssai) SetWildcardSd ¶

func (o *ExtSnssai) SetWildcardSd(v bool)

SetWildcardSd gets a reference to the given bool and assigns it to the WildcardSd field.

func (ExtSnssai) ToMap ¶

func (o ExtSnssai) ToMap() (map[string]interface{}, error)

type ExternalClientType ¶

type ExternalClientType struct {
	String *string
}

ExternalClientType Indicates types of External Clients.

func (*ExternalClientType) MarshalJSON ¶

func (src *ExternalClientType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ExternalClientType) UnmarshalJSON ¶

func (dst *ExternalClientType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type FailureEventInfo ¶

type FailureEventInfo struct {
	Event       NwdafEvent       `json:"event"`
	FailureCode NwdafFailureCode `json:"failureCode"`
}

FailureEventInfo Contains information on the event for which the subscription is not successful.

func NewFailureEventInfo ¶

func NewFailureEventInfo(event NwdafEvent, failureCode NwdafFailureCode) *FailureEventInfo

NewFailureEventInfo instantiates a new FailureEventInfo 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 NewFailureEventInfoWithDefaults ¶

func NewFailureEventInfoWithDefaults() *FailureEventInfo

NewFailureEventInfoWithDefaults instantiates a new FailureEventInfo 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 (*FailureEventInfo) GetEvent ¶

func (o *FailureEventInfo) GetEvent() NwdafEvent

GetEvent returns the Event field value

func (*FailureEventInfo) GetEventOk ¶

func (o *FailureEventInfo) GetEventOk() (*NwdafEvent, bool)

GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.

func (*FailureEventInfo) GetFailureCode ¶

func (o *FailureEventInfo) GetFailureCode() NwdafFailureCode

GetFailureCode returns the FailureCode field value

func (*FailureEventInfo) GetFailureCodeOk ¶

func (o *FailureEventInfo) GetFailureCodeOk() (*NwdafFailureCode, bool)

GetFailureCodeOk returns a tuple with the FailureCode field value and a boolean to check if the value has been set.

func (FailureEventInfo) MarshalJSON ¶

func (o FailureEventInfo) MarshalJSON() ([]byte, error)

func (*FailureEventInfo) SetEvent ¶

func (o *FailureEventInfo) SetEvent(v NwdafEvent)

SetEvent sets field value

func (*FailureEventInfo) SetFailureCode ¶

func (o *FailureEventInfo) SetFailureCode(v NwdafFailureCode)

SetFailureCode sets field value

func (FailureEventInfo) ToMap ¶

func (o FailureEventInfo) ToMap() (map[string]interface{}, error)

type FetchInstruction ¶

type FetchInstruction struct {
	// String providing an URI formatted according to RFC 3986.
	FetchUri string `json:"fetchUri"`
	// The fetch correlation identifier(s) of the MFAF Data or Analytics.
	FetchCorrIds []string `json:"fetchCorrIds"`
	// string with format 'date-time' as defined in OpenAPI.
	Expiry *time.Time `json:"expiry,omitempty"`
}

FetchInstruction The fetch instructions indicate whether the data or analytics are to be fetched by the consumer.

func NewFetchInstruction ¶

func NewFetchInstruction(fetchUri string, fetchCorrIds []string) *FetchInstruction

NewFetchInstruction instantiates a new FetchInstruction 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 NewFetchInstructionWithDefaults ¶

func NewFetchInstructionWithDefaults() *FetchInstruction

NewFetchInstructionWithDefaults instantiates a new FetchInstruction 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 (*FetchInstruction) GetExpiry ¶

func (o *FetchInstruction) GetExpiry() time.Time

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*FetchInstruction) GetExpiryOk ¶

func (o *FetchInstruction) GetExpiryOk() (*time.Time, bool)

GetExpiryOk returns a tuple with the Expiry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FetchInstruction) GetFetchCorrIds ¶

func (o *FetchInstruction) GetFetchCorrIds() []string

GetFetchCorrIds returns the FetchCorrIds field value

func (*FetchInstruction) GetFetchCorrIdsOk ¶

func (o *FetchInstruction) GetFetchCorrIdsOk() ([]string, bool)

GetFetchCorrIdsOk returns a tuple with the FetchCorrIds field value and a boolean to check if the value has been set.

func (*FetchInstruction) GetFetchUri ¶

func (o *FetchInstruction) GetFetchUri() string

GetFetchUri returns the FetchUri field value

func (*FetchInstruction) GetFetchUriOk ¶

func (o *FetchInstruction) GetFetchUriOk() (*string, bool)

GetFetchUriOk returns a tuple with the FetchUri field value and a boolean to check if the value has been set.

func (*FetchInstruction) HasExpiry ¶

func (o *FetchInstruction) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (FetchInstruction) MarshalJSON ¶

func (o FetchInstruction) MarshalJSON() ([]byte, error)

func (*FetchInstruction) SetExpiry ¶

func (o *FetchInstruction) SetExpiry(v time.Time)

SetExpiry gets a reference to the given time.Time and assigns it to the Expiry field.

func (*FetchInstruction) SetFetchCorrIds ¶

func (o *FetchInstruction) SetFetchCorrIds(v []string)

SetFetchCorrIds sets field value

func (*FetchInstruction) SetFetchUri ¶

func (o *FetchInstruction) SetFetchUri(v string)

SetFetchUri sets field value

func (FetchInstruction) ToMap ¶

func (o FetchInstruction) ToMap() (map[string]interface{}, error)

type FlowDirection ¶

type FlowDirection struct {
	String *string
}

FlowDirection Possible values are: - DOWNLINK: The corresponding filter applies for traffic to the UE. - UPLINK: The corresponding filter applies for traffic from the UE. - BIDIRECTIONAL: The corresponding filter applies for traffic both to and from the UE. - UNSPECIFIED: The corresponding filter applies for traffic to the UE (downlink), but has no specific direction declared. The service data flow detection shall apply the filter for uplink traffic as if the filter was bidirectional. The PCF shall not use the value UNSPECIFIED in filters created by the network in NW-initiated procedures. The PCF shall only include the value UNSPECIFIED in filters in UE-initiated procedures if the same value is received from the SMF.

func (*FlowDirection) MarshalJSON ¶

func (src *FlowDirection) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*FlowDirection) UnmarshalJSON ¶

func (dst *FlowDirection) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type FlowInfo ¶

type FlowInfo struct {
	// Indicates the IP flow identifier.
	FlowId int32 `json:"flowId"`
	// Indicates the packet filters of the IP flow. Refer to clause 5.3.8 of 3GPP TS 29.214 for encoding. It shall contain UL and/or DL IP flow description.
	FlowDescriptions []string `json:"flowDescriptions,omitempty"`
}

FlowInfo Represents IP flow information.

func NewFlowInfo ¶

func NewFlowInfo(flowId int32) *FlowInfo

NewFlowInfo instantiates a new FlowInfo 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 NewFlowInfoWithDefaults ¶

func NewFlowInfoWithDefaults() *FlowInfo

NewFlowInfoWithDefaults instantiates a new FlowInfo 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 (*FlowInfo) GetFlowDescriptions ¶

func (o *FlowInfo) GetFlowDescriptions() []string

GetFlowDescriptions returns the FlowDescriptions field value if set, zero value otherwise.

func (*FlowInfo) GetFlowDescriptionsOk ¶

func (o *FlowInfo) GetFlowDescriptionsOk() ([]string, bool)

GetFlowDescriptionsOk returns a tuple with the FlowDescriptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FlowInfo) GetFlowId ¶

func (o *FlowInfo) GetFlowId() int32

GetFlowId returns the FlowId field value

func (*FlowInfo) GetFlowIdOk ¶

func (o *FlowInfo) GetFlowIdOk() (*int32, bool)

GetFlowIdOk returns a tuple with the FlowId field value and a boolean to check if the value has been set.

func (*FlowInfo) HasFlowDescriptions ¶

func (o *FlowInfo) HasFlowDescriptions() bool

HasFlowDescriptions returns a boolean if a field has been set.

func (FlowInfo) MarshalJSON ¶

func (o FlowInfo) MarshalJSON() ([]byte, error)

func (*FlowInfo) SetFlowDescriptions ¶

func (o *FlowInfo) SetFlowDescriptions(v []string)

SetFlowDescriptions gets a reference to the given []string and assigns it to the FlowDescriptions field.

func (*FlowInfo) SetFlowId ¶

func (o *FlowInfo) SetFlowId(v int32)

SetFlowId sets field value

func (FlowInfo) ToMap ¶

func (o FlowInfo) ToMap() (map[string]interface{}, error)

type FormattingInstruction ¶

type FormattingInstruction struct {
	// Indicates that notifications shall be buffered until the NF service consumer requests their delivery.
	ConsTrigNotif    *bool             `json:"consTrigNotif,omitempty"`
	ReportingOptions *ReportingOptions `json:"reportingOptions,omitempty"`
}

FormattingInstruction Contains data or analytics formatting instructions.

func NewFormattingInstruction ¶

func NewFormattingInstruction() *FormattingInstruction

NewFormattingInstruction instantiates a new FormattingInstruction 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 NewFormattingInstructionWithDefaults ¶

func NewFormattingInstructionWithDefaults() *FormattingInstruction

NewFormattingInstructionWithDefaults instantiates a new FormattingInstruction 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 (*FormattingInstruction) GetConsTrigNotif ¶

func (o *FormattingInstruction) GetConsTrigNotif() bool

GetConsTrigNotif returns the ConsTrigNotif field value if set, zero value otherwise.

func (*FormattingInstruction) GetConsTrigNotifOk ¶

func (o *FormattingInstruction) GetConsTrigNotifOk() (*bool, bool)

GetConsTrigNotifOk returns a tuple with the ConsTrigNotif field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FormattingInstruction) GetReportingOptions ¶

func (o *FormattingInstruction) GetReportingOptions() ReportingOptions

GetReportingOptions returns the ReportingOptions field value if set, zero value otherwise.

func (*FormattingInstruction) GetReportingOptionsOk ¶

func (o *FormattingInstruction) GetReportingOptionsOk() (*ReportingOptions, bool)

GetReportingOptionsOk returns a tuple with the ReportingOptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FormattingInstruction) HasConsTrigNotif ¶

func (o *FormattingInstruction) HasConsTrigNotif() bool

HasConsTrigNotif returns a boolean if a field has been set.

func (*FormattingInstruction) HasReportingOptions ¶

func (o *FormattingInstruction) HasReportingOptions() bool

HasReportingOptions returns a boolean if a field has been set.

func (FormattingInstruction) MarshalJSON ¶

func (o FormattingInstruction) MarshalJSON() ([]byte, error)

func (*FormattingInstruction) SetConsTrigNotif ¶

func (o *FormattingInstruction) SetConsTrigNotif(v bool)

SetConsTrigNotif gets a reference to the given bool and assigns it to the ConsTrigNotif field.

func (*FormattingInstruction) SetReportingOptions ¶

func (o *FormattingInstruction) SetReportingOptions(v ReportingOptions)

SetReportingOptions gets a reference to the given ReportingOptions and assigns it to the ReportingOptions field.

func (FormattingInstruction) ToMap ¶

func (o FormattingInstruction) ToMap() (map[string]interface{}, error)

type GADShape ¶

type GADShape struct {
	Shape SupportedGADShapes `json:"shape"`
}

GADShape Common base type for GAD shapes.

func NewGADShape ¶

func NewGADShape(shape SupportedGADShapes) *GADShape

NewGADShape instantiates a new GADShape 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 NewGADShapeWithDefaults ¶

func NewGADShapeWithDefaults() *GADShape

NewGADShapeWithDefaults instantiates a new GADShape 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 (*GADShape) GetShape ¶

func (o *GADShape) GetShape() SupportedGADShapes

GetShape returns the Shape field value

func (*GADShape) GetShapeOk ¶

func (o *GADShape) GetShapeOk() (*SupportedGADShapes, bool)

GetShapeOk returns a tuple with the Shape field value and a boolean to check if the value has been set.

func (GADShape) MarshalJSON ¶

func (o GADShape) MarshalJSON() ([]byte, error)

func (*GADShape) SetShape ¶

func (o *GADShape) SetShape(v SupportedGADShapes)

SetShape sets field value

func (GADShape) ToMap ¶

func (o GADShape) ToMap() (map[string]interface{}, error)

type GNbId ¶

type GNbId struct {
	// Unsigned integer representing the bit length of the gNB ID as defined in clause 9.3.1.6 of 3GPP TS 38.413 [11], within the range 22 to 32.
	BitLength int32 `json:"bitLength"`
	// This represents the identifier of the gNB. The value of the gNB ID shall be encoded in hexadecimal representation. Each character in the string shall take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The padding 0 shall be added to make multiple nibbles,  the most significant character representing the padding 0 if required together with the 4 most significant bits of the gNB ID shall appear first in the string, and the character representing the 4 least significant bit of the gNB ID shall appear last in the string.
	GNBValue string `json:"gNBValue"`
}

GNbId Provides the G-NB identifier.

func NewGNbId ¶

func NewGNbId(bitLength int32, gNBValue string) *GNbId

NewGNbId instantiates a new GNbId 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 NewGNbIdWithDefaults ¶

func NewGNbIdWithDefaults() *GNbId

NewGNbIdWithDefaults instantiates a new GNbId 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 (*GNbId) GetBitLength ¶

func (o *GNbId) GetBitLength() int32

GetBitLength returns the BitLength field value

func (*GNbId) GetBitLengthOk ¶

func (o *GNbId) GetBitLengthOk() (*int32, bool)

GetBitLengthOk returns a tuple with the BitLength field value and a boolean to check if the value has been set.

func (*GNbId) GetGNBValue ¶

func (o *GNbId) GetGNBValue() string

GetGNBValue returns the GNBValue field value

func (*GNbId) GetGNBValueOk ¶

func (o *GNbId) GetGNBValueOk() (*string, bool)

GetGNBValueOk returns a tuple with the GNBValue field value and a boolean to check if the value has been set.

func (GNbId) MarshalJSON ¶

func (o GNbId) MarshalJSON() ([]byte, error)

func (*GNbId) SetBitLength ¶

func (o *GNbId) SetBitLength(v int32)

SetBitLength sets field value

func (*GNbId) SetGNBValue ¶

func (o *GNbId) SetGNBValue(v string)

SetGNBValue sets field value

func (GNbId) ToMap ¶

func (o GNbId) ToMap() (map[string]interface{}, error)

type GenericOpenAPIError ¶

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body ¶

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error ¶

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model ¶

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GeographicArea ¶

type GeographicArea struct {
	EllipsoidArc             *EllipsoidArc
	Point                    *Point
	PointAltitude            *PointAltitude
	PointAltitudeUncertainty *PointAltitudeUncertainty
	PointUncertaintyCircle   *PointUncertaintyCircle
	PointUncertaintyEllipse  *PointUncertaintyEllipse
	Polygon                  *Polygon
}

GeographicArea Geographic area specified by different shape.

func (*GeographicArea) MarshalJSON ¶

func (src *GeographicArea) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GeographicArea) UnmarshalJSON ¶

func (dst *GeographicArea) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type GeographicalCoordinates ¶

type GeographicalCoordinates struct {
	Lon float64 `json:"lon"`
	Lat float64 `json:"lat"`
}

GeographicalCoordinates Geographical coordinates.

func NewGeographicalCoordinates ¶

func NewGeographicalCoordinates(lon float64, lat float64) *GeographicalCoordinates

NewGeographicalCoordinates instantiates a new GeographicalCoordinates 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 NewGeographicalCoordinatesWithDefaults ¶

func NewGeographicalCoordinatesWithDefaults() *GeographicalCoordinates

NewGeographicalCoordinatesWithDefaults instantiates a new GeographicalCoordinates 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 (*GeographicalCoordinates) GetLat ¶

func (o *GeographicalCoordinates) GetLat() float64

GetLat returns the Lat field value

func (*GeographicalCoordinates) GetLatOk ¶

func (o *GeographicalCoordinates) GetLatOk() (*float64, bool)

GetLatOk returns a tuple with the Lat field value and a boolean to check if the value has been set.

func (*GeographicalCoordinates) GetLon ¶

func (o *GeographicalCoordinates) GetLon() float64

GetLon returns the Lon field value

func (*GeographicalCoordinates) GetLonOk ¶

func (o *GeographicalCoordinates) GetLonOk() (*float64, bool)

GetLonOk returns a tuple with the Lon field value and a boolean to check if the value has been set.

func (GeographicalCoordinates) MarshalJSON ¶

func (o GeographicalCoordinates) MarshalJSON() ([]byte, error)

func (*GeographicalCoordinates) SetLat ¶

func (o *GeographicalCoordinates) SetLat(v float64)

SetLat sets field value

func (*GeographicalCoordinates) SetLon ¶

func (o *GeographicalCoordinates) SetLon(v float64)

SetLon sets field value

func (GeographicalCoordinates) ToMap ¶

func (o GeographicalCoordinates) ToMap() (map[string]interface{}, error)

type GeraLocation ¶

type GeraLocation struct {
	Interface *interface{}
}

GeraLocation - Exactly one of cgi, sai or lai shall be present.

func InterfaceAsGeraLocation ¶

func InterfaceAsGeraLocation(v *interface{}) GeraLocation

interface{}AsGeraLocation is a convenience function that returns interface{} wrapped in GeraLocation

func (*GeraLocation) GetActualInstance ¶

func (obj *GeraLocation) GetActualInstance() interface{}

Get the actual instance

func (GeraLocation) MarshalJSON ¶

func (src GeraLocation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GeraLocation) UnmarshalJSON ¶

func (dst *GeraLocation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GlobalRanNodeId ¶

type GlobalRanNodeId struct {
	Interface *interface{}
}

GlobalRanNodeId - One of the six attributes n3IwfId, gNbIdm, ngeNbId, wagfId, tngfId, eNbId shall be present.

func InterfaceAsGlobalRanNodeId ¶

func InterfaceAsGlobalRanNodeId(v *interface{}) GlobalRanNodeId

interface{}AsGlobalRanNodeId is a convenience function that returns interface{} wrapped in GlobalRanNodeId

func (*GlobalRanNodeId) GetActualInstance ¶

func (obj *GlobalRanNodeId) GetActualInstance() interface{}

Get the actual instance

func (GlobalRanNodeId) MarshalJSON ¶

func (src GlobalRanNodeId) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*GlobalRanNodeId) UnmarshalJSON ¶

func (dst *GlobalRanNodeId) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type GmlcInfo ¶

type GmlcInfo struct {
	ServingClientTypes []ExternalClientType `json:"servingClientTypes,omitempty"`
	GmlcNumbers        []string             `json:"gmlcNumbers,omitempty"`
}

GmlcInfo Information of a GMLC NF Instance

func NewGmlcInfo ¶

func NewGmlcInfo() *GmlcInfo

NewGmlcInfo instantiates a new GmlcInfo 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 NewGmlcInfoWithDefaults ¶

func NewGmlcInfoWithDefaults() *GmlcInfo

NewGmlcInfoWithDefaults instantiates a new GmlcInfo 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 (*GmlcInfo) GetGmlcNumbers ¶

func (o *GmlcInfo) GetGmlcNumbers() []string

GetGmlcNumbers returns the GmlcNumbers field value if set, zero value otherwise.

func (*GmlcInfo) GetGmlcNumbersOk ¶

func (o *GmlcInfo) GetGmlcNumbersOk() ([]string, bool)

GetGmlcNumbersOk returns a tuple with the GmlcNumbers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GmlcInfo) GetServingClientTypes ¶

func (o *GmlcInfo) GetServingClientTypes() []ExternalClientType

GetServingClientTypes returns the ServingClientTypes field value if set, zero value otherwise.

func (*GmlcInfo) GetServingClientTypesOk ¶

func (o *GmlcInfo) GetServingClientTypesOk() ([]ExternalClientType, bool)

GetServingClientTypesOk returns a tuple with the ServingClientTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GmlcInfo) HasGmlcNumbers ¶

func (o *GmlcInfo) HasGmlcNumbers() bool

HasGmlcNumbers returns a boolean if a field has been set.

func (*GmlcInfo) HasServingClientTypes ¶

func (o *GmlcInfo) HasServingClientTypes() bool

HasServingClientTypes returns a boolean if a field has been set.

func (GmlcInfo) MarshalJSON ¶

func (o GmlcInfo) MarshalJSON() ([]byte, error)

func (*GmlcInfo) SetGmlcNumbers ¶

func (o *GmlcInfo) SetGmlcNumbers(v []string)

SetGmlcNumbers gets a reference to the given []string and assigns it to the GmlcNumbers field.

func (*GmlcInfo) SetServingClientTypes ¶

func (o *GmlcInfo) SetServingClientTypes(v []ExternalClientType)

SetServingClientTypes gets a reference to the given []ExternalClientType and assigns it to the ServingClientTypes field.

func (GmlcInfo) ToMap ¶

func (o GmlcInfo) ToMap() (map[string]interface{}, error)

type Guami ¶

type Guami struct {
	PlmnId PlmnIdNid `json:"plmnId"`
	// String identifying the AMF ID composed of AMF Region ID (8 bits), AMF Set ID (10 bits) and AMF  Pointer (6 bits) as specified in clause 2.10.1 of 3GPP TS 23.003. It is encoded as a string of  6 hexadecimal characters (i.e., 24 bits).
	AmfId string `json:"amfId"`
}

Guami Globally Unique AMF Identifier constructed out of PLMN, Network and AMF identity.

func NewGuami ¶

func NewGuami(plmnId PlmnIdNid, amfId string) *Guami

NewGuami instantiates a new Guami 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 NewGuamiWithDefaults ¶

func NewGuamiWithDefaults() *Guami

NewGuamiWithDefaults instantiates a new Guami 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 (*Guami) GetAmfId ¶

func (o *Guami) GetAmfId() string

GetAmfId returns the AmfId field value

func (*Guami) GetAmfIdOk ¶

func (o *Guami) GetAmfIdOk() (*string, bool)

GetAmfIdOk returns a tuple with the AmfId field value and a boolean to check if the value has been set.

func (*Guami) GetPlmnId ¶

func (o *Guami) GetPlmnId() PlmnIdNid

GetPlmnId returns the PlmnId field value

func (*Guami) GetPlmnIdOk ¶

func (o *Guami) GetPlmnIdOk() (*PlmnIdNid, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (Guami) MarshalJSON ¶

func (o Guami) MarshalJSON() ([]byte, error)

func (*Guami) SetAmfId ¶

func (o *Guami) SetAmfId(v string)

SetAmfId sets field value

func (*Guami) SetPlmnId ¶

func (o *Guami) SetPlmnId(v PlmnIdNid)

SetPlmnId sets field value

func (Guami) ToMap ¶

func (o Guami) ToMap() (map[string]interface{}, error)

type GuamiListCond ¶

type GuamiListCond struct {
	GuamiList []Guami `json:"guamiList"`
}

GuamiListCond Subscription to a set of AMFs, based on their GUAMIs

func NewGuamiListCond ¶

func NewGuamiListCond(guamiList []Guami) *GuamiListCond

NewGuamiListCond instantiates a new GuamiListCond 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 NewGuamiListCondWithDefaults ¶

func NewGuamiListCondWithDefaults() *GuamiListCond

NewGuamiListCondWithDefaults instantiates a new GuamiListCond 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 (*GuamiListCond) GetGuamiList ¶

func (o *GuamiListCond) GetGuamiList() []Guami

GetGuamiList returns the GuamiList field value

func (*GuamiListCond) GetGuamiListOk ¶

func (o *GuamiListCond) GetGuamiListOk() ([]Guami, bool)

GetGuamiListOk returns a tuple with the GuamiList field value and a boolean to check if the value has been set.

func (GuamiListCond) MarshalJSON ¶

func (o GuamiListCond) MarshalJSON() ([]byte, error)

func (*GuamiListCond) SetGuamiList ¶

func (o *GuamiListCond) SetGuamiList(v []Guami)

SetGuamiList sets field value

func (GuamiListCond) ToMap ¶

func (o GuamiListCond) ToMap() (map[string]interface{}, error)

type HfcNodeId ¶

type HfcNodeId struct {
	// This IE represents the identifier of the HFC node Id as specified in CableLabs WR-TR-5WWC-ARCH. It is provisioned by the wireline operator as part of wireline operations and may contain up to six characters.
	HfcNId string `json:"hfcNId"`
}

HfcNodeId REpresents the HFC Node Identifer received over NGAP.

func NewHfcNodeId ¶

func NewHfcNodeId(hfcNId string) *HfcNodeId

NewHfcNodeId instantiates a new HfcNodeId 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 NewHfcNodeIdWithDefaults ¶

func NewHfcNodeIdWithDefaults() *HfcNodeId

NewHfcNodeIdWithDefaults instantiates a new HfcNodeId 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 (*HfcNodeId) GetHfcNId ¶

func (o *HfcNodeId) GetHfcNId() string

GetHfcNId returns the HfcNId field value

func (*HfcNodeId) GetHfcNIdOk ¶

func (o *HfcNodeId) GetHfcNIdOk() (*string, bool)

GetHfcNIdOk returns a tuple with the HfcNId field value and a boolean to check if the value has been set.

func (HfcNodeId) MarshalJSON ¶

func (o HfcNodeId) MarshalJSON() ([]byte, error)

func (*HfcNodeId) SetHfcNId ¶

func (o *HfcNodeId) SetHfcNId(v string)

SetHfcNId sets field value

func (HfcNodeId) ToMap ¶

func (o HfcNodeId) ToMap() (map[string]interface{}, error)

type HssInfo ¶

type HssInfo struct {
	// Identifier of a group of NFs.
	GroupId                        *string                      `json:"groupId,omitempty"`
	ImsiRanges                     []ImsiRange                  `json:"imsiRanges,omitempty"`
	ImsPrivateIdentityRanges       []IdentityRange              `json:"imsPrivateIdentityRanges,omitempty"`
	ImsPublicIdentityRanges        []IdentityRange              `json:"imsPublicIdentityRanges,omitempty"`
	MsisdnRanges                   []IdentityRange              `json:"msisdnRanges,omitempty"`
	ExternalGroupIdentifiersRanges []IdentityRange              `json:"externalGroupIdentifiersRanges,omitempty"`
	HssDiameterAddress             *NetworkNodeDiameterAddress  `json:"hssDiameterAddress,omitempty"`
	AdditionalDiamAddresses        []NetworkNodeDiameterAddress `json:"additionalDiamAddresses,omitempty"`
}

HssInfo Information of an HSS NF Instance

func NewHssInfo ¶

func NewHssInfo() *HssInfo

NewHssInfo instantiates a new HssInfo 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 NewHssInfoWithDefaults ¶

func NewHssInfoWithDefaults() *HssInfo

NewHssInfoWithDefaults instantiates a new HssInfo 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 (*HssInfo) GetAdditionalDiamAddresses ¶

func (o *HssInfo) GetAdditionalDiamAddresses() []NetworkNodeDiameterAddress

GetAdditionalDiamAddresses returns the AdditionalDiamAddresses field value if set, zero value otherwise.

func (*HssInfo) GetAdditionalDiamAddressesOk ¶

func (o *HssInfo) GetAdditionalDiamAddressesOk() ([]NetworkNodeDiameterAddress, bool)

GetAdditionalDiamAddressesOk returns a tuple with the AdditionalDiamAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HssInfo) GetExternalGroupIdentifiersRanges ¶

func (o *HssInfo) GetExternalGroupIdentifiersRanges() []IdentityRange

GetExternalGroupIdentifiersRanges returns the ExternalGroupIdentifiersRanges field value if set, zero value otherwise.

func (*HssInfo) GetExternalGroupIdentifiersRangesOk ¶

func (o *HssInfo) GetExternalGroupIdentifiersRangesOk() ([]IdentityRange, bool)

GetExternalGroupIdentifiersRangesOk returns a tuple with the ExternalGroupIdentifiersRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HssInfo) GetGroupId ¶

func (o *HssInfo) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*HssInfo) GetGroupIdOk ¶

func (o *HssInfo) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HssInfo) GetHssDiameterAddress ¶

func (o *HssInfo) GetHssDiameterAddress() NetworkNodeDiameterAddress

GetHssDiameterAddress returns the HssDiameterAddress field value if set, zero value otherwise.

func (*HssInfo) GetHssDiameterAddressOk ¶

func (o *HssInfo) GetHssDiameterAddressOk() (*NetworkNodeDiameterAddress, bool)

GetHssDiameterAddressOk returns a tuple with the HssDiameterAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HssInfo) GetImsPrivateIdentityRanges ¶

func (o *HssInfo) GetImsPrivateIdentityRanges() []IdentityRange

GetImsPrivateIdentityRanges returns the ImsPrivateIdentityRanges field value if set, zero value otherwise.

func (*HssInfo) GetImsPrivateIdentityRangesOk ¶

func (o *HssInfo) GetImsPrivateIdentityRangesOk() ([]IdentityRange, bool)

GetImsPrivateIdentityRangesOk returns a tuple with the ImsPrivateIdentityRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HssInfo) GetImsPublicIdentityRanges ¶

func (o *HssInfo) GetImsPublicIdentityRanges() []IdentityRange

GetImsPublicIdentityRanges returns the ImsPublicIdentityRanges field value if set, zero value otherwise.

func (*HssInfo) GetImsPublicIdentityRangesOk ¶

func (o *HssInfo) GetImsPublicIdentityRangesOk() ([]IdentityRange, bool)

GetImsPublicIdentityRangesOk returns a tuple with the ImsPublicIdentityRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HssInfo) GetImsiRanges ¶

func (o *HssInfo) GetImsiRanges() []ImsiRange

GetImsiRanges returns the ImsiRanges field value if set, zero value otherwise.

func (*HssInfo) GetImsiRangesOk ¶

func (o *HssInfo) GetImsiRangesOk() ([]ImsiRange, bool)

GetImsiRangesOk returns a tuple with the ImsiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HssInfo) GetMsisdnRanges ¶

func (o *HssInfo) GetMsisdnRanges() []IdentityRange

GetMsisdnRanges returns the MsisdnRanges field value if set, zero value otherwise.

func (*HssInfo) GetMsisdnRangesOk ¶

func (o *HssInfo) GetMsisdnRangesOk() ([]IdentityRange, bool)

GetMsisdnRangesOk returns a tuple with the MsisdnRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HssInfo) HasAdditionalDiamAddresses ¶

func (o *HssInfo) HasAdditionalDiamAddresses() bool

HasAdditionalDiamAddresses returns a boolean if a field has been set.

func (*HssInfo) HasExternalGroupIdentifiersRanges ¶

func (o *HssInfo) HasExternalGroupIdentifiersRanges() bool

HasExternalGroupIdentifiersRanges returns a boolean if a field has been set.

func (*HssInfo) HasGroupId ¶

func (o *HssInfo) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*HssInfo) HasHssDiameterAddress ¶

func (o *HssInfo) HasHssDiameterAddress() bool

HasHssDiameterAddress returns a boolean if a field has been set.

func (*HssInfo) HasImsPrivateIdentityRanges ¶

func (o *HssInfo) HasImsPrivateIdentityRanges() bool

HasImsPrivateIdentityRanges returns a boolean if a field has been set.

func (*HssInfo) HasImsPublicIdentityRanges ¶

func (o *HssInfo) HasImsPublicIdentityRanges() bool

HasImsPublicIdentityRanges returns a boolean if a field has been set.

func (*HssInfo) HasImsiRanges ¶

func (o *HssInfo) HasImsiRanges() bool

HasImsiRanges returns a boolean if a field has been set.

func (*HssInfo) HasMsisdnRanges ¶

func (o *HssInfo) HasMsisdnRanges() bool

HasMsisdnRanges returns a boolean if a field has been set.

func (HssInfo) MarshalJSON ¶

func (o HssInfo) MarshalJSON() ([]byte, error)

func (*HssInfo) SetAdditionalDiamAddresses ¶

func (o *HssInfo) SetAdditionalDiamAddresses(v []NetworkNodeDiameterAddress)

SetAdditionalDiamAddresses gets a reference to the given []NetworkNodeDiameterAddress and assigns it to the AdditionalDiamAddresses field.

func (*HssInfo) SetExternalGroupIdentifiersRanges ¶

func (o *HssInfo) SetExternalGroupIdentifiersRanges(v []IdentityRange)

SetExternalGroupIdentifiersRanges gets a reference to the given []IdentityRange and assigns it to the ExternalGroupIdentifiersRanges field.

func (*HssInfo) SetGroupId ¶

func (o *HssInfo) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*HssInfo) SetHssDiameterAddress ¶

func (o *HssInfo) SetHssDiameterAddress(v NetworkNodeDiameterAddress)

SetHssDiameterAddress gets a reference to the given NetworkNodeDiameterAddress and assigns it to the HssDiameterAddress field.

func (*HssInfo) SetImsPrivateIdentityRanges ¶

func (o *HssInfo) SetImsPrivateIdentityRanges(v []IdentityRange)

SetImsPrivateIdentityRanges gets a reference to the given []IdentityRange and assigns it to the ImsPrivateIdentityRanges field.

func (*HssInfo) SetImsPublicIdentityRanges ¶

func (o *HssInfo) SetImsPublicIdentityRanges(v []IdentityRange)

SetImsPublicIdentityRanges gets a reference to the given []IdentityRange and assigns it to the ImsPublicIdentityRanges field.

func (*HssInfo) SetImsiRanges ¶

func (o *HssInfo) SetImsiRanges(v []ImsiRange)

SetImsiRanges gets a reference to the given []ImsiRange and assigns it to the ImsiRanges field.

func (*HssInfo) SetMsisdnRanges ¶

func (o *HssInfo) SetMsisdnRanges(v []IdentityRange)

SetMsisdnRanges gets a reference to the given []IdentityRange and assigns it to the MsisdnRanges field.

func (HssInfo) ToMap ¶

func (o HssInfo) ToMap() (map[string]interface{}, error)

type IdentityRange ¶

type IdentityRange struct {
	Interface *interface{}
}

IdentityRange - A range of GPSIs (subscriber identities), either based on a numeric range, or based on regular-expression matching

func InterfaceAsIdentityRange ¶

func InterfaceAsIdentityRange(v *interface{}) IdentityRange

interface{}AsIdentityRange is a convenience function that returns interface{} wrapped in IdentityRange

func (*IdentityRange) GetActualInstance ¶

func (obj *IdentityRange) GetActualInstance() interface{}

Get the actual instance

func (IdentityRange) MarshalJSON ¶

func (src IdentityRange) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*IdentityRange) UnmarshalJSON ¶

func (dst *IdentityRange) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type IdleStatusIndication ¶

type IdleStatusIndication struct {
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp *time.Time `json:"timeStamp,omitempty"`
	// indicating a time in seconds.
	ActiveTime *int32 `json:"activeTime,omitempty"`
	// indicating a time in seconds.
	SubsRegTimer            *int32 `json:"subsRegTimer,omitempty"`
	EdrxCycleLength         *int32 `json:"edrxCycleLength,omitempty"`
	SuggestedNumOfDlPackets *int32 `json:"suggestedNumOfDlPackets,omitempty"`
}

IdleStatusIndication Represents the idle status indication.

func NewIdleStatusIndication ¶

func NewIdleStatusIndication() *IdleStatusIndication

NewIdleStatusIndication instantiates a new IdleStatusIndication 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 NewIdleStatusIndicationWithDefaults ¶

func NewIdleStatusIndicationWithDefaults() *IdleStatusIndication

NewIdleStatusIndicationWithDefaults instantiates a new IdleStatusIndication 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 (*IdleStatusIndication) GetActiveTime ¶

func (o *IdleStatusIndication) GetActiveTime() int32

GetActiveTime returns the ActiveTime field value if set, zero value otherwise.

func (*IdleStatusIndication) GetActiveTimeOk ¶

func (o *IdleStatusIndication) GetActiveTimeOk() (*int32, bool)

GetActiveTimeOk returns a tuple with the ActiveTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdleStatusIndication) GetEdrxCycleLength ¶

func (o *IdleStatusIndication) GetEdrxCycleLength() int32

GetEdrxCycleLength returns the EdrxCycleLength field value if set, zero value otherwise.

func (*IdleStatusIndication) GetEdrxCycleLengthOk ¶

func (o *IdleStatusIndication) GetEdrxCycleLengthOk() (*int32, bool)

GetEdrxCycleLengthOk returns a tuple with the EdrxCycleLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdleStatusIndication) GetSubsRegTimer ¶

func (o *IdleStatusIndication) GetSubsRegTimer() int32

GetSubsRegTimer returns the SubsRegTimer field value if set, zero value otherwise.

func (*IdleStatusIndication) GetSubsRegTimerOk ¶

func (o *IdleStatusIndication) GetSubsRegTimerOk() (*int32, bool)

GetSubsRegTimerOk returns a tuple with the SubsRegTimer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdleStatusIndication) GetSuggestedNumOfDlPackets ¶

func (o *IdleStatusIndication) GetSuggestedNumOfDlPackets() int32

GetSuggestedNumOfDlPackets returns the SuggestedNumOfDlPackets field value if set, zero value otherwise.

func (*IdleStatusIndication) GetSuggestedNumOfDlPacketsOk ¶

func (o *IdleStatusIndication) GetSuggestedNumOfDlPacketsOk() (*int32, bool)

GetSuggestedNumOfDlPacketsOk returns a tuple with the SuggestedNumOfDlPackets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdleStatusIndication) GetTimeStamp ¶

func (o *IdleStatusIndication) GetTimeStamp() time.Time

GetTimeStamp returns the TimeStamp field value if set, zero value otherwise.

func (*IdleStatusIndication) GetTimeStampOk ¶

func (o *IdleStatusIndication) GetTimeStampOk() (*time.Time, bool)

GetTimeStampOk returns a tuple with the TimeStamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdleStatusIndication) HasActiveTime ¶

func (o *IdleStatusIndication) HasActiveTime() bool

HasActiveTime returns a boolean if a field has been set.

func (*IdleStatusIndication) HasEdrxCycleLength ¶

func (o *IdleStatusIndication) HasEdrxCycleLength() bool

HasEdrxCycleLength returns a boolean if a field has been set.

func (*IdleStatusIndication) HasSubsRegTimer ¶

func (o *IdleStatusIndication) HasSubsRegTimer() bool

HasSubsRegTimer returns a boolean if a field has been set.

func (*IdleStatusIndication) HasSuggestedNumOfDlPackets ¶

func (o *IdleStatusIndication) HasSuggestedNumOfDlPackets() bool

HasSuggestedNumOfDlPackets returns a boolean if a field has been set.

func (*IdleStatusIndication) HasTimeStamp ¶

func (o *IdleStatusIndication) HasTimeStamp() bool

HasTimeStamp returns a boolean if a field has been set.

func (IdleStatusIndication) MarshalJSON ¶

func (o IdleStatusIndication) MarshalJSON() ([]byte, error)

func (*IdleStatusIndication) SetActiveTime ¶

func (o *IdleStatusIndication) SetActiveTime(v int32)

SetActiveTime gets a reference to the given int32 and assigns it to the ActiveTime field.

func (*IdleStatusIndication) SetEdrxCycleLength ¶

func (o *IdleStatusIndication) SetEdrxCycleLength(v int32)

SetEdrxCycleLength gets a reference to the given int32 and assigns it to the EdrxCycleLength field.

func (*IdleStatusIndication) SetSubsRegTimer ¶

func (o *IdleStatusIndication) SetSubsRegTimer(v int32)

SetSubsRegTimer gets a reference to the given int32 and assigns it to the SubsRegTimer field.

func (*IdleStatusIndication) SetSuggestedNumOfDlPackets ¶

func (o *IdleStatusIndication) SetSuggestedNumOfDlPackets(v int32)

SetSuggestedNumOfDlPackets gets a reference to the given int32 and assigns it to the SuggestedNumOfDlPackets field.

func (*IdleStatusIndication) SetTimeStamp ¶

func (o *IdleStatusIndication) SetTimeStamp(v time.Time)

SetTimeStamp gets a reference to the given time.Time and assigns it to the TimeStamp field.

func (IdleStatusIndication) ToMap ¶

func (o IdleStatusIndication) ToMap() (map[string]interface{}, error)

type ImsiRange ¶

type ImsiRange struct {
	Interface *interface{}
}

ImsiRange - A range of IMSIs (subscriber identities), either based on a numeric range, or based on regular-expression matching

func InterfaceAsImsiRange ¶

func InterfaceAsImsiRange(v *interface{}) ImsiRange

interface{}AsImsiRange is a convenience function that returns interface{} wrapped in ImsiRange

func (*ImsiRange) GetActualInstance ¶

func (obj *ImsiRange) GetActualInstance() interface{}

Get the actual instance

func (ImsiRange) MarshalJSON ¶

func (src ImsiRange) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ImsiRange) UnmarshalJSON ¶

func (dst *ImsiRange) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type IndividualADRFDataRetrievalSubscriptionDocumentApiService ¶

type IndividualADRFDataRetrievalSubscriptionDocumentApiService service

IndividualADRFDataRetrievalSubscriptionDocumentApiService IndividualADRFDataRetrievalSubscriptionDocumentApi service

func (*IndividualADRFDataRetrievalSubscriptionDocumentApiService) DeleteADRFDataRetrievalSubscription ¶

DeleteADRFDataRetrievalSubscription Delete an existing Individual ADRF Data Retrieval Subscription resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId String identifying a data retrieval subscription to the Nadrf_DataManagement  Service.
@return ApiDeleteADRFDataRetrievalSubscriptionRequest

func (*IndividualADRFDataRetrievalSubscriptionDocumentApiService) DeleteADRFDataRetrievalSubscriptionExecute ¶

Execute executes the request

type IndividualADRFDataStoreRecordDocumentApiService ¶

type IndividualADRFDataStoreRecordDocumentApiService service

IndividualADRFDataStoreRecordDocumentApiService IndividualADRFDataStoreRecordDocumentApi service

func (*IndividualADRFDataStoreRecordDocumentApiService) DeleteADRFDataStoreRecord ¶

DeleteADRFDataStoreRecord Delete an existing Individual ADRF Data Store Record.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param storeTransId String identifying a Data Store Record in ADRF.
@return ApiDeleteADRFDataStoreRecordRequest

func (*IndividualADRFDataStoreRecordDocumentApiService) DeleteADRFDataStoreRecordExecute ¶

Execute executes the request

type InterfaceUpfInfoItem ¶

type InterfaceUpfInfoItem struct {
	Interface *interface{}
}

InterfaceUpfInfoItem Information of a given IP interface of an UPF

func (*InterfaceUpfInfoItem) MarshalJSON ¶

func (src *InterfaceUpfInfoItem) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*InterfaceUpfInfoItem) UnmarshalJSON ¶

func (dst *InterfaceUpfInfoItem) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type InternalGroupIdRange ¶

type InternalGroupIdRange struct {
	Interface *interface{}
}

InternalGroupIdRange - A range of Group IDs (internal group identities), either based on a numeric range, or based on regular-expression matching

func InterfaceAsInternalGroupIdRange ¶

func InterfaceAsInternalGroupIdRange(v *interface{}) InternalGroupIdRange

interface{}AsInternalGroupIdRange is a convenience function that returns interface{} wrapped in InternalGroupIdRange

func (*InternalGroupIdRange) GetActualInstance ¶

func (obj *InternalGroupIdRange) GetActualInstance() interface{}

Get the actual instance

func (InternalGroupIdRange) MarshalJSON ¶

func (src InternalGroupIdRange) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*InternalGroupIdRange) UnmarshalJSON ¶

func (dst *InternalGroupIdRange) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type InvalidParam ¶

type InvalidParam struct {
	// If the invalid parameter is an attribute in a JSON body, this IE shall contain the  attribute's name and shall be encoded as a JSON Pointer. If the invalid parameter is  an HTTP header, this IE shall be formatted as the concatenation of the string \"header \"  plus the name of such header. If the invalid parameter is a query parameter, this IE  shall be formatted as the concatenation of the string \"query \" plus the name of such  query parameter. If the invalid parameter is a variable part in the path of a resource  URI, this IE shall contain the name of the variable, including the symbols \"{\" and \"}\"  used in OpenAPI specification as the notation to represent variable path segments.
	Param string `json:"param"`
	// A human-readable reason, e.g. \"must be a positive integer\". In cases involving failed  operations in a PATCH request, the reason string should identify the operation that  failed using the operation's array index to assist in correlation of the invalid  parameter with the failed operation, e.g.\" Replacement value invalid for attribute  (failed operation index= 4)\"
	Reason *string `json:"reason,omitempty"`
}

InvalidParam It contains an invalid parameter and a related description.

func NewInvalidParam ¶

func NewInvalidParam(param string) *InvalidParam

NewInvalidParam instantiates a new InvalidParam 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 NewInvalidParamWithDefaults ¶

func NewInvalidParamWithDefaults() *InvalidParam

NewInvalidParamWithDefaults instantiates a new InvalidParam 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 (*InvalidParam) GetParam ¶

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk ¶

func (o *InvalidParam) GetParamOk() (*string, bool)

GetParamOk returns a tuple with the Param field value and a boolean to check if the value has been set.

func (*InvalidParam) GetReason ¶

func (o *InvalidParam) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*InvalidParam) GetReasonOk ¶

func (o *InvalidParam) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InvalidParam) HasReason ¶

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON ¶

func (o InvalidParam) MarshalJSON() ([]byte, error)

func (*InvalidParam) SetParam ¶

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason ¶

func (o *InvalidParam) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (InvalidParam) ToMap ¶

func (o InvalidParam) ToMap() (map[string]interface{}, error)

type IpAddr ¶

type IpAddr struct {
	Interface *interface{}
}

IpAddr - Contains an IP adresse.

func InterfaceAsIpAddr ¶

func InterfaceAsIpAddr(v *interface{}) IpAddr

interface{}AsIpAddr is a convenience function that returns interface{} wrapped in IpAddr

func (*IpAddr) GetActualInstance ¶

func (obj *IpAddr) GetActualInstance() interface{}

Get the actual instance

func (IpAddr) MarshalJSON ¶

func (src IpAddr) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*IpAddr) UnmarshalJSON ¶

func (dst *IpAddr) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type IpEndPoint ¶

type IpEndPoint struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Address *string            `json:"ipv4Address,omitempty"`
	Ipv6Address *Ipv6Addr          `json:"ipv6Address,omitempty"`
	Transport   *TransportProtocol `json:"transport,omitempty"`
	Port        *int32             `json:"port,omitempty"`
}

IpEndPoint IP addressing information of a given NFService; it consists on, e.g. IP address, TCP port, transport protocol...

func NewIpEndPoint ¶

func NewIpEndPoint() *IpEndPoint

NewIpEndPoint instantiates a new IpEndPoint 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 NewIpEndPointWithDefaults ¶

func NewIpEndPointWithDefaults() *IpEndPoint

NewIpEndPointWithDefaults instantiates a new IpEndPoint 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 (*IpEndPoint) GetIpv4Address ¶

func (o *IpEndPoint) GetIpv4Address() string

GetIpv4Address returns the Ipv4Address field value if set, zero value otherwise.

func (*IpEndPoint) GetIpv4AddressOk ¶

func (o *IpEndPoint) GetIpv4AddressOk() (*string, bool)

GetIpv4AddressOk returns a tuple with the Ipv4Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IpEndPoint) GetIpv6Address ¶

func (o *IpEndPoint) GetIpv6Address() Ipv6Addr

GetIpv6Address returns the Ipv6Address field value if set, zero value otherwise.

func (*IpEndPoint) GetIpv6AddressOk ¶

func (o *IpEndPoint) GetIpv6AddressOk() (*Ipv6Addr, bool)

GetIpv6AddressOk returns a tuple with the Ipv6Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IpEndPoint) GetPort ¶

func (o *IpEndPoint) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*IpEndPoint) GetPortOk ¶

func (o *IpEndPoint) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IpEndPoint) GetTransport ¶

func (o *IpEndPoint) GetTransport() TransportProtocol

GetTransport returns the Transport field value if set, zero value otherwise.

func (*IpEndPoint) GetTransportOk ¶

func (o *IpEndPoint) GetTransportOk() (*TransportProtocol, bool)

GetTransportOk returns a tuple with the Transport field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IpEndPoint) HasIpv4Address ¶

func (o *IpEndPoint) HasIpv4Address() bool

HasIpv4Address returns a boolean if a field has been set.

func (*IpEndPoint) HasIpv6Address ¶

func (o *IpEndPoint) HasIpv6Address() bool

HasIpv6Address returns a boolean if a field has been set.

func (*IpEndPoint) HasPort ¶

func (o *IpEndPoint) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*IpEndPoint) HasTransport ¶

func (o *IpEndPoint) HasTransport() bool

HasTransport returns a boolean if a field has been set.

func (IpEndPoint) MarshalJSON ¶

func (o IpEndPoint) MarshalJSON() ([]byte, error)

func (*IpEndPoint) SetIpv4Address ¶

func (o *IpEndPoint) SetIpv4Address(v string)

SetIpv4Address gets a reference to the given string and assigns it to the Ipv4Address field.

func (*IpEndPoint) SetIpv6Address ¶

func (o *IpEndPoint) SetIpv6Address(v Ipv6Addr)

SetIpv6Address gets a reference to the given Ipv6Addr and assigns it to the Ipv6Address field.

func (*IpEndPoint) SetPort ¶

func (o *IpEndPoint) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*IpEndPoint) SetTransport ¶

func (o *IpEndPoint) SetTransport(v TransportProtocol)

SetTransport gets a reference to the given TransportProtocol and assigns it to the Transport field.

func (IpEndPoint) ToMap ¶

func (o IpEndPoint) ToMap() (map[string]interface{}, error)

type IpEthFlowDescription ¶

type IpEthFlowDescription struct {
	Interface *interface{}
}

IpEthFlowDescription - Contains the description of an Uplink and/or Downlink Ethernet flow.

func InterfaceAsIpEthFlowDescription ¶

func InterfaceAsIpEthFlowDescription(v *interface{}) IpEthFlowDescription

interface{}AsIpEthFlowDescription is a convenience function that returns interface{} wrapped in IpEthFlowDescription

func (*IpEthFlowDescription) GetActualInstance ¶

func (obj *IpEthFlowDescription) GetActualInstance() interface{}

Get the actual instance

func (IpEthFlowDescription) MarshalJSON ¶

func (src IpEthFlowDescription) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*IpEthFlowDescription) UnmarshalJSON ¶

func (dst *IpEthFlowDescription) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type IpIndex ¶

type IpIndex struct {
	Int32  *int32
	String *string
}

IpIndex Represents the IP Index to be sent from UDM to the SMF (its value can be either an integer or a string)

func (*IpIndex) MarshalJSON ¶

func (src *IpIndex) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*IpIndex) UnmarshalJSON ¶

func (dst *IpIndex) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type IpPacketFilterSet ¶

type IpPacketFilterSet struct {
	SrcIp     *string `json:"srcIp,omitempty"`
	DstIp     *string `json:"dstIp,omitempty"`
	Protocol  *int32  `json:"protocol,omitempty"`
	SrcPort   *int32  `json:"srcPort,omitempty"`
	DstPort   *int32  `json:"dstPort,omitempty"`
	ToSTc     *string `json:"toSTc,omitempty"`
	FlowLabel *int32  `json:"flowLabel,omitempty"`
	Spi       *int32  `json:"spi,omitempty"`
	Direction string  `json:"direction"`
}

IpPacketFilterSet struct for IpPacketFilterSet

func NewIpPacketFilterSet ¶

func NewIpPacketFilterSet(direction string) *IpPacketFilterSet

NewIpPacketFilterSet instantiates a new IpPacketFilterSet 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 NewIpPacketFilterSetWithDefaults ¶

func NewIpPacketFilterSetWithDefaults() *IpPacketFilterSet

NewIpPacketFilterSetWithDefaults instantiates a new IpPacketFilterSet 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 (*IpPacketFilterSet) GetDirection ¶

func (o *IpPacketFilterSet) GetDirection() string

GetDirection returns the Direction field value

func (*IpPacketFilterSet) GetDirectionOk ¶

func (o *IpPacketFilterSet) GetDirectionOk() (*string, bool)

GetDirectionOk returns a tuple with the Direction field value and a boolean to check if the value has been set.

func (*IpPacketFilterSet) GetDstIp ¶

func (o *IpPacketFilterSet) GetDstIp() string

GetDstIp returns the DstIp field value if set, zero value otherwise.

func (*IpPacketFilterSet) GetDstIpOk ¶

func (o *IpPacketFilterSet) GetDstIpOk() (*string, bool)

GetDstIpOk returns a tuple with the DstIp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IpPacketFilterSet) GetDstPort ¶

func (o *IpPacketFilterSet) GetDstPort() int32

GetDstPort returns the DstPort field value if set, zero value otherwise.

func (*IpPacketFilterSet) GetDstPortOk ¶

func (o *IpPacketFilterSet) GetDstPortOk() (*int32, bool)

GetDstPortOk returns a tuple with the DstPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IpPacketFilterSet) GetFlowLabel ¶

func (o *IpPacketFilterSet) GetFlowLabel() int32

GetFlowLabel returns the FlowLabel field value if set, zero value otherwise.

func (*IpPacketFilterSet) GetFlowLabelOk ¶

func (o *IpPacketFilterSet) GetFlowLabelOk() (*int32, bool)

GetFlowLabelOk returns a tuple with the FlowLabel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IpPacketFilterSet) GetProtocol ¶

func (o *IpPacketFilterSet) GetProtocol() int32

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*IpPacketFilterSet) GetProtocolOk ¶

func (o *IpPacketFilterSet) GetProtocolOk() (*int32, bool)

GetProtocolOk returns a tuple with the Protocol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IpPacketFilterSet) GetSpi ¶

func (o *IpPacketFilterSet) GetSpi() int32

GetSpi returns the Spi field value if set, zero value otherwise.

func (*IpPacketFilterSet) GetSpiOk ¶

func (o *IpPacketFilterSet) GetSpiOk() (*int32, bool)

GetSpiOk returns a tuple with the Spi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IpPacketFilterSet) GetSrcIp ¶

func (o *IpPacketFilterSet) GetSrcIp() string

GetSrcIp returns the SrcIp field value if set, zero value otherwise.

func (*IpPacketFilterSet) GetSrcIpOk ¶

func (o *IpPacketFilterSet) GetSrcIpOk() (*string, bool)

GetSrcIpOk returns a tuple with the SrcIp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IpPacketFilterSet) GetSrcPort ¶

func (o *IpPacketFilterSet) GetSrcPort() int32

GetSrcPort returns the SrcPort field value if set, zero value otherwise.

func (*IpPacketFilterSet) GetSrcPortOk ¶

func (o *IpPacketFilterSet) GetSrcPortOk() (*int32, bool)

GetSrcPortOk returns a tuple with the SrcPort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IpPacketFilterSet) GetToSTc ¶

func (o *IpPacketFilterSet) GetToSTc() string

GetToSTc returns the ToSTc field value if set, zero value otherwise.

func (*IpPacketFilterSet) GetToSTcOk ¶

func (o *IpPacketFilterSet) GetToSTcOk() (*string, bool)

GetToSTcOk returns a tuple with the ToSTc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IpPacketFilterSet) HasDstIp ¶

func (o *IpPacketFilterSet) HasDstIp() bool

HasDstIp returns a boolean if a field has been set.

func (*IpPacketFilterSet) HasDstPort ¶

func (o *IpPacketFilterSet) HasDstPort() bool

HasDstPort returns a boolean if a field has been set.

func (*IpPacketFilterSet) HasFlowLabel ¶

func (o *IpPacketFilterSet) HasFlowLabel() bool

HasFlowLabel returns a boolean if a field has been set.

func (*IpPacketFilterSet) HasProtocol ¶

func (o *IpPacketFilterSet) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*IpPacketFilterSet) HasSpi ¶

func (o *IpPacketFilterSet) HasSpi() bool

HasSpi returns a boolean if a field has been set.

func (*IpPacketFilterSet) HasSrcIp ¶

func (o *IpPacketFilterSet) HasSrcIp() bool

HasSrcIp returns a boolean if a field has been set.

func (*IpPacketFilterSet) HasSrcPort ¶

func (o *IpPacketFilterSet) HasSrcPort() bool

HasSrcPort returns a boolean if a field has been set.

func (*IpPacketFilterSet) HasToSTc ¶

func (o *IpPacketFilterSet) HasToSTc() bool

HasToSTc returns a boolean if a field has been set.

func (IpPacketFilterSet) MarshalJSON ¶

func (o IpPacketFilterSet) MarshalJSON() ([]byte, error)

func (*IpPacketFilterSet) SetDirection ¶

func (o *IpPacketFilterSet) SetDirection(v string)

SetDirection sets field value

func (*IpPacketFilterSet) SetDstIp ¶

func (o *IpPacketFilterSet) SetDstIp(v string)

SetDstIp gets a reference to the given string and assigns it to the DstIp field.

func (*IpPacketFilterSet) SetDstPort ¶

func (o *IpPacketFilterSet) SetDstPort(v int32)

SetDstPort gets a reference to the given int32 and assigns it to the DstPort field.

func (*IpPacketFilterSet) SetFlowLabel ¶

func (o *IpPacketFilterSet) SetFlowLabel(v int32)

SetFlowLabel gets a reference to the given int32 and assigns it to the FlowLabel field.

func (*IpPacketFilterSet) SetProtocol ¶

func (o *IpPacketFilterSet) SetProtocol(v int32)

SetProtocol gets a reference to the given int32 and assigns it to the Protocol field.

func (*IpPacketFilterSet) SetSpi ¶

func (o *IpPacketFilterSet) SetSpi(v int32)

SetSpi gets a reference to the given int32 and assigns it to the Spi field.

func (*IpPacketFilterSet) SetSrcIp ¶

func (o *IpPacketFilterSet) SetSrcIp(v string)

SetSrcIp gets a reference to the given string and assigns it to the SrcIp field.

func (*IpPacketFilterSet) SetSrcPort ¶

func (o *IpPacketFilterSet) SetSrcPort(v int32)

SetSrcPort gets a reference to the given int32 and assigns it to the SrcPort field.

func (*IpPacketFilterSet) SetToSTc ¶

func (o *IpPacketFilterSet) SetToSTc(v string)

SetToSTc gets a reference to the given string and assigns it to the ToSTc field.

func (IpPacketFilterSet) ToMap ¶

func (o IpPacketFilterSet) ToMap() (map[string]interface{}, error)

type IpReachability ¶

type IpReachability struct {
	String *string
}

IpReachability Indicates the type(s) of IP addresses reachable via an SCP

func (*IpReachability) MarshalJSON ¶

func (src *IpReachability) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*IpReachability) UnmarshalJSON ¶

func (dst *IpReachability) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type Ipv4AddressRange ¶

type Ipv4AddressRange struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Start *string `json:"start,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	End *string `json:"end,omitempty"`
}

Ipv4AddressRange Range of IPv4 addresses

func NewIpv4AddressRange ¶

func NewIpv4AddressRange() *Ipv4AddressRange

NewIpv4AddressRange instantiates a new Ipv4AddressRange 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 NewIpv4AddressRangeWithDefaults ¶

func NewIpv4AddressRangeWithDefaults() *Ipv4AddressRange

NewIpv4AddressRangeWithDefaults instantiates a new Ipv4AddressRange 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 (*Ipv4AddressRange) GetEnd ¶

func (o *Ipv4AddressRange) GetEnd() string

GetEnd returns the End field value if set, zero value otherwise.

func (*Ipv4AddressRange) GetEndOk ¶

func (o *Ipv4AddressRange) GetEndOk() (*string, bool)

GetEndOk returns a tuple with the End field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Ipv4AddressRange) GetStart ¶

func (o *Ipv4AddressRange) GetStart() string

GetStart returns the Start field value if set, zero value otherwise.

func (*Ipv4AddressRange) GetStartOk ¶

func (o *Ipv4AddressRange) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Ipv4AddressRange) HasEnd ¶

func (o *Ipv4AddressRange) HasEnd() bool

HasEnd returns a boolean if a field has been set.

func (*Ipv4AddressRange) HasStart ¶

func (o *Ipv4AddressRange) HasStart() bool

HasStart returns a boolean if a field has been set.

func (Ipv4AddressRange) MarshalJSON ¶

func (o Ipv4AddressRange) MarshalJSON() ([]byte, error)

func (*Ipv4AddressRange) SetEnd ¶

func (o *Ipv4AddressRange) SetEnd(v string)

SetEnd gets a reference to the given string and assigns it to the End field.

func (*Ipv4AddressRange) SetStart ¶

func (o *Ipv4AddressRange) SetStart(v string)

SetStart gets a reference to the given string and assigns it to the Start field.

func (Ipv4AddressRange) ToMap ¶

func (o Ipv4AddressRange) ToMap() (map[string]interface{}, error)

type Ipv6Addr ¶

type Ipv6Addr struct {
}

Ipv6Addr String identifying an IPv6 address formatted according to clause 4 of RFC5952. The mixed IPv4 IPv6 notation according to clause 5 of RFC5952 shall not be used.

func NewIpv6Addr ¶

func NewIpv6Addr() *Ipv6Addr

NewIpv6Addr instantiates a new Ipv6Addr 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 NewIpv6AddrWithDefaults ¶

func NewIpv6AddrWithDefaults() *Ipv6Addr

NewIpv6AddrWithDefaults instantiates a new Ipv6Addr 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 (Ipv6Addr) MarshalJSON ¶

func (o Ipv6Addr) MarshalJSON() ([]byte, error)

func (Ipv6Addr) ToMap ¶

func (o Ipv6Addr) ToMap() (map[string]interface{}, error)

type Ipv6Prefix ¶

type Ipv6Prefix struct {
}

Ipv6Prefix String identifying an IPv6 address prefix formatted according to clause 4 of RFC 5952. IPv6Prefix data type may contain an individual /128 IPv6 address.

func NewIpv6Prefix ¶

func NewIpv6Prefix() *Ipv6Prefix

NewIpv6Prefix instantiates a new Ipv6Prefix 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 NewIpv6PrefixWithDefaults ¶

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

NewIpv6PrefixWithDefaults instantiates a new Ipv6Prefix 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 (Ipv6Prefix) MarshalJSON ¶

func (o Ipv6Prefix) MarshalJSON() ([]byte, error)

func (Ipv6Prefix) ToMap ¶

func (o Ipv6Prefix) ToMap() (map[string]interface{}, error)

type Ipv6PrefixRange ¶

type Ipv6PrefixRange struct {
	Start *Ipv6Prefix `json:"start,omitempty"`
	End   *Ipv6Prefix `json:"end,omitempty"`
}

Ipv6PrefixRange Range of IPv6 prefixes

func NewIpv6PrefixRange ¶

func NewIpv6PrefixRange() *Ipv6PrefixRange

NewIpv6PrefixRange instantiates a new Ipv6PrefixRange 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 NewIpv6PrefixRangeWithDefaults ¶

func NewIpv6PrefixRangeWithDefaults() *Ipv6PrefixRange

NewIpv6PrefixRangeWithDefaults instantiates a new Ipv6PrefixRange 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 (*Ipv6PrefixRange) GetEnd ¶

func (o *Ipv6PrefixRange) GetEnd() Ipv6Prefix

GetEnd returns the End field value if set, zero value otherwise.

func (*Ipv6PrefixRange) GetEndOk ¶

func (o *Ipv6PrefixRange) GetEndOk() (*Ipv6Prefix, bool)

GetEndOk returns a tuple with the End field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Ipv6PrefixRange) GetStart ¶

func (o *Ipv6PrefixRange) GetStart() Ipv6Prefix

GetStart returns the Start field value if set, zero value otherwise.

func (*Ipv6PrefixRange) GetStartOk ¶

func (o *Ipv6PrefixRange) GetStartOk() (*Ipv6Prefix, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Ipv6PrefixRange) HasEnd ¶

func (o *Ipv6PrefixRange) HasEnd() bool

HasEnd returns a boolean if a field has been set.

func (*Ipv6PrefixRange) HasStart ¶

func (o *Ipv6PrefixRange) HasStart() bool

HasStart returns a boolean if a field has been set.

func (Ipv6PrefixRange) MarshalJSON ¶

func (o Ipv6PrefixRange) MarshalJSON() ([]byte, error)

func (*Ipv6PrefixRange) SetEnd ¶

func (o *Ipv6PrefixRange) SetEnd(v Ipv6Prefix)

SetEnd gets a reference to the given Ipv6Prefix and assigns it to the End field.

func (*Ipv6PrefixRange) SetStart ¶

func (o *Ipv6PrefixRange) SetStart(v Ipv6Prefix)

SetStart gets a reference to the given Ipv6Prefix and assigns it to the Start field.

func (Ipv6PrefixRange) ToMap ¶

func (o Ipv6PrefixRange) ToMap() (map[string]interface{}, error)

type IwmscInfo ¶

type IwmscInfo struct {
	MsisdnRanges []IdentityRange `json:"msisdnRanges,omitempty"`
	SupiRanges   []SupiRange     `json:"supiRanges,omitempty"`
	TaiRangeList []TaiRange      `json:"taiRangeList,omitempty"`
	ScNumber     *string         `json:"scNumber,omitempty"`
}

IwmscInfo Information of an SMS-IWMSC NF Instance

func NewIwmscInfo ¶

func NewIwmscInfo() *IwmscInfo

NewIwmscInfo instantiates a new IwmscInfo 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 NewIwmscInfoWithDefaults ¶

func NewIwmscInfoWithDefaults() *IwmscInfo

NewIwmscInfoWithDefaults instantiates a new IwmscInfo 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 (*IwmscInfo) GetMsisdnRanges ¶

func (o *IwmscInfo) GetMsisdnRanges() []IdentityRange

GetMsisdnRanges returns the MsisdnRanges field value if set, zero value otherwise.

func (*IwmscInfo) GetMsisdnRangesOk ¶

func (o *IwmscInfo) GetMsisdnRangesOk() ([]IdentityRange, bool)

GetMsisdnRangesOk returns a tuple with the MsisdnRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IwmscInfo) GetScNumber ¶

func (o *IwmscInfo) GetScNumber() string

GetScNumber returns the ScNumber field value if set, zero value otherwise.

func (*IwmscInfo) GetScNumberOk ¶

func (o *IwmscInfo) GetScNumberOk() (*string, bool)

GetScNumberOk returns a tuple with the ScNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IwmscInfo) GetSupiRanges ¶

func (o *IwmscInfo) GetSupiRanges() []SupiRange

GetSupiRanges returns the SupiRanges field value if set, zero value otherwise.

func (*IwmscInfo) GetSupiRangesOk ¶

func (o *IwmscInfo) GetSupiRangesOk() ([]SupiRange, bool)

GetSupiRangesOk returns a tuple with the SupiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IwmscInfo) GetTaiRangeList ¶

func (o *IwmscInfo) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*IwmscInfo) GetTaiRangeListOk ¶

func (o *IwmscInfo) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IwmscInfo) HasMsisdnRanges ¶

func (o *IwmscInfo) HasMsisdnRanges() bool

HasMsisdnRanges returns a boolean if a field has been set.

func (*IwmscInfo) HasScNumber ¶

func (o *IwmscInfo) HasScNumber() bool

HasScNumber returns a boolean if a field has been set.

func (*IwmscInfo) HasSupiRanges ¶

func (o *IwmscInfo) HasSupiRanges() bool

HasSupiRanges returns a boolean if a field has been set.

func (*IwmscInfo) HasTaiRangeList ¶

func (o *IwmscInfo) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (IwmscInfo) MarshalJSON ¶

func (o IwmscInfo) MarshalJSON() ([]byte, error)

func (*IwmscInfo) SetMsisdnRanges ¶

func (o *IwmscInfo) SetMsisdnRanges(v []IdentityRange)

SetMsisdnRanges gets a reference to the given []IdentityRange and assigns it to the MsisdnRanges field.

func (*IwmscInfo) SetScNumber ¶

func (o *IwmscInfo) SetScNumber(v string)

SetScNumber gets a reference to the given string and assigns it to the ScNumber field.

func (*IwmscInfo) SetSupiRanges ¶

func (o *IwmscInfo) SetSupiRanges(v []SupiRange)

SetSupiRanges gets a reference to the given []SupiRange and assigns it to the SupiRanges field.

func (*IwmscInfo) SetTaiRangeList ¶

func (o *IwmscInfo) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (IwmscInfo) ToMap ¶

func (o IwmscInfo) ToMap() (map[string]interface{}, error)

type LadnInfo ¶

type LadnInfo struct {
	Ladn     string         `json:"ladn"`
	Presence *PresenceState `json:"presence,omitempty"`
}

LadnInfo LADN Information

func NewLadnInfo ¶

func NewLadnInfo(ladn string) *LadnInfo

NewLadnInfo instantiates a new LadnInfo 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 NewLadnInfoWithDefaults ¶

func NewLadnInfoWithDefaults() *LadnInfo

NewLadnInfoWithDefaults instantiates a new LadnInfo 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 (*LadnInfo) GetLadn ¶

func (o *LadnInfo) GetLadn() string

GetLadn returns the Ladn field value

func (*LadnInfo) GetLadnOk ¶

func (o *LadnInfo) GetLadnOk() (*string, bool)

GetLadnOk returns a tuple with the Ladn field value and a boolean to check if the value has been set.

func (*LadnInfo) GetPresence ¶

func (o *LadnInfo) GetPresence() PresenceState

GetPresence returns the Presence field value if set, zero value otherwise.

func (*LadnInfo) GetPresenceOk ¶

func (o *LadnInfo) GetPresenceOk() (*PresenceState, bool)

GetPresenceOk returns a tuple with the Presence field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LadnInfo) HasPresence ¶

func (o *LadnInfo) HasPresence() bool

HasPresence returns a boolean if a field has been set.

func (LadnInfo) MarshalJSON ¶

func (o LadnInfo) MarshalJSON() ([]byte, error)

func (*LadnInfo) SetLadn ¶

func (o *LadnInfo) SetLadn(v string)

SetLadn sets field value

func (*LadnInfo) SetPresence ¶

func (o *LadnInfo) SetPresence(v PresenceState)

SetPresence gets a reference to the given PresenceState and assigns it to the Presence field.

func (LadnInfo) ToMap ¶

func (o LadnInfo) ToMap() (map[string]interface{}, error)

type LineType ¶

type LineType struct {
	String *string
}

LineType Possible values are: - DSL: Identifies a DSL line - PON: Identifies a PON line

func (*LineType) MarshalJSON ¶

func (src *LineType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*LineType) UnmarshalJSON ¶

func (dst *LineType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type LmfInfo ¶

type LmfInfo struct {
	ServingClientTypes []ExternalClientType `json:"servingClientTypes,omitempty"`
	// LMF identification.
	LmfId              *string              `json:"lmfId,omitempty"`
	ServingAccessTypes []AccessType         `json:"servingAccessTypes,omitempty"`
	ServingAnNodeTypes []AnNodeType         `json:"servingAnNodeTypes,omitempty"`
	ServingRatTypes    []RatType            `json:"servingRatTypes,omitempty"`
	TaiList            []Tai                `json:"taiList,omitempty"`
	TaiRangeList       []TaiRange           `json:"taiRangeList,omitempty"`
	SupportedGADShapes []SupportedGADShapes `json:"supportedGADShapes,omitempty"`
}

LmfInfo Information of an LMF NF Instance

func NewLmfInfo ¶

func NewLmfInfo() *LmfInfo

NewLmfInfo instantiates a new LmfInfo 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 NewLmfInfoWithDefaults ¶

func NewLmfInfoWithDefaults() *LmfInfo

NewLmfInfoWithDefaults instantiates a new LmfInfo 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 (*LmfInfo) GetLmfId ¶

func (o *LmfInfo) GetLmfId() string

GetLmfId returns the LmfId field value if set, zero value otherwise.

func (*LmfInfo) GetLmfIdOk ¶

func (o *LmfInfo) GetLmfIdOk() (*string, bool)

GetLmfIdOk returns a tuple with the LmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LmfInfo) GetServingAccessTypes ¶

func (o *LmfInfo) GetServingAccessTypes() []AccessType

GetServingAccessTypes returns the ServingAccessTypes field value if set, zero value otherwise.

func (*LmfInfo) GetServingAccessTypesOk ¶

func (o *LmfInfo) GetServingAccessTypesOk() ([]AccessType, bool)

GetServingAccessTypesOk returns a tuple with the ServingAccessTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LmfInfo) GetServingAnNodeTypes ¶

func (o *LmfInfo) GetServingAnNodeTypes() []AnNodeType

GetServingAnNodeTypes returns the ServingAnNodeTypes field value if set, zero value otherwise.

func (*LmfInfo) GetServingAnNodeTypesOk ¶

func (o *LmfInfo) GetServingAnNodeTypesOk() ([]AnNodeType, bool)

GetServingAnNodeTypesOk returns a tuple with the ServingAnNodeTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LmfInfo) GetServingClientTypes ¶

func (o *LmfInfo) GetServingClientTypes() []ExternalClientType

GetServingClientTypes returns the ServingClientTypes field value if set, zero value otherwise.

func (*LmfInfo) GetServingClientTypesOk ¶

func (o *LmfInfo) GetServingClientTypesOk() ([]ExternalClientType, bool)

GetServingClientTypesOk returns a tuple with the ServingClientTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LmfInfo) GetServingRatTypes ¶

func (o *LmfInfo) GetServingRatTypes() []RatType

GetServingRatTypes returns the ServingRatTypes field value if set, zero value otherwise.

func (*LmfInfo) GetServingRatTypesOk ¶

func (o *LmfInfo) GetServingRatTypesOk() ([]RatType, bool)

GetServingRatTypesOk returns a tuple with the ServingRatTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LmfInfo) GetSupportedGADShapes ¶

func (o *LmfInfo) GetSupportedGADShapes() []SupportedGADShapes

GetSupportedGADShapes returns the SupportedGADShapes field value if set, zero value otherwise.

func (*LmfInfo) GetSupportedGADShapesOk ¶

func (o *LmfInfo) GetSupportedGADShapesOk() ([]SupportedGADShapes, bool)

GetSupportedGADShapesOk returns a tuple with the SupportedGADShapes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LmfInfo) GetTaiList ¶

func (o *LmfInfo) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*LmfInfo) GetTaiListOk ¶

func (o *LmfInfo) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LmfInfo) GetTaiRangeList ¶

func (o *LmfInfo) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*LmfInfo) GetTaiRangeListOk ¶

func (o *LmfInfo) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LmfInfo) HasLmfId ¶

func (o *LmfInfo) HasLmfId() bool

HasLmfId returns a boolean if a field has been set.

func (*LmfInfo) HasServingAccessTypes ¶

func (o *LmfInfo) HasServingAccessTypes() bool

HasServingAccessTypes returns a boolean if a field has been set.

func (*LmfInfo) HasServingAnNodeTypes ¶

func (o *LmfInfo) HasServingAnNodeTypes() bool

HasServingAnNodeTypes returns a boolean if a field has been set.

func (*LmfInfo) HasServingClientTypes ¶

func (o *LmfInfo) HasServingClientTypes() bool

HasServingClientTypes returns a boolean if a field has been set.

func (*LmfInfo) HasServingRatTypes ¶

func (o *LmfInfo) HasServingRatTypes() bool

HasServingRatTypes returns a boolean if a field has been set.

func (*LmfInfo) HasSupportedGADShapes ¶

func (o *LmfInfo) HasSupportedGADShapes() bool

HasSupportedGADShapes returns a boolean if a field has been set.

func (*LmfInfo) HasTaiList ¶

func (o *LmfInfo) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (*LmfInfo) HasTaiRangeList ¶

func (o *LmfInfo) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (LmfInfo) MarshalJSON ¶

func (o LmfInfo) MarshalJSON() ([]byte, error)

func (*LmfInfo) SetLmfId ¶

func (o *LmfInfo) SetLmfId(v string)

SetLmfId gets a reference to the given string and assigns it to the LmfId field.

func (*LmfInfo) SetServingAccessTypes ¶

func (o *LmfInfo) SetServingAccessTypes(v []AccessType)

SetServingAccessTypes gets a reference to the given []AccessType and assigns it to the ServingAccessTypes field.

func (*LmfInfo) SetServingAnNodeTypes ¶

func (o *LmfInfo) SetServingAnNodeTypes(v []AnNodeType)

SetServingAnNodeTypes gets a reference to the given []AnNodeType and assigns it to the ServingAnNodeTypes field.

func (*LmfInfo) SetServingClientTypes ¶

func (o *LmfInfo) SetServingClientTypes(v []ExternalClientType)

SetServingClientTypes gets a reference to the given []ExternalClientType and assigns it to the ServingClientTypes field.

func (*LmfInfo) SetServingRatTypes ¶

func (o *LmfInfo) SetServingRatTypes(v []RatType)

SetServingRatTypes gets a reference to the given []RatType and assigns it to the ServingRatTypes field.

func (*LmfInfo) SetSupportedGADShapes ¶

func (o *LmfInfo) SetSupportedGADShapes(v []SupportedGADShapes)

SetSupportedGADShapes gets a reference to the given []SupportedGADShapes and assigns it to the SupportedGADShapes field.

func (*LmfInfo) SetTaiList ¶

func (o *LmfInfo) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (*LmfInfo) SetTaiRangeList ¶

func (o *LmfInfo) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (LmfInfo) ToMap ¶

func (o LmfInfo) ToMap() (map[string]interface{}, error)

type Local2dPointUncertaintyEllipse ¶

type Local2dPointUncertaintyEllipse struct {
	GADShape
	LocalOrigin        LocalOrigin               `json:"localOrigin"`
	Point              RelativeCartesianLocation `json:"point"`
	UncertaintyEllipse UncertaintyEllipse        `json:"uncertaintyEllipse"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

Local2dPointUncertaintyEllipse Local 2D point with uncertainty ellipse

func NewLocal2dPointUncertaintyEllipse ¶

func NewLocal2dPointUncertaintyEllipse(localOrigin LocalOrigin, point RelativeCartesianLocation, uncertaintyEllipse UncertaintyEllipse, confidence int32, shape SupportedGADShapes) *Local2dPointUncertaintyEllipse

NewLocal2dPointUncertaintyEllipse instantiates a new Local2dPointUncertaintyEllipse 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 NewLocal2dPointUncertaintyEllipseWithDefaults ¶

func NewLocal2dPointUncertaintyEllipseWithDefaults() *Local2dPointUncertaintyEllipse

NewLocal2dPointUncertaintyEllipseWithDefaults instantiates a new Local2dPointUncertaintyEllipse 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 (*Local2dPointUncertaintyEllipse) GetConfidence ¶

func (o *Local2dPointUncertaintyEllipse) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local2dPointUncertaintyEllipse) GetConfidenceOk ¶

func (o *Local2dPointUncertaintyEllipse) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*Local2dPointUncertaintyEllipse) GetLocalOrigin ¶

func (o *Local2dPointUncertaintyEllipse) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local2dPointUncertaintyEllipse) GetLocalOriginOk ¶

func (o *Local2dPointUncertaintyEllipse) GetLocalOriginOk() (*LocalOrigin, bool)

GetLocalOriginOk returns a tuple with the LocalOrigin field value and a boolean to check if the value has been set.

func (*Local2dPointUncertaintyEllipse) GetPoint ¶

GetPoint returns the Point field value

func (*Local2dPointUncertaintyEllipse) GetPointOk ¶

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipse ¶

func (o *Local2dPointUncertaintyEllipse) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipseOk ¶

func (o *Local2dPointUncertaintyEllipse) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (Local2dPointUncertaintyEllipse) MarshalJSON ¶

func (o Local2dPointUncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*Local2dPointUncertaintyEllipse) SetConfidence ¶

func (o *Local2dPointUncertaintyEllipse) SetConfidence(v int32)

SetConfidence sets field value

func (*Local2dPointUncertaintyEllipse) SetLocalOrigin ¶

func (o *Local2dPointUncertaintyEllipse) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local2dPointUncertaintyEllipse) SetPoint ¶

SetPoint sets field value

func (*Local2dPointUncertaintyEllipse) SetUncertaintyEllipse ¶

func (o *Local2dPointUncertaintyEllipse) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (Local2dPointUncertaintyEllipse) ToMap ¶

func (o Local2dPointUncertaintyEllipse) ToMap() (map[string]interface{}, error)

type Local2dPointUncertaintyEllipseAllOf ¶

type Local2dPointUncertaintyEllipseAllOf struct {
	LocalOrigin        LocalOrigin               `json:"localOrigin"`
	Point              RelativeCartesianLocation `json:"point"`
	UncertaintyEllipse UncertaintyEllipse        `json:"uncertaintyEllipse"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

Local2dPointUncertaintyEllipseAllOf struct for Local2dPointUncertaintyEllipseAllOf

func NewLocal2dPointUncertaintyEllipseAllOf ¶

func NewLocal2dPointUncertaintyEllipseAllOf(localOrigin LocalOrigin, point RelativeCartesianLocation, uncertaintyEllipse UncertaintyEllipse, confidence int32) *Local2dPointUncertaintyEllipseAllOf

NewLocal2dPointUncertaintyEllipseAllOf instantiates a new Local2dPointUncertaintyEllipseAllOf 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 NewLocal2dPointUncertaintyEllipseAllOfWithDefaults ¶

func NewLocal2dPointUncertaintyEllipseAllOfWithDefaults() *Local2dPointUncertaintyEllipseAllOf

NewLocal2dPointUncertaintyEllipseAllOfWithDefaults instantiates a new Local2dPointUncertaintyEllipseAllOf 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 (*Local2dPointUncertaintyEllipseAllOf) GetConfidence ¶

func (o *Local2dPointUncertaintyEllipseAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local2dPointUncertaintyEllipseAllOf) GetConfidenceOk ¶

func (o *Local2dPointUncertaintyEllipseAllOf) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*Local2dPointUncertaintyEllipseAllOf) GetLocalOrigin ¶

GetLocalOrigin returns the LocalOrigin field value

func (*Local2dPointUncertaintyEllipseAllOf) GetLocalOriginOk ¶

func (o *Local2dPointUncertaintyEllipseAllOf) GetLocalOriginOk() (*LocalOrigin, bool)

GetLocalOriginOk returns a tuple with the LocalOrigin field value and a boolean to check if the value has been set.

func (*Local2dPointUncertaintyEllipseAllOf) GetPoint ¶

GetPoint returns the Point field value

func (*Local2dPointUncertaintyEllipseAllOf) GetPointOk ¶

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipse ¶

func (o *Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipseOk ¶

func (o *Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (Local2dPointUncertaintyEllipseAllOf) MarshalJSON ¶

func (o Local2dPointUncertaintyEllipseAllOf) MarshalJSON() ([]byte, error)

func (*Local2dPointUncertaintyEllipseAllOf) SetConfidence ¶

func (o *Local2dPointUncertaintyEllipseAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*Local2dPointUncertaintyEllipseAllOf) SetLocalOrigin ¶

func (o *Local2dPointUncertaintyEllipseAllOf) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local2dPointUncertaintyEllipseAllOf) SetPoint ¶

SetPoint sets field value

func (*Local2dPointUncertaintyEllipseAllOf) SetUncertaintyEllipse ¶

func (o *Local2dPointUncertaintyEllipseAllOf) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (Local2dPointUncertaintyEllipseAllOf) ToMap ¶

func (o Local2dPointUncertaintyEllipseAllOf) ToMap() (map[string]interface{}, error)

type Local3dPointUncertaintyEllipsoid ¶

type Local3dPointUncertaintyEllipsoid struct {
	GADShape
	LocalOrigin          LocalOrigin               `json:"localOrigin"`
	Point                RelativeCartesianLocation `json:"point"`
	UncertaintyEllipsoid UncertaintyEllipsoid      `json:"uncertaintyEllipsoid"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

Local3dPointUncertaintyEllipsoid Local 3D point with uncertainty ellipsoid

func NewLocal3dPointUncertaintyEllipsoid ¶

func NewLocal3dPointUncertaintyEllipsoid(localOrigin LocalOrigin, point RelativeCartesianLocation, uncertaintyEllipsoid UncertaintyEllipsoid, confidence int32, shape SupportedGADShapes) *Local3dPointUncertaintyEllipsoid

NewLocal3dPointUncertaintyEllipsoid instantiates a new Local3dPointUncertaintyEllipsoid 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 NewLocal3dPointUncertaintyEllipsoidWithDefaults ¶

func NewLocal3dPointUncertaintyEllipsoidWithDefaults() *Local3dPointUncertaintyEllipsoid

NewLocal3dPointUncertaintyEllipsoidWithDefaults instantiates a new Local3dPointUncertaintyEllipsoid 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 (*Local3dPointUncertaintyEllipsoid) GetConfidence ¶

func (o *Local3dPointUncertaintyEllipsoid) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local3dPointUncertaintyEllipsoid) GetConfidenceOk ¶

func (o *Local3dPointUncertaintyEllipsoid) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*Local3dPointUncertaintyEllipsoid) GetLocalOrigin ¶

func (o *Local3dPointUncertaintyEllipsoid) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local3dPointUncertaintyEllipsoid) GetLocalOriginOk ¶

func (o *Local3dPointUncertaintyEllipsoid) GetLocalOriginOk() (*LocalOrigin, bool)

GetLocalOriginOk returns a tuple with the LocalOrigin field value and a boolean to check if the value has been set.

func (*Local3dPointUncertaintyEllipsoid) GetPoint ¶

GetPoint returns the Point field value

func (*Local3dPointUncertaintyEllipsoid) GetPointOk ¶

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid ¶

func (o *Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid() UncertaintyEllipsoid

GetUncertaintyEllipsoid returns the UncertaintyEllipsoid field value

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoidOk ¶

func (o *Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoidOk() (*UncertaintyEllipsoid, bool)

GetUncertaintyEllipsoidOk returns a tuple with the UncertaintyEllipsoid field value and a boolean to check if the value has been set.

func (Local3dPointUncertaintyEllipsoid) MarshalJSON ¶

func (o Local3dPointUncertaintyEllipsoid) MarshalJSON() ([]byte, error)

func (*Local3dPointUncertaintyEllipsoid) SetConfidence ¶

func (o *Local3dPointUncertaintyEllipsoid) SetConfidence(v int32)

SetConfidence sets field value

func (*Local3dPointUncertaintyEllipsoid) SetLocalOrigin ¶

func (o *Local3dPointUncertaintyEllipsoid) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local3dPointUncertaintyEllipsoid) SetPoint ¶

SetPoint sets field value

func (*Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid ¶

func (o *Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid(v UncertaintyEllipsoid)

SetUncertaintyEllipsoid sets field value

func (Local3dPointUncertaintyEllipsoid) ToMap ¶

func (o Local3dPointUncertaintyEllipsoid) ToMap() (map[string]interface{}, error)

type Local3dPointUncertaintyEllipsoidAllOf ¶

type Local3dPointUncertaintyEllipsoidAllOf struct {
	LocalOrigin          LocalOrigin               `json:"localOrigin"`
	Point                RelativeCartesianLocation `json:"point"`
	UncertaintyEllipsoid UncertaintyEllipsoid      `json:"uncertaintyEllipsoid"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

Local3dPointUncertaintyEllipsoidAllOf struct for Local3dPointUncertaintyEllipsoidAllOf

func NewLocal3dPointUncertaintyEllipsoidAllOf ¶

func NewLocal3dPointUncertaintyEllipsoidAllOf(localOrigin LocalOrigin, point RelativeCartesianLocation, uncertaintyEllipsoid UncertaintyEllipsoid, confidence int32) *Local3dPointUncertaintyEllipsoidAllOf

NewLocal3dPointUncertaintyEllipsoidAllOf instantiates a new Local3dPointUncertaintyEllipsoidAllOf 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 NewLocal3dPointUncertaintyEllipsoidAllOfWithDefaults ¶

func NewLocal3dPointUncertaintyEllipsoidAllOfWithDefaults() *Local3dPointUncertaintyEllipsoidAllOf

NewLocal3dPointUncertaintyEllipsoidAllOfWithDefaults instantiates a new Local3dPointUncertaintyEllipsoidAllOf 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 (*Local3dPointUncertaintyEllipsoidAllOf) GetConfidence ¶

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetConfidenceOk ¶

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*Local3dPointUncertaintyEllipsoidAllOf) GetLocalOrigin ¶

GetLocalOrigin returns the LocalOrigin field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetLocalOriginOk ¶

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetLocalOriginOk() (*LocalOrigin, bool)

GetLocalOriginOk returns a tuple with the LocalOrigin field value and a boolean to check if the value has been set.

func (*Local3dPointUncertaintyEllipsoidAllOf) GetPoint ¶

GetPoint returns the Point field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetPointOk ¶

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoid ¶

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoid() UncertaintyEllipsoid

GetUncertaintyEllipsoid returns the UncertaintyEllipsoid field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoidOk ¶

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoidOk() (*UncertaintyEllipsoid, bool)

GetUncertaintyEllipsoidOk returns a tuple with the UncertaintyEllipsoid field value and a boolean to check if the value has been set.

func (Local3dPointUncertaintyEllipsoidAllOf) MarshalJSON ¶

func (o Local3dPointUncertaintyEllipsoidAllOf) MarshalJSON() ([]byte, error)

func (*Local3dPointUncertaintyEllipsoidAllOf) SetConfidence ¶

func (o *Local3dPointUncertaintyEllipsoidAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*Local3dPointUncertaintyEllipsoidAllOf) SetLocalOrigin ¶

SetLocalOrigin sets field value

func (*Local3dPointUncertaintyEllipsoidAllOf) SetPoint ¶

SetPoint sets field value

func (*Local3dPointUncertaintyEllipsoidAllOf) SetUncertaintyEllipsoid ¶

func (o *Local3dPointUncertaintyEllipsoidAllOf) SetUncertaintyEllipsoid(v UncertaintyEllipsoid)

SetUncertaintyEllipsoid sets field value

func (Local3dPointUncertaintyEllipsoidAllOf) ToMap ¶

func (o Local3dPointUncertaintyEllipsoidAllOf) ToMap() (map[string]interface{}, error)

type LocalOrigin ¶

type LocalOrigin struct {
	CoordinateId *string                  `json:"coordinateId,omitempty"`
	Point        *GeographicalCoordinates `json:"point,omitempty"`
}

LocalOrigin Indicates a Local origin in a reference system

func NewLocalOrigin ¶

func NewLocalOrigin() *LocalOrigin

NewLocalOrigin instantiates a new LocalOrigin 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 NewLocalOriginWithDefaults ¶

func NewLocalOriginWithDefaults() *LocalOrigin

NewLocalOriginWithDefaults instantiates a new LocalOrigin 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 (*LocalOrigin) GetCoordinateId ¶

func (o *LocalOrigin) GetCoordinateId() string

GetCoordinateId returns the CoordinateId field value if set, zero value otherwise.

func (*LocalOrigin) GetCoordinateIdOk ¶

func (o *LocalOrigin) GetCoordinateIdOk() (*string, bool)

GetCoordinateIdOk returns a tuple with the CoordinateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocalOrigin) GetPoint ¶

func (o *LocalOrigin) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value if set, zero value otherwise.

func (*LocalOrigin) GetPointOk ¶

func (o *LocalOrigin) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocalOrigin) HasCoordinateId ¶

func (o *LocalOrigin) HasCoordinateId() bool

HasCoordinateId returns a boolean if a field has been set.

func (*LocalOrigin) HasPoint ¶

func (o *LocalOrigin) HasPoint() bool

HasPoint returns a boolean if a field has been set.

func (LocalOrigin) MarshalJSON ¶

func (o LocalOrigin) MarshalJSON() ([]byte, error)

func (*LocalOrigin) SetCoordinateId ¶

func (o *LocalOrigin) SetCoordinateId(v string)

SetCoordinateId gets a reference to the given string and assigns it to the CoordinateId field.

func (*LocalOrigin) SetPoint ¶

func (o *LocalOrigin) SetPoint(v GeographicalCoordinates)

SetPoint gets a reference to the given GeographicalCoordinates and assigns it to the Point field.

func (LocalOrigin) ToMap ¶

func (o LocalOrigin) ToMap() (map[string]interface{}, error)

type LocalityDescription ¶

type LocalityDescription struct {
	LocalityType      LocalityType              `json:"localityType"`
	LocalityValue     string                    `json:"localityValue"`
	AddlLocDescrItems []LocalityDescriptionItem `json:"addlLocDescrItems,omitempty"`
}

LocalityDescription Locality description

func NewLocalityDescription ¶

func NewLocalityDescription(localityType LocalityType, localityValue string) *LocalityDescription

NewLocalityDescription instantiates a new LocalityDescription 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 NewLocalityDescriptionWithDefaults ¶

func NewLocalityDescriptionWithDefaults() *LocalityDescription

NewLocalityDescriptionWithDefaults instantiates a new LocalityDescription 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 (*LocalityDescription) GetAddlLocDescrItems ¶

func (o *LocalityDescription) GetAddlLocDescrItems() []LocalityDescriptionItem

GetAddlLocDescrItems returns the AddlLocDescrItems field value if set, zero value otherwise.

func (*LocalityDescription) GetAddlLocDescrItemsOk ¶

func (o *LocalityDescription) GetAddlLocDescrItemsOk() ([]LocalityDescriptionItem, bool)

GetAddlLocDescrItemsOk returns a tuple with the AddlLocDescrItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocalityDescription) GetLocalityType ¶

func (o *LocalityDescription) GetLocalityType() LocalityType

GetLocalityType returns the LocalityType field value

func (*LocalityDescription) GetLocalityTypeOk ¶

func (o *LocalityDescription) GetLocalityTypeOk() (*LocalityType, bool)

GetLocalityTypeOk returns a tuple with the LocalityType field value and a boolean to check if the value has been set.

func (*LocalityDescription) GetLocalityValue ¶

func (o *LocalityDescription) GetLocalityValue() string

GetLocalityValue returns the LocalityValue field value

func (*LocalityDescription) GetLocalityValueOk ¶

func (o *LocalityDescription) GetLocalityValueOk() (*string, bool)

GetLocalityValueOk returns a tuple with the LocalityValue field value and a boolean to check if the value has been set.

func (*LocalityDescription) HasAddlLocDescrItems ¶

func (o *LocalityDescription) HasAddlLocDescrItems() bool

HasAddlLocDescrItems returns a boolean if a field has been set.

func (LocalityDescription) MarshalJSON ¶

func (o LocalityDescription) MarshalJSON() ([]byte, error)

func (*LocalityDescription) SetAddlLocDescrItems ¶

func (o *LocalityDescription) SetAddlLocDescrItems(v []LocalityDescriptionItem)

SetAddlLocDescrItems gets a reference to the given []LocalityDescriptionItem and assigns it to the AddlLocDescrItems field.

func (*LocalityDescription) SetLocalityType ¶

func (o *LocalityDescription) SetLocalityType(v LocalityType)

SetLocalityType sets field value

func (*LocalityDescription) SetLocalityValue ¶

func (o *LocalityDescription) SetLocalityValue(v string)

SetLocalityValue sets field value

func (LocalityDescription) ToMap ¶

func (o LocalityDescription) ToMap() (map[string]interface{}, error)

type LocalityDescriptionItem ¶

type LocalityDescriptionItem struct {
	LocalityType  LocalityType `json:"localityType"`
	LocalityValue string       `json:"localityValue"`
}

LocalityDescriptionItem Locality description item

func NewLocalityDescriptionItem ¶

func NewLocalityDescriptionItem(localityType LocalityType, localityValue string) *LocalityDescriptionItem

NewLocalityDescriptionItem instantiates a new LocalityDescriptionItem 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 NewLocalityDescriptionItemWithDefaults ¶

func NewLocalityDescriptionItemWithDefaults() *LocalityDescriptionItem

NewLocalityDescriptionItemWithDefaults instantiates a new LocalityDescriptionItem 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 (*LocalityDescriptionItem) GetLocalityType ¶

func (o *LocalityDescriptionItem) GetLocalityType() LocalityType

GetLocalityType returns the LocalityType field value

func (*LocalityDescriptionItem) GetLocalityTypeOk ¶

func (o *LocalityDescriptionItem) GetLocalityTypeOk() (*LocalityType, bool)

GetLocalityTypeOk returns a tuple with the LocalityType field value and a boolean to check if the value has been set.

func (*LocalityDescriptionItem) GetLocalityValue ¶

func (o *LocalityDescriptionItem) GetLocalityValue() string

GetLocalityValue returns the LocalityValue field value

func (*LocalityDescriptionItem) GetLocalityValueOk ¶

func (o *LocalityDescriptionItem) GetLocalityValueOk() (*string, bool)

GetLocalityValueOk returns a tuple with the LocalityValue field value and a boolean to check if the value has been set.

func (LocalityDescriptionItem) MarshalJSON ¶

func (o LocalityDescriptionItem) MarshalJSON() ([]byte, error)

func (*LocalityDescriptionItem) SetLocalityType ¶

func (o *LocalityDescriptionItem) SetLocalityType(v LocalityType)

SetLocalityType sets field value

func (*LocalityDescriptionItem) SetLocalityValue ¶

func (o *LocalityDescriptionItem) SetLocalityValue(v string)

SetLocalityValue sets field value

func (LocalityDescriptionItem) ToMap ¶

func (o LocalityDescriptionItem) ToMap() (map[string]interface{}, error)

type LocalityType ¶

type LocalityType struct {
	String *string
}

LocalityType Type of locality description. An operator may define custom locality type values other than those listed in this enumeration.

func (*LocalityType) MarshalJSON ¶

func (src *LocalityType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*LocalityType) UnmarshalJSON ¶

func (dst *LocalityType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type LocationAccuracy ¶

type LocationAccuracy struct {
	String *string
}

LocationAccuracy struct for LocationAccuracy

func (*LocationAccuracy) MarshalJSON ¶

func (src *LocationAccuracy) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*LocationAccuracy) UnmarshalJSON ¶

func (dst *LocationAccuracy) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type LocationArea ¶

type LocationArea struct {
	// Identifies a list of geographic area of the user where the UE is located.
	GeographicAreas []GeographicArea `json:"geographicAreas,omitempty"`
	// Identifies a list of civic addresses of the user where the UE is located.
	CivicAddresses []CivicAddress    `json:"civicAddresses,omitempty"`
	NwAreaInfo     *NetworkAreaInfo1 `json:"nwAreaInfo,omitempty"`
	UmtTime        *UmtTime          `json:"umtTime,omitempty"`
}

LocationArea struct for LocationArea

func NewLocationArea ¶

func NewLocationArea() *LocationArea

NewLocationArea instantiates a new LocationArea 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 NewLocationAreaWithDefaults ¶

func NewLocationAreaWithDefaults() *LocationArea

NewLocationAreaWithDefaults instantiates a new LocationArea 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 (*LocationArea) GetCivicAddresses ¶

func (o *LocationArea) GetCivicAddresses() []CivicAddress

GetCivicAddresses returns the CivicAddresses field value if set, zero value otherwise.

func (*LocationArea) GetCivicAddressesOk ¶

func (o *LocationArea) GetCivicAddressesOk() ([]CivicAddress, bool)

GetCivicAddressesOk returns a tuple with the CivicAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationArea) GetGeographicAreas ¶

func (o *LocationArea) GetGeographicAreas() []GeographicArea

GetGeographicAreas returns the GeographicAreas field value if set, zero value otherwise.

func (*LocationArea) GetGeographicAreasOk ¶

func (o *LocationArea) GetGeographicAreasOk() ([]GeographicArea, bool)

GetGeographicAreasOk returns a tuple with the GeographicAreas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationArea) GetNwAreaInfo ¶

func (o *LocationArea) GetNwAreaInfo() NetworkAreaInfo1

GetNwAreaInfo returns the NwAreaInfo field value if set, zero value otherwise.

func (*LocationArea) GetNwAreaInfoOk ¶

func (o *LocationArea) GetNwAreaInfoOk() (*NetworkAreaInfo1, bool)

GetNwAreaInfoOk returns a tuple with the NwAreaInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationArea) GetUmtTime ¶

func (o *LocationArea) GetUmtTime() UmtTime

GetUmtTime returns the UmtTime field value if set, zero value otherwise.

func (*LocationArea) GetUmtTimeOk ¶

func (o *LocationArea) GetUmtTimeOk() (*UmtTime, bool)

GetUmtTimeOk returns a tuple with the UmtTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationArea) HasCivicAddresses ¶

func (o *LocationArea) HasCivicAddresses() bool

HasCivicAddresses returns a boolean if a field has been set.

func (*LocationArea) HasGeographicAreas ¶

func (o *LocationArea) HasGeographicAreas() bool

HasGeographicAreas returns a boolean if a field has been set.

func (*LocationArea) HasNwAreaInfo ¶

func (o *LocationArea) HasNwAreaInfo() bool

HasNwAreaInfo returns a boolean if a field has been set.

func (*LocationArea) HasUmtTime ¶

func (o *LocationArea) HasUmtTime() bool

HasUmtTime returns a boolean if a field has been set.

func (LocationArea) MarshalJSON ¶

func (o LocationArea) MarshalJSON() ([]byte, error)

func (*LocationArea) SetCivicAddresses ¶

func (o *LocationArea) SetCivicAddresses(v []CivicAddress)

SetCivicAddresses gets a reference to the given []CivicAddress and assigns it to the CivicAddresses field.

func (*LocationArea) SetGeographicAreas ¶

func (o *LocationArea) SetGeographicAreas(v []GeographicArea)

SetGeographicAreas gets a reference to the given []GeographicArea and assigns it to the GeographicAreas field.

func (*LocationArea) SetNwAreaInfo ¶

func (o *LocationArea) SetNwAreaInfo(v NetworkAreaInfo1)

SetNwAreaInfo gets a reference to the given NetworkAreaInfo1 and assigns it to the NwAreaInfo field.

func (*LocationArea) SetUmtTime ¶

func (o *LocationArea) SetUmtTime(v UmtTime)

SetUmtTime gets a reference to the given UmtTime and assigns it to the UmtTime field.

func (LocationArea) ToMap ¶

func (o LocationArea) ToMap() (map[string]interface{}, error)

type LocationArea5G ¶

type LocationArea5G struct {
	// Identifies a list of geographic area of the user where the UE is located.
	GeographicAreas []GeographicArea `json:"geographicAreas,omitempty"`
	// Identifies a list of civic addresses of the user where the UE is located.
	CivicAddresses []CivicAddress   `json:"civicAddresses,omitempty"`
	NwAreaInfo     *NetworkAreaInfo `json:"nwAreaInfo,omitempty"`
}

LocationArea5G Represents a user location area when the UE is attached to 5G.

func NewLocationArea5G ¶

func NewLocationArea5G() *LocationArea5G

NewLocationArea5G instantiates a new LocationArea5G 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 NewLocationArea5GWithDefaults ¶

func NewLocationArea5GWithDefaults() *LocationArea5G

NewLocationArea5GWithDefaults instantiates a new LocationArea5G 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 (*LocationArea5G) GetCivicAddresses ¶

func (o *LocationArea5G) GetCivicAddresses() []CivicAddress

GetCivicAddresses returns the CivicAddresses field value if set, zero value otherwise.

func (*LocationArea5G) GetCivicAddressesOk ¶

func (o *LocationArea5G) GetCivicAddressesOk() ([]CivicAddress, bool)

GetCivicAddressesOk returns a tuple with the CivicAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationArea5G) GetGeographicAreas ¶

func (o *LocationArea5G) GetGeographicAreas() []GeographicArea

GetGeographicAreas returns the GeographicAreas field value if set, zero value otherwise.

func (*LocationArea5G) GetGeographicAreasOk ¶

func (o *LocationArea5G) GetGeographicAreasOk() ([]GeographicArea, bool)

GetGeographicAreasOk returns a tuple with the GeographicAreas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationArea5G) GetNwAreaInfo ¶

func (o *LocationArea5G) GetNwAreaInfo() NetworkAreaInfo

GetNwAreaInfo returns the NwAreaInfo field value if set, zero value otherwise.

func (*LocationArea5G) GetNwAreaInfoOk ¶

func (o *LocationArea5G) GetNwAreaInfoOk() (*NetworkAreaInfo, bool)

GetNwAreaInfoOk returns a tuple with the NwAreaInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationArea5G) HasCivicAddresses ¶

func (o *LocationArea5G) HasCivicAddresses() bool

HasCivicAddresses returns a boolean if a field has been set.

func (*LocationArea5G) HasGeographicAreas ¶

func (o *LocationArea5G) HasGeographicAreas() bool

HasGeographicAreas returns a boolean if a field has been set.

func (*LocationArea5G) HasNwAreaInfo ¶

func (o *LocationArea5G) HasNwAreaInfo() bool

HasNwAreaInfo returns a boolean if a field has been set.

func (LocationArea5G) MarshalJSON ¶

func (o LocationArea5G) MarshalJSON() ([]byte, error)

func (*LocationArea5G) SetCivicAddresses ¶

func (o *LocationArea5G) SetCivicAddresses(v []CivicAddress)

SetCivicAddresses gets a reference to the given []CivicAddress and assigns it to the CivicAddresses field.

func (*LocationArea5G) SetGeographicAreas ¶

func (o *LocationArea5G) SetGeographicAreas(v []GeographicArea)

SetGeographicAreas gets a reference to the given []GeographicArea and assigns it to the GeographicAreas field.

func (*LocationArea5G) SetNwAreaInfo ¶

func (o *LocationArea5G) SetNwAreaInfo(v NetworkAreaInfo)

SetNwAreaInfo gets a reference to the given NetworkAreaInfo and assigns it to the NwAreaInfo field.

func (LocationArea5G) ToMap ¶

func (o LocationArea5G) ToMap() (map[string]interface{}, error)

type LocationAreaId ¶

type LocationAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code.
	Lac string `json:"lac"`
}

LocationAreaId Contains a Location area identification as defined in 3GPP TS 23.003, clause 4.1.

func NewLocationAreaId ¶

func NewLocationAreaId(plmnId PlmnId, lac string) *LocationAreaId

NewLocationAreaId instantiates a new LocationAreaId 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 NewLocationAreaIdWithDefaults ¶

func NewLocationAreaIdWithDefaults() *LocationAreaId

NewLocationAreaIdWithDefaults instantiates a new LocationAreaId 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 (*LocationAreaId) GetLac ¶

func (o *LocationAreaId) GetLac() string

GetLac returns the Lac field value

func (*LocationAreaId) GetLacOk ¶

func (o *LocationAreaId) GetLacOk() (*string, bool)

GetLacOk returns a tuple with the Lac field value and a boolean to check if the value has been set.

func (*LocationAreaId) GetPlmnId ¶

func (o *LocationAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*LocationAreaId) GetPlmnIdOk ¶

func (o *LocationAreaId) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (LocationAreaId) MarshalJSON ¶

func (o LocationAreaId) MarshalJSON() ([]byte, error)

func (*LocationAreaId) SetLac ¶

func (o *LocationAreaId) SetLac(v string)

SetLac sets field value

func (*LocationAreaId) SetPlmnId ¶

func (o *LocationAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (LocationAreaId) ToMap ¶

func (o LocationAreaId) ToMap() (map[string]interface{}, error)

type LocationFilter ¶

type LocationFilter struct {
	String *string
}

LocationFilter Describes the supported filters of LOCATION_REPORT event type

func (*LocationFilter) MarshalJSON ¶

func (src *LocationFilter) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*LocationFilter) UnmarshalJSON ¶

func (dst *LocationFilter) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type LocationInfo ¶

type LocationInfo struct {
	Loc UserLocation `json:"loc"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	Ratio *int32 `json:"ratio,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Confidence *int32 `json:"confidence,omitempty"`
}

LocationInfo Represents UE location information.

func NewLocationInfo ¶

func NewLocationInfo(loc UserLocation) *LocationInfo

NewLocationInfo instantiates a new LocationInfo 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 NewLocationInfoWithDefaults ¶

func NewLocationInfoWithDefaults() *LocationInfo

NewLocationInfoWithDefaults instantiates a new LocationInfo 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 (*LocationInfo) GetConfidence ¶

func (o *LocationInfo) GetConfidence() int32

GetConfidence returns the Confidence field value if set, zero value otherwise.

func (*LocationInfo) GetConfidenceOk ¶

func (o *LocationInfo) GetConfidenceOk() (*int32, bool)

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 (*LocationInfo) GetLoc ¶

func (o *LocationInfo) GetLoc() UserLocation

GetLoc returns the Loc field value

func (*LocationInfo) GetLocOk ¶

func (o *LocationInfo) GetLocOk() (*UserLocation, bool)

GetLocOk returns a tuple with the Loc field value and a boolean to check if the value has been set.

func (*LocationInfo) GetRatio ¶

func (o *LocationInfo) GetRatio() int32

GetRatio returns the Ratio field value if set, zero value otherwise.

func (*LocationInfo) GetRatioOk ¶

func (o *LocationInfo) GetRatioOk() (*int32, bool)

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 (*LocationInfo) HasConfidence ¶

func (o *LocationInfo) HasConfidence() bool

HasConfidence returns a boolean if a field has been set.

func (*LocationInfo) HasRatio ¶

func (o *LocationInfo) HasRatio() bool

HasRatio returns a boolean if a field has been set.

func (LocationInfo) MarshalJSON ¶

func (o LocationInfo) MarshalJSON() ([]byte, error)

func (*LocationInfo) SetConfidence ¶

func (o *LocationInfo) SetConfidence(v int32)

SetConfidence gets a reference to the given int32 and assigns it to the Confidence field.

func (*LocationInfo) SetLoc ¶

func (o *LocationInfo) SetLoc(v UserLocation)

SetLoc sets field value

func (*LocationInfo) SetRatio ¶

func (o *LocationInfo) SetRatio(v int32)

SetRatio gets a reference to the given int32 and assigns it to the Ratio field.

func (LocationInfo) ToMap ¶

func (o LocationInfo) ToMap() (map[string]interface{}, error)

type LocationReport ¶

type LocationReport struct {
	Location UserLocation `json:"location"`
}

LocationReport struct for LocationReport

func NewLocationReport ¶

func NewLocationReport(location UserLocation) *LocationReport

NewLocationReport instantiates a new LocationReport 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 NewLocationReportWithDefaults ¶

func NewLocationReportWithDefaults() *LocationReport

NewLocationReportWithDefaults instantiates a new LocationReport 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 (*LocationReport) GetLocation ¶

func (o *LocationReport) GetLocation() UserLocation

GetLocation returns the Location field value

func (*LocationReport) GetLocationOk ¶

func (o *LocationReport) GetLocationOk() (*UserLocation, bool)

GetLocationOk returns a tuple with the Location field value and a boolean to check if the value has been set.

func (LocationReport) MarshalJSON ¶

func (o LocationReport) MarshalJSON() ([]byte, error)

func (*LocationReport) SetLocation ¶

func (o *LocationReport) SetLocation(v UserLocation)

SetLocation sets field value

func (LocationReport) ToMap ¶

func (o LocationReport) ToMap() (map[string]interface{}, error)

type LocationReportingConfiguration ¶

type LocationReportingConfiguration struct {
	CurrentLocation bool              `json:"currentLocation"`
	OneTime         *bool             `json:"oneTime,omitempty"`
	Accuracy        *LocationAccuracy `json:"accuracy,omitempty"`
	N3gppAccuracy   *LocationAccuracy `json:"n3gppAccuracy,omitempty"`
}

LocationReportingConfiguration struct for LocationReportingConfiguration

func NewLocationReportingConfiguration ¶

func NewLocationReportingConfiguration(currentLocation bool) *LocationReportingConfiguration

NewLocationReportingConfiguration instantiates a new LocationReportingConfiguration 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 NewLocationReportingConfigurationWithDefaults ¶

func NewLocationReportingConfigurationWithDefaults() *LocationReportingConfiguration

NewLocationReportingConfigurationWithDefaults instantiates a new LocationReportingConfiguration 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 (*LocationReportingConfiguration) GetAccuracy ¶

GetAccuracy returns the Accuracy field value if set, zero value otherwise.

func (*LocationReportingConfiguration) GetAccuracyOk ¶

func (o *LocationReportingConfiguration) GetAccuracyOk() (*LocationAccuracy, bool)

GetAccuracyOk returns a tuple with the Accuracy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationReportingConfiguration) GetCurrentLocation ¶

func (o *LocationReportingConfiguration) GetCurrentLocation() bool

GetCurrentLocation returns the CurrentLocation field value

func (*LocationReportingConfiguration) GetCurrentLocationOk ¶

func (o *LocationReportingConfiguration) GetCurrentLocationOk() (*bool, bool)

GetCurrentLocationOk returns a tuple with the CurrentLocation field value and a boolean to check if the value has been set.

func (*LocationReportingConfiguration) GetN3gppAccuracy ¶

func (o *LocationReportingConfiguration) GetN3gppAccuracy() LocationAccuracy

GetN3gppAccuracy returns the N3gppAccuracy field value if set, zero value otherwise.

func (*LocationReportingConfiguration) GetN3gppAccuracyOk ¶

func (o *LocationReportingConfiguration) GetN3gppAccuracyOk() (*LocationAccuracy, bool)

GetN3gppAccuracyOk returns a tuple with the N3gppAccuracy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationReportingConfiguration) GetOneTime ¶

func (o *LocationReportingConfiguration) GetOneTime() bool

GetOneTime returns the OneTime field value if set, zero value otherwise.

func (*LocationReportingConfiguration) GetOneTimeOk ¶

func (o *LocationReportingConfiguration) GetOneTimeOk() (*bool, bool)

GetOneTimeOk returns a tuple with the OneTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationReportingConfiguration) HasAccuracy ¶

func (o *LocationReportingConfiguration) HasAccuracy() bool

HasAccuracy returns a boolean if a field has been set.

func (*LocationReportingConfiguration) HasN3gppAccuracy ¶

func (o *LocationReportingConfiguration) HasN3gppAccuracy() bool

HasN3gppAccuracy returns a boolean if a field has been set.

func (*LocationReportingConfiguration) HasOneTime ¶

func (o *LocationReportingConfiguration) HasOneTime() bool

HasOneTime returns a boolean if a field has been set.

func (LocationReportingConfiguration) MarshalJSON ¶

func (o LocationReportingConfiguration) MarshalJSON() ([]byte, error)

func (*LocationReportingConfiguration) SetAccuracy ¶

SetAccuracy gets a reference to the given LocationAccuracy and assigns it to the Accuracy field.

func (*LocationReportingConfiguration) SetCurrentLocation ¶

func (o *LocationReportingConfiguration) SetCurrentLocation(v bool)

SetCurrentLocation sets field value

func (*LocationReportingConfiguration) SetN3gppAccuracy ¶

func (o *LocationReportingConfiguration) SetN3gppAccuracy(v LocationAccuracy)

SetN3gppAccuracy gets a reference to the given LocationAccuracy and assigns it to the N3gppAccuracy field.

func (*LocationReportingConfiguration) SetOneTime ¶

func (o *LocationReportingConfiguration) SetOneTime(v bool)

SetOneTime gets a reference to the given bool and assigns it to the OneTime field.

func (LocationReportingConfiguration) ToMap ¶

func (o LocationReportingConfiguration) ToMap() (map[string]interface{}, error)

type LossConnectivityCfg ¶

type LossConnectivityCfg struct {
	// indicating a time in seconds.
	MaxDetectionTime *int32 `json:"maxDetectionTime,omitempty"`
}

LossConnectivityCfg struct for LossConnectivityCfg

func NewLossConnectivityCfg ¶

func NewLossConnectivityCfg() *LossConnectivityCfg

NewLossConnectivityCfg instantiates a new LossConnectivityCfg 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 NewLossConnectivityCfgWithDefaults ¶

func NewLossConnectivityCfgWithDefaults() *LossConnectivityCfg

NewLossConnectivityCfgWithDefaults instantiates a new LossConnectivityCfg 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 (*LossConnectivityCfg) GetMaxDetectionTime ¶

func (o *LossConnectivityCfg) GetMaxDetectionTime() int32

GetMaxDetectionTime returns the MaxDetectionTime field value if set, zero value otherwise.

func (*LossConnectivityCfg) GetMaxDetectionTimeOk ¶

func (o *LossConnectivityCfg) GetMaxDetectionTimeOk() (*int32, bool)

GetMaxDetectionTimeOk returns a tuple with the MaxDetectionTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LossConnectivityCfg) HasMaxDetectionTime ¶

func (o *LossConnectivityCfg) HasMaxDetectionTime() bool

HasMaxDetectionTime returns a boolean if a field has been set.

func (LossConnectivityCfg) MarshalJSON ¶

func (o LossConnectivityCfg) MarshalJSON() ([]byte, error)

func (*LossConnectivityCfg) SetMaxDetectionTime ¶

func (o *LossConnectivityCfg) SetMaxDetectionTime(v int32)

SetMaxDetectionTime gets a reference to the given int32 and assigns it to the MaxDetectionTime field.

func (LossConnectivityCfg) ToMap ¶

func (o LossConnectivityCfg) ToMap() (map[string]interface{}, error)

type LossConnectivityReport ¶

type LossConnectivityReport struct {
	LossOfConnectReason LossOfConnectivityReason `json:"lossOfConnectReason"`
}

LossConnectivityReport struct for LossConnectivityReport

func NewLossConnectivityReport ¶

func NewLossConnectivityReport(lossOfConnectReason LossOfConnectivityReason) *LossConnectivityReport

NewLossConnectivityReport instantiates a new LossConnectivityReport 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 NewLossConnectivityReportWithDefaults ¶

func NewLossConnectivityReportWithDefaults() *LossConnectivityReport

NewLossConnectivityReportWithDefaults instantiates a new LossConnectivityReport 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 (*LossConnectivityReport) GetLossOfConnectReason ¶

func (o *LossConnectivityReport) GetLossOfConnectReason() LossOfConnectivityReason

GetLossOfConnectReason returns the LossOfConnectReason field value

func (*LossConnectivityReport) GetLossOfConnectReasonOk ¶

func (o *LossConnectivityReport) GetLossOfConnectReasonOk() (*LossOfConnectivityReason, bool)

GetLossOfConnectReasonOk returns a tuple with the LossOfConnectReason field value and a boolean to check if the value has been set.

func (LossConnectivityReport) MarshalJSON ¶

func (o LossConnectivityReport) MarshalJSON() ([]byte, error)

func (*LossConnectivityReport) SetLossOfConnectReason ¶

func (o *LossConnectivityReport) SetLossOfConnectReason(v LossOfConnectivityReason)

SetLossOfConnectReason sets field value

func (LossConnectivityReport) ToMap ¶

func (o LossConnectivityReport) ToMap() (map[string]interface{}, error)

type LossOfConnectivityReason ¶

type LossOfConnectivityReason struct {
	String *string
}

LossOfConnectivityReason Describes the reason for loss of connectivity

func (*LossOfConnectivityReason) MarshalJSON ¶

func (src *LossOfConnectivityReason) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*LossOfConnectivityReason) UnmarshalJSON ¶

func (dst *LossOfConnectivityReason) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type M5QoSSpecification ¶

type M5QoSSpecification struct {
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MarBwDlBitRate string `json:"marBwDlBitRate"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MarBwUlBitRate string `json:"marBwUlBitRate"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MinDesBwDlBitRate *string `json:"minDesBwDlBitRate,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MinDesBwUlBitRate *string `json:"minDesBwUlBitRate,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MirBwDlBitRate string `json:"mirBwDlBitRate"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MirBwUlBitRate string `json:"mirBwUlBitRate"`
	DesLatency     *int32 `json:"desLatency,omitempty"`
	DesLoss        *int32 `json:"desLoss,omitempty"`
}

M5QoSSpecification struct for M5QoSSpecification

func NewM5QoSSpecification ¶

func NewM5QoSSpecification(marBwDlBitRate string, marBwUlBitRate string, mirBwDlBitRate string, mirBwUlBitRate string) *M5QoSSpecification

NewM5QoSSpecification instantiates a new M5QoSSpecification 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 NewM5QoSSpecificationWithDefaults ¶

func NewM5QoSSpecificationWithDefaults() *M5QoSSpecification

NewM5QoSSpecificationWithDefaults instantiates a new M5QoSSpecification 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 (*M5QoSSpecification) GetDesLatency ¶

func (o *M5QoSSpecification) GetDesLatency() int32

GetDesLatency returns the DesLatency field value if set, zero value otherwise.

func (*M5QoSSpecification) GetDesLatencyOk ¶

func (o *M5QoSSpecification) GetDesLatencyOk() (*int32, bool)

GetDesLatencyOk returns a tuple with the DesLatency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*M5QoSSpecification) GetDesLoss ¶

func (o *M5QoSSpecification) GetDesLoss() int32

GetDesLoss returns the DesLoss field value if set, zero value otherwise.

func (*M5QoSSpecification) GetDesLossOk ¶

func (o *M5QoSSpecification) GetDesLossOk() (*int32, bool)

GetDesLossOk returns a tuple with the DesLoss field value if set, nil otherwise and a boolean to check if the value has been set.

func (*M5QoSSpecification) GetMarBwDlBitRate ¶

func (o *M5QoSSpecification) GetMarBwDlBitRate() string

GetMarBwDlBitRate returns the MarBwDlBitRate field value

func (*M5QoSSpecification) GetMarBwDlBitRateOk ¶

func (o *M5QoSSpecification) GetMarBwDlBitRateOk() (*string, bool)

GetMarBwDlBitRateOk returns a tuple with the MarBwDlBitRate field value and a boolean to check if the value has been set.

func (*M5QoSSpecification) GetMarBwUlBitRate ¶

func (o *M5QoSSpecification) GetMarBwUlBitRate() string

GetMarBwUlBitRate returns the MarBwUlBitRate field value

func (*M5QoSSpecification) GetMarBwUlBitRateOk ¶

func (o *M5QoSSpecification) GetMarBwUlBitRateOk() (*string, bool)

GetMarBwUlBitRateOk returns a tuple with the MarBwUlBitRate field value and a boolean to check if the value has been set.

func (*M5QoSSpecification) GetMinDesBwDlBitRate ¶

func (o *M5QoSSpecification) GetMinDesBwDlBitRate() string

GetMinDesBwDlBitRate returns the MinDesBwDlBitRate field value if set, zero value otherwise.

func (*M5QoSSpecification) GetMinDesBwDlBitRateOk ¶

func (o *M5QoSSpecification) GetMinDesBwDlBitRateOk() (*string, bool)

GetMinDesBwDlBitRateOk returns a tuple with the MinDesBwDlBitRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*M5QoSSpecification) GetMinDesBwUlBitRate ¶

func (o *M5QoSSpecification) GetMinDesBwUlBitRate() string

GetMinDesBwUlBitRate returns the MinDesBwUlBitRate field value if set, zero value otherwise.

func (*M5QoSSpecification) GetMinDesBwUlBitRateOk ¶

func (o *M5QoSSpecification) GetMinDesBwUlBitRateOk() (*string, bool)

GetMinDesBwUlBitRateOk returns a tuple with the MinDesBwUlBitRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*M5QoSSpecification) GetMirBwDlBitRate ¶

func (o *M5QoSSpecification) GetMirBwDlBitRate() string

GetMirBwDlBitRate returns the MirBwDlBitRate field value

func (*M5QoSSpecification) GetMirBwDlBitRateOk ¶

func (o *M5QoSSpecification) GetMirBwDlBitRateOk() (*string, bool)

GetMirBwDlBitRateOk returns a tuple with the MirBwDlBitRate field value and a boolean to check if the value has been set.

func (*M5QoSSpecification) GetMirBwUlBitRate ¶

func (o *M5QoSSpecification) GetMirBwUlBitRate() string

GetMirBwUlBitRate returns the MirBwUlBitRate field value

func (*M5QoSSpecification) GetMirBwUlBitRateOk ¶

func (o *M5QoSSpecification) GetMirBwUlBitRateOk() (*string, bool)

GetMirBwUlBitRateOk returns a tuple with the MirBwUlBitRate field value and a boolean to check if the value has been set.

func (*M5QoSSpecification) HasDesLatency ¶

func (o *M5QoSSpecification) HasDesLatency() bool

HasDesLatency returns a boolean if a field has been set.

func (*M5QoSSpecification) HasDesLoss ¶

func (o *M5QoSSpecification) HasDesLoss() bool

HasDesLoss returns a boolean if a field has been set.

func (*M5QoSSpecification) HasMinDesBwDlBitRate ¶

func (o *M5QoSSpecification) HasMinDesBwDlBitRate() bool

HasMinDesBwDlBitRate returns a boolean if a field has been set.

func (*M5QoSSpecification) HasMinDesBwUlBitRate ¶

func (o *M5QoSSpecification) HasMinDesBwUlBitRate() bool

HasMinDesBwUlBitRate returns a boolean if a field has been set.

func (M5QoSSpecification) MarshalJSON ¶

func (o M5QoSSpecification) MarshalJSON() ([]byte, error)

func (*M5QoSSpecification) SetDesLatency ¶

func (o *M5QoSSpecification) SetDesLatency(v int32)

SetDesLatency gets a reference to the given int32 and assigns it to the DesLatency field.

func (*M5QoSSpecification) SetDesLoss ¶

func (o *M5QoSSpecification) SetDesLoss(v int32)

SetDesLoss gets a reference to the given int32 and assigns it to the DesLoss field.

func (*M5QoSSpecification) SetMarBwDlBitRate ¶

func (o *M5QoSSpecification) SetMarBwDlBitRate(v string)

SetMarBwDlBitRate sets field value

func (*M5QoSSpecification) SetMarBwUlBitRate ¶

func (o *M5QoSSpecification) SetMarBwUlBitRate(v string)

SetMarBwUlBitRate sets field value

func (*M5QoSSpecification) SetMinDesBwDlBitRate ¶

func (o *M5QoSSpecification) SetMinDesBwDlBitRate(v string)

SetMinDesBwDlBitRate gets a reference to the given string and assigns it to the MinDesBwDlBitRate field.

func (*M5QoSSpecification) SetMinDesBwUlBitRate ¶

func (o *M5QoSSpecification) SetMinDesBwUlBitRate(v string)

SetMinDesBwUlBitRate gets a reference to the given string and assigns it to the MinDesBwUlBitRate field.

func (*M5QoSSpecification) SetMirBwDlBitRate ¶

func (o *M5QoSSpecification) SetMirBwDlBitRate(v string)

SetMirBwDlBitRate sets field value

func (*M5QoSSpecification) SetMirBwUlBitRate ¶

func (o *M5QoSSpecification) SetMirBwUlBitRate(v string)

SetMirBwUlBitRate sets field value

func (M5QoSSpecification) ToMap ¶

func (o M5QoSSpecification) ToMap() (map[string]interface{}, error)

type MSAccessActivityCollection ¶

type MSAccessActivityCollection struct {
	MsAccActs []MediaStreamingAccessRecord `json:"msAccActs"`
}

MSAccessActivityCollection Contains Media Streaming access activity collected for an UE Application via AF.

func NewMSAccessActivityCollection ¶

func NewMSAccessActivityCollection(msAccActs []MediaStreamingAccessRecord) *MSAccessActivityCollection

NewMSAccessActivityCollection instantiates a new MSAccessActivityCollection 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 NewMSAccessActivityCollectionWithDefaults ¶

func NewMSAccessActivityCollectionWithDefaults() *MSAccessActivityCollection

NewMSAccessActivityCollectionWithDefaults instantiates a new MSAccessActivityCollection 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 (*MSAccessActivityCollection) GetMsAccActs ¶

GetMsAccActs returns the MsAccActs field value

func (*MSAccessActivityCollection) GetMsAccActsOk ¶

GetMsAccActsOk returns a tuple with the MsAccActs field value and a boolean to check if the value has been set.

func (MSAccessActivityCollection) MarshalJSON ¶

func (o MSAccessActivityCollection) MarshalJSON() ([]byte, error)

func (*MSAccessActivityCollection) SetMsAccActs ¶

SetMsAccActs sets field value

func (MSAccessActivityCollection) ToMap ¶

func (o MSAccessActivityCollection) ToMap() (map[string]interface{}, error)

type MappedNullable ¶

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MatchingDirection ¶

type MatchingDirection struct {
	String *string
}

MatchingDirection Possible values are: - ASCENDING: Threshold is crossed in ascending direction. - DESCENDING: Threshold is crossed in descending direction. - CROSSED: Threshold is crossed either in ascending or descending direction.

func (*MatchingDirection) MarshalJSON ¶

func (src *MatchingDirection) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*MatchingDirection) UnmarshalJSON ¶

func (dst *MatchingDirection) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type MbSmfInfo ¶

type MbSmfInfo struct {
	// A map (list of key-value pairs) where a valid JSON string serves as key
	SNssaiInfoList *map[string]SnssaiMbSmfInfoItem `json:"sNssaiInfoList,omitempty"`
	// A map (list of key-value pairs) where a valid JSON string serves as key
	TmgiRangeList *map[string]TmgiRange `json:"tmgiRangeList,omitempty"`
	TaiList       []Tai                 `json:"taiList,omitempty"`
	TaiRangeList  []TaiRange            `json:"taiRangeList,omitempty"`
	// A map (list of key-value pairs) where a valid JSON string serves as key
	MbsSessionList *map[string]MbsSession `json:"mbsSessionList,omitempty"`
}

MbSmfInfo Information of an MB-SMF NF Instance

func NewMbSmfInfo ¶

func NewMbSmfInfo() *MbSmfInfo

NewMbSmfInfo instantiates a new MbSmfInfo 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 NewMbSmfInfoWithDefaults ¶

func NewMbSmfInfoWithDefaults() *MbSmfInfo

NewMbSmfInfoWithDefaults instantiates a new MbSmfInfo 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 (*MbSmfInfo) GetMbsSessionList ¶

func (o *MbSmfInfo) GetMbsSessionList() map[string]MbsSession

GetMbsSessionList returns the MbsSessionList field value if set, zero value otherwise.

func (*MbSmfInfo) GetMbsSessionListOk ¶

func (o *MbSmfInfo) GetMbsSessionListOk() (*map[string]MbsSession, bool)

GetMbsSessionListOk returns a tuple with the MbsSessionList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MbSmfInfo) GetSNssaiInfoList ¶

func (o *MbSmfInfo) GetSNssaiInfoList() map[string]SnssaiMbSmfInfoItem

GetSNssaiInfoList returns the SNssaiInfoList field value if set, zero value otherwise.

func (*MbSmfInfo) GetSNssaiInfoListOk ¶

func (o *MbSmfInfo) GetSNssaiInfoListOk() (*map[string]SnssaiMbSmfInfoItem, bool)

GetSNssaiInfoListOk returns a tuple with the SNssaiInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MbSmfInfo) GetTaiList ¶

func (o *MbSmfInfo) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*MbSmfInfo) GetTaiListOk ¶

func (o *MbSmfInfo) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MbSmfInfo) GetTaiRangeList ¶

func (o *MbSmfInfo) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*MbSmfInfo) GetTaiRangeListOk ¶

func (o *MbSmfInfo) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MbSmfInfo) GetTmgiRangeList ¶

func (o *MbSmfInfo) GetTmgiRangeList() map[string]TmgiRange

GetTmgiRangeList returns the TmgiRangeList field value if set, zero value otherwise.

func (*MbSmfInfo) GetTmgiRangeListOk ¶

func (o *MbSmfInfo) GetTmgiRangeListOk() (*map[string]TmgiRange, bool)

GetTmgiRangeListOk returns a tuple with the TmgiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MbSmfInfo) HasMbsSessionList ¶

func (o *MbSmfInfo) HasMbsSessionList() bool

HasMbsSessionList returns a boolean if a field has been set.

func (*MbSmfInfo) HasSNssaiInfoList ¶

func (o *MbSmfInfo) HasSNssaiInfoList() bool

HasSNssaiInfoList returns a boolean if a field has been set.

func (*MbSmfInfo) HasTaiList ¶

func (o *MbSmfInfo) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (*MbSmfInfo) HasTaiRangeList ¶

func (o *MbSmfInfo) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (*MbSmfInfo) HasTmgiRangeList ¶

func (o *MbSmfInfo) HasTmgiRangeList() bool

HasTmgiRangeList returns a boolean if a field has been set.

func (MbSmfInfo) MarshalJSON ¶

func (o MbSmfInfo) MarshalJSON() ([]byte, error)

func (*MbSmfInfo) SetMbsSessionList ¶

func (o *MbSmfInfo) SetMbsSessionList(v map[string]MbsSession)

SetMbsSessionList gets a reference to the given map[string]MbsSession and assigns it to the MbsSessionList field.

func (*MbSmfInfo) SetSNssaiInfoList ¶

func (o *MbSmfInfo) SetSNssaiInfoList(v map[string]SnssaiMbSmfInfoItem)

SetSNssaiInfoList gets a reference to the given map[string]SnssaiMbSmfInfoItem and assigns it to the SNssaiInfoList field.

func (*MbSmfInfo) SetTaiList ¶

func (o *MbSmfInfo) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (*MbSmfInfo) SetTaiRangeList ¶

func (o *MbSmfInfo) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (*MbSmfInfo) SetTmgiRangeList ¶

func (o *MbSmfInfo) SetTmgiRangeList(v map[string]TmgiRange)

SetTmgiRangeList gets a reference to the given map[string]TmgiRange and assigns it to the TmgiRangeList field.

func (MbSmfInfo) ToMap ¶

func (o MbSmfInfo) ToMap() (map[string]interface{}, error)

type MbUpfInfo ¶

type MbUpfInfo struct {
	SNssaiMbUpfInfoList    []SnssaiUpfInfoItem    `json:"sNssaiMbUpfInfoList"`
	MbSmfServingArea       []string               `json:"mbSmfServingArea,omitempty"`
	InterfaceMbUpfInfoList []InterfaceUpfInfoItem `json:"interfaceMbUpfInfoList,omitempty"`
	TaiList                []Tai                  `json:"taiList,omitempty"`
	TaiRangeList           []TaiRange             `json:"taiRangeList,omitempty"`
	Priority               *int32                 `json:"priority,omitempty"`
	SupportedPfcpFeatures  *string                `json:"supportedPfcpFeatures,omitempty"`
}

MbUpfInfo Information of an MB-UPF NF Instance

func NewMbUpfInfo ¶

func NewMbUpfInfo(sNssaiMbUpfInfoList []SnssaiUpfInfoItem) *MbUpfInfo

NewMbUpfInfo instantiates a new MbUpfInfo 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 NewMbUpfInfoWithDefaults ¶

func NewMbUpfInfoWithDefaults() *MbUpfInfo

NewMbUpfInfoWithDefaults instantiates a new MbUpfInfo 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 (*MbUpfInfo) GetInterfaceMbUpfInfoList ¶

func (o *MbUpfInfo) GetInterfaceMbUpfInfoList() []InterfaceUpfInfoItem

GetInterfaceMbUpfInfoList returns the InterfaceMbUpfInfoList field value if set, zero value otherwise.

func (*MbUpfInfo) GetInterfaceMbUpfInfoListOk ¶

func (o *MbUpfInfo) GetInterfaceMbUpfInfoListOk() ([]InterfaceUpfInfoItem, bool)

GetInterfaceMbUpfInfoListOk returns a tuple with the InterfaceMbUpfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MbUpfInfo) GetMbSmfServingArea ¶

func (o *MbUpfInfo) GetMbSmfServingArea() []string

GetMbSmfServingArea returns the MbSmfServingArea field value if set, zero value otherwise.

func (*MbUpfInfo) GetMbSmfServingAreaOk ¶

func (o *MbUpfInfo) GetMbSmfServingAreaOk() ([]string, bool)

GetMbSmfServingAreaOk returns a tuple with the MbSmfServingArea field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MbUpfInfo) GetPriority ¶

func (o *MbUpfInfo) GetPriority() int32

GetPriority returns the Priority field value if set, zero value otherwise.

func (*MbUpfInfo) GetPriorityOk ¶

func (o *MbUpfInfo) GetPriorityOk() (*int32, bool)

GetPriorityOk returns a tuple with the Priority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MbUpfInfo) GetSNssaiMbUpfInfoList ¶

func (o *MbUpfInfo) GetSNssaiMbUpfInfoList() []SnssaiUpfInfoItem

GetSNssaiMbUpfInfoList returns the SNssaiMbUpfInfoList field value

func (*MbUpfInfo) GetSNssaiMbUpfInfoListOk ¶

func (o *MbUpfInfo) GetSNssaiMbUpfInfoListOk() ([]SnssaiUpfInfoItem, bool)

GetSNssaiMbUpfInfoListOk returns a tuple with the SNssaiMbUpfInfoList field value and a boolean to check if the value has been set.

func (*MbUpfInfo) GetSupportedPfcpFeatures ¶

func (o *MbUpfInfo) GetSupportedPfcpFeatures() string

GetSupportedPfcpFeatures returns the SupportedPfcpFeatures field value if set, zero value otherwise.

func (*MbUpfInfo) GetSupportedPfcpFeaturesOk ¶

func (o *MbUpfInfo) GetSupportedPfcpFeaturesOk() (*string, bool)

GetSupportedPfcpFeaturesOk returns a tuple with the SupportedPfcpFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MbUpfInfo) GetTaiList ¶

func (o *MbUpfInfo) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*MbUpfInfo) GetTaiListOk ¶

func (o *MbUpfInfo) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MbUpfInfo) GetTaiRangeList ¶

func (o *MbUpfInfo) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*MbUpfInfo) GetTaiRangeListOk ¶

func (o *MbUpfInfo) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MbUpfInfo) HasInterfaceMbUpfInfoList ¶

func (o *MbUpfInfo) HasInterfaceMbUpfInfoList() bool

HasInterfaceMbUpfInfoList returns a boolean if a field has been set.

func (*MbUpfInfo) HasMbSmfServingArea ¶

func (o *MbUpfInfo) HasMbSmfServingArea() bool

HasMbSmfServingArea returns a boolean if a field has been set.

func (*MbUpfInfo) HasPriority ¶

func (o *MbUpfInfo) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*MbUpfInfo) HasSupportedPfcpFeatures ¶

func (o *MbUpfInfo) HasSupportedPfcpFeatures() bool

HasSupportedPfcpFeatures returns a boolean if a field has been set.

func (*MbUpfInfo) HasTaiList ¶

func (o *MbUpfInfo) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (*MbUpfInfo) HasTaiRangeList ¶

func (o *MbUpfInfo) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (MbUpfInfo) MarshalJSON ¶

func (o MbUpfInfo) MarshalJSON() ([]byte, error)

func (*MbUpfInfo) SetInterfaceMbUpfInfoList ¶

func (o *MbUpfInfo) SetInterfaceMbUpfInfoList(v []InterfaceUpfInfoItem)

SetInterfaceMbUpfInfoList gets a reference to the given []InterfaceUpfInfoItem and assigns it to the InterfaceMbUpfInfoList field.

func (*MbUpfInfo) SetMbSmfServingArea ¶

func (o *MbUpfInfo) SetMbSmfServingArea(v []string)

SetMbSmfServingArea gets a reference to the given []string and assigns it to the MbSmfServingArea field.

func (*MbUpfInfo) SetPriority ¶

func (o *MbUpfInfo) SetPriority(v int32)

SetPriority gets a reference to the given int32 and assigns it to the Priority field.

func (*MbUpfInfo) SetSNssaiMbUpfInfoList ¶

func (o *MbUpfInfo) SetSNssaiMbUpfInfoList(v []SnssaiUpfInfoItem)

SetSNssaiMbUpfInfoList sets field value

func (*MbUpfInfo) SetSupportedPfcpFeatures ¶

func (o *MbUpfInfo) SetSupportedPfcpFeatures(v string)

SetSupportedPfcpFeatures gets a reference to the given string and assigns it to the SupportedPfcpFeatures field.

func (*MbUpfInfo) SetTaiList ¶

func (o *MbUpfInfo) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (*MbUpfInfo) SetTaiRangeList ¶

func (o *MbUpfInfo) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (MbUpfInfo) ToMap ¶

func (o MbUpfInfo) ToMap() (map[string]interface{}, error)

type MbsServiceArea ¶

type MbsServiceArea struct {
	Interface *interface{}
}

MbsServiceArea MBS Service Area

func (*MbsServiceArea) MarshalJSON ¶

func (src *MbsServiceArea) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*MbsServiceArea) UnmarshalJSON ¶

func (dst *MbsServiceArea) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type MbsServiceAreaInfo ¶

type MbsServiceAreaInfo struct {
	// Integer where the allowed values correspond to the value range of an unsigned 16-bit integer.
	AreaSessionId  int32          `json:"areaSessionId"`
	MbsServiceArea MbsServiceArea `json:"mbsServiceArea"`
}

MbsServiceAreaInfo MBS Service Area Information for location dependent MBS session

func NewMbsServiceAreaInfo ¶

func NewMbsServiceAreaInfo(areaSessionId int32, mbsServiceArea MbsServiceArea) *MbsServiceAreaInfo

NewMbsServiceAreaInfo instantiates a new MbsServiceAreaInfo 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 NewMbsServiceAreaInfoWithDefaults ¶

func NewMbsServiceAreaInfoWithDefaults() *MbsServiceAreaInfo

NewMbsServiceAreaInfoWithDefaults instantiates a new MbsServiceAreaInfo 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 (*MbsServiceAreaInfo) GetAreaSessionId ¶

func (o *MbsServiceAreaInfo) GetAreaSessionId() int32

GetAreaSessionId returns the AreaSessionId field value

func (*MbsServiceAreaInfo) GetAreaSessionIdOk ¶

func (o *MbsServiceAreaInfo) GetAreaSessionIdOk() (*int32, bool)

GetAreaSessionIdOk returns a tuple with the AreaSessionId field value and a boolean to check if the value has been set.

func (*MbsServiceAreaInfo) GetMbsServiceArea ¶

func (o *MbsServiceAreaInfo) GetMbsServiceArea() MbsServiceArea

GetMbsServiceArea returns the MbsServiceArea field value

func (*MbsServiceAreaInfo) GetMbsServiceAreaOk ¶

func (o *MbsServiceAreaInfo) GetMbsServiceAreaOk() (*MbsServiceArea, bool)

GetMbsServiceAreaOk returns a tuple with the MbsServiceArea field value and a boolean to check if the value has been set.

func (MbsServiceAreaInfo) MarshalJSON ¶

func (o MbsServiceAreaInfo) MarshalJSON() ([]byte, error)

func (*MbsServiceAreaInfo) SetAreaSessionId ¶

func (o *MbsServiceAreaInfo) SetAreaSessionId(v int32)

SetAreaSessionId sets field value

func (*MbsServiceAreaInfo) SetMbsServiceArea ¶

func (o *MbsServiceAreaInfo) SetMbsServiceArea(v MbsServiceArea)

SetMbsServiceArea sets field value

func (MbsServiceAreaInfo) ToMap ¶

func (o MbsServiceAreaInfo) ToMap() (map[string]interface{}, error)

type MbsSession ¶

type MbsSession struct {
	MbsSessionId MbsSessionId `json:"mbsSessionId"`
	// A map (list of key-value pairs) where the key identifies an areaSessionId
	MbsAreaSessions *map[string]MbsServiceAreaInfo `json:"mbsAreaSessions,omitempty"`
}

MbsSession MBS Session currently served by an MB-SMF

func NewMbsSession ¶

func NewMbsSession(mbsSessionId MbsSessionId) *MbsSession

NewMbsSession instantiates a new MbsSession 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 NewMbsSessionWithDefaults ¶

func NewMbsSessionWithDefaults() *MbsSession

NewMbsSessionWithDefaults instantiates a new MbsSession 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 (*MbsSession) GetMbsAreaSessions ¶

func (o *MbsSession) GetMbsAreaSessions() map[string]MbsServiceAreaInfo

GetMbsAreaSessions returns the MbsAreaSessions field value if set, zero value otherwise.

func (*MbsSession) GetMbsAreaSessionsOk ¶

func (o *MbsSession) GetMbsAreaSessionsOk() (*map[string]MbsServiceAreaInfo, bool)

GetMbsAreaSessionsOk returns a tuple with the MbsAreaSessions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MbsSession) GetMbsSessionId ¶

func (o *MbsSession) GetMbsSessionId() MbsSessionId

GetMbsSessionId returns the MbsSessionId field value

func (*MbsSession) GetMbsSessionIdOk ¶

func (o *MbsSession) GetMbsSessionIdOk() (*MbsSessionId, bool)

GetMbsSessionIdOk returns a tuple with the MbsSessionId field value and a boolean to check if the value has been set.

func (*MbsSession) HasMbsAreaSessions ¶

func (o *MbsSession) HasMbsAreaSessions() bool

HasMbsAreaSessions returns a boolean if a field has been set.

func (MbsSession) MarshalJSON ¶

func (o MbsSession) MarshalJSON() ([]byte, error)

func (*MbsSession) SetMbsAreaSessions ¶

func (o *MbsSession) SetMbsAreaSessions(v map[string]MbsServiceAreaInfo)

SetMbsAreaSessions gets a reference to the given map[string]MbsServiceAreaInfo and assigns it to the MbsAreaSessions field.

func (*MbsSession) SetMbsSessionId ¶

func (o *MbsSession) SetMbsSessionId(v MbsSessionId)

SetMbsSessionId sets field value

func (MbsSession) ToMap ¶

func (o MbsSession) ToMap() (map[string]interface{}, error)

type MbsSessionId ¶

type MbsSessionId struct {
	Interface *interface{}
}

MbsSessionId MBS Session Identifier

func (*MbsSessionId) MarshalJSON ¶

func (src *MbsSessionId) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*MbsSessionId) UnmarshalJSON ¶

func (dst *MbsSessionId) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type MediaStreamingAccessRecord ¶

type MediaStreamingAccessRecord struct {
	BaseRecord
	MediaStreamHandlerEndpointAddress EndpointAddress                                `json:"mediaStreamHandlerEndpointAddress"`
	ApplicationServerEndpointAddress  EndpointAddress                                `json:"applicationServerEndpointAddress"`
	SessionIdentifier                 *string                                        `json:"sessionIdentifier,omitempty"`
	RequestMessage                    MediaStreamingAccessRecordAllOfRequestMessage  `json:"requestMessage"`
	CacheStatus                       *CacheStatus                                   `json:"cacheStatus,omitempty"`
	ResponseMessage                   MediaStreamingAccessRecordAllOfResponseMessage `json:"responseMessage"`
	// string with format 'float' as defined in OpenAPI.
	ProcessingLatency float32                                           `json:"processingLatency"`
	ConnectionMetrics *MediaStreamingAccessRecordAllOfConnectionMetrics `json:"connectionMetrics,omitempty"`
}

MediaStreamingAccessRecord struct for MediaStreamingAccessRecord

func NewMediaStreamingAccessRecord ¶

func NewMediaStreamingAccessRecord(mediaStreamHandlerEndpointAddress EndpointAddress, applicationServerEndpointAddress EndpointAddress, requestMessage MediaStreamingAccessRecordAllOfRequestMessage, responseMessage MediaStreamingAccessRecordAllOfResponseMessage, processingLatency float32, timestamp time.Time) *MediaStreamingAccessRecord

NewMediaStreamingAccessRecord instantiates a new MediaStreamingAccessRecord 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 NewMediaStreamingAccessRecordWithDefaults ¶

func NewMediaStreamingAccessRecordWithDefaults() *MediaStreamingAccessRecord

NewMediaStreamingAccessRecordWithDefaults instantiates a new MediaStreamingAccessRecord 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 (*MediaStreamingAccessRecord) GetApplicationServerEndpointAddress ¶

func (o *MediaStreamingAccessRecord) GetApplicationServerEndpointAddress() EndpointAddress

GetApplicationServerEndpointAddress returns the ApplicationServerEndpointAddress field value

func (*MediaStreamingAccessRecord) GetApplicationServerEndpointAddressOk ¶

func (o *MediaStreamingAccessRecord) GetApplicationServerEndpointAddressOk() (*EndpointAddress, bool)

GetApplicationServerEndpointAddressOk returns a tuple with the ApplicationServerEndpointAddress field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecord) GetCacheStatus ¶

func (o *MediaStreamingAccessRecord) GetCacheStatus() CacheStatus

GetCacheStatus returns the CacheStatus field value if set, zero value otherwise.

func (*MediaStreamingAccessRecord) GetCacheStatusOk ¶

func (o *MediaStreamingAccessRecord) GetCacheStatusOk() (*CacheStatus, bool)

GetCacheStatusOk returns a tuple with the CacheStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecord) GetConnectionMetrics ¶

GetConnectionMetrics returns the ConnectionMetrics field value if set, zero value otherwise.

func (*MediaStreamingAccessRecord) GetConnectionMetricsOk ¶

GetConnectionMetricsOk returns a tuple with the ConnectionMetrics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecord) GetMediaStreamHandlerEndpointAddress ¶

func (o *MediaStreamingAccessRecord) GetMediaStreamHandlerEndpointAddress() EndpointAddress

GetMediaStreamHandlerEndpointAddress returns the MediaStreamHandlerEndpointAddress field value

func (*MediaStreamingAccessRecord) GetMediaStreamHandlerEndpointAddressOk ¶

func (o *MediaStreamingAccessRecord) GetMediaStreamHandlerEndpointAddressOk() (*EndpointAddress, bool)

GetMediaStreamHandlerEndpointAddressOk returns a tuple with the MediaStreamHandlerEndpointAddress field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecord) GetProcessingLatency ¶

func (o *MediaStreamingAccessRecord) GetProcessingLatency() float32

GetProcessingLatency returns the ProcessingLatency field value

func (*MediaStreamingAccessRecord) GetProcessingLatencyOk ¶

func (o *MediaStreamingAccessRecord) GetProcessingLatencyOk() (*float32, bool)

GetProcessingLatencyOk returns a tuple with the ProcessingLatency field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecord) GetRequestMessage ¶

GetRequestMessage returns the RequestMessage field value

func (*MediaStreamingAccessRecord) GetRequestMessageOk ¶

GetRequestMessageOk returns a tuple with the RequestMessage field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecord) GetResponseMessage ¶

GetResponseMessage returns the ResponseMessage field value

func (*MediaStreamingAccessRecord) GetResponseMessageOk ¶

GetResponseMessageOk returns a tuple with the ResponseMessage field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecord) GetSessionIdentifier ¶

func (o *MediaStreamingAccessRecord) GetSessionIdentifier() string

GetSessionIdentifier returns the SessionIdentifier field value if set, zero value otherwise.

func (*MediaStreamingAccessRecord) GetSessionIdentifierOk ¶

func (o *MediaStreamingAccessRecord) GetSessionIdentifierOk() (*string, bool)

GetSessionIdentifierOk returns a tuple with the SessionIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecord) HasCacheStatus ¶

func (o *MediaStreamingAccessRecord) HasCacheStatus() bool

HasCacheStatus returns a boolean if a field has been set.

func (*MediaStreamingAccessRecord) HasConnectionMetrics ¶

func (o *MediaStreamingAccessRecord) HasConnectionMetrics() bool

HasConnectionMetrics returns a boolean if a field has been set.

func (*MediaStreamingAccessRecord) HasSessionIdentifier ¶

func (o *MediaStreamingAccessRecord) HasSessionIdentifier() bool

HasSessionIdentifier returns a boolean if a field has been set.

func (MediaStreamingAccessRecord) MarshalJSON ¶

func (o MediaStreamingAccessRecord) MarshalJSON() ([]byte, error)

func (*MediaStreamingAccessRecord) SetApplicationServerEndpointAddress ¶

func (o *MediaStreamingAccessRecord) SetApplicationServerEndpointAddress(v EndpointAddress)

SetApplicationServerEndpointAddress sets field value

func (*MediaStreamingAccessRecord) SetCacheStatus ¶

func (o *MediaStreamingAccessRecord) SetCacheStatus(v CacheStatus)

SetCacheStatus gets a reference to the given CacheStatus and assigns it to the CacheStatus field.

func (*MediaStreamingAccessRecord) SetConnectionMetrics ¶

SetConnectionMetrics gets a reference to the given MediaStreamingAccessRecordAllOfConnectionMetrics and assigns it to the ConnectionMetrics field.

func (*MediaStreamingAccessRecord) SetMediaStreamHandlerEndpointAddress ¶

func (o *MediaStreamingAccessRecord) SetMediaStreamHandlerEndpointAddress(v EndpointAddress)

SetMediaStreamHandlerEndpointAddress sets field value

func (*MediaStreamingAccessRecord) SetProcessingLatency ¶

func (o *MediaStreamingAccessRecord) SetProcessingLatency(v float32)

SetProcessingLatency sets field value

func (*MediaStreamingAccessRecord) SetRequestMessage ¶

SetRequestMessage sets field value

func (*MediaStreamingAccessRecord) SetResponseMessage ¶

SetResponseMessage sets field value

func (*MediaStreamingAccessRecord) SetSessionIdentifier ¶

func (o *MediaStreamingAccessRecord) SetSessionIdentifier(v string)

SetSessionIdentifier gets a reference to the given string and assigns it to the SessionIdentifier field.

func (MediaStreamingAccessRecord) ToMap ¶

func (o MediaStreamingAccessRecord) ToMap() (map[string]interface{}, error)

type MediaStreamingAccessRecordAllOf ¶

type MediaStreamingAccessRecordAllOf struct {
	MediaStreamHandlerEndpointAddress EndpointAddress                                `json:"mediaStreamHandlerEndpointAddress"`
	ApplicationServerEndpointAddress  EndpointAddress                                `json:"applicationServerEndpointAddress"`
	SessionIdentifier                 *string                                        `json:"sessionIdentifier,omitempty"`
	RequestMessage                    MediaStreamingAccessRecordAllOfRequestMessage  `json:"requestMessage"`
	CacheStatus                       *CacheStatus                                   `json:"cacheStatus,omitempty"`
	ResponseMessage                   MediaStreamingAccessRecordAllOfResponseMessage `json:"responseMessage"`
	// string with format 'float' as defined in OpenAPI.
	ProcessingLatency float32                                           `json:"processingLatency"`
	ConnectionMetrics *MediaStreamingAccessRecordAllOfConnectionMetrics `json:"connectionMetrics,omitempty"`
}

MediaStreamingAccessRecordAllOf struct for MediaStreamingAccessRecordAllOf

func NewMediaStreamingAccessRecordAllOf ¶

func NewMediaStreamingAccessRecordAllOf(mediaStreamHandlerEndpointAddress EndpointAddress, applicationServerEndpointAddress EndpointAddress, requestMessage MediaStreamingAccessRecordAllOfRequestMessage, responseMessage MediaStreamingAccessRecordAllOfResponseMessage, processingLatency float32) *MediaStreamingAccessRecordAllOf

NewMediaStreamingAccessRecordAllOf instantiates a new MediaStreamingAccessRecordAllOf 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 NewMediaStreamingAccessRecordAllOfWithDefaults ¶

func NewMediaStreamingAccessRecordAllOfWithDefaults() *MediaStreamingAccessRecordAllOf

NewMediaStreamingAccessRecordAllOfWithDefaults instantiates a new MediaStreamingAccessRecordAllOf 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 (*MediaStreamingAccessRecordAllOf) GetApplicationServerEndpointAddress ¶

func (o *MediaStreamingAccessRecordAllOf) GetApplicationServerEndpointAddress() EndpointAddress

GetApplicationServerEndpointAddress returns the ApplicationServerEndpointAddress field value

func (*MediaStreamingAccessRecordAllOf) GetApplicationServerEndpointAddressOk ¶

func (o *MediaStreamingAccessRecordAllOf) GetApplicationServerEndpointAddressOk() (*EndpointAddress, bool)

GetApplicationServerEndpointAddressOk returns a tuple with the ApplicationServerEndpointAddress field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOf) GetCacheStatus ¶

func (o *MediaStreamingAccessRecordAllOf) GetCacheStatus() CacheStatus

GetCacheStatus returns the CacheStatus field value if set, zero value otherwise.

func (*MediaStreamingAccessRecordAllOf) GetCacheStatusOk ¶

func (o *MediaStreamingAccessRecordAllOf) GetCacheStatusOk() (*CacheStatus, bool)

GetCacheStatusOk returns a tuple with the CacheStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOf) GetConnectionMetrics ¶

GetConnectionMetrics returns the ConnectionMetrics field value if set, zero value otherwise.

func (*MediaStreamingAccessRecordAllOf) GetConnectionMetricsOk ¶

GetConnectionMetricsOk returns a tuple with the ConnectionMetrics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOf) GetMediaStreamHandlerEndpointAddress ¶

func (o *MediaStreamingAccessRecordAllOf) GetMediaStreamHandlerEndpointAddress() EndpointAddress

GetMediaStreamHandlerEndpointAddress returns the MediaStreamHandlerEndpointAddress field value

func (*MediaStreamingAccessRecordAllOf) GetMediaStreamHandlerEndpointAddressOk ¶

func (o *MediaStreamingAccessRecordAllOf) GetMediaStreamHandlerEndpointAddressOk() (*EndpointAddress, bool)

GetMediaStreamHandlerEndpointAddressOk returns a tuple with the MediaStreamHandlerEndpointAddress field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOf) GetProcessingLatency ¶

func (o *MediaStreamingAccessRecordAllOf) GetProcessingLatency() float32

GetProcessingLatency returns the ProcessingLatency field value

func (*MediaStreamingAccessRecordAllOf) GetProcessingLatencyOk ¶

func (o *MediaStreamingAccessRecordAllOf) GetProcessingLatencyOk() (*float32, bool)

GetProcessingLatencyOk returns a tuple with the ProcessingLatency field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOf) GetRequestMessage ¶

GetRequestMessage returns the RequestMessage field value

func (*MediaStreamingAccessRecordAllOf) GetRequestMessageOk ¶

GetRequestMessageOk returns a tuple with the RequestMessage field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOf) GetResponseMessage ¶

GetResponseMessage returns the ResponseMessage field value

func (*MediaStreamingAccessRecordAllOf) GetResponseMessageOk ¶

GetResponseMessageOk returns a tuple with the ResponseMessage field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOf) GetSessionIdentifier ¶

func (o *MediaStreamingAccessRecordAllOf) GetSessionIdentifier() string

GetSessionIdentifier returns the SessionIdentifier field value if set, zero value otherwise.

func (*MediaStreamingAccessRecordAllOf) GetSessionIdentifierOk ¶

func (o *MediaStreamingAccessRecordAllOf) GetSessionIdentifierOk() (*string, bool)

GetSessionIdentifierOk returns a tuple with the SessionIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOf) HasCacheStatus ¶

func (o *MediaStreamingAccessRecordAllOf) HasCacheStatus() bool

HasCacheStatus returns a boolean if a field has been set.

func (*MediaStreamingAccessRecordAllOf) HasConnectionMetrics ¶

func (o *MediaStreamingAccessRecordAllOf) HasConnectionMetrics() bool

HasConnectionMetrics returns a boolean if a field has been set.

func (*MediaStreamingAccessRecordAllOf) HasSessionIdentifier ¶

func (o *MediaStreamingAccessRecordAllOf) HasSessionIdentifier() bool

HasSessionIdentifier returns a boolean if a field has been set.

func (MediaStreamingAccessRecordAllOf) MarshalJSON ¶

func (o MediaStreamingAccessRecordAllOf) MarshalJSON() ([]byte, error)

func (*MediaStreamingAccessRecordAllOf) SetApplicationServerEndpointAddress ¶

func (o *MediaStreamingAccessRecordAllOf) SetApplicationServerEndpointAddress(v EndpointAddress)

SetApplicationServerEndpointAddress sets field value

func (*MediaStreamingAccessRecordAllOf) SetCacheStatus ¶

func (o *MediaStreamingAccessRecordAllOf) SetCacheStatus(v CacheStatus)

SetCacheStatus gets a reference to the given CacheStatus and assigns it to the CacheStatus field.

func (*MediaStreamingAccessRecordAllOf) SetConnectionMetrics ¶

SetConnectionMetrics gets a reference to the given MediaStreamingAccessRecordAllOfConnectionMetrics and assigns it to the ConnectionMetrics field.

func (*MediaStreamingAccessRecordAllOf) SetMediaStreamHandlerEndpointAddress ¶

func (o *MediaStreamingAccessRecordAllOf) SetMediaStreamHandlerEndpointAddress(v EndpointAddress)

SetMediaStreamHandlerEndpointAddress sets field value

func (*MediaStreamingAccessRecordAllOf) SetProcessingLatency ¶

func (o *MediaStreamingAccessRecordAllOf) SetProcessingLatency(v float32)

SetProcessingLatency sets field value

func (*MediaStreamingAccessRecordAllOf) SetRequestMessage ¶

SetRequestMessage sets field value

func (*MediaStreamingAccessRecordAllOf) SetResponseMessage ¶

SetResponseMessage sets field value

func (*MediaStreamingAccessRecordAllOf) SetSessionIdentifier ¶

func (o *MediaStreamingAccessRecordAllOf) SetSessionIdentifier(v string)

SetSessionIdentifier gets a reference to the given string and assigns it to the SessionIdentifier field.

func (MediaStreamingAccessRecordAllOf) ToMap ¶

func (o MediaStreamingAccessRecordAllOf) ToMap() (map[string]interface{}, error)

type MediaStreamingAccessRecordAllOfConnectionMetrics ¶

type MediaStreamingAccessRecordAllOfConnectionMetrics struct {
	// string with format 'float' as defined in OpenAPI.
	MeanNetworkRoundTripTime float32 `json:"meanNetworkRoundTripTime"`
	// string with format 'float' as defined in OpenAPI.
	NetworkRoundTripTimeVariation float32 `json:"networkRoundTripTimeVariation"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	CongestionWindowSize int32 `json:"congestionWindowSize"`
}

MediaStreamingAccessRecordAllOfConnectionMetrics struct for MediaStreamingAccessRecordAllOfConnectionMetrics

func NewMediaStreamingAccessRecordAllOfConnectionMetrics ¶

func NewMediaStreamingAccessRecordAllOfConnectionMetrics(meanNetworkRoundTripTime float32, networkRoundTripTimeVariation float32, congestionWindowSize int32) *MediaStreamingAccessRecordAllOfConnectionMetrics

NewMediaStreamingAccessRecordAllOfConnectionMetrics instantiates a new MediaStreamingAccessRecordAllOfConnectionMetrics 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 NewMediaStreamingAccessRecordAllOfConnectionMetricsWithDefaults ¶

func NewMediaStreamingAccessRecordAllOfConnectionMetricsWithDefaults() *MediaStreamingAccessRecordAllOfConnectionMetrics

NewMediaStreamingAccessRecordAllOfConnectionMetricsWithDefaults instantiates a new MediaStreamingAccessRecordAllOfConnectionMetrics 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 (*MediaStreamingAccessRecordAllOfConnectionMetrics) GetCongestionWindowSize ¶

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) GetCongestionWindowSize() int32

GetCongestionWindowSize returns the CongestionWindowSize field value

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) GetCongestionWindowSizeOk ¶

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) GetCongestionWindowSizeOk() (*int32, bool)

GetCongestionWindowSizeOk returns a tuple with the CongestionWindowSize field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) GetMeanNetworkRoundTripTime ¶

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) GetMeanNetworkRoundTripTime() float32

GetMeanNetworkRoundTripTime returns the MeanNetworkRoundTripTime field value

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) GetMeanNetworkRoundTripTimeOk ¶

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) GetMeanNetworkRoundTripTimeOk() (*float32, bool)

GetMeanNetworkRoundTripTimeOk returns a tuple with the MeanNetworkRoundTripTime field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) GetNetworkRoundTripTimeVariation ¶

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) GetNetworkRoundTripTimeVariation() float32

GetNetworkRoundTripTimeVariation returns the NetworkRoundTripTimeVariation field value

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) GetNetworkRoundTripTimeVariationOk ¶

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) GetNetworkRoundTripTimeVariationOk() (*float32, bool)

GetNetworkRoundTripTimeVariationOk returns a tuple with the NetworkRoundTripTimeVariation field value and a boolean to check if the value has been set.

func (MediaStreamingAccessRecordAllOfConnectionMetrics) MarshalJSON ¶

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) SetCongestionWindowSize ¶

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) SetCongestionWindowSize(v int32)

SetCongestionWindowSize sets field value

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) SetMeanNetworkRoundTripTime ¶

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) SetMeanNetworkRoundTripTime(v float32)

SetMeanNetworkRoundTripTime sets field value

func (*MediaStreamingAccessRecordAllOfConnectionMetrics) SetNetworkRoundTripTimeVariation ¶

func (o *MediaStreamingAccessRecordAllOfConnectionMetrics) SetNetworkRoundTripTimeVariation(v float32)

SetNetworkRoundTripTimeVariation sets field value

func (MediaStreamingAccessRecordAllOfConnectionMetrics) ToMap ¶

func (o MediaStreamingAccessRecordAllOfConnectionMetrics) ToMap() (map[string]interface{}, error)

type MediaStreamingAccessRecordAllOfRequestMessage ¶

type MediaStreamingAccessRecordAllOfRequestMessage struct {
	Method string `json:"method"`
	// Uniform Resource Locator, comforming with the URI Generic Syntax specified in IETF RFC 3986.
	Url             string  `json:"url"`
	ProtocolVersion string  `json:"protocolVersion"`
	Range           *string `json:"range,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Size int32 `json:"size"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	BodySize     int32   `json:"bodySize"`
	ContentType  *string `json:"contentType,omitempty"`
	UserAgent    *string `json:"userAgent,omitempty"`
	UserIdentity *string `json:"userIdentity,omitempty"`
	// Uniform Resource Locator, comforming with the URI Generic Syntax specified in IETF RFC 3986.
	Referer *string `json:"referer,omitempty"`
}

MediaStreamingAccessRecordAllOfRequestMessage struct for MediaStreamingAccessRecordAllOfRequestMessage

func NewMediaStreamingAccessRecordAllOfRequestMessage ¶

func NewMediaStreamingAccessRecordAllOfRequestMessage(method string, url string, protocolVersion string, size int32, bodySize int32) *MediaStreamingAccessRecordAllOfRequestMessage

NewMediaStreamingAccessRecordAllOfRequestMessage instantiates a new MediaStreamingAccessRecordAllOfRequestMessage 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 NewMediaStreamingAccessRecordAllOfRequestMessageWithDefaults ¶

func NewMediaStreamingAccessRecordAllOfRequestMessageWithDefaults() *MediaStreamingAccessRecordAllOfRequestMessage

NewMediaStreamingAccessRecordAllOfRequestMessageWithDefaults instantiates a new MediaStreamingAccessRecordAllOfRequestMessage 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 (*MediaStreamingAccessRecordAllOfRequestMessage) GetBodySize ¶

GetBodySize returns the BodySize field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetBodySizeOk ¶

GetBodySizeOk returns a tuple with the BodySize field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetContentType ¶

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetContentTypeOk ¶

func (o *MediaStreamingAccessRecordAllOfRequestMessage) GetContentTypeOk() (*string, bool)

GetContentTypeOk returns a tuple with the ContentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetMethod ¶

GetMethod returns the Method field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetMethodOk ¶

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetProtocolVersion ¶

func (o *MediaStreamingAccessRecordAllOfRequestMessage) GetProtocolVersion() string

GetProtocolVersion returns the ProtocolVersion field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetProtocolVersionOk ¶

func (o *MediaStreamingAccessRecordAllOfRequestMessage) GetProtocolVersionOk() (*string, bool)

GetProtocolVersionOk returns a tuple with the ProtocolVersion field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetRange ¶

GetRange returns the Range field value if set, zero value otherwise.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetRangeOk ¶

GetRangeOk returns a tuple with the Range field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetReferer ¶

GetReferer returns the Referer field value if set, zero value otherwise.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetRefererOk ¶

GetRefererOk returns a tuple with the Referer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetSize ¶

GetSize returns the Size field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetSizeOk ¶

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetUrl ¶

GetUrl returns the Url field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetUrlOk ¶

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetUserAgent ¶

GetUserAgent returns the UserAgent field value if set, zero value otherwise.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetUserAgentOk ¶

GetUserAgentOk returns a tuple with the UserAgent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetUserIdentity ¶

GetUserIdentity returns the UserIdentity field value if set, zero value otherwise.

func (*MediaStreamingAccessRecordAllOfRequestMessage) GetUserIdentityOk ¶

func (o *MediaStreamingAccessRecordAllOfRequestMessage) GetUserIdentityOk() (*string, bool)

GetUserIdentityOk returns a tuple with the UserIdentity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) HasContentType ¶

HasContentType returns a boolean if a field has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) HasRange ¶

HasRange returns a boolean if a field has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) HasReferer ¶

HasReferer returns a boolean if a field has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) HasUserAgent ¶

HasUserAgent returns a boolean if a field has been set.

func (*MediaStreamingAccessRecordAllOfRequestMessage) HasUserIdentity ¶

HasUserIdentity returns a boolean if a field has been set.

func (MediaStreamingAccessRecordAllOfRequestMessage) MarshalJSON ¶

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetBodySize ¶

SetBodySize sets field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetContentType ¶

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetMethod ¶

SetMethod sets field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetProtocolVersion ¶

func (o *MediaStreamingAccessRecordAllOfRequestMessage) SetProtocolVersion(v string)

SetProtocolVersion sets field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetRange ¶

SetRange gets a reference to the given string and assigns it to the Range field.

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetReferer ¶

SetReferer gets a reference to the given string and assigns it to the Referer field.

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetSize ¶

SetSize sets field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetUrl ¶

SetUrl sets field value

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetUserAgent ¶

SetUserAgent gets a reference to the given string and assigns it to the UserAgent field.

func (*MediaStreamingAccessRecordAllOfRequestMessage) SetUserIdentity ¶

SetUserIdentity gets a reference to the given string and assigns it to the UserIdentity field.

func (MediaStreamingAccessRecordAllOfRequestMessage) ToMap ¶

func (o MediaStreamingAccessRecordAllOfRequestMessage) ToMap() (map[string]interface{}, error)

type MediaStreamingAccessRecordAllOfResponseMessage ¶

type MediaStreamingAccessRecordAllOfResponseMessage struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	ResponseCode int32 `json:"responseCode"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Size int32 `json:"size"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	BodySize    int32   `json:"bodySize"`
	ContentType *string `json:"contentType,omitempty"`
}

MediaStreamingAccessRecordAllOfResponseMessage struct for MediaStreamingAccessRecordAllOfResponseMessage

func NewMediaStreamingAccessRecordAllOfResponseMessage ¶

func NewMediaStreamingAccessRecordAllOfResponseMessage(responseCode int32, size int32, bodySize int32) *MediaStreamingAccessRecordAllOfResponseMessage

NewMediaStreamingAccessRecordAllOfResponseMessage instantiates a new MediaStreamingAccessRecordAllOfResponseMessage 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 NewMediaStreamingAccessRecordAllOfResponseMessageWithDefaults ¶

func NewMediaStreamingAccessRecordAllOfResponseMessageWithDefaults() *MediaStreamingAccessRecordAllOfResponseMessage

NewMediaStreamingAccessRecordAllOfResponseMessageWithDefaults instantiates a new MediaStreamingAccessRecordAllOfResponseMessage 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 (*MediaStreamingAccessRecordAllOfResponseMessage) GetBodySize ¶

GetBodySize returns the BodySize field value

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetBodySizeOk ¶

GetBodySizeOk returns a tuple with the BodySize field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetContentType ¶

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetContentTypeOk ¶

GetContentTypeOk returns a tuple with the ContentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetResponseCode ¶

GetResponseCode returns the ResponseCode field value

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetResponseCodeOk ¶

func (o *MediaStreamingAccessRecordAllOfResponseMessage) GetResponseCodeOk() (*int32, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetSize ¶

GetSize returns the Size field value

func (*MediaStreamingAccessRecordAllOfResponseMessage) GetSizeOk ¶

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*MediaStreamingAccessRecordAllOfResponseMessage) HasContentType ¶

HasContentType returns a boolean if a field has been set.

func (MediaStreamingAccessRecordAllOfResponseMessage) MarshalJSON ¶

func (*MediaStreamingAccessRecordAllOfResponseMessage) SetBodySize ¶

SetBodySize sets field value

func (*MediaStreamingAccessRecordAllOfResponseMessage) SetContentType ¶

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*MediaStreamingAccessRecordAllOfResponseMessage) SetResponseCode ¶

SetResponseCode sets field value

func (*MediaStreamingAccessRecordAllOfResponseMessage) SetSize ¶

SetSize sets field value

func (MediaStreamingAccessRecordAllOfResponseMessage) ToMap ¶

func (o MediaStreamingAccessRecordAllOfResponseMessage) ToMap() (map[string]interface{}, error)

type MfafInfo ¶

type MfafInfo struct {
	ServingNfTypeList  []NFType   `json:"servingNfTypeList,omitempty"`
	ServingNfSetIdList []string   `json:"servingNfSetIdList,omitempty"`
	TaiList            []Tai      `json:"taiList,omitempty"`
	TaiRangeList       []TaiRange `json:"taiRangeList,omitempty"`
}

MfafInfo Information of a MFAF NF Instance

func NewMfafInfo ¶

func NewMfafInfo() *MfafInfo

NewMfafInfo instantiates a new MfafInfo 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 NewMfafInfoWithDefaults ¶

func NewMfafInfoWithDefaults() *MfafInfo

NewMfafInfoWithDefaults instantiates a new MfafInfo 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 (*MfafInfo) GetServingNfSetIdList ¶

func (o *MfafInfo) GetServingNfSetIdList() []string

GetServingNfSetIdList returns the ServingNfSetIdList field value if set, zero value otherwise.

func (*MfafInfo) GetServingNfSetIdListOk ¶

func (o *MfafInfo) GetServingNfSetIdListOk() ([]string, bool)

GetServingNfSetIdListOk returns a tuple with the ServingNfSetIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MfafInfo) GetServingNfTypeList ¶

func (o *MfafInfo) GetServingNfTypeList() []NFType

GetServingNfTypeList returns the ServingNfTypeList field value if set, zero value otherwise.

func (*MfafInfo) GetServingNfTypeListOk ¶

func (o *MfafInfo) GetServingNfTypeListOk() ([]NFType, bool)

GetServingNfTypeListOk returns a tuple with the ServingNfTypeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MfafInfo) GetTaiList ¶

func (o *MfafInfo) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*MfafInfo) GetTaiListOk ¶

func (o *MfafInfo) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MfafInfo) GetTaiRangeList ¶

func (o *MfafInfo) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*MfafInfo) GetTaiRangeListOk ¶

func (o *MfafInfo) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MfafInfo) HasServingNfSetIdList ¶

func (o *MfafInfo) HasServingNfSetIdList() bool

HasServingNfSetIdList returns a boolean if a field has been set.

func (*MfafInfo) HasServingNfTypeList ¶

func (o *MfafInfo) HasServingNfTypeList() bool

HasServingNfTypeList returns a boolean if a field has been set.

func (*MfafInfo) HasTaiList ¶

func (o *MfafInfo) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (*MfafInfo) HasTaiRangeList ¶

func (o *MfafInfo) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (MfafInfo) MarshalJSON ¶

func (o MfafInfo) MarshalJSON() ([]byte, error)

func (*MfafInfo) SetServingNfSetIdList ¶

func (o *MfafInfo) SetServingNfSetIdList(v []string)

SetServingNfSetIdList gets a reference to the given []string and assigns it to the ServingNfSetIdList field.

func (*MfafInfo) SetServingNfTypeList ¶

func (o *MfafInfo) SetServingNfTypeList(v []NFType)

SetServingNfTypeList gets a reference to the given []NFType and assigns it to the ServingNfTypeList field.

func (*MfafInfo) SetTaiList ¶

func (o *MfafInfo) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (*MfafInfo) SetTaiRangeList ¶

func (o *MfafInfo) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (MfafInfo) ToMap ¶

func (o MfafInfo) ToMap() (map[string]interface{}, error)

type MlAnalyticsInfo ¶

type MlAnalyticsInfo struct {
	MlAnalyticsIds   []NwdafEvent `json:"mlAnalyticsIds,omitempty"`
	SnssaiList       []Snssai     `json:"snssaiList,omitempty"`
	TrackingAreaList []Tai        `json:"trackingAreaList,omitempty"`
}

MlAnalyticsInfo ML Analytics Filter information supported by the Nnwdaf_MLModelProvision service

func NewMlAnalyticsInfo ¶

func NewMlAnalyticsInfo() *MlAnalyticsInfo

NewMlAnalyticsInfo instantiates a new MlAnalyticsInfo 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 NewMlAnalyticsInfoWithDefaults ¶

func NewMlAnalyticsInfoWithDefaults() *MlAnalyticsInfo

NewMlAnalyticsInfoWithDefaults instantiates a new MlAnalyticsInfo 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 (*MlAnalyticsInfo) GetMlAnalyticsIds ¶

func (o *MlAnalyticsInfo) GetMlAnalyticsIds() []NwdafEvent

GetMlAnalyticsIds returns the MlAnalyticsIds field value if set, zero value otherwise.

func (*MlAnalyticsInfo) GetMlAnalyticsIdsOk ¶

func (o *MlAnalyticsInfo) GetMlAnalyticsIdsOk() ([]NwdafEvent, bool)

GetMlAnalyticsIdsOk returns a tuple with the MlAnalyticsIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MlAnalyticsInfo) GetSnssaiList ¶

func (o *MlAnalyticsInfo) GetSnssaiList() []Snssai

GetSnssaiList returns the SnssaiList field value if set, zero value otherwise.

func (*MlAnalyticsInfo) GetSnssaiListOk ¶

func (o *MlAnalyticsInfo) GetSnssaiListOk() ([]Snssai, bool)

GetSnssaiListOk returns a tuple with the SnssaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MlAnalyticsInfo) GetTrackingAreaList ¶

func (o *MlAnalyticsInfo) GetTrackingAreaList() []Tai

GetTrackingAreaList returns the TrackingAreaList field value if set, zero value otherwise.

func (*MlAnalyticsInfo) GetTrackingAreaListOk ¶

func (o *MlAnalyticsInfo) GetTrackingAreaListOk() ([]Tai, bool)

GetTrackingAreaListOk returns a tuple with the TrackingAreaList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MlAnalyticsInfo) HasMlAnalyticsIds ¶

func (o *MlAnalyticsInfo) HasMlAnalyticsIds() bool

HasMlAnalyticsIds returns a boolean if a field has been set.

func (*MlAnalyticsInfo) HasSnssaiList ¶

func (o *MlAnalyticsInfo) HasSnssaiList() bool

HasSnssaiList returns a boolean if a field has been set.

func (*MlAnalyticsInfo) HasTrackingAreaList ¶

func (o *MlAnalyticsInfo) HasTrackingAreaList() bool

HasTrackingAreaList returns a boolean if a field has been set.

func (MlAnalyticsInfo) MarshalJSON ¶

func (o MlAnalyticsInfo) MarshalJSON() ([]byte, error)

func (*MlAnalyticsInfo) SetMlAnalyticsIds ¶

func (o *MlAnalyticsInfo) SetMlAnalyticsIds(v []NwdafEvent)

SetMlAnalyticsIds gets a reference to the given []NwdafEvent and assigns it to the MlAnalyticsIds field.

func (*MlAnalyticsInfo) SetSnssaiList ¶

func (o *MlAnalyticsInfo) SetSnssaiList(v []Snssai)

SetSnssaiList gets a reference to the given []Snssai and assigns it to the SnssaiList field.

func (*MlAnalyticsInfo) SetTrackingAreaList ¶

func (o *MlAnalyticsInfo) SetTrackingAreaList(v []Tai)

SetTrackingAreaList gets a reference to the given []Tai and assigns it to the TrackingAreaList field.

func (MlAnalyticsInfo) ToMap ¶

func (o MlAnalyticsInfo) ToMap() (map[string]interface{}, error)

type MmTransactionLocationReportItem ¶

type MmTransactionLocationReportItem struct {
	Tai          *Tai          `json:"tai,omitempty"`
	Ncgi         *Ncgi         `json:"ncgi,omitempty"`
	Ecgi         *Ecgi         `json:"ecgi,omitempty"`
	N3gaLocation *N3gaLocation `json:"n3gaLocation,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	Timestamp    time.Time `json:"timestamp"`
	Transactions int32     `json:"transactions"`
}

MmTransactionLocationReportItem UE MM Transaction Report Item per Location

func NewMmTransactionLocationReportItem ¶

func NewMmTransactionLocationReportItem(timestamp time.Time, transactions int32) *MmTransactionLocationReportItem

NewMmTransactionLocationReportItem instantiates a new MmTransactionLocationReportItem 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 NewMmTransactionLocationReportItemWithDefaults ¶

func NewMmTransactionLocationReportItemWithDefaults() *MmTransactionLocationReportItem

NewMmTransactionLocationReportItemWithDefaults instantiates a new MmTransactionLocationReportItem 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 (*MmTransactionLocationReportItem) GetEcgi ¶

GetEcgi returns the Ecgi field value if set, zero value otherwise.

func (*MmTransactionLocationReportItem) GetEcgiOk ¶

func (o *MmTransactionLocationReportItem) GetEcgiOk() (*Ecgi, bool)

GetEcgiOk returns a tuple with the Ecgi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MmTransactionLocationReportItem) GetN3gaLocation ¶

func (o *MmTransactionLocationReportItem) GetN3gaLocation() N3gaLocation

GetN3gaLocation returns the N3gaLocation field value if set, zero value otherwise.

func (*MmTransactionLocationReportItem) GetN3gaLocationOk ¶

func (o *MmTransactionLocationReportItem) GetN3gaLocationOk() (*N3gaLocation, bool)

GetN3gaLocationOk returns a tuple with the N3gaLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MmTransactionLocationReportItem) GetNcgi ¶

GetNcgi returns the Ncgi field value if set, zero value otherwise.

func (*MmTransactionLocationReportItem) GetNcgiOk ¶

func (o *MmTransactionLocationReportItem) GetNcgiOk() (*Ncgi, bool)

GetNcgiOk returns a tuple with the Ncgi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MmTransactionLocationReportItem) GetTai ¶

GetTai returns the Tai field value if set, zero value otherwise.

func (*MmTransactionLocationReportItem) GetTaiOk ¶

func (o *MmTransactionLocationReportItem) GetTaiOk() (*Tai, bool)

GetTaiOk returns a tuple with the Tai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MmTransactionLocationReportItem) GetTimestamp ¶

func (o *MmTransactionLocationReportItem) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*MmTransactionLocationReportItem) GetTimestampOk ¶

func (o *MmTransactionLocationReportItem) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value and a boolean to check if the value has been set.

func (*MmTransactionLocationReportItem) GetTransactions ¶

func (o *MmTransactionLocationReportItem) GetTransactions() int32

GetTransactions returns the Transactions field value

func (*MmTransactionLocationReportItem) GetTransactionsOk ¶

func (o *MmTransactionLocationReportItem) GetTransactionsOk() (*int32, bool)

GetTransactionsOk returns a tuple with the Transactions field value and a boolean to check if the value has been set.

func (*MmTransactionLocationReportItem) HasEcgi ¶

HasEcgi returns a boolean if a field has been set.

func (*MmTransactionLocationReportItem) HasN3gaLocation ¶

func (o *MmTransactionLocationReportItem) HasN3gaLocation() bool

HasN3gaLocation returns a boolean if a field has been set.

func (*MmTransactionLocationReportItem) HasNcgi ¶

HasNcgi returns a boolean if a field has been set.

func (*MmTransactionLocationReportItem) HasTai ¶

HasTai returns a boolean if a field has been set.

func (MmTransactionLocationReportItem) MarshalJSON ¶

func (o MmTransactionLocationReportItem) MarshalJSON() ([]byte, error)

func (*MmTransactionLocationReportItem) SetEcgi ¶

func (o *MmTransactionLocationReportItem) SetEcgi(v Ecgi)

SetEcgi gets a reference to the given Ecgi and assigns it to the Ecgi field.

func (*MmTransactionLocationReportItem) SetN3gaLocation ¶

func (o *MmTransactionLocationReportItem) SetN3gaLocation(v N3gaLocation)

SetN3gaLocation gets a reference to the given N3gaLocation and assigns it to the N3gaLocation field.

func (*MmTransactionLocationReportItem) SetNcgi ¶

func (o *MmTransactionLocationReportItem) SetNcgi(v Ncgi)

SetNcgi gets a reference to the given Ncgi and assigns it to the Ncgi field.

func (*MmTransactionLocationReportItem) SetTai ¶

func (o *MmTransactionLocationReportItem) SetTai(v Tai)

SetTai gets a reference to the given Tai and assigns it to the Tai field.

func (*MmTransactionLocationReportItem) SetTimestamp ¶

func (o *MmTransactionLocationReportItem) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (*MmTransactionLocationReportItem) SetTransactions ¶

func (o *MmTransactionLocationReportItem) SetTransactions(v int32)

SetTransactions sets field value

func (MmTransactionLocationReportItem) ToMap ¶

func (o MmTransactionLocationReportItem) ToMap() (map[string]interface{}, error)

type MmTransactionSliceReportItem ¶

type MmTransactionSliceReportItem struct {
	Snssai *Snssai `json:"snssai,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	Timestamp    time.Time `json:"timestamp"`
	Transactions int32     `json:"transactions"`
}

MmTransactionSliceReportItem UE MM Transaction Report Item per Slice

func NewMmTransactionSliceReportItem ¶

func NewMmTransactionSliceReportItem(timestamp time.Time, transactions int32) *MmTransactionSliceReportItem

NewMmTransactionSliceReportItem instantiates a new MmTransactionSliceReportItem 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 NewMmTransactionSliceReportItemWithDefaults ¶

func NewMmTransactionSliceReportItemWithDefaults() *MmTransactionSliceReportItem

NewMmTransactionSliceReportItemWithDefaults instantiates a new MmTransactionSliceReportItem 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 (*MmTransactionSliceReportItem) GetSnssai ¶

func (o *MmTransactionSliceReportItem) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*MmTransactionSliceReportItem) GetSnssaiOk ¶

func (o *MmTransactionSliceReportItem) GetSnssaiOk() (*Snssai, bool)

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 (*MmTransactionSliceReportItem) GetTimestamp ¶

func (o *MmTransactionSliceReportItem) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*MmTransactionSliceReportItem) GetTimestampOk ¶

func (o *MmTransactionSliceReportItem) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value and a boolean to check if the value has been set.

func (*MmTransactionSliceReportItem) GetTransactions ¶

func (o *MmTransactionSliceReportItem) GetTransactions() int32

GetTransactions returns the Transactions field value

func (*MmTransactionSliceReportItem) GetTransactionsOk ¶

func (o *MmTransactionSliceReportItem) GetTransactionsOk() (*int32, bool)

GetTransactionsOk returns a tuple with the Transactions field value and a boolean to check if the value has been set.

func (*MmTransactionSliceReportItem) HasSnssai ¶

func (o *MmTransactionSliceReportItem) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (MmTransactionSliceReportItem) MarshalJSON ¶

func (o MmTransactionSliceReportItem) MarshalJSON() ([]byte, error)

func (*MmTransactionSliceReportItem) SetSnssai ¶

func (o *MmTransactionSliceReportItem) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (*MmTransactionSliceReportItem) SetTimestamp ¶

func (o *MmTransactionSliceReportItem) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (*MmTransactionSliceReportItem) SetTransactions ¶

func (o *MmTransactionSliceReportItem) SetTransactions(v int32)

SetTransactions sets field value

func (MmTransactionSliceReportItem) ToMap ¶

func (o MmTransactionSliceReportItem) ToMap() (map[string]interface{}, error)

type MnpfInfo ¶

type MnpfInfo struct {
	MsisdnRanges []IdentityRange `json:"msisdnRanges"`
}

MnpfInfo Information of an MNPF Instance

func NewMnpfInfo ¶

func NewMnpfInfo(msisdnRanges []IdentityRange) *MnpfInfo

NewMnpfInfo instantiates a new MnpfInfo 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 NewMnpfInfoWithDefaults ¶

func NewMnpfInfoWithDefaults() *MnpfInfo

NewMnpfInfoWithDefaults instantiates a new MnpfInfo 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 (*MnpfInfo) GetMsisdnRanges ¶

func (o *MnpfInfo) GetMsisdnRanges() []IdentityRange

GetMsisdnRanges returns the MsisdnRanges field value

func (*MnpfInfo) GetMsisdnRangesOk ¶

func (o *MnpfInfo) GetMsisdnRangesOk() ([]IdentityRange, bool)

GetMsisdnRangesOk returns a tuple with the MsisdnRanges field value and a boolean to check if the value has been set.

func (MnpfInfo) MarshalJSON ¶

func (o MnpfInfo) MarshalJSON() ([]byte, error)

func (*MnpfInfo) SetMsisdnRanges ¶

func (o *MnpfInfo) SetMsisdnRanges(v []IdentityRange)

SetMsisdnRanges sets field value

func (MnpfInfo) ToMap ¶

func (o MnpfInfo) ToMap() (map[string]interface{}, error)

type Model5GDdnmfInfo ¶

type Model5GDdnmfInfo struct {
	PlmnId PlmnId `json:"plmnId"`
}

Model5GDdnmfInfo Information of an 5G DDNMF NF Instance

func NewModel5GDdnmfInfo ¶

func NewModel5GDdnmfInfo(plmnId PlmnId) *Model5GDdnmfInfo

NewModel5GDdnmfInfo instantiates a new Model5GDdnmfInfo 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 NewModel5GDdnmfInfoWithDefaults ¶

func NewModel5GDdnmfInfoWithDefaults() *Model5GDdnmfInfo

NewModel5GDdnmfInfoWithDefaults instantiates a new Model5GDdnmfInfo 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 (*Model5GDdnmfInfo) GetPlmnId ¶

func (o *Model5GDdnmfInfo) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Model5GDdnmfInfo) GetPlmnIdOk ¶

func (o *Model5GDdnmfInfo) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (Model5GDdnmfInfo) MarshalJSON ¶

func (o Model5GDdnmfInfo) MarshalJSON() ([]byte, error)

func (*Model5GDdnmfInfo) SetPlmnId ¶

func (o *Model5GDdnmfInfo) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Model5GDdnmfInfo) ToMap ¶

func (o Model5GDdnmfInfo) ToMap() (map[string]interface{}, error)

type Model5GsUserState ¶

type Model5GsUserState struct {
	String *string
}

Model5GsUserState Describes the 5GS User State of a UE

func (*Model5GsUserState) MarshalJSON ¶

func (src *Model5GsUserState) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Model5GsUserState) UnmarshalJSON ¶

func (dst *Model5GsUserState) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type Model5GsUserStateInfo ¶

type Model5GsUserStateInfo struct {
	Var5gsUserState Model5GsUserState `json:"5gsUserState"`
	AccessType      AccessType        `json:"accessType"`
}

Model5GsUserStateInfo Represents the 5GS User state of the UE for an access type

func NewModel5GsUserStateInfo ¶

func NewModel5GsUserStateInfo(var5gsUserState Model5GsUserState, accessType AccessType) *Model5GsUserStateInfo

NewModel5GsUserStateInfo instantiates a new Model5GsUserStateInfo 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 NewModel5GsUserStateInfoWithDefaults ¶

func NewModel5GsUserStateInfoWithDefaults() *Model5GsUserStateInfo

NewModel5GsUserStateInfoWithDefaults instantiates a new Model5GsUserStateInfo 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 (*Model5GsUserStateInfo) GetAccessType ¶

func (o *Model5GsUserStateInfo) GetAccessType() AccessType

GetAccessType returns the AccessType field value

func (*Model5GsUserStateInfo) GetAccessTypeOk ¶

func (o *Model5GsUserStateInfo) GetAccessTypeOk() (*AccessType, bool)

GetAccessTypeOk returns a tuple with the AccessType field value and a boolean to check if the value has been set.

func (*Model5GsUserStateInfo) GetVar5gsUserState ¶

func (o *Model5GsUserStateInfo) GetVar5gsUserState() Model5GsUserState

GetVar5gsUserState returns the Var5gsUserState field value

func (*Model5GsUserStateInfo) GetVar5gsUserStateOk ¶

func (o *Model5GsUserStateInfo) GetVar5gsUserStateOk() (*Model5GsUserState, bool)

GetVar5gsUserStateOk returns a tuple with the Var5gsUserState field value and a boolean to check if the value has been set.

func (Model5GsUserStateInfo) MarshalJSON ¶

func (o Model5GsUserStateInfo) MarshalJSON() ([]byte, error)

func (*Model5GsUserStateInfo) SetAccessType ¶

func (o *Model5GsUserStateInfo) SetAccessType(v AccessType)

SetAccessType sets field value

func (*Model5GsUserStateInfo) SetVar5gsUserState ¶

func (o *Model5GsUserStateInfo) SetVar5gsUserState(v Model5GsUserState)

SetVar5gsUserState sets field value

func (Model5GsUserStateInfo) ToMap ¶

func (o Model5GsUserStateInfo) ToMap() (map[string]interface{}, error)

type MonitoringConfiguration ¶

type MonitoringConfiguration struct {
	EventType                      EventType                       `json:"eventType"`
	ImmediateFlag                  *bool                           `json:"immediateFlag,omitempty"`
	LocationReportingConfiguration *LocationReportingConfiguration `json:"locationReportingConfiguration,omitempty"`
	AssociationType                *AssociationType                `json:"associationType,omitempty"`
	DatalinkReportCfg              *DatalinkReportingConfiguration `json:"datalinkReportCfg,omitempty"`
	LossConnectivityCfg            *LossConnectivityCfg            `json:"lossConnectivityCfg,omitempty"`
	// indicating a time in seconds.
	MaximumLatency *int32 `json:"maximumLatency,omitempty"`
	// indicating a time in seconds.
	MaximumResponseTime  *int32 `json:"maximumResponseTime,omitempty"`
	SuggestedPacketNumDl *int32 `json:"suggestedPacketNumDl,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"`
	SingleNssai           *Snssai                          `json:"singleNssai,omitempty"`
	PduSessionStatusCfg   *PduSessionStatusCfg             `json:"pduSessionStatusCfg,omitempty"`
	ReachabilityForSmsCfg *ReachabilityForSmsConfiguration `json:"reachabilityForSmsCfg,omitempty"`
	// String uniquely identifying MTC provider information.
	MtcProviderInformation *string                           `json:"mtcProviderInformation,omitempty"`
	AfId                   *string                           `json:"afId,omitempty"`
	ReachabilityForDataCfg *ReachabilityForDataConfiguration `json:"reachabilityForDataCfg,omitempty"`
	IdleStatusInd          *bool                             `json:"idleStatusInd,omitempty"`
}

MonitoringConfiguration struct for MonitoringConfiguration

func NewMonitoringConfiguration ¶

func NewMonitoringConfiguration(eventType EventType) *MonitoringConfiguration

NewMonitoringConfiguration instantiates a new MonitoringConfiguration 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 NewMonitoringConfigurationWithDefaults ¶

func NewMonitoringConfigurationWithDefaults() *MonitoringConfiguration

NewMonitoringConfigurationWithDefaults instantiates a new MonitoringConfiguration 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 (*MonitoringConfiguration) GetAfId ¶

func (o *MonitoringConfiguration) GetAfId() string

GetAfId returns the AfId field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetAfIdOk ¶

func (o *MonitoringConfiguration) GetAfIdOk() (*string, bool)

GetAfIdOk returns a tuple with the AfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetAssociationType ¶

func (o *MonitoringConfiguration) GetAssociationType() AssociationType

GetAssociationType returns the AssociationType field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetAssociationTypeOk ¶

func (o *MonitoringConfiguration) GetAssociationTypeOk() (*AssociationType, bool)

GetAssociationTypeOk returns a tuple with the AssociationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetDatalinkReportCfg ¶

func (o *MonitoringConfiguration) GetDatalinkReportCfg() DatalinkReportingConfiguration

GetDatalinkReportCfg returns the DatalinkReportCfg field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetDatalinkReportCfgOk ¶

func (o *MonitoringConfiguration) GetDatalinkReportCfgOk() (*DatalinkReportingConfiguration, bool)

GetDatalinkReportCfgOk returns a tuple with the DatalinkReportCfg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetDnn ¶

func (o *MonitoringConfiguration) GetDnn() string

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetDnnOk ¶

func (o *MonitoringConfiguration) GetDnnOk() (*string, bool)

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 (*MonitoringConfiguration) GetEventType ¶

func (o *MonitoringConfiguration) GetEventType() EventType

GetEventType returns the EventType field value

func (*MonitoringConfiguration) GetEventTypeOk ¶

func (o *MonitoringConfiguration) GetEventTypeOk() (*EventType, bool)

GetEventTypeOk returns a tuple with the EventType field value and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetIdleStatusInd ¶

func (o *MonitoringConfiguration) GetIdleStatusInd() bool

GetIdleStatusInd returns the IdleStatusInd field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetIdleStatusIndOk ¶

func (o *MonitoringConfiguration) GetIdleStatusIndOk() (*bool, bool)

GetIdleStatusIndOk returns a tuple with the IdleStatusInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetImmediateFlag ¶

func (o *MonitoringConfiguration) GetImmediateFlag() bool

GetImmediateFlag returns the ImmediateFlag field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetImmediateFlagOk ¶

func (o *MonitoringConfiguration) GetImmediateFlagOk() (*bool, bool)

GetImmediateFlagOk returns a tuple with the ImmediateFlag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetLocationReportingConfiguration ¶

func (o *MonitoringConfiguration) GetLocationReportingConfiguration() LocationReportingConfiguration

GetLocationReportingConfiguration returns the LocationReportingConfiguration field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetLocationReportingConfigurationOk ¶

func (o *MonitoringConfiguration) GetLocationReportingConfigurationOk() (*LocationReportingConfiguration, bool)

GetLocationReportingConfigurationOk returns a tuple with the LocationReportingConfiguration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetLossConnectivityCfg ¶

func (o *MonitoringConfiguration) GetLossConnectivityCfg() LossConnectivityCfg

GetLossConnectivityCfg returns the LossConnectivityCfg field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetLossConnectivityCfgOk ¶

func (o *MonitoringConfiguration) GetLossConnectivityCfgOk() (*LossConnectivityCfg, bool)

GetLossConnectivityCfgOk returns a tuple with the LossConnectivityCfg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetMaximumLatency ¶

func (o *MonitoringConfiguration) GetMaximumLatency() int32

GetMaximumLatency returns the MaximumLatency field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetMaximumLatencyOk ¶

func (o *MonitoringConfiguration) GetMaximumLatencyOk() (*int32, bool)

GetMaximumLatencyOk returns a tuple with the MaximumLatency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetMaximumResponseTime ¶

func (o *MonitoringConfiguration) GetMaximumResponseTime() int32

GetMaximumResponseTime returns the MaximumResponseTime field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetMaximumResponseTimeOk ¶

func (o *MonitoringConfiguration) GetMaximumResponseTimeOk() (*int32, bool)

GetMaximumResponseTimeOk returns a tuple with the MaximumResponseTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetMtcProviderInformation ¶

func (o *MonitoringConfiguration) GetMtcProviderInformation() string

GetMtcProviderInformation returns the MtcProviderInformation field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetMtcProviderInformationOk ¶

func (o *MonitoringConfiguration) GetMtcProviderInformationOk() (*string, bool)

GetMtcProviderInformationOk returns a tuple with the MtcProviderInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetPduSessionStatusCfg ¶

func (o *MonitoringConfiguration) GetPduSessionStatusCfg() PduSessionStatusCfg

GetPduSessionStatusCfg returns the PduSessionStatusCfg field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetPduSessionStatusCfgOk ¶

func (o *MonitoringConfiguration) GetPduSessionStatusCfgOk() (*PduSessionStatusCfg, bool)

GetPduSessionStatusCfgOk returns a tuple with the PduSessionStatusCfg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetReachabilityForDataCfg ¶

func (o *MonitoringConfiguration) GetReachabilityForDataCfg() ReachabilityForDataConfiguration

GetReachabilityForDataCfg returns the ReachabilityForDataCfg field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetReachabilityForDataCfgOk ¶

func (o *MonitoringConfiguration) GetReachabilityForDataCfgOk() (*ReachabilityForDataConfiguration, bool)

GetReachabilityForDataCfgOk returns a tuple with the ReachabilityForDataCfg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetReachabilityForSmsCfg ¶

func (o *MonitoringConfiguration) GetReachabilityForSmsCfg() ReachabilityForSmsConfiguration

GetReachabilityForSmsCfg returns the ReachabilityForSmsCfg field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetReachabilityForSmsCfgOk ¶

func (o *MonitoringConfiguration) GetReachabilityForSmsCfgOk() (*ReachabilityForSmsConfiguration, bool)

GetReachabilityForSmsCfgOk returns a tuple with the ReachabilityForSmsCfg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetSingleNssai ¶

func (o *MonitoringConfiguration) GetSingleNssai() Snssai

GetSingleNssai returns the SingleNssai field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetSingleNssaiOk ¶

func (o *MonitoringConfiguration) GetSingleNssaiOk() (*Snssai, bool)

GetSingleNssaiOk returns a tuple with the SingleNssai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) GetSuggestedPacketNumDl ¶

func (o *MonitoringConfiguration) GetSuggestedPacketNumDl() int32

GetSuggestedPacketNumDl returns the SuggestedPacketNumDl field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetSuggestedPacketNumDlOk ¶

func (o *MonitoringConfiguration) GetSuggestedPacketNumDlOk() (*int32, bool)

GetSuggestedPacketNumDlOk returns a tuple with the SuggestedPacketNumDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringConfiguration) HasAfId ¶

func (o *MonitoringConfiguration) HasAfId() bool

HasAfId returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasAssociationType ¶

func (o *MonitoringConfiguration) HasAssociationType() bool

HasAssociationType returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasDatalinkReportCfg ¶

func (o *MonitoringConfiguration) HasDatalinkReportCfg() bool

HasDatalinkReportCfg returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasDnn ¶

func (o *MonitoringConfiguration) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasIdleStatusInd ¶

func (o *MonitoringConfiguration) HasIdleStatusInd() bool

HasIdleStatusInd returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasImmediateFlag ¶

func (o *MonitoringConfiguration) HasImmediateFlag() bool

HasImmediateFlag returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasLocationReportingConfiguration ¶

func (o *MonitoringConfiguration) HasLocationReportingConfiguration() bool

HasLocationReportingConfiguration returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasLossConnectivityCfg ¶

func (o *MonitoringConfiguration) HasLossConnectivityCfg() bool

HasLossConnectivityCfg returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasMaximumLatency ¶

func (o *MonitoringConfiguration) HasMaximumLatency() bool

HasMaximumLatency returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasMaximumResponseTime ¶

func (o *MonitoringConfiguration) HasMaximumResponseTime() bool

HasMaximumResponseTime returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasMtcProviderInformation ¶

func (o *MonitoringConfiguration) HasMtcProviderInformation() bool

HasMtcProviderInformation returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasPduSessionStatusCfg ¶

func (o *MonitoringConfiguration) HasPduSessionStatusCfg() bool

HasPduSessionStatusCfg returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasReachabilityForDataCfg ¶

func (o *MonitoringConfiguration) HasReachabilityForDataCfg() bool

HasReachabilityForDataCfg returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasReachabilityForSmsCfg ¶

func (o *MonitoringConfiguration) HasReachabilityForSmsCfg() bool

HasReachabilityForSmsCfg returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasSingleNssai ¶

func (o *MonitoringConfiguration) HasSingleNssai() bool

HasSingleNssai returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasSuggestedPacketNumDl ¶

func (o *MonitoringConfiguration) HasSuggestedPacketNumDl() bool

HasSuggestedPacketNumDl returns a boolean if a field has been set.

func (MonitoringConfiguration) MarshalJSON ¶

func (o MonitoringConfiguration) MarshalJSON() ([]byte, error)

func (*MonitoringConfiguration) SetAfId ¶

func (o *MonitoringConfiguration) SetAfId(v string)

SetAfId gets a reference to the given string and assigns it to the AfId field.

func (*MonitoringConfiguration) SetAssociationType ¶

func (o *MonitoringConfiguration) SetAssociationType(v AssociationType)

SetAssociationType gets a reference to the given AssociationType and assigns it to the AssociationType field.

func (*MonitoringConfiguration) SetDatalinkReportCfg ¶

func (o *MonitoringConfiguration) SetDatalinkReportCfg(v DatalinkReportingConfiguration)

SetDatalinkReportCfg gets a reference to the given DatalinkReportingConfiguration and assigns it to the DatalinkReportCfg field.

func (*MonitoringConfiguration) SetDnn ¶

func (o *MonitoringConfiguration) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*MonitoringConfiguration) SetEventType ¶

func (o *MonitoringConfiguration) SetEventType(v EventType)

SetEventType sets field value

func (*MonitoringConfiguration) SetIdleStatusInd ¶

func (o *MonitoringConfiguration) SetIdleStatusInd(v bool)

SetIdleStatusInd gets a reference to the given bool and assigns it to the IdleStatusInd field.

func (*MonitoringConfiguration) SetImmediateFlag ¶

func (o *MonitoringConfiguration) SetImmediateFlag(v bool)

SetImmediateFlag gets a reference to the given bool and assigns it to the ImmediateFlag field.

func (*MonitoringConfiguration) SetLocationReportingConfiguration ¶

func (o *MonitoringConfiguration) SetLocationReportingConfiguration(v LocationReportingConfiguration)

SetLocationReportingConfiguration gets a reference to the given LocationReportingConfiguration and assigns it to the LocationReportingConfiguration field.

func (*MonitoringConfiguration) SetLossConnectivityCfg ¶

func (o *MonitoringConfiguration) SetLossConnectivityCfg(v LossConnectivityCfg)

SetLossConnectivityCfg gets a reference to the given LossConnectivityCfg and assigns it to the LossConnectivityCfg field.

func (*MonitoringConfiguration) SetMaximumLatency ¶

func (o *MonitoringConfiguration) SetMaximumLatency(v int32)

SetMaximumLatency gets a reference to the given int32 and assigns it to the MaximumLatency field.

func (*MonitoringConfiguration) SetMaximumResponseTime ¶

func (o *MonitoringConfiguration) SetMaximumResponseTime(v int32)

SetMaximumResponseTime gets a reference to the given int32 and assigns it to the MaximumResponseTime field.

func (*MonitoringConfiguration) SetMtcProviderInformation ¶

func (o *MonitoringConfiguration) SetMtcProviderInformation(v string)

SetMtcProviderInformation gets a reference to the given string and assigns it to the MtcProviderInformation field.

func (*MonitoringConfiguration) SetPduSessionStatusCfg ¶

func (o *MonitoringConfiguration) SetPduSessionStatusCfg(v PduSessionStatusCfg)

SetPduSessionStatusCfg gets a reference to the given PduSessionStatusCfg and assigns it to the PduSessionStatusCfg field.

func (*MonitoringConfiguration) SetReachabilityForDataCfg ¶

func (o *MonitoringConfiguration) SetReachabilityForDataCfg(v ReachabilityForDataConfiguration)

SetReachabilityForDataCfg gets a reference to the given ReachabilityForDataConfiguration and assigns it to the ReachabilityForDataCfg field.

func (*MonitoringConfiguration) SetReachabilityForSmsCfg ¶

func (o *MonitoringConfiguration) SetReachabilityForSmsCfg(v ReachabilityForSmsConfiguration)

SetReachabilityForSmsCfg gets a reference to the given ReachabilityForSmsConfiguration and assigns it to the ReachabilityForSmsCfg field.

func (*MonitoringConfiguration) SetSingleNssai ¶

func (o *MonitoringConfiguration) SetSingleNssai(v Snssai)

SetSingleNssai gets a reference to the given Snssai and assigns it to the SingleNssai field.

func (*MonitoringConfiguration) SetSuggestedPacketNumDl ¶

func (o *MonitoringConfiguration) SetSuggestedPacketNumDl(v int32)

SetSuggestedPacketNumDl gets a reference to the given int32 and assigns it to the SuggestedPacketNumDl field.

func (MonitoringConfiguration) ToMap ¶

func (o MonitoringConfiguration) ToMap() (map[string]interface{}, error)

type MonitoringReport ¶

type MonitoringReport struct {
	ReferenceId              int32                     `json:"referenceId"`
	EventType                EventType                 `json:"eventType"`
	Report                   *Report                   `json:"report,omitempty"`
	ReachabilityForSmsReport *ReachabilityForSmsReport `json:"reachabilityForSmsReport,omitempty"`
	// 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.
	Gpsi *string `json:"gpsi,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp          time.Time           `json:"timeStamp"`
	ReachabilityReport *ReachabilityReport `json:"reachabilityReport,omitempty"`
}

MonitoringReport struct for MonitoringReport

func NewMonitoringReport ¶

func NewMonitoringReport(referenceId int32, eventType EventType, timeStamp time.Time) *MonitoringReport

NewMonitoringReport instantiates a new MonitoringReport 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 NewMonitoringReportWithDefaults ¶

func NewMonitoringReportWithDefaults() *MonitoringReport

NewMonitoringReportWithDefaults instantiates a new MonitoringReport 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 (*MonitoringReport) GetEventType ¶

func (o *MonitoringReport) GetEventType() EventType

GetEventType returns the EventType field value

func (*MonitoringReport) GetEventTypeOk ¶

func (o *MonitoringReport) GetEventTypeOk() (*EventType, bool)

GetEventTypeOk returns a tuple with the EventType field value and a boolean to check if the value has been set.

func (*MonitoringReport) GetGpsi ¶

func (o *MonitoringReport) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*MonitoringReport) GetGpsiOk ¶

func (o *MonitoringReport) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringReport) GetReachabilityForSmsReport ¶

func (o *MonitoringReport) GetReachabilityForSmsReport() ReachabilityForSmsReport

GetReachabilityForSmsReport returns the ReachabilityForSmsReport field value if set, zero value otherwise.

func (*MonitoringReport) GetReachabilityForSmsReportOk ¶

func (o *MonitoringReport) GetReachabilityForSmsReportOk() (*ReachabilityForSmsReport, bool)

GetReachabilityForSmsReportOk returns a tuple with the ReachabilityForSmsReport field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringReport) GetReachabilityReport ¶

func (o *MonitoringReport) GetReachabilityReport() ReachabilityReport

GetReachabilityReport returns the ReachabilityReport field value if set, zero value otherwise.

func (*MonitoringReport) GetReachabilityReportOk ¶

func (o *MonitoringReport) GetReachabilityReportOk() (*ReachabilityReport, bool)

GetReachabilityReportOk returns a tuple with the ReachabilityReport field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringReport) GetReferenceId ¶

func (o *MonitoringReport) GetReferenceId() int32

GetReferenceId returns the ReferenceId field value

func (*MonitoringReport) GetReferenceIdOk ¶

func (o *MonitoringReport) GetReferenceIdOk() (*int32, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value and a boolean to check if the value has been set.

func (*MonitoringReport) GetReport ¶

func (o *MonitoringReport) GetReport() Report

GetReport returns the Report field value if set, zero value otherwise.

func (*MonitoringReport) GetReportOk ¶

func (o *MonitoringReport) GetReportOk() (*Report, bool)

GetReportOk returns a tuple with the Report field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MonitoringReport) GetTimeStamp ¶

func (o *MonitoringReport) GetTimeStamp() time.Time

GetTimeStamp returns the TimeStamp field value

func (*MonitoringReport) GetTimeStampOk ¶

func (o *MonitoringReport) GetTimeStampOk() (*time.Time, bool)

GetTimeStampOk returns a tuple with the TimeStamp field value and a boolean to check if the value has been set.

func (*MonitoringReport) HasGpsi ¶

func (o *MonitoringReport) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*MonitoringReport) HasReachabilityForSmsReport ¶

func (o *MonitoringReport) HasReachabilityForSmsReport() bool

HasReachabilityForSmsReport returns a boolean if a field has been set.

func (*MonitoringReport) HasReachabilityReport ¶

func (o *MonitoringReport) HasReachabilityReport() bool

HasReachabilityReport returns a boolean if a field has been set.

func (*MonitoringReport) HasReport ¶

func (o *MonitoringReport) HasReport() bool

HasReport returns a boolean if a field has been set.

func (MonitoringReport) MarshalJSON ¶

func (o MonitoringReport) MarshalJSON() ([]byte, error)

func (*MonitoringReport) SetEventType ¶

func (o *MonitoringReport) SetEventType(v EventType)

SetEventType sets field value

func (*MonitoringReport) SetGpsi ¶

func (o *MonitoringReport) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*MonitoringReport) SetReachabilityForSmsReport ¶

func (o *MonitoringReport) SetReachabilityForSmsReport(v ReachabilityForSmsReport)

SetReachabilityForSmsReport gets a reference to the given ReachabilityForSmsReport and assigns it to the ReachabilityForSmsReport field.

func (*MonitoringReport) SetReachabilityReport ¶

func (o *MonitoringReport) SetReachabilityReport(v ReachabilityReport)

SetReachabilityReport gets a reference to the given ReachabilityReport and assigns it to the ReachabilityReport field.

func (*MonitoringReport) SetReferenceId ¶

func (o *MonitoringReport) SetReferenceId(v int32)

SetReferenceId sets field value

func (*MonitoringReport) SetReport ¶

func (o *MonitoringReport) SetReport(v Report)

SetReport gets a reference to the given Report and assigns it to the Report field.

func (*MonitoringReport) SetTimeStamp ¶

func (o *MonitoringReport) SetTimeStamp(v time.Time)

SetTimeStamp sets field value

func (MonitoringReport) ToMap ¶

func (o MonitoringReport) ToMap() (map[string]interface{}, error)

type MsConsumptionCollection ¶

type MsConsumptionCollection struct {
	MsConsumps []string `json:"msConsumps"`
}

MsConsumptionCollection Contains the Media Streaming Consumption information collected for an UE Application via AF.

func NewMsConsumptionCollection ¶

func NewMsConsumptionCollection(msConsumps []string) *MsConsumptionCollection

NewMsConsumptionCollection instantiates a new MsConsumptionCollection 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 NewMsConsumptionCollectionWithDefaults ¶

func NewMsConsumptionCollectionWithDefaults() *MsConsumptionCollection

NewMsConsumptionCollectionWithDefaults instantiates a new MsConsumptionCollection 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 (*MsConsumptionCollection) GetMsConsumps ¶

func (o *MsConsumptionCollection) GetMsConsumps() []string

GetMsConsumps returns the MsConsumps field value

func (*MsConsumptionCollection) GetMsConsumpsOk ¶

func (o *MsConsumptionCollection) GetMsConsumpsOk() ([]string, bool)

GetMsConsumpsOk returns a tuple with the MsConsumps field value and a boolean to check if the value has been set.

func (MsConsumptionCollection) MarshalJSON ¶

func (o MsConsumptionCollection) MarshalJSON() ([]byte, error)

func (*MsConsumptionCollection) SetMsConsumps ¶

func (o *MsConsumptionCollection) SetMsConsumps(v []string)

SetMsConsumps sets field value

func (MsConsumptionCollection) ToMap ¶

func (o MsConsumptionCollection) ToMap() (map[string]interface{}, error)

type MsDynPolicyInvocationCollection ¶

type MsDynPolicyInvocationCollection struct {
	MsDynPlyInvocs []DynamicPolicy `json:"msDynPlyInvocs"`
}

MsDynPolicyInvocationCollection Contains the Media Streaming Dynamic Policy invocation collected for an UE Application via AF.

func NewMsDynPolicyInvocationCollection ¶

func NewMsDynPolicyInvocationCollection(msDynPlyInvocs []DynamicPolicy) *MsDynPolicyInvocationCollection

NewMsDynPolicyInvocationCollection instantiates a new MsDynPolicyInvocationCollection 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 NewMsDynPolicyInvocationCollectionWithDefaults ¶

func NewMsDynPolicyInvocationCollectionWithDefaults() *MsDynPolicyInvocationCollection

NewMsDynPolicyInvocationCollectionWithDefaults instantiates a new MsDynPolicyInvocationCollection 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 (*MsDynPolicyInvocationCollection) GetMsDynPlyInvocs ¶

func (o *MsDynPolicyInvocationCollection) GetMsDynPlyInvocs() []DynamicPolicy

GetMsDynPlyInvocs returns the MsDynPlyInvocs field value

func (*MsDynPolicyInvocationCollection) GetMsDynPlyInvocsOk ¶

func (o *MsDynPolicyInvocationCollection) GetMsDynPlyInvocsOk() ([]DynamicPolicy, bool)

GetMsDynPlyInvocsOk returns a tuple with the MsDynPlyInvocs field value and a boolean to check if the value has been set.

func (MsDynPolicyInvocationCollection) MarshalJSON ¶

func (o MsDynPolicyInvocationCollection) MarshalJSON() ([]byte, error)

func (*MsDynPolicyInvocationCollection) SetMsDynPlyInvocs ¶

func (o *MsDynPolicyInvocationCollection) SetMsDynPlyInvocs(v []DynamicPolicy)

SetMsDynPlyInvocs sets field value

func (MsDynPolicyInvocationCollection) ToMap ¶

func (o MsDynPolicyInvocationCollection) ToMap() (map[string]interface{}, error)

type MsNetAssInvocationCollection ¶

type MsNetAssInvocationCollection struct {
	MsNetAssInvocs []NetworkAssistanceSession `json:"msNetAssInvocs"`
}

MsNetAssInvocationCollection Contains the Media Streaming Network Assistance invocation collected for an UE Application via AF.

func NewMsNetAssInvocationCollection ¶

func NewMsNetAssInvocationCollection(msNetAssInvocs []NetworkAssistanceSession) *MsNetAssInvocationCollection

NewMsNetAssInvocationCollection instantiates a new MsNetAssInvocationCollection 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 NewMsNetAssInvocationCollectionWithDefaults ¶

func NewMsNetAssInvocationCollectionWithDefaults() *MsNetAssInvocationCollection

NewMsNetAssInvocationCollectionWithDefaults instantiates a new MsNetAssInvocationCollection 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 (*MsNetAssInvocationCollection) GetMsNetAssInvocs ¶

func (o *MsNetAssInvocationCollection) GetMsNetAssInvocs() []NetworkAssistanceSession

GetMsNetAssInvocs returns the MsNetAssInvocs field value

func (*MsNetAssInvocationCollection) GetMsNetAssInvocsOk ¶

func (o *MsNetAssInvocationCollection) GetMsNetAssInvocsOk() ([]NetworkAssistanceSession, bool)

GetMsNetAssInvocsOk returns a tuple with the MsNetAssInvocs field value and a boolean to check if the value has been set.

func (MsNetAssInvocationCollection) MarshalJSON ¶

func (o MsNetAssInvocationCollection) MarshalJSON() ([]byte, error)

func (*MsNetAssInvocationCollection) SetMsNetAssInvocs ¶

func (o *MsNetAssInvocationCollection) SetMsNetAssInvocs(v []NetworkAssistanceSession)

SetMsNetAssInvocs sets field value

func (MsNetAssInvocationCollection) ToMap ¶

func (o MsNetAssInvocationCollection) ToMap() (map[string]interface{}, error)

type MsQoeMetricsCollection ¶

type MsQoeMetricsCollection struct {
	MsQoeMetrics []string `json:"msQoeMetrics"`
}

MsQoeMetricsCollection Contains the Media Streaming QoE metrics information collected for an UE Application via AF.

func NewMsQoeMetricsCollection ¶

func NewMsQoeMetricsCollection(msQoeMetrics []string) *MsQoeMetricsCollection

NewMsQoeMetricsCollection instantiates a new MsQoeMetricsCollection 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 NewMsQoeMetricsCollectionWithDefaults ¶

func NewMsQoeMetricsCollectionWithDefaults() *MsQoeMetricsCollection

NewMsQoeMetricsCollectionWithDefaults instantiates a new MsQoeMetricsCollection 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 (*MsQoeMetricsCollection) GetMsQoeMetrics ¶

func (o *MsQoeMetricsCollection) GetMsQoeMetrics() []string

GetMsQoeMetrics returns the MsQoeMetrics field value

func (*MsQoeMetricsCollection) GetMsQoeMetricsOk ¶

func (o *MsQoeMetricsCollection) GetMsQoeMetricsOk() ([]string, bool)

GetMsQoeMetricsOk returns a tuple with the MsQoeMetrics field value and a boolean to check if the value has been set.

func (MsQoeMetricsCollection) MarshalJSON ¶

func (o MsQoeMetricsCollection) MarshalJSON() ([]byte, error)

func (*MsQoeMetricsCollection) SetMsQoeMetrics ¶

func (o *MsQoeMetricsCollection) SetMsQoeMetrics(v []string)

SetMsQoeMetrics sets field value

func (MsQoeMetricsCollection) ToMap ¶

func (o MsQoeMetricsCollection) ToMap() (map[string]interface{}, error)

type N1MessageClass ¶

type N1MessageClass struct {
	String *string
}

N1MessageClass Enumeration for N1 Message Class

func (*N1MessageClass) MarshalJSON ¶

func (src *N1MessageClass) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*N1MessageClass) UnmarshalJSON ¶

func (dst *N1MessageClass) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type N2InformationClass ¶

type N2InformationClass struct {
	String *string
}

N2InformationClass Enumeration for N2 Information Class

func (*N2InformationClass) MarshalJSON ¶

func (src *N2InformationClass) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*N2InformationClass) UnmarshalJSON ¶

func (dst *N2InformationClass) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type N2InterfaceAmfInfo ¶

type N2InterfaceAmfInfo struct {
	Interface *interface{}
}

N2InterfaceAmfInfo AMF N2 interface information

func (*N2InterfaceAmfInfo) MarshalJSON ¶

func (src *N2InterfaceAmfInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*N2InterfaceAmfInfo) UnmarshalJSON ¶

func (dst *N2InterfaceAmfInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type N32Purpose ¶

type N32Purpose struct {
	String *string
}

N32Purpose Usage purpose of establishing N32 connectivity

func (*N32Purpose) MarshalJSON ¶

func (src *N32Purpose) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*N32Purpose) UnmarshalJSON ¶

func (dst *N32Purpose) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type N3gaLocation ¶

type N3gaLocation struct {
	N3gppTai *Tai `json:"n3gppTai,omitempty"`
	// This IE shall contain the N3IWF identifier received over NGAP and shall be encoded as a  string of hexadecimal characters. Each character in the string shall take a value of \"0\"  to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant  character representing the 4 most significant bits of the N3IWF ID shall appear first in  the string, and the character representing the 4 least significant bit of the N3IWF ID  shall appear last in the string.
	N3IwfId *string `json:"n3IwfId,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	UeIpv4Addr *string   `json:"ueIpv4Addr,omitempty"`
	UeIpv6Addr *Ipv6Addr `json:"ueIpv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber *int32              `json:"portNumber,omitempty"`
	Protocol   *TransportProtocol1 `json:"protocol,omitempty"`
	TnapId     *TnapId             `json:"tnapId,omitempty"`
	TwapId     *TwapId             `json:"twapId,omitempty"`
	HfcNodeId  *HfcNodeId          `json:"hfcNodeId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	Gli            *string   `json:"gli,omitempty"`
	W5gbanLineType *LineType `json:"w5gbanLineType,omitempty"`
	// Global Cable Identifier uniquely identifying the connection between the 5G-CRG or FN-CRG to the 5GS. See clause 28.15.4 of 3GPP TS 23.003. This shall be encoded as a string per clause 28.15.4 of 3GPP TS 23.003, and compliant with the syntax specified  in clause 2.2  of IETF RFC 7542 for the username part of a NAI. The GCI value is specified in CableLabs WR-TR-5WWC-ARCH.
	Gci *string `json:"gci,omitempty"`
}

N3gaLocation Contains the Non-3GPP access user location.

func NewN3gaLocation ¶

func NewN3gaLocation() *N3gaLocation

NewN3gaLocation instantiates a new N3gaLocation 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 NewN3gaLocationWithDefaults ¶

func NewN3gaLocationWithDefaults() *N3gaLocation

NewN3gaLocationWithDefaults instantiates a new N3gaLocation 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 (*N3gaLocation) GetGci ¶

func (o *N3gaLocation) GetGci() string

GetGci returns the Gci field value if set, zero value otherwise.

func (*N3gaLocation) GetGciOk ¶

func (o *N3gaLocation) GetGciOk() (*string, bool)

GetGciOk returns a tuple with the Gci field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N3gaLocation) GetGli ¶

func (o *N3gaLocation) GetGli() string

GetGli returns the Gli field value if set, zero value otherwise.

func (*N3gaLocation) GetGliOk ¶

func (o *N3gaLocation) GetGliOk() (*string, bool)

GetGliOk returns a tuple with the Gli field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N3gaLocation) GetHfcNodeId ¶

func (o *N3gaLocation) GetHfcNodeId() HfcNodeId

GetHfcNodeId returns the HfcNodeId field value if set, zero value otherwise.

func (*N3gaLocation) GetHfcNodeIdOk ¶

func (o *N3gaLocation) GetHfcNodeIdOk() (*HfcNodeId, bool)

GetHfcNodeIdOk returns a tuple with the HfcNodeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N3gaLocation) GetN3IwfId ¶

func (o *N3gaLocation) GetN3IwfId() string

GetN3IwfId returns the N3IwfId field value if set, zero value otherwise.

func (*N3gaLocation) GetN3IwfIdOk ¶

func (o *N3gaLocation) GetN3IwfIdOk() (*string, bool)

GetN3IwfIdOk returns a tuple with the N3IwfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N3gaLocation) GetN3gppTai ¶

func (o *N3gaLocation) GetN3gppTai() Tai

GetN3gppTai returns the N3gppTai field value if set, zero value otherwise.

func (*N3gaLocation) GetN3gppTaiOk ¶

func (o *N3gaLocation) GetN3gppTaiOk() (*Tai, bool)

GetN3gppTaiOk returns a tuple with the N3gppTai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N3gaLocation) GetPortNumber ¶

func (o *N3gaLocation) GetPortNumber() int32

GetPortNumber returns the PortNumber field value if set, zero value otherwise.

func (*N3gaLocation) GetPortNumberOk ¶

func (o *N3gaLocation) GetPortNumberOk() (*int32, bool)

GetPortNumberOk returns a tuple with the PortNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N3gaLocation) GetProtocol ¶

func (o *N3gaLocation) GetProtocol() TransportProtocol1

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*N3gaLocation) GetProtocolOk ¶

func (o *N3gaLocation) GetProtocolOk() (*TransportProtocol1, bool)

GetProtocolOk returns a tuple with the Protocol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N3gaLocation) GetTnapId ¶

func (o *N3gaLocation) GetTnapId() TnapId

GetTnapId returns the TnapId field value if set, zero value otherwise.

func (*N3gaLocation) GetTnapIdOk ¶

func (o *N3gaLocation) GetTnapIdOk() (*TnapId, bool)

GetTnapIdOk returns a tuple with the TnapId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N3gaLocation) GetTwapId ¶

func (o *N3gaLocation) GetTwapId() TwapId

GetTwapId returns the TwapId field value if set, zero value otherwise.

func (*N3gaLocation) GetTwapIdOk ¶

func (o *N3gaLocation) GetTwapIdOk() (*TwapId, bool)

GetTwapIdOk returns a tuple with the TwapId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N3gaLocation) GetUeIpv4Addr ¶

func (o *N3gaLocation) GetUeIpv4Addr() string

GetUeIpv4Addr returns the UeIpv4Addr field value if set, zero value otherwise.

func (*N3gaLocation) GetUeIpv4AddrOk ¶

func (o *N3gaLocation) GetUeIpv4AddrOk() (*string, bool)

GetUeIpv4AddrOk returns a tuple with the UeIpv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N3gaLocation) GetUeIpv6Addr ¶

func (o *N3gaLocation) GetUeIpv6Addr() Ipv6Addr

GetUeIpv6Addr returns the UeIpv6Addr field value if set, zero value otherwise.

func (*N3gaLocation) GetUeIpv6AddrOk ¶

func (o *N3gaLocation) GetUeIpv6AddrOk() (*Ipv6Addr, bool)

GetUeIpv6AddrOk returns a tuple with the UeIpv6Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N3gaLocation) GetW5gbanLineType ¶

func (o *N3gaLocation) GetW5gbanLineType() LineType

GetW5gbanLineType returns the W5gbanLineType field value if set, zero value otherwise.

func (*N3gaLocation) GetW5gbanLineTypeOk ¶

func (o *N3gaLocation) GetW5gbanLineTypeOk() (*LineType, bool)

GetW5gbanLineTypeOk returns a tuple with the W5gbanLineType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N3gaLocation) HasGci ¶

func (o *N3gaLocation) HasGci() bool

HasGci returns a boolean if a field has been set.

func (*N3gaLocation) HasGli ¶

func (o *N3gaLocation) HasGli() bool

HasGli returns a boolean if a field has been set.

func (*N3gaLocation) HasHfcNodeId ¶

func (o *N3gaLocation) HasHfcNodeId() bool

HasHfcNodeId returns a boolean if a field has been set.

func (*N3gaLocation) HasN3IwfId ¶

func (o *N3gaLocation) HasN3IwfId() bool

HasN3IwfId returns a boolean if a field has been set.

func (*N3gaLocation) HasN3gppTai ¶

func (o *N3gaLocation) HasN3gppTai() bool

HasN3gppTai returns a boolean if a field has been set.

func (*N3gaLocation) HasPortNumber ¶

func (o *N3gaLocation) HasPortNumber() bool

HasPortNumber returns a boolean if a field has been set.

func (*N3gaLocation) HasProtocol ¶

func (o *N3gaLocation) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*N3gaLocation) HasTnapId ¶

func (o *N3gaLocation) HasTnapId() bool

HasTnapId returns a boolean if a field has been set.

func (*N3gaLocation) HasTwapId ¶

func (o *N3gaLocation) HasTwapId() bool

HasTwapId returns a boolean if a field has been set.

func (*N3gaLocation) HasUeIpv4Addr ¶

func (o *N3gaLocation) HasUeIpv4Addr() bool

HasUeIpv4Addr returns a boolean if a field has been set.

func (*N3gaLocation) HasUeIpv6Addr ¶

func (o *N3gaLocation) HasUeIpv6Addr() bool

HasUeIpv6Addr returns a boolean if a field has been set.

func (*N3gaLocation) HasW5gbanLineType ¶

func (o *N3gaLocation) HasW5gbanLineType() bool

HasW5gbanLineType returns a boolean if a field has been set.

func (N3gaLocation) MarshalJSON ¶

func (o N3gaLocation) MarshalJSON() ([]byte, error)

func (*N3gaLocation) SetGci ¶

func (o *N3gaLocation) SetGci(v string)

SetGci gets a reference to the given string and assigns it to the Gci field.

func (*N3gaLocation) SetGli ¶

func (o *N3gaLocation) SetGli(v string)

SetGli gets a reference to the given string and assigns it to the Gli field.

func (*N3gaLocation) SetHfcNodeId ¶

func (o *N3gaLocation) SetHfcNodeId(v HfcNodeId)

SetHfcNodeId gets a reference to the given HfcNodeId and assigns it to the HfcNodeId field.

func (*N3gaLocation) SetN3IwfId ¶

func (o *N3gaLocation) SetN3IwfId(v string)

SetN3IwfId gets a reference to the given string and assigns it to the N3IwfId field.

func (*N3gaLocation) SetN3gppTai ¶

func (o *N3gaLocation) SetN3gppTai(v Tai)

SetN3gppTai gets a reference to the given Tai and assigns it to the N3gppTai field.

func (*N3gaLocation) SetPortNumber ¶

func (o *N3gaLocation) SetPortNumber(v int32)

SetPortNumber gets a reference to the given int32 and assigns it to the PortNumber field.

func (*N3gaLocation) SetProtocol ¶

func (o *N3gaLocation) SetProtocol(v TransportProtocol1)

SetProtocol gets a reference to the given TransportProtocol1 and assigns it to the Protocol field.

func (*N3gaLocation) SetTnapId ¶

func (o *N3gaLocation) SetTnapId(v TnapId)

SetTnapId gets a reference to the given TnapId and assigns it to the TnapId field.

func (*N3gaLocation) SetTwapId ¶

func (o *N3gaLocation) SetTwapId(v TwapId)

SetTwapId gets a reference to the given TwapId and assigns it to the TwapId field.

func (*N3gaLocation) SetUeIpv4Addr ¶

func (o *N3gaLocation) SetUeIpv4Addr(v string)

SetUeIpv4Addr gets a reference to the given string and assigns it to the UeIpv4Addr field.

func (*N3gaLocation) SetUeIpv6Addr ¶

func (o *N3gaLocation) SetUeIpv6Addr(v Ipv6Addr)

SetUeIpv6Addr gets a reference to the given Ipv6Addr and assigns it to the UeIpv6Addr field.

func (*N3gaLocation) SetW5gbanLineType ¶

func (o *N3gaLocation) SetW5gbanLineType(v LineType)

SetW5gbanLineType gets a reference to the given LineType and assigns it to the W5gbanLineType field.

func (N3gaLocation) ToMap ¶

func (o N3gaLocation) ToMap() (map[string]interface{}, error)

type NFProfile ¶

type NFProfile struct {
	Interface *interface{}
}

NFProfile Information of an NF Instance registered in the NRF

func (*NFProfile) MarshalJSON ¶

func (src *NFProfile) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NFProfile) UnmarshalJSON ¶

func (dst *NFProfile) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NFService ¶

type NFService struct {
	ServiceInstanceId string             `json:"serviceInstanceId"`
	ServiceName       ServiceName        `json:"serviceName"`
	Versions          []NFServiceVersion `json:"versions"`
	Scheme            UriScheme          `json:"scheme"`
	NfServiceStatus   NFServiceStatus    `json:"nfServiceStatus"`
	// Fully Qualified Domain Name
	Fqdn *string `json:"fqdn,omitempty"`
	// Fully Qualified Domain Name
	InterPlmnFqdn                    *string                           `json:"interPlmnFqdn,omitempty"`
	IpEndPoints                      []IpEndPoint                      `json:"ipEndPoints,omitempty"`
	ApiPrefix                        *string                           `json:"apiPrefix,omitempty"`
	DefaultNotificationSubscriptions []DefaultNotificationSubscription `json:"defaultNotificationSubscriptions,omitempty"`
	AllowedPlmns                     []PlmnId                          `json:"allowedPlmns,omitempty"`
	AllowedSnpns                     []PlmnIdNid                       `json:"allowedSnpns,omitempty"`
	AllowedNfTypes                   []NFType                          `json:"allowedNfTypes,omitempty"`
	AllowedNfDomains                 []string                          `json:"allowedNfDomains,omitempty"`
	AllowedNssais                    []ExtSnssai                       `json:"allowedNssais,omitempty"`
	// A map (list of key-value pairs) where NF Type serves as key
	AllowedOperationsPerNfType *map[string][]string `json:"allowedOperationsPerNfType,omitempty"`
	// A map (list of key-value pairs) where NF Instance Id serves as key
	AllowedOperationsPerNfInstance          *map[string][]string `json:"allowedOperationsPerNfInstance,omitempty"`
	AllowedOperationsPerNfInstanceOverrides *bool                `json:"allowedOperationsPerNfInstanceOverrides,omitempty"`
	Priority                                *int32               `json:"priority,omitempty"`
	Capacity                                *int32               `json:"capacity,omitempty"`
	Load                                    *int32               `json:"load,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	LoadTimeStamp *time.Time `json:"loadTimeStamp,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	RecoveryTime *time.Time `json:"recoveryTime,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures  *string      `json:"supportedFeatures,omitempty"`
	NfServiceSetIdList []string     `json:"nfServiceSetIdList,omitempty"`
	SNssais            []ExtSnssai  `json:"sNssais,omitempty"`
	PerPlmnSnssaiList  []PlmnSnssai `json:"perPlmnSnssaiList,omitempty"`
	// Vendor ID of the NF Service instance (Private Enterprise Number assigned by IANA)
	VendorId *string `json:"vendorId,omitempty"`
	// A map (list of key-value pairs) where IANA-assigned SMI Network Management Private Enterprise Codes serves as key
	SupportedVendorSpecificFeatures *map[string][]VendorSpecificFeature `json:"supportedVendorSpecificFeatures,omitempty"`
	Oauth2Required                  *bool                               `json:"oauth2Required,omitempty"`
	PerPlmnOauth2ReqList            *PlmnOauth2                         `json:"perPlmnOauth2ReqList,omitempty"`
}

NFService Information of a given NF Service Instance; it is part of the NFProfile of an NF Instance

func NewNFService ¶

func NewNFService(serviceInstanceId string, serviceName ServiceName, versions []NFServiceVersion, scheme UriScheme, nfServiceStatus NFServiceStatus) *NFService

NewNFService instantiates a new NFService 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 NewNFServiceWithDefaults ¶

func NewNFServiceWithDefaults() *NFService

NewNFServiceWithDefaults instantiates a new NFService 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 (*NFService) GetAllowedNfDomains ¶

func (o *NFService) GetAllowedNfDomains() []string

GetAllowedNfDomains returns the AllowedNfDomains field value if set, zero value otherwise.

func (*NFService) GetAllowedNfDomainsOk ¶

func (o *NFService) GetAllowedNfDomainsOk() ([]string, bool)

GetAllowedNfDomainsOk returns a tuple with the AllowedNfDomains field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetAllowedNfTypes ¶

func (o *NFService) GetAllowedNfTypes() []NFType

GetAllowedNfTypes returns the AllowedNfTypes field value if set, zero value otherwise.

func (*NFService) GetAllowedNfTypesOk ¶

func (o *NFService) GetAllowedNfTypesOk() ([]NFType, bool)

GetAllowedNfTypesOk returns a tuple with the AllowedNfTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetAllowedNssais ¶

func (o *NFService) GetAllowedNssais() []ExtSnssai

GetAllowedNssais returns the AllowedNssais field value if set, zero value otherwise.

func (*NFService) GetAllowedNssaisOk ¶

func (o *NFService) GetAllowedNssaisOk() ([]ExtSnssai, bool)

GetAllowedNssaisOk returns a tuple with the AllowedNssais field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetAllowedOperationsPerNfInstance ¶

func (o *NFService) GetAllowedOperationsPerNfInstance() map[string][]string

GetAllowedOperationsPerNfInstance returns the AllowedOperationsPerNfInstance field value if set, zero value otherwise.

func (*NFService) GetAllowedOperationsPerNfInstanceOk ¶

func (o *NFService) GetAllowedOperationsPerNfInstanceOk() (*map[string][]string, bool)

GetAllowedOperationsPerNfInstanceOk returns a tuple with the AllowedOperationsPerNfInstance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetAllowedOperationsPerNfInstanceOverrides ¶

func (o *NFService) GetAllowedOperationsPerNfInstanceOverrides() bool

GetAllowedOperationsPerNfInstanceOverrides returns the AllowedOperationsPerNfInstanceOverrides field value if set, zero value otherwise.

func (*NFService) GetAllowedOperationsPerNfInstanceOverridesOk ¶

func (o *NFService) GetAllowedOperationsPerNfInstanceOverridesOk() (*bool, bool)

GetAllowedOperationsPerNfInstanceOverridesOk returns a tuple with the AllowedOperationsPerNfInstanceOverrides field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetAllowedOperationsPerNfType ¶

func (o *NFService) GetAllowedOperationsPerNfType() map[string][]string

GetAllowedOperationsPerNfType returns the AllowedOperationsPerNfType field value if set, zero value otherwise.

func (*NFService) GetAllowedOperationsPerNfTypeOk ¶

func (o *NFService) GetAllowedOperationsPerNfTypeOk() (*map[string][]string, bool)

GetAllowedOperationsPerNfTypeOk returns a tuple with the AllowedOperationsPerNfType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetAllowedPlmns ¶

func (o *NFService) GetAllowedPlmns() []PlmnId

GetAllowedPlmns returns the AllowedPlmns field value if set, zero value otherwise.

func (*NFService) GetAllowedPlmnsOk ¶

func (o *NFService) GetAllowedPlmnsOk() ([]PlmnId, bool)

GetAllowedPlmnsOk returns a tuple with the AllowedPlmns field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetAllowedSnpns ¶

func (o *NFService) GetAllowedSnpns() []PlmnIdNid

GetAllowedSnpns returns the AllowedSnpns field value if set, zero value otherwise.

func (*NFService) GetAllowedSnpnsOk ¶

func (o *NFService) GetAllowedSnpnsOk() ([]PlmnIdNid, bool)

GetAllowedSnpnsOk returns a tuple with the AllowedSnpns field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetApiPrefix ¶

func (o *NFService) GetApiPrefix() string

GetApiPrefix returns the ApiPrefix field value if set, zero value otherwise.

func (*NFService) GetApiPrefixOk ¶

func (o *NFService) GetApiPrefixOk() (*string, bool)

GetApiPrefixOk returns a tuple with the ApiPrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetCapacity ¶

func (o *NFService) GetCapacity() int32

GetCapacity returns the Capacity field value if set, zero value otherwise.

func (*NFService) GetCapacityOk ¶

func (o *NFService) GetCapacityOk() (*int32, bool)

GetCapacityOk returns a tuple with the Capacity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetDefaultNotificationSubscriptions ¶

func (o *NFService) GetDefaultNotificationSubscriptions() []DefaultNotificationSubscription

GetDefaultNotificationSubscriptions returns the DefaultNotificationSubscriptions field value if set, zero value otherwise.

func (*NFService) GetDefaultNotificationSubscriptionsOk ¶

func (o *NFService) GetDefaultNotificationSubscriptionsOk() ([]DefaultNotificationSubscription, bool)

GetDefaultNotificationSubscriptionsOk returns a tuple with the DefaultNotificationSubscriptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetFqdn ¶

func (o *NFService) GetFqdn() string

GetFqdn returns the Fqdn field value if set, zero value otherwise.

func (*NFService) GetFqdnOk ¶

func (o *NFService) GetFqdnOk() (*string, bool)

GetFqdnOk returns a tuple with the Fqdn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetInterPlmnFqdn ¶

func (o *NFService) GetInterPlmnFqdn() string

GetInterPlmnFqdn returns the InterPlmnFqdn field value if set, zero value otherwise.

func (*NFService) GetInterPlmnFqdnOk ¶

func (o *NFService) GetInterPlmnFqdnOk() (*string, bool)

GetInterPlmnFqdnOk returns a tuple with the InterPlmnFqdn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetIpEndPoints ¶

func (o *NFService) GetIpEndPoints() []IpEndPoint

GetIpEndPoints returns the IpEndPoints field value if set, zero value otherwise.

func (*NFService) GetIpEndPointsOk ¶

func (o *NFService) GetIpEndPointsOk() ([]IpEndPoint, bool)

GetIpEndPointsOk returns a tuple with the IpEndPoints field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetLoad ¶

func (o *NFService) GetLoad() int32

GetLoad returns the Load field value if set, zero value otherwise.

func (*NFService) GetLoadOk ¶

func (o *NFService) GetLoadOk() (*int32, bool)

GetLoadOk returns a tuple with the Load field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetLoadTimeStamp ¶

func (o *NFService) GetLoadTimeStamp() time.Time

GetLoadTimeStamp returns the LoadTimeStamp field value if set, zero value otherwise.

func (*NFService) GetLoadTimeStampOk ¶

func (o *NFService) GetLoadTimeStampOk() (*time.Time, bool)

GetLoadTimeStampOk returns a tuple with the LoadTimeStamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetNfServiceSetIdList ¶

func (o *NFService) GetNfServiceSetIdList() []string

GetNfServiceSetIdList returns the NfServiceSetIdList field value if set, zero value otherwise.

func (*NFService) GetNfServiceSetIdListOk ¶

func (o *NFService) GetNfServiceSetIdListOk() ([]string, bool)

GetNfServiceSetIdListOk returns a tuple with the NfServiceSetIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetNfServiceStatus ¶

func (o *NFService) GetNfServiceStatus() NFServiceStatus

GetNfServiceStatus returns the NfServiceStatus field value

func (*NFService) GetNfServiceStatusOk ¶

func (o *NFService) GetNfServiceStatusOk() (*NFServiceStatus, bool)

GetNfServiceStatusOk returns a tuple with the NfServiceStatus field value and a boolean to check if the value has been set.

func (*NFService) GetOauth2Required ¶

func (o *NFService) GetOauth2Required() bool

GetOauth2Required returns the Oauth2Required field value if set, zero value otherwise.

func (*NFService) GetOauth2RequiredOk ¶

func (o *NFService) GetOauth2RequiredOk() (*bool, bool)

GetOauth2RequiredOk returns a tuple with the Oauth2Required field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetPerPlmnOauth2ReqList ¶

func (o *NFService) GetPerPlmnOauth2ReqList() PlmnOauth2

GetPerPlmnOauth2ReqList returns the PerPlmnOauth2ReqList field value if set, zero value otherwise.

func (*NFService) GetPerPlmnOauth2ReqListOk ¶

func (o *NFService) GetPerPlmnOauth2ReqListOk() (*PlmnOauth2, bool)

GetPerPlmnOauth2ReqListOk returns a tuple with the PerPlmnOauth2ReqList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetPerPlmnSnssaiList ¶

func (o *NFService) GetPerPlmnSnssaiList() []PlmnSnssai

GetPerPlmnSnssaiList returns the PerPlmnSnssaiList field value if set, zero value otherwise.

func (*NFService) GetPerPlmnSnssaiListOk ¶

func (o *NFService) GetPerPlmnSnssaiListOk() ([]PlmnSnssai, bool)

GetPerPlmnSnssaiListOk returns a tuple with the PerPlmnSnssaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetPriority ¶

func (o *NFService) GetPriority() int32

GetPriority returns the Priority field value if set, zero value otherwise.

func (*NFService) GetPriorityOk ¶

func (o *NFService) GetPriorityOk() (*int32, bool)

GetPriorityOk returns a tuple with the Priority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetRecoveryTime ¶

func (o *NFService) GetRecoveryTime() time.Time

GetRecoveryTime returns the RecoveryTime field value if set, zero value otherwise.

func (*NFService) GetRecoveryTimeOk ¶

func (o *NFService) GetRecoveryTimeOk() (*time.Time, bool)

GetRecoveryTimeOk returns a tuple with the RecoveryTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetSNssais ¶

func (o *NFService) GetSNssais() []ExtSnssai

GetSNssais returns the SNssais field value if set, zero value otherwise.

func (*NFService) GetSNssaisOk ¶

func (o *NFService) GetSNssaisOk() ([]ExtSnssai, bool)

GetSNssaisOk returns a tuple with the SNssais field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetScheme ¶

func (o *NFService) GetScheme() UriScheme

GetScheme returns the Scheme field value

func (*NFService) GetSchemeOk ¶

func (o *NFService) GetSchemeOk() (*UriScheme, bool)

GetSchemeOk returns a tuple with the Scheme field value and a boolean to check if the value has been set.

func (*NFService) GetServiceInstanceId ¶

func (o *NFService) GetServiceInstanceId() string

GetServiceInstanceId returns the ServiceInstanceId field value

func (*NFService) GetServiceInstanceIdOk ¶

func (o *NFService) GetServiceInstanceIdOk() (*string, bool)

GetServiceInstanceIdOk returns a tuple with the ServiceInstanceId field value and a boolean to check if the value has been set.

func (*NFService) GetServiceName ¶

func (o *NFService) GetServiceName() ServiceName

GetServiceName returns the ServiceName field value

func (*NFService) GetServiceNameOk ¶

func (o *NFService) GetServiceNameOk() (*ServiceName, bool)

GetServiceNameOk returns a tuple with the ServiceName field value and a boolean to check if the value has been set.

func (*NFService) GetSupportedFeatures ¶

func (o *NFService) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*NFService) GetSupportedFeaturesOk ¶

func (o *NFService) GetSupportedFeaturesOk() (*string, bool)

GetSupportedFeaturesOk returns a tuple with the SupportedFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetSupportedVendorSpecificFeatures ¶

func (o *NFService) GetSupportedVendorSpecificFeatures() map[string][]VendorSpecificFeature

GetSupportedVendorSpecificFeatures returns the SupportedVendorSpecificFeatures field value if set, zero value otherwise.

func (*NFService) GetSupportedVendorSpecificFeaturesOk ¶

func (o *NFService) GetSupportedVendorSpecificFeaturesOk() (*map[string][]VendorSpecificFeature, bool)

GetSupportedVendorSpecificFeaturesOk returns a tuple with the SupportedVendorSpecificFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetVendorId ¶

func (o *NFService) GetVendorId() string

GetVendorId returns the VendorId field value if set, zero value otherwise.

func (*NFService) GetVendorIdOk ¶

func (o *NFService) GetVendorIdOk() (*string, bool)

GetVendorIdOk returns a tuple with the VendorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFService) GetVersions ¶

func (o *NFService) GetVersions() []NFServiceVersion

GetVersions returns the Versions field value

func (*NFService) GetVersionsOk ¶

func (o *NFService) GetVersionsOk() ([]NFServiceVersion, bool)

GetVersionsOk returns a tuple with the Versions field value and a boolean to check if the value has been set.

func (*NFService) HasAllowedNfDomains ¶

func (o *NFService) HasAllowedNfDomains() bool

HasAllowedNfDomains returns a boolean if a field has been set.

func (*NFService) HasAllowedNfTypes ¶

func (o *NFService) HasAllowedNfTypes() bool

HasAllowedNfTypes returns a boolean if a field has been set.

func (*NFService) HasAllowedNssais ¶

func (o *NFService) HasAllowedNssais() bool

HasAllowedNssais returns a boolean if a field has been set.

func (*NFService) HasAllowedOperationsPerNfInstance ¶

func (o *NFService) HasAllowedOperationsPerNfInstance() bool

HasAllowedOperationsPerNfInstance returns a boolean if a field has been set.

func (*NFService) HasAllowedOperationsPerNfInstanceOverrides ¶

func (o *NFService) HasAllowedOperationsPerNfInstanceOverrides() bool

HasAllowedOperationsPerNfInstanceOverrides returns a boolean if a field has been set.

func (*NFService) HasAllowedOperationsPerNfType ¶

func (o *NFService) HasAllowedOperationsPerNfType() bool

HasAllowedOperationsPerNfType returns a boolean if a field has been set.

func (*NFService) HasAllowedPlmns ¶

func (o *NFService) HasAllowedPlmns() bool

HasAllowedPlmns returns a boolean if a field has been set.

func (*NFService) HasAllowedSnpns ¶

func (o *NFService) HasAllowedSnpns() bool

HasAllowedSnpns returns a boolean if a field has been set.

func (*NFService) HasApiPrefix ¶

func (o *NFService) HasApiPrefix() bool

HasApiPrefix returns a boolean if a field has been set.

func (*NFService) HasCapacity ¶

func (o *NFService) HasCapacity() bool

HasCapacity returns a boolean if a field has been set.

func (*NFService) HasDefaultNotificationSubscriptions ¶

func (o *NFService) HasDefaultNotificationSubscriptions() bool

HasDefaultNotificationSubscriptions returns a boolean if a field has been set.

func (*NFService) HasFqdn ¶

func (o *NFService) HasFqdn() bool

HasFqdn returns a boolean if a field has been set.

func (*NFService) HasInterPlmnFqdn ¶

func (o *NFService) HasInterPlmnFqdn() bool

HasInterPlmnFqdn returns a boolean if a field has been set.

func (*NFService) HasIpEndPoints ¶

func (o *NFService) HasIpEndPoints() bool

HasIpEndPoints returns a boolean if a field has been set.

func (*NFService) HasLoad ¶

func (o *NFService) HasLoad() bool

HasLoad returns a boolean if a field has been set.

func (*NFService) HasLoadTimeStamp ¶

func (o *NFService) HasLoadTimeStamp() bool

HasLoadTimeStamp returns a boolean if a field has been set.

func (*NFService) HasNfServiceSetIdList ¶

func (o *NFService) HasNfServiceSetIdList() bool

HasNfServiceSetIdList returns a boolean if a field has been set.

func (*NFService) HasOauth2Required ¶

func (o *NFService) HasOauth2Required() bool

HasOauth2Required returns a boolean if a field has been set.

func (*NFService) HasPerPlmnOauth2ReqList ¶

func (o *NFService) HasPerPlmnOauth2ReqList() bool

HasPerPlmnOauth2ReqList returns a boolean if a field has been set.

func (*NFService) HasPerPlmnSnssaiList ¶

func (o *NFService) HasPerPlmnSnssaiList() bool

HasPerPlmnSnssaiList returns a boolean if a field has been set.

func (*NFService) HasPriority ¶

func (o *NFService) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*NFService) HasRecoveryTime ¶

func (o *NFService) HasRecoveryTime() bool

HasRecoveryTime returns a boolean if a field has been set.

func (*NFService) HasSNssais ¶

func (o *NFService) HasSNssais() bool

HasSNssais returns a boolean if a field has been set.

func (*NFService) HasSupportedFeatures ¶

func (o *NFService) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*NFService) HasSupportedVendorSpecificFeatures ¶

func (o *NFService) HasSupportedVendorSpecificFeatures() bool

HasSupportedVendorSpecificFeatures returns a boolean if a field has been set.

func (*NFService) HasVendorId ¶

func (o *NFService) HasVendorId() bool

HasVendorId returns a boolean if a field has been set.

func (NFService) MarshalJSON ¶

func (o NFService) MarshalJSON() ([]byte, error)

func (*NFService) SetAllowedNfDomains ¶

func (o *NFService) SetAllowedNfDomains(v []string)

SetAllowedNfDomains gets a reference to the given []string and assigns it to the AllowedNfDomains field.

func (*NFService) SetAllowedNfTypes ¶

func (o *NFService) SetAllowedNfTypes(v []NFType)

SetAllowedNfTypes gets a reference to the given []NFType and assigns it to the AllowedNfTypes field.

func (*NFService) SetAllowedNssais ¶

func (o *NFService) SetAllowedNssais(v []ExtSnssai)

SetAllowedNssais gets a reference to the given []ExtSnssai and assigns it to the AllowedNssais field.

func (*NFService) SetAllowedOperationsPerNfInstance ¶

func (o *NFService) SetAllowedOperationsPerNfInstance(v map[string][]string)

SetAllowedOperationsPerNfInstance gets a reference to the given map[string][]string and assigns it to the AllowedOperationsPerNfInstance field.

func (*NFService) SetAllowedOperationsPerNfInstanceOverrides ¶

func (o *NFService) SetAllowedOperationsPerNfInstanceOverrides(v bool)

SetAllowedOperationsPerNfInstanceOverrides gets a reference to the given bool and assigns it to the AllowedOperationsPerNfInstanceOverrides field.

func (*NFService) SetAllowedOperationsPerNfType ¶

func (o *NFService) SetAllowedOperationsPerNfType(v map[string][]string)

SetAllowedOperationsPerNfType gets a reference to the given map[string][]string and assigns it to the AllowedOperationsPerNfType field.

func (*NFService) SetAllowedPlmns ¶

func (o *NFService) SetAllowedPlmns(v []PlmnId)

SetAllowedPlmns gets a reference to the given []PlmnId and assigns it to the AllowedPlmns field.

func (*NFService) SetAllowedSnpns ¶

func (o *NFService) SetAllowedSnpns(v []PlmnIdNid)

SetAllowedSnpns gets a reference to the given []PlmnIdNid and assigns it to the AllowedSnpns field.

func (*NFService) SetApiPrefix ¶

func (o *NFService) SetApiPrefix(v string)

SetApiPrefix gets a reference to the given string and assigns it to the ApiPrefix field.

func (*NFService) SetCapacity ¶

func (o *NFService) SetCapacity(v int32)

SetCapacity gets a reference to the given int32 and assigns it to the Capacity field.

func (*NFService) SetDefaultNotificationSubscriptions ¶

func (o *NFService) SetDefaultNotificationSubscriptions(v []DefaultNotificationSubscription)

SetDefaultNotificationSubscriptions gets a reference to the given []DefaultNotificationSubscription and assigns it to the DefaultNotificationSubscriptions field.

func (*NFService) SetFqdn ¶

func (o *NFService) SetFqdn(v string)

SetFqdn gets a reference to the given string and assigns it to the Fqdn field.

func (*NFService) SetInterPlmnFqdn ¶

func (o *NFService) SetInterPlmnFqdn(v string)

SetInterPlmnFqdn gets a reference to the given string and assigns it to the InterPlmnFqdn field.

func (*NFService) SetIpEndPoints ¶

func (o *NFService) SetIpEndPoints(v []IpEndPoint)

SetIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the IpEndPoints field.

func (*NFService) SetLoad ¶

func (o *NFService) SetLoad(v int32)

SetLoad gets a reference to the given int32 and assigns it to the Load field.

func (*NFService) SetLoadTimeStamp ¶

func (o *NFService) SetLoadTimeStamp(v time.Time)

SetLoadTimeStamp gets a reference to the given time.Time and assigns it to the LoadTimeStamp field.

func (*NFService) SetNfServiceSetIdList ¶

func (o *NFService) SetNfServiceSetIdList(v []string)

SetNfServiceSetIdList gets a reference to the given []string and assigns it to the NfServiceSetIdList field.

func (*NFService) SetNfServiceStatus ¶

func (o *NFService) SetNfServiceStatus(v NFServiceStatus)

SetNfServiceStatus sets field value

func (*NFService) SetOauth2Required ¶

func (o *NFService) SetOauth2Required(v bool)

SetOauth2Required gets a reference to the given bool and assigns it to the Oauth2Required field.

func (*NFService) SetPerPlmnOauth2ReqList ¶

func (o *NFService) SetPerPlmnOauth2ReqList(v PlmnOauth2)

SetPerPlmnOauth2ReqList gets a reference to the given PlmnOauth2 and assigns it to the PerPlmnOauth2ReqList field.

func (*NFService) SetPerPlmnSnssaiList ¶

func (o *NFService) SetPerPlmnSnssaiList(v []PlmnSnssai)

SetPerPlmnSnssaiList gets a reference to the given []PlmnSnssai and assigns it to the PerPlmnSnssaiList field.

func (*NFService) SetPriority ¶

func (o *NFService) SetPriority(v int32)

SetPriority gets a reference to the given int32 and assigns it to the Priority field.

func (*NFService) SetRecoveryTime ¶

func (o *NFService) SetRecoveryTime(v time.Time)

SetRecoveryTime gets a reference to the given time.Time and assigns it to the RecoveryTime field.

func (*NFService) SetSNssais ¶

func (o *NFService) SetSNssais(v []ExtSnssai)

SetSNssais gets a reference to the given []ExtSnssai and assigns it to the SNssais field.

func (*NFService) SetScheme ¶

func (o *NFService) SetScheme(v UriScheme)

SetScheme sets field value

func (*NFService) SetServiceInstanceId ¶

func (o *NFService) SetServiceInstanceId(v string)

SetServiceInstanceId sets field value

func (*NFService) SetServiceName ¶

func (o *NFService) SetServiceName(v ServiceName)

SetServiceName sets field value

func (*NFService) SetSupportedFeatures ¶

func (o *NFService) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*NFService) SetSupportedVendorSpecificFeatures ¶

func (o *NFService) SetSupportedVendorSpecificFeatures(v map[string][]VendorSpecificFeature)

SetSupportedVendorSpecificFeatures gets a reference to the given map[string][]VendorSpecificFeature and assigns it to the SupportedVendorSpecificFeatures field.

func (*NFService) SetVendorId ¶

func (o *NFService) SetVendorId(v string)

SetVendorId gets a reference to the given string and assigns it to the VendorId field.

func (*NFService) SetVersions ¶

func (o *NFService) SetVersions(v []NFServiceVersion)

SetVersions sets field value

func (NFService) ToMap ¶

func (o NFService) ToMap() (map[string]interface{}, error)

type NFServiceStatus ¶

type NFServiceStatus struct {
	String *string
}

NFServiceStatus Status of a given NF Service Instance of an NF Instance stored in NRF

func (*NFServiceStatus) MarshalJSON ¶

func (src *NFServiceStatus) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NFServiceStatus) UnmarshalJSON ¶

func (dst *NFServiceStatus) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NFServiceVersion ¶

type NFServiceVersion struct {
	ApiVersionInUri string `json:"apiVersionInUri"`
	ApiFullVersion  string `json:"apiFullVersion"`
	// string with format 'date-time' as defined in OpenAPI.
	Expiry *time.Time `json:"expiry,omitempty"`
}

NFServiceVersion Contains the version details of an NF service

func NewNFServiceVersion ¶

func NewNFServiceVersion(apiVersionInUri string, apiFullVersion string) *NFServiceVersion

NewNFServiceVersion instantiates a new NFServiceVersion 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 NewNFServiceVersionWithDefaults ¶

func NewNFServiceVersionWithDefaults() *NFServiceVersion

NewNFServiceVersionWithDefaults instantiates a new NFServiceVersion 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 (*NFServiceVersion) GetApiFullVersion ¶

func (o *NFServiceVersion) GetApiFullVersion() string

GetApiFullVersion returns the ApiFullVersion field value

func (*NFServiceVersion) GetApiFullVersionOk ¶

func (o *NFServiceVersion) GetApiFullVersionOk() (*string, bool)

GetApiFullVersionOk returns a tuple with the ApiFullVersion field value and a boolean to check if the value has been set.

func (*NFServiceVersion) GetApiVersionInUri ¶

func (o *NFServiceVersion) GetApiVersionInUri() string

GetApiVersionInUri returns the ApiVersionInUri field value

func (*NFServiceVersion) GetApiVersionInUriOk ¶

func (o *NFServiceVersion) GetApiVersionInUriOk() (*string, bool)

GetApiVersionInUriOk returns a tuple with the ApiVersionInUri field value and a boolean to check if the value has been set.

func (*NFServiceVersion) GetExpiry ¶

func (o *NFServiceVersion) GetExpiry() time.Time

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*NFServiceVersion) GetExpiryOk ¶

func (o *NFServiceVersion) GetExpiryOk() (*time.Time, bool)

GetExpiryOk returns a tuple with the Expiry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NFServiceVersion) HasExpiry ¶

func (o *NFServiceVersion) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (NFServiceVersion) MarshalJSON ¶

func (o NFServiceVersion) MarshalJSON() ([]byte, error)

func (*NFServiceVersion) SetApiFullVersion ¶

func (o *NFServiceVersion) SetApiFullVersion(v string)

SetApiFullVersion sets field value

func (*NFServiceVersion) SetApiVersionInUri ¶

func (o *NFServiceVersion) SetApiVersionInUri(v string)

SetApiVersionInUri sets field value

func (*NFServiceVersion) SetExpiry ¶

func (o *NFServiceVersion) SetExpiry(v time.Time)

SetExpiry gets a reference to the given time.Time and assigns it to the Expiry field.

func (NFServiceVersion) ToMap ¶

func (o NFServiceVersion) ToMap() (map[string]interface{}, error)

type NFType ¶

type NFType struct {
	String *string
}

NFType NF types known to NRF

func (*NFType) MarshalJSON ¶

func (src *NFType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NFType) UnmarshalJSON ¶

func (dst *NFType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NadrfDataRetrievalNotification ¶

type NadrfDataRetrievalNotification struct {
	Interface *interface{}
}

NadrfDataRetrievalNotification - Represents a notification that corresponds with an Individual ADRF Data Retrieval Subscription.

func InterfaceAsNadrfDataRetrievalNotification ¶

func InterfaceAsNadrfDataRetrievalNotification(v *interface{}) NadrfDataRetrievalNotification

interface{}AsNadrfDataRetrievalNotification is a convenience function that returns interface{} wrapped in NadrfDataRetrievalNotification

func (*NadrfDataRetrievalNotification) GetActualInstance ¶

func (obj *NadrfDataRetrievalNotification) GetActualInstance() interface{}

Get the actual instance

func (NadrfDataRetrievalNotification) MarshalJSON ¶

func (src NadrfDataRetrievalNotification) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NadrfDataRetrievalNotification) UnmarshalJSON ¶

func (dst *NadrfDataRetrievalNotification) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type NadrfDataRetrievalSubscription ¶

type NadrfDataRetrievalSubscription struct {
	Interface *interface{}
}

NadrfDataRetrievalSubscription - Represents an Individual ADRF Data Retrieval Subscription.

func InterfaceAsNadrfDataRetrievalSubscription ¶

func InterfaceAsNadrfDataRetrievalSubscription(v *interface{}) NadrfDataRetrievalSubscription

interface{}AsNadrfDataRetrievalSubscription is a convenience function that returns interface{} wrapped in NadrfDataRetrievalSubscription

func (*NadrfDataRetrievalSubscription) GetActualInstance ¶

func (obj *NadrfDataRetrievalSubscription) GetActualInstance() interface{}

Get the actual instance

func (NadrfDataRetrievalSubscription) MarshalJSON ¶

func (src NadrfDataRetrievalSubscription) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NadrfDataRetrievalSubscription) UnmarshalJSON ¶

func (dst *NadrfDataRetrievalSubscription) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type NadrfDataStoreRecord ¶

type NadrfDataStoreRecord struct {
	Interface *interface{}
}

NadrfDataStoreRecord - Represents an Individual ADRF Data Store Record.

func InterfaceAsNadrfDataStoreRecord ¶

func InterfaceAsNadrfDataStoreRecord(v *interface{}) NadrfDataStoreRecord

interface{}AsNadrfDataStoreRecord is a convenience function that returns interface{} wrapped in NadrfDataStoreRecord

func (*NadrfDataStoreRecord) GetActualInstance ¶

func (obj *NadrfDataStoreRecord) GetActualInstance() interface{}

Get the actual instance

func (NadrfDataStoreRecord) MarshalJSON ¶

func (src NadrfDataStoreRecord) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NadrfDataStoreRecord) UnmarshalJSON ¶

func (dst *NadrfDataStoreRecord) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type NadrfDataStoreSubscription ¶

type NadrfDataStoreSubscription struct {
	AnaSub  *NnwdafEventsSubscription `json:"anaSub,omitempty"`
	DataSub *DataSubscription         `json:"dataSub,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	TargetNfId *string `json:"targetNfId,omitempty"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	TargetNfSetId  *string                `json:"targetNfSetId,omitempty"`
	FormatInstruct *FormattingInstruction `json:"formatInstruct,omitempty"`
	ProcInstruct   *ProcessingInstruction `json:"procInstruct,omitempty"`
	// Processing instructions to be used for sending event notifications.
	MultiProcInstructs []ProcessingInstruction `json:"multiProcInstructs,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SuppFeat *string `json:"suppFeat,omitempty"`
}

NadrfDataStoreSubscription Contains information to be used by the ADRF to create a Data or Analytics subscription.

func NewNadrfDataStoreSubscription ¶

func NewNadrfDataStoreSubscription() *NadrfDataStoreSubscription

NewNadrfDataStoreSubscription instantiates a new NadrfDataStoreSubscription 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 NewNadrfDataStoreSubscriptionWithDefaults ¶

func NewNadrfDataStoreSubscriptionWithDefaults() *NadrfDataStoreSubscription

NewNadrfDataStoreSubscriptionWithDefaults instantiates a new NadrfDataStoreSubscription 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 (*NadrfDataStoreSubscription) GetAnaSub ¶

GetAnaSub returns the AnaSub field value if set, zero value otherwise.

func (*NadrfDataStoreSubscription) GetAnaSubOk ¶

GetAnaSubOk returns a tuple with the AnaSub field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NadrfDataStoreSubscription) GetDataSub ¶

GetDataSub returns the DataSub field value if set, zero value otherwise.

func (*NadrfDataStoreSubscription) GetDataSubOk ¶

func (o *NadrfDataStoreSubscription) GetDataSubOk() (*DataSubscription, bool)

GetDataSubOk returns a tuple with the DataSub field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NadrfDataStoreSubscription) GetFormatInstruct ¶

func (o *NadrfDataStoreSubscription) GetFormatInstruct() FormattingInstruction

GetFormatInstruct returns the FormatInstruct field value if set, zero value otherwise.

func (*NadrfDataStoreSubscription) GetFormatInstructOk ¶

func (o *NadrfDataStoreSubscription) GetFormatInstructOk() (*FormattingInstruction, bool)

GetFormatInstructOk returns a tuple with the FormatInstruct field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NadrfDataStoreSubscription) GetMultiProcInstructs ¶

func (o *NadrfDataStoreSubscription) GetMultiProcInstructs() []ProcessingInstruction

GetMultiProcInstructs returns the MultiProcInstructs field value if set, zero value otherwise.

func (*NadrfDataStoreSubscription) GetMultiProcInstructsOk ¶

func (o *NadrfDataStoreSubscription) GetMultiProcInstructsOk() ([]ProcessingInstruction, bool)

GetMultiProcInstructsOk returns a tuple with the MultiProcInstructs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NadrfDataStoreSubscription) GetProcInstruct ¶

GetProcInstruct returns the ProcInstruct field value if set, zero value otherwise.

func (*NadrfDataStoreSubscription) GetProcInstructOk ¶

func (o *NadrfDataStoreSubscription) GetProcInstructOk() (*ProcessingInstruction, bool)

GetProcInstructOk returns a tuple with the ProcInstruct field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NadrfDataStoreSubscription) GetSuppFeat ¶

func (o *NadrfDataStoreSubscription) GetSuppFeat() string

GetSuppFeat returns the SuppFeat field value if set, zero value otherwise.

func (*NadrfDataStoreSubscription) GetSuppFeatOk ¶

func (o *NadrfDataStoreSubscription) GetSuppFeatOk() (*string, bool)

GetSuppFeatOk returns a tuple with the SuppFeat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NadrfDataStoreSubscription) GetTargetNfId ¶

func (o *NadrfDataStoreSubscription) GetTargetNfId() string

GetTargetNfId returns the TargetNfId field value if set, zero value otherwise.

func (*NadrfDataStoreSubscription) GetTargetNfIdOk ¶

func (o *NadrfDataStoreSubscription) GetTargetNfIdOk() (*string, bool)

GetTargetNfIdOk returns a tuple with the TargetNfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NadrfDataStoreSubscription) GetTargetNfSetId ¶

func (o *NadrfDataStoreSubscription) GetTargetNfSetId() string

GetTargetNfSetId returns the TargetNfSetId field value if set, zero value otherwise.

func (*NadrfDataStoreSubscription) GetTargetNfSetIdOk ¶

func (o *NadrfDataStoreSubscription) GetTargetNfSetIdOk() (*string, bool)

GetTargetNfSetIdOk returns a tuple with the TargetNfSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NadrfDataStoreSubscription) HasAnaSub ¶

func (o *NadrfDataStoreSubscription) HasAnaSub() bool

HasAnaSub returns a boolean if a field has been set.

func (*NadrfDataStoreSubscription) HasDataSub ¶

func (o *NadrfDataStoreSubscription) HasDataSub() bool

HasDataSub returns a boolean if a field has been set.

func (*NadrfDataStoreSubscription) HasFormatInstruct ¶

func (o *NadrfDataStoreSubscription) HasFormatInstruct() bool

HasFormatInstruct returns a boolean if a field has been set.

func (*NadrfDataStoreSubscription) HasMultiProcInstructs ¶

func (o *NadrfDataStoreSubscription) HasMultiProcInstructs() bool

HasMultiProcInstructs returns a boolean if a field has been set.

func (*NadrfDataStoreSubscription) HasProcInstruct ¶

func (o *NadrfDataStoreSubscription) HasProcInstruct() bool

HasProcInstruct returns a boolean if a field has been set.

func (*NadrfDataStoreSubscription) HasSuppFeat ¶

func (o *NadrfDataStoreSubscription) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (*NadrfDataStoreSubscription) HasTargetNfId ¶

func (o *NadrfDataStoreSubscription) HasTargetNfId() bool

HasTargetNfId returns a boolean if a field has been set.

func (*NadrfDataStoreSubscription) HasTargetNfSetId ¶

func (o *NadrfDataStoreSubscription) HasTargetNfSetId() bool

HasTargetNfSetId returns a boolean if a field has been set.

func (NadrfDataStoreSubscription) MarshalJSON ¶

func (o NadrfDataStoreSubscription) MarshalJSON() ([]byte, error)

func (*NadrfDataStoreSubscription) SetAnaSub ¶

SetAnaSub gets a reference to the given NnwdafEventsSubscription and assigns it to the AnaSub field.

func (*NadrfDataStoreSubscription) SetDataSub ¶

SetDataSub gets a reference to the given DataSubscription and assigns it to the DataSub field.

func (*NadrfDataStoreSubscription) SetFormatInstruct ¶

func (o *NadrfDataStoreSubscription) SetFormatInstruct(v FormattingInstruction)

SetFormatInstruct gets a reference to the given FormattingInstruction and assigns it to the FormatInstruct field.

func (*NadrfDataStoreSubscription) SetMultiProcInstructs ¶

func (o *NadrfDataStoreSubscription) SetMultiProcInstructs(v []ProcessingInstruction)

SetMultiProcInstructs gets a reference to the given []ProcessingInstruction and assigns it to the MultiProcInstructs field.

func (*NadrfDataStoreSubscription) SetProcInstruct ¶

func (o *NadrfDataStoreSubscription) SetProcInstruct(v ProcessingInstruction)

SetProcInstruct gets a reference to the given ProcessingInstruction and assigns it to the ProcInstruct field.

func (*NadrfDataStoreSubscription) SetSuppFeat ¶

func (o *NadrfDataStoreSubscription) SetSuppFeat(v string)

SetSuppFeat gets a reference to the given string and assigns it to the SuppFeat field.

func (*NadrfDataStoreSubscription) SetTargetNfId ¶

func (o *NadrfDataStoreSubscription) SetTargetNfId(v string)

SetTargetNfId gets a reference to the given string and assigns it to the TargetNfId field.

func (*NadrfDataStoreSubscription) SetTargetNfSetId ¶

func (o *NadrfDataStoreSubscription) SetTargetNfSetId(v string)

SetTargetNfSetId gets a reference to the given string and assigns it to the TargetNfSetId field.

func (NadrfDataStoreSubscription) ToMap ¶

func (o NadrfDataStoreSubscription) ToMap() (map[string]interface{}, error)

type NadrfDataStoreSubscriptionRef ¶

type NadrfDataStoreSubscriptionRef struct {
	// Transaction reference identifier.
	TransRefId string `json:"transRefId"`
}

NadrfDataStoreSubscriptionRef Contains a reference to a request for a Data or Analytics subscription.

func NewNadrfDataStoreSubscriptionRef ¶

func NewNadrfDataStoreSubscriptionRef(transRefId string) *NadrfDataStoreSubscriptionRef

NewNadrfDataStoreSubscriptionRef instantiates a new NadrfDataStoreSubscriptionRef 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 NewNadrfDataStoreSubscriptionRefWithDefaults ¶

func NewNadrfDataStoreSubscriptionRefWithDefaults() *NadrfDataStoreSubscriptionRef

NewNadrfDataStoreSubscriptionRefWithDefaults instantiates a new NadrfDataStoreSubscriptionRef 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 (*NadrfDataStoreSubscriptionRef) GetTransRefId ¶

func (o *NadrfDataStoreSubscriptionRef) GetTransRefId() string

GetTransRefId returns the TransRefId field value

func (*NadrfDataStoreSubscriptionRef) GetTransRefIdOk ¶

func (o *NadrfDataStoreSubscriptionRef) GetTransRefIdOk() (*string, bool)

GetTransRefIdOk returns a tuple with the TransRefId field value and a boolean to check if the value has been set.

func (NadrfDataStoreSubscriptionRef) MarshalJSON ¶

func (o NadrfDataStoreSubscriptionRef) MarshalJSON() ([]byte, error)

func (*NadrfDataStoreSubscriptionRef) SetTransRefId ¶

func (o *NadrfDataStoreSubscriptionRef) SetTransRefId(v string)

SetTransRefId sets field value

func (NadrfDataStoreSubscriptionRef) ToMap ¶

func (o NadrfDataStoreSubscriptionRef) ToMap() (map[string]interface{}, error)

type NadrfStoredDataSpec ¶

type NadrfStoredDataSpec struct {
	Interface *interface{}
}

NadrfStoredDataSpec - Contains information about Data or Analytics specification.

func InterfaceAsNadrfStoredDataSpec ¶

func InterfaceAsNadrfStoredDataSpec(v *interface{}) NadrfStoredDataSpec

interface{}AsNadrfStoredDataSpec is a convenience function that returns interface{} wrapped in NadrfStoredDataSpec

func (*NadrfStoredDataSpec) GetActualInstance ¶

func (obj *NadrfStoredDataSpec) GetActualInstance() interface{}

Get the actual instance

func (NadrfStoredDataSpec) MarshalJSON ¶

func (src NadrfStoredDataSpec) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NadrfStoredDataSpec) UnmarshalJSON ¶

func (dst *NadrfStoredDataSpec) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type Ncgi ¶

type Ncgi struct {
	PlmnId PlmnId `json:"plmnId"`
	// 36-bit string identifying an NR Cell Id as specified in clause 9.3.1.7 of 3GPP TS 38.413,  in hexadecimal representation. Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant character  representing the 4 most significant bits of the Cell Id shall appear first in the string, and  the character representing the 4 least significant bit of the Cell Id shall appear last in the  string.
	NrCellId string `json:"nrCellId"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

Ncgi Contains the NCGI (NR Cell Global Identity), as described in 3GPP 23.003

func NewNcgi ¶

func NewNcgi(plmnId PlmnId, nrCellId string) *Ncgi

NewNcgi instantiates a new Ncgi 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 NewNcgiWithDefaults ¶

func NewNcgiWithDefaults() *Ncgi

NewNcgiWithDefaults instantiates a new Ncgi 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 (*Ncgi) GetNid ¶

func (o *Ncgi) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*Ncgi) GetNidOk ¶

func (o *Ncgi) GetNidOk() (*string, bool)

GetNidOk returns a tuple with the Nid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Ncgi) GetNrCellId ¶

func (o *Ncgi) GetNrCellId() string

GetNrCellId returns the NrCellId field value

func (*Ncgi) GetNrCellIdOk ¶

func (o *Ncgi) GetNrCellIdOk() (*string, bool)

GetNrCellIdOk returns a tuple with the NrCellId field value and a boolean to check if the value has been set.

func (*Ncgi) GetPlmnId ¶

func (o *Ncgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Ncgi) GetPlmnIdOk ¶

func (o *Ncgi) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*Ncgi) HasNid ¶

func (o *Ncgi) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Ncgi) MarshalJSON ¶

func (o Ncgi) MarshalJSON() ([]byte, error)

func (*Ncgi) SetNid ¶

func (o *Ncgi) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (*Ncgi) SetNrCellId ¶

func (o *Ncgi) SetNrCellId(v string)

SetNrCellId sets field value

func (*Ncgi) SetPlmnId ¶

func (o *Ncgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Ncgi) ToMap ¶

func (o Ncgi) ToMap() (map[string]interface{}, error)

type NcgiTai ¶

type NcgiTai struct {
	Tai Tai `json:"tai"`
	// List of List of NR cell ids
	CellList []Ncgi `json:"cellList"`
}

NcgiTai List of NR cell ids, with their pertaining TAIs

func NewNcgiTai ¶

func NewNcgiTai(tai Tai, cellList []Ncgi) *NcgiTai

NewNcgiTai instantiates a new NcgiTai 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 NewNcgiTaiWithDefaults ¶

func NewNcgiTaiWithDefaults() *NcgiTai

NewNcgiTaiWithDefaults instantiates a new NcgiTai 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 (*NcgiTai) GetCellList ¶

func (o *NcgiTai) GetCellList() []Ncgi

GetCellList returns the CellList field value

func (*NcgiTai) GetCellListOk ¶

func (o *NcgiTai) GetCellListOk() ([]Ncgi, bool)

GetCellListOk returns a tuple with the CellList field value and a boolean to check if the value has been set.

func (*NcgiTai) GetTai ¶

func (o *NcgiTai) GetTai() Tai

GetTai returns the Tai field value

func (*NcgiTai) GetTaiOk ¶

func (o *NcgiTai) GetTaiOk() (*Tai, bool)

GetTaiOk returns a tuple with the Tai field value and a boolean to check if the value has been set.

func (NcgiTai) MarshalJSON ¶

func (o NcgiTai) MarshalJSON() ([]byte, error)

func (*NcgiTai) SetCellList ¶

func (o *NcgiTai) SetCellList(v []Ncgi)

SetCellList sets field value

func (*NcgiTai) SetTai ¶

func (o *NcgiTai) SetTai(v Tai)

SetTai sets field value

func (NcgiTai) ToMap ¶

func (o NcgiTai) ToMap() (map[string]interface{}, error)

type NefCond ¶

type NefCond struct {
	ConditionType                  string          `json:"conditionType"`
	AfEvents                       []AfEvent       `json:"afEvents,omitempty"`
	SnssaiList                     []Snssai        `json:"snssaiList,omitempty"`
	PfdData                        *PfdData        `json:"pfdData,omitempty"`
	GpsiRanges                     []IdentityRange `json:"gpsiRanges,omitempty"`
	ExternalGroupIdentifiersRanges []IdentityRange `json:"externalGroupIdentifiersRanges,omitempty"`
	ServedFqdnList                 []string        `json:"servedFqdnList,omitempty"`
}

NefCond Subscription to a set of NF Instances (NEFs), identified by Event ID(s) provided by AF, S-NSSAI(s), AF Instance ID, Application Identifier, External Identifier, External Group Identifier, or domain name.

func NewNefCond ¶

func NewNefCond(conditionType string) *NefCond

NewNefCond instantiates a new NefCond 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 NewNefCondWithDefaults ¶

func NewNefCondWithDefaults() *NefCond

NewNefCondWithDefaults instantiates a new NefCond 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 (*NefCond) GetAfEvents ¶

func (o *NefCond) GetAfEvents() []AfEvent

GetAfEvents returns the AfEvents field value if set, zero value otherwise.

func (*NefCond) GetAfEventsOk ¶

func (o *NefCond) GetAfEventsOk() ([]AfEvent, bool)

GetAfEventsOk returns a tuple with the AfEvents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefCond) GetConditionType ¶

func (o *NefCond) GetConditionType() string

GetConditionType returns the ConditionType field value

func (*NefCond) GetConditionTypeOk ¶

func (o *NefCond) GetConditionTypeOk() (*string, bool)

GetConditionTypeOk returns a tuple with the ConditionType field value and a boolean to check if the value has been set.

func (*NefCond) GetExternalGroupIdentifiersRanges ¶

func (o *NefCond) GetExternalGroupIdentifiersRanges() []IdentityRange

GetExternalGroupIdentifiersRanges returns the ExternalGroupIdentifiersRanges field value if set, zero value otherwise.

func (*NefCond) GetExternalGroupIdentifiersRangesOk ¶

func (o *NefCond) GetExternalGroupIdentifiersRangesOk() ([]IdentityRange, bool)

GetExternalGroupIdentifiersRangesOk returns a tuple with the ExternalGroupIdentifiersRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefCond) GetGpsiRanges ¶

func (o *NefCond) GetGpsiRanges() []IdentityRange

GetGpsiRanges returns the GpsiRanges field value if set, zero value otherwise.

func (*NefCond) GetGpsiRangesOk ¶

func (o *NefCond) GetGpsiRangesOk() ([]IdentityRange, bool)

GetGpsiRangesOk returns a tuple with the GpsiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefCond) GetPfdData ¶

func (o *NefCond) GetPfdData() PfdData

GetPfdData returns the PfdData field value if set, zero value otherwise.

func (*NefCond) GetPfdDataOk ¶

func (o *NefCond) GetPfdDataOk() (*PfdData, bool)

GetPfdDataOk returns a tuple with the PfdData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefCond) GetServedFqdnList ¶

func (o *NefCond) GetServedFqdnList() []string

GetServedFqdnList returns the ServedFqdnList field value if set, zero value otherwise.

func (*NefCond) GetServedFqdnListOk ¶

func (o *NefCond) GetServedFqdnListOk() ([]string, bool)

GetServedFqdnListOk returns a tuple with the ServedFqdnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefCond) GetSnssaiList ¶

func (o *NefCond) GetSnssaiList() []Snssai

GetSnssaiList returns the SnssaiList field value if set, zero value otherwise.

func (*NefCond) GetSnssaiListOk ¶

func (o *NefCond) GetSnssaiListOk() ([]Snssai, bool)

GetSnssaiListOk returns a tuple with the SnssaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefCond) HasAfEvents ¶

func (o *NefCond) HasAfEvents() bool

HasAfEvents returns a boolean if a field has been set.

func (*NefCond) HasExternalGroupIdentifiersRanges ¶

func (o *NefCond) HasExternalGroupIdentifiersRanges() bool

HasExternalGroupIdentifiersRanges returns a boolean if a field has been set.

func (*NefCond) HasGpsiRanges ¶

func (o *NefCond) HasGpsiRanges() bool

HasGpsiRanges returns a boolean if a field has been set.

func (*NefCond) HasPfdData ¶

func (o *NefCond) HasPfdData() bool

HasPfdData returns a boolean if a field has been set.

func (*NefCond) HasServedFqdnList ¶

func (o *NefCond) HasServedFqdnList() bool

HasServedFqdnList returns a boolean if a field has been set.

func (*NefCond) HasSnssaiList ¶

func (o *NefCond) HasSnssaiList() bool

HasSnssaiList returns a boolean if a field has been set.

func (NefCond) MarshalJSON ¶

func (o NefCond) MarshalJSON() ([]byte, error)

func (*NefCond) SetAfEvents ¶

func (o *NefCond) SetAfEvents(v []AfEvent)

SetAfEvents gets a reference to the given []AfEvent and assigns it to the AfEvents field.

func (*NefCond) SetConditionType ¶

func (o *NefCond) SetConditionType(v string)

SetConditionType sets field value

func (*NefCond) SetExternalGroupIdentifiersRanges ¶

func (o *NefCond) SetExternalGroupIdentifiersRanges(v []IdentityRange)

SetExternalGroupIdentifiersRanges gets a reference to the given []IdentityRange and assigns it to the ExternalGroupIdentifiersRanges field.

func (*NefCond) SetGpsiRanges ¶

func (o *NefCond) SetGpsiRanges(v []IdentityRange)

SetGpsiRanges gets a reference to the given []IdentityRange and assigns it to the GpsiRanges field.

func (*NefCond) SetPfdData ¶

func (o *NefCond) SetPfdData(v PfdData)

SetPfdData gets a reference to the given PfdData and assigns it to the PfdData field.

func (*NefCond) SetServedFqdnList ¶

func (o *NefCond) SetServedFqdnList(v []string)

SetServedFqdnList gets a reference to the given []string and assigns it to the ServedFqdnList field.

func (*NefCond) SetSnssaiList ¶

func (o *NefCond) SetSnssaiList(v []Snssai)

SetSnssaiList gets a reference to the given []Snssai and assigns it to the SnssaiList field.

func (NefCond) ToMap ¶

func (o NefCond) ToMap() (map[string]interface{}, error)

type NefEvent ¶

type NefEvent struct {
	String *string
}

NefEvent Represents Network Exposure Events.

func (*NefEvent) MarshalJSON ¶

func (src *NefEvent) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NefEvent) UnmarshalJSON ¶

func (dst *NefEvent) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NefEventExposureNotif ¶

type NefEventExposureNotif struct {
	NotifId     string                 `json:"notifId"`
	EventNotifs []NefEventNotification `json:"eventNotifs"`
}

NefEventExposureNotif Represents notifications on network exposure event(s) that occurred for an Individual Network Exposure Event Subscription resource.

func NewNefEventExposureNotif ¶

func NewNefEventExposureNotif(notifId string, eventNotifs []NefEventNotification) *NefEventExposureNotif

NewNefEventExposureNotif instantiates a new NefEventExposureNotif 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 NewNefEventExposureNotifWithDefaults ¶

func NewNefEventExposureNotifWithDefaults() *NefEventExposureNotif

NewNefEventExposureNotifWithDefaults instantiates a new NefEventExposureNotif 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 (*NefEventExposureNotif) GetEventNotifs ¶

func (o *NefEventExposureNotif) GetEventNotifs() []NefEventNotification

GetEventNotifs returns the EventNotifs field value

func (*NefEventExposureNotif) GetEventNotifsOk ¶

func (o *NefEventExposureNotif) GetEventNotifsOk() ([]NefEventNotification, bool)

GetEventNotifsOk returns a tuple with the EventNotifs field value and a boolean to check if the value has been set.

func (*NefEventExposureNotif) GetNotifId ¶

func (o *NefEventExposureNotif) GetNotifId() string

GetNotifId returns the NotifId field value

func (*NefEventExposureNotif) GetNotifIdOk ¶

func (o *NefEventExposureNotif) GetNotifIdOk() (*string, bool)

GetNotifIdOk returns a tuple with the NotifId field value and a boolean to check if the value has been set.

func (NefEventExposureNotif) MarshalJSON ¶

func (o NefEventExposureNotif) MarshalJSON() ([]byte, error)

func (*NefEventExposureNotif) SetEventNotifs ¶

func (o *NefEventExposureNotif) SetEventNotifs(v []NefEventNotification)

SetEventNotifs sets field value

func (*NefEventExposureNotif) SetNotifId ¶

func (o *NefEventExposureNotif) SetNotifId(v string)

SetNotifId sets field value

func (NefEventExposureNotif) ToMap ¶

func (o NefEventExposureNotif) ToMap() (map[string]interface{}, error)

type NefEventExposureSubsc ¶

type NefEventExposureSubsc struct {
	DataAccProfId *string               `json:"dataAccProfId,omitempty"`
	EventsSubs    []NefEventSubs        `json:"eventsSubs"`
	EventsRepInfo *ReportingInformation `json:"eventsRepInfo,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	NotifUri    string                 `json:"notifUri"`
	NotifId     string                 `json:"notifId"`
	EventNotifs []NefEventNotification `json:"eventNotifs,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SuppFeat *string `json:"suppFeat,omitempty"`
}

NefEventExposureSubsc Represents an Individual Network Exposure Event Subscription resource.

func NewNefEventExposureSubsc ¶

func NewNefEventExposureSubsc(eventsSubs []NefEventSubs, notifUri string, notifId string) *NefEventExposureSubsc

NewNefEventExposureSubsc instantiates a new NefEventExposureSubsc 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 NewNefEventExposureSubscWithDefaults ¶

func NewNefEventExposureSubscWithDefaults() *NefEventExposureSubsc

NewNefEventExposureSubscWithDefaults instantiates a new NefEventExposureSubsc 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 (*NefEventExposureSubsc) GetDataAccProfId ¶

func (o *NefEventExposureSubsc) GetDataAccProfId() string

GetDataAccProfId returns the DataAccProfId field value if set, zero value otherwise.

func (*NefEventExposureSubsc) GetDataAccProfIdOk ¶

func (o *NefEventExposureSubsc) GetDataAccProfIdOk() (*string, bool)

GetDataAccProfIdOk returns a tuple with the DataAccProfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventExposureSubsc) GetEventNotifs ¶

func (o *NefEventExposureSubsc) GetEventNotifs() []NefEventNotification

GetEventNotifs returns the EventNotifs field value if set, zero value otherwise.

func (*NefEventExposureSubsc) GetEventNotifsOk ¶

func (o *NefEventExposureSubsc) GetEventNotifsOk() ([]NefEventNotification, bool)

GetEventNotifsOk returns a tuple with the EventNotifs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventExposureSubsc) GetEventsRepInfo ¶

func (o *NefEventExposureSubsc) GetEventsRepInfo() ReportingInformation

GetEventsRepInfo returns the EventsRepInfo field value if set, zero value otherwise.

func (*NefEventExposureSubsc) GetEventsRepInfoOk ¶

func (o *NefEventExposureSubsc) GetEventsRepInfoOk() (*ReportingInformation, bool)

GetEventsRepInfoOk returns a tuple with the EventsRepInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventExposureSubsc) GetEventsSubs ¶

func (o *NefEventExposureSubsc) GetEventsSubs() []NefEventSubs

GetEventsSubs returns the EventsSubs field value

func (*NefEventExposureSubsc) GetEventsSubsOk ¶

func (o *NefEventExposureSubsc) GetEventsSubsOk() ([]NefEventSubs, bool)

GetEventsSubsOk returns a tuple with the EventsSubs field value and a boolean to check if the value has been set.

func (*NefEventExposureSubsc) GetNotifId ¶

func (o *NefEventExposureSubsc) GetNotifId() string

GetNotifId returns the NotifId field value

func (*NefEventExposureSubsc) GetNotifIdOk ¶

func (o *NefEventExposureSubsc) GetNotifIdOk() (*string, bool)

GetNotifIdOk returns a tuple with the NotifId field value and a boolean to check if the value has been set.

func (*NefEventExposureSubsc) GetNotifUri ¶

func (o *NefEventExposureSubsc) GetNotifUri() string

GetNotifUri returns the NotifUri field value

func (*NefEventExposureSubsc) GetNotifUriOk ¶

func (o *NefEventExposureSubsc) GetNotifUriOk() (*string, bool)

GetNotifUriOk returns a tuple with the NotifUri field value and a boolean to check if the value has been set.

func (*NefEventExposureSubsc) GetSuppFeat ¶

func (o *NefEventExposureSubsc) GetSuppFeat() string

GetSuppFeat returns the SuppFeat field value if set, zero value otherwise.

func (*NefEventExposureSubsc) GetSuppFeatOk ¶

func (o *NefEventExposureSubsc) GetSuppFeatOk() (*string, bool)

GetSuppFeatOk returns a tuple with the SuppFeat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventExposureSubsc) HasDataAccProfId ¶

func (o *NefEventExposureSubsc) HasDataAccProfId() bool

HasDataAccProfId returns a boolean if a field has been set.

func (*NefEventExposureSubsc) HasEventNotifs ¶

func (o *NefEventExposureSubsc) HasEventNotifs() bool

HasEventNotifs returns a boolean if a field has been set.

func (*NefEventExposureSubsc) HasEventsRepInfo ¶

func (o *NefEventExposureSubsc) HasEventsRepInfo() bool

HasEventsRepInfo returns a boolean if a field has been set.

func (*NefEventExposureSubsc) HasSuppFeat ¶

func (o *NefEventExposureSubsc) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (NefEventExposureSubsc) MarshalJSON ¶

func (o NefEventExposureSubsc) MarshalJSON() ([]byte, error)

func (*NefEventExposureSubsc) SetDataAccProfId ¶

func (o *NefEventExposureSubsc) SetDataAccProfId(v string)

SetDataAccProfId gets a reference to the given string and assigns it to the DataAccProfId field.

func (*NefEventExposureSubsc) SetEventNotifs ¶

func (o *NefEventExposureSubsc) SetEventNotifs(v []NefEventNotification)

SetEventNotifs gets a reference to the given []NefEventNotification and assigns it to the EventNotifs field.

func (*NefEventExposureSubsc) SetEventsRepInfo ¶

func (o *NefEventExposureSubsc) SetEventsRepInfo(v ReportingInformation)

SetEventsRepInfo gets a reference to the given ReportingInformation and assigns it to the EventsRepInfo field.

func (*NefEventExposureSubsc) SetEventsSubs ¶

func (o *NefEventExposureSubsc) SetEventsSubs(v []NefEventSubs)

SetEventsSubs sets field value

func (*NefEventExposureSubsc) SetNotifId ¶

func (o *NefEventExposureSubsc) SetNotifId(v string)

SetNotifId sets field value

func (*NefEventExposureSubsc) SetNotifUri ¶

func (o *NefEventExposureSubsc) SetNotifUri(v string)

SetNotifUri sets field value

func (*NefEventExposureSubsc) SetSuppFeat ¶

func (o *NefEventExposureSubsc) SetSuppFeat(v string)

SetSuppFeat gets a reference to the given string and assigns it to the SuppFeat field.

func (NefEventExposureSubsc) ToMap ¶

func (o NefEventExposureSubsc) ToMap() (map[string]interface{}, error)

type NefEventFilter ¶

type NefEventFilter struct {
	TgtUe     TargetUeIdentification      `json:"tgtUe"`
	AppIds    []string                    `json:"appIds,omitempty"`
	LocArea   *NetworkAreaInfo            `json:"locArea,omitempty"`
	CollAttrs []CollectiveBehaviourFilter `json:"collAttrs,omitempty"`
}

NefEventFilter Represents event filter information for an event.

func NewNefEventFilter ¶

func NewNefEventFilter(tgtUe TargetUeIdentification) *NefEventFilter

NewNefEventFilter instantiates a new NefEventFilter 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 NewNefEventFilterWithDefaults ¶

func NewNefEventFilterWithDefaults() *NefEventFilter

NewNefEventFilterWithDefaults instantiates a new NefEventFilter 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 (*NefEventFilter) GetAppIds ¶

func (o *NefEventFilter) GetAppIds() []string

GetAppIds returns the AppIds field value if set, zero value otherwise.

func (*NefEventFilter) GetAppIdsOk ¶

func (o *NefEventFilter) GetAppIdsOk() ([]string, bool)

GetAppIdsOk returns a tuple with the AppIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventFilter) GetCollAttrs ¶

func (o *NefEventFilter) GetCollAttrs() []CollectiveBehaviourFilter

GetCollAttrs returns the CollAttrs field value if set, zero value otherwise.

func (*NefEventFilter) GetCollAttrsOk ¶

func (o *NefEventFilter) GetCollAttrsOk() ([]CollectiveBehaviourFilter, bool)

GetCollAttrsOk returns a tuple with the CollAttrs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventFilter) GetLocArea ¶

func (o *NefEventFilter) GetLocArea() NetworkAreaInfo

GetLocArea returns the LocArea field value if set, zero value otherwise.

func (*NefEventFilter) GetLocAreaOk ¶

func (o *NefEventFilter) GetLocAreaOk() (*NetworkAreaInfo, bool)

GetLocAreaOk returns a tuple with the LocArea field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventFilter) GetTgtUe ¶

func (o *NefEventFilter) GetTgtUe() TargetUeIdentification

GetTgtUe returns the TgtUe field value

func (*NefEventFilter) GetTgtUeOk ¶

func (o *NefEventFilter) GetTgtUeOk() (*TargetUeIdentification, bool)

GetTgtUeOk returns a tuple with the TgtUe field value and a boolean to check if the value has been set.

func (*NefEventFilter) HasAppIds ¶

func (o *NefEventFilter) HasAppIds() bool

HasAppIds returns a boolean if a field has been set.

func (*NefEventFilter) HasCollAttrs ¶

func (o *NefEventFilter) HasCollAttrs() bool

HasCollAttrs returns a boolean if a field has been set.

func (*NefEventFilter) HasLocArea ¶

func (o *NefEventFilter) HasLocArea() bool

HasLocArea returns a boolean if a field has been set.

func (NefEventFilter) MarshalJSON ¶

func (o NefEventFilter) MarshalJSON() ([]byte, error)

func (*NefEventFilter) SetAppIds ¶

func (o *NefEventFilter) SetAppIds(v []string)

SetAppIds gets a reference to the given []string and assigns it to the AppIds field.

func (*NefEventFilter) SetCollAttrs ¶

func (o *NefEventFilter) SetCollAttrs(v []CollectiveBehaviourFilter)

SetCollAttrs gets a reference to the given []CollectiveBehaviourFilter and assigns it to the CollAttrs field.

func (*NefEventFilter) SetLocArea ¶

func (o *NefEventFilter) SetLocArea(v NetworkAreaInfo)

SetLocArea gets a reference to the given NetworkAreaInfo and assigns it to the LocArea field.

func (*NefEventFilter) SetTgtUe ¶

func (o *NefEventFilter) SetTgtUe(v TargetUeIdentification)

SetTgtUe sets field value

func (NefEventFilter) ToMap ¶

func (o NefEventFilter) ToMap() (map[string]interface{}, error)

type NefEventNotification ¶

type NefEventNotification struct {
	Event NefEvent `json:"event"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp        time.Time                         `json:"timeStamp"`
	SvcExprcInfos    []ServiceExperienceInfo1          `json:"svcExprcInfos,omitempty"`
	UeMobilityInfos  []UeMobilityInfo                  `json:"ueMobilityInfos,omitempty"`
	UeCommInfos      []UeCommunicationInfo             `json:"ueCommInfos,omitempty"`
	ExcepInfos       []ExceptionInfo                   `json:"excepInfos,omitempty"`
	CongestionInfos  []UserDataCongestionCollection    `json:"congestionInfos,omitempty"`
	PerfDataInfos    []PerformanceDataInfo             `json:"perfDataInfos,omitempty"`
	DispersionInfos  []DispersionCollection1           `json:"dispersionInfos,omitempty"`
	CollBhvrInfs     []CollectiveBehaviourInfo         `json:"collBhvrInfs,omitempty"`
	MsQoeMetrInfos   []MsQoeMetricsCollection          `json:"msQoeMetrInfos,omitempty"`
	MsConsumpInfos   []MsConsumptionCollection         `json:"msConsumpInfos,omitempty"`
	MsNetAssInvInfos []MsNetAssInvocationCollection    `json:"msNetAssInvInfos,omitempty"`
	MsDynPlyInvInfos []MsDynPolicyInvocationCollection `json:"msDynPlyInvInfos,omitempty"`
	MsAccActInfos    []MSAccessActivityCollection      `json:"msAccActInfos,omitempty"`
}

NefEventNotification Represents information related to an event to be reported.

func NewNefEventNotification ¶

func NewNefEventNotification(event NefEvent, timeStamp time.Time) *NefEventNotification

NewNefEventNotification instantiates a new NefEventNotification 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 NewNefEventNotificationWithDefaults ¶

func NewNefEventNotificationWithDefaults() *NefEventNotification

NewNefEventNotificationWithDefaults instantiates a new NefEventNotification 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 (*NefEventNotification) GetCollBhvrInfs ¶

func (o *NefEventNotification) GetCollBhvrInfs() []CollectiveBehaviourInfo

GetCollBhvrInfs returns the CollBhvrInfs field value if set, zero value otherwise.

func (*NefEventNotification) GetCollBhvrInfsOk ¶

func (o *NefEventNotification) GetCollBhvrInfsOk() ([]CollectiveBehaviourInfo, bool)

GetCollBhvrInfsOk returns a tuple with the CollBhvrInfs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventNotification) GetCongestionInfos ¶

func (o *NefEventNotification) GetCongestionInfos() []UserDataCongestionCollection

GetCongestionInfos returns the CongestionInfos field value if set, zero value otherwise.

func (*NefEventNotification) GetCongestionInfosOk ¶

func (o *NefEventNotification) GetCongestionInfosOk() ([]UserDataCongestionCollection, bool)

GetCongestionInfosOk returns a tuple with the CongestionInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventNotification) GetDispersionInfos ¶

func (o *NefEventNotification) GetDispersionInfos() []DispersionCollection1

GetDispersionInfos returns the DispersionInfos field value if set, zero value otherwise.

func (*NefEventNotification) GetDispersionInfosOk ¶

func (o *NefEventNotification) GetDispersionInfosOk() ([]DispersionCollection1, bool)

GetDispersionInfosOk returns a tuple with the DispersionInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventNotification) GetEvent ¶

func (o *NefEventNotification) GetEvent() NefEvent

GetEvent returns the Event field value

func (*NefEventNotification) GetEventOk ¶

func (o *NefEventNotification) GetEventOk() (*NefEvent, bool)

GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.

func (*NefEventNotification) GetExcepInfos ¶

func (o *NefEventNotification) GetExcepInfos() []ExceptionInfo

GetExcepInfos returns the ExcepInfos field value if set, zero value otherwise.

func (*NefEventNotification) GetExcepInfosOk ¶

func (o *NefEventNotification) GetExcepInfosOk() ([]ExceptionInfo, bool)

GetExcepInfosOk returns a tuple with the ExcepInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventNotification) GetMsAccActInfos ¶

func (o *NefEventNotification) GetMsAccActInfos() []MSAccessActivityCollection

GetMsAccActInfos returns the MsAccActInfos field value if set, zero value otherwise.

func (*NefEventNotification) GetMsAccActInfosOk ¶

func (o *NefEventNotification) GetMsAccActInfosOk() ([]MSAccessActivityCollection, bool)

GetMsAccActInfosOk returns a tuple with the MsAccActInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventNotification) GetMsConsumpInfos ¶

func (o *NefEventNotification) GetMsConsumpInfos() []MsConsumptionCollection

GetMsConsumpInfos returns the MsConsumpInfos field value if set, zero value otherwise.

func (*NefEventNotification) GetMsConsumpInfosOk ¶

func (o *NefEventNotification) GetMsConsumpInfosOk() ([]MsConsumptionCollection, bool)

GetMsConsumpInfosOk returns a tuple with the MsConsumpInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventNotification) GetMsDynPlyInvInfos ¶

func (o *NefEventNotification) GetMsDynPlyInvInfos() []MsDynPolicyInvocationCollection

GetMsDynPlyInvInfos returns the MsDynPlyInvInfos field value if set, zero value otherwise.

func (*NefEventNotification) GetMsDynPlyInvInfosOk ¶

func (o *NefEventNotification) GetMsDynPlyInvInfosOk() ([]MsDynPolicyInvocationCollection, bool)

GetMsDynPlyInvInfosOk returns a tuple with the MsDynPlyInvInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventNotification) GetMsNetAssInvInfos ¶

func (o *NefEventNotification) GetMsNetAssInvInfos() []MsNetAssInvocationCollection

GetMsNetAssInvInfos returns the MsNetAssInvInfos field value if set, zero value otherwise.

func (*NefEventNotification) GetMsNetAssInvInfosOk ¶

func (o *NefEventNotification) GetMsNetAssInvInfosOk() ([]MsNetAssInvocationCollection, bool)

GetMsNetAssInvInfosOk returns a tuple with the MsNetAssInvInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventNotification) GetMsQoeMetrInfos ¶

func (o *NefEventNotification) GetMsQoeMetrInfos() []MsQoeMetricsCollection

GetMsQoeMetrInfos returns the MsQoeMetrInfos field value if set, zero value otherwise.

func (*NefEventNotification) GetMsQoeMetrInfosOk ¶

func (o *NefEventNotification) GetMsQoeMetrInfosOk() ([]MsQoeMetricsCollection, bool)

GetMsQoeMetrInfosOk returns a tuple with the MsQoeMetrInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventNotification) GetPerfDataInfos ¶

func (o *NefEventNotification) GetPerfDataInfos() []PerformanceDataInfo

GetPerfDataInfos returns the PerfDataInfos field value if set, zero value otherwise.

func (*NefEventNotification) GetPerfDataInfosOk ¶

func (o *NefEventNotification) GetPerfDataInfosOk() ([]PerformanceDataInfo, bool)

GetPerfDataInfosOk returns a tuple with the PerfDataInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventNotification) GetSvcExprcInfos ¶

func (o *NefEventNotification) GetSvcExprcInfos() []ServiceExperienceInfo1

GetSvcExprcInfos returns the SvcExprcInfos field value if set, zero value otherwise.

func (*NefEventNotification) GetSvcExprcInfosOk ¶

func (o *NefEventNotification) GetSvcExprcInfosOk() ([]ServiceExperienceInfo1, bool)

GetSvcExprcInfosOk returns a tuple with the SvcExprcInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventNotification) GetTimeStamp ¶

func (o *NefEventNotification) GetTimeStamp() time.Time

GetTimeStamp returns the TimeStamp field value

func (*NefEventNotification) GetTimeStampOk ¶

func (o *NefEventNotification) GetTimeStampOk() (*time.Time, bool)

GetTimeStampOk returns a tuple with the TimeStamp field value and a boolean to check if the value has been set.

func (*NefEventNotification) GetUeCommInfos ¶

func (o *NefEventNotification) GetUeCommInfos() []UeCommunicationInfo

GetUeCommInfos returns the UeCommInfos field value if set, zero value otherwise.

func (*NefEventNotification) GetUeCommInfosOk ¶

func (o *NefEventNotification) GetUeCommInfosOk() ([]UeCommunicationInfo, bool)

GetUeCommInfosOk returns a tuple with the UeCommInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventNotification) GetUeMobilityInfos ¶

func (o *NefEventNotification) GetUeMobilityInfos() []UeMobilityInfo

GetUeMobilityInfos returns the UeMobilityInfos field value if set, zero value otherwise.

func (*NefEventNotification) GetUeMobilityInfosOk ¶

func (o *NefEventNotification) GetUeMobilityInfosOk() ([]UeMobilityInfo, bool)

GetUeMobilityInfosOk returns a tuple with the UeMobilityInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventNotification) HasCollBhvrInfs ¶

func (o *NefEventNotification) HasCollBhvrInfs() bool

HasCollBhvrInfs returns a boolean if a field has been set.

func (*NefEventNotification) HasCongestionInfos ¶

func (o *NefEventNotification) HasCongestionInfos() bool

HasCongestionInfos returns a boolean if a field has been set.

func (*NefEventNotification) HasDispersionInfos ¶

func (o *NefEventNotification) HasDispersionInfos() bool

HasDispersionInfos returns a boolean if a field has been set.

func (*NefEventNotification) HasExcepInfos ¶

func (o *NefEventNotification) HasExcepInfos() bool

HasExcepInfos returns a boolean if a field has been set.

func (*NefEventNotification) HasMsAccActInfos ¶

func (o *NefEventNotification) HasMsAccActInfos() bool

HasMsAccActInfos returns a boolean if a field has been set.

func (*NefEventNotification) HasMsConsumpInfos ¶

func (o *NefEventNotification) HasMsConsumpInfos() bool

HasMsConsumpInfos returns a boolean if a field has been set.

func (*NefEventNotification) HasMsDynPlyInvInfos ¶

func (o *NefEventNotification) HasMsDynPlyInvInfos() bool

HasMsDynPlyInvInfos returns a boolean if a field has been set.

func (*NefEventNotification) HasMsNetAssInvInfos ¶

func (o *NefEventNotification) HasMsNetAssInvInfos() bool

HasMsNetAssInvInfos returns a boolean if a field has been set.

func (*NefEventNotification) HasMsQoeMetrInfos ¶

func (o *NefEventNotification) HasMsQoeMetrInfos() bool

HasMsQoeMetrInfos returns a boolean if a field has been set.

func (*NefEventNotification) HasPerfDataInfos ¶

func (o *NefEventNotification) HasPerfDataInfos() bool

HasPerfDataInfos returns a boolean if a field has been set.

func (*NefEventNotification) HasSvcExprcInfos ¶

func (o *NefEventNotification) HasSvcExprcInfos() bool

HasSvcExprcInfos returns a boolean if a field has been set.

func (*NefEventNotification) HasUeCommInfos ¶

func (o *NefEventNotification) HasUeCommInfos() bool

HasUeCommInfos returns a boolean if a field has been set.

func (*NefEventNotification) HasUeMobilityInfos ¶

func (o *NefEventNotification) HasUeMobilityInfos() bool

HasUeMobilityInfos returns a boolean if a field has been set.

func (NefEventNotification) MarshalJSON ¶

func (o NefEventNotification) MarshalJSON() ([]byte, error)

func (*NefEventNotification) SetCollBhvrInfs ¶

func (o *NefEventNotification) SetCollBhvrInfs(v []CollectiveBehaviourInfo)

SetCollBhvrInfs gets a reference to the given []CollectiveBehaviourInfo and assigns it to the CollBhvrInfs field.

func (*NefEventNotification) SetCongestionInfos ¶

func (o *NefEventNotification) SetCongestionInfos(v []UserDataCongestionCollection)

SetCongestionInfos gets a reference to the given []UserDataCongestionCollection and assigns it to the CongestionInfos field.

func (*NefEventNotification) SetDispersionInfos ¶

func (o *NefEventNotification) SetDispersionInfos(v []DispersionCollection1)

SetDispersionInfos gets a reference to the given []DispersionCollection1 and assigns it to the DispersionInfos field.

func (*NefEventNotification) SetEvent ¶

func (o *NefEventNotification) SetEvent(v NefEvent)

SetEvent sets field value

func (*NefEventNotification) SetExcepInfos ¶

func (o *NefEventNotification) SetExcepInfos(v []ExceptionInfo)

SetExcepInfos gets a reference to the given []ExceptionInfo and assigns it to the ExcepInfos field.

func (*NefEventNotification) SetMsAccActInfos ¶

func (o *NefEventNotification) SetMsAccActInfos(v []MSAccessActivityCollection)

SetMsAccActInfos gets a reference to the given []MSAccessActivityCollection and assigns it to the MsAccActInfos field.

func (*NefEventNotification) SetMsConsumpInfos ¶

func (o *NefEventNotification) SetMsConsumpInfos(v []MsConsumptionCollection)

SetMsConsumpInfos gets a reference to the given []MsConsumptionCollection and assigns it to the MsConsumpInfos field.

func (*NefEventNotification) SetMsDynPlyInvInfos ¶

func (o *NefEventNotification) SetMsDynPlyInvInfos(v []MsDynPolicyInvocationCollection)

SetMsDynPlyInvInfos gets a reference to the given []MsDynPolicyInvocationCollection and assigns it to the MsDynPlyInvInfos field.

func (*NefEventNotification) SetMsNetAssInvInfos ¶

func (o *NefEventNotification) SetMsNetAssInvInfos(v []MsNetAssInvocationCollection)

SetMsNetAssInvInfos gets a reference to the given []MsNetAssInvocationCollection and assigns it to the MsNetAssInvInfos field.

func (*NefEventNotification) SetMsQoeMetrInfos ¶

func (o *NefEventNotification) SetMsQoeMetrInfos(v []MsQoeMetricsCollection)

SetMsQoeMetrInfos gets a reference to the given []MsQoeMetricsCollection and assigns it to the MsQoeMetrInfos field.

func (*NefEventNotification) SetPerfDataInfos ¶

func (o *NefEventNotification) SetPerfDataInfos(v []PerformanceDataInfo)

SetPerfDataInfos gets a reference to the given []PerformanceDataInfo and assigns it to the PerfDataInfos field.

func (*NefEventNotification) SetSvcExprcInfos ¶

func (o *NefEventNotification) SetSvcExprcInfos(v []ServiceExperienceInfo1)

SetSvcExprcInfos gets a reference to the given []ServiceExperienceInfo1 and assigns it to the SvcExprcInfos field.

func (*NefEventNotification) SetTimeStamp ¶

func (o *NefEventNotification) SetTimeStamp(v time.Time)

SetTimeStamp sets field value

func (*NefEventNotification) SetUeCommInfos ¶

func (o *NefEventNotification) SetUeCommInfos(v []UeCommunicationInfo)

SetUeCommInfos gets a reference to the given []UeCommunicationInfo and assigns it to the UeCommInfos field.

func (*NefEventNotification) SetUeMobilityInfos ¶

func (o *NefEventNotification) SetUeMobilityInfos(v []UeMobilityInfo)

SetUeMobilityInfos gets a reference to the given []UeMobilityInfo and assigns it to the UeMobilityInfos field.

func (NefEventNotification) ToMap ¶

func (o NefEventNotification) ToMap() (map[string]interface{}, error)

type NefEventSubs ¶

type NefEventSubs struct {
	Event       NefEvent        `json:"event"`
	EventFilter *NefEventFilter `json:"eventFilter,omitempty"`
}

NefEventSubs Represents an event to be subscribed and the related event filter information.

func NewNefEventSubs ¶

func NewNefEventSubs(event NefEvent) *NefEventSubs

NewNefEventSubs instantiates a new NefEventSubs 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 NewNefEventSubsWithDefaults ¶

func NewNefEventSubsWithDefaults() *NefEventSubs

NewNefEventSubsWithDefaults instantiates a new NefEventSubs 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 (*NefEventSubs) GetEvent ¶

func (o *NefEventSubs) GetEvent() NefEvent

GetEvent returns the Event field value

func (*NefEventSubs) GetEventFilter ¶

func (o *NefEventSubs) GetEventFilter() NefEventFilter

GetEventFilter returns the EventFilter field value if set, zero value otherwise.

func (*NefEventSubs) GetEventFilterOk ¶

func (o *NefEventSubs) GetEventFilterOk() (*NefEventFilter, bool)

GetEventFilterOk returns a tuple with the EventFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefEventSubs) GetEventOk ¶

func (o *NefEventSubs) GetEventOk() (*NefEvent, bool)

GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.

func (*NefEventSubs) HasEventFilter ¶

func (o *NefEventSubs) HasEventFilter() bool

HasEventFilter returns a boolean if a field has been set.

func (NefEventSubs) MarshalJSON ¶

func (o NefEventSubs) MarshalJSON() ([]byte, error)

func (*NefEventSubs) SetEvent ¶

func (o *NefEventSubs) SetEvent(v NefEvent)

SetEvent sets field value

func (*NefEventSubs) SetEventFilter ¶

func (o *NefEventSubs) SetEventFilter(v NefEventFilter)

SetEventFilter gets a reference to the given NefEventFilter and assigns it to the EventFilter field.

func (NefEventSubs) ToMap ¶

func (o NefEventSubs) ToMap() (map[string]interface{}, error)

type NefInfo ¶

type NefInfo struct {
	// Identity of the NEF
	NefId                          *string              `json:"nefId,omitempty"`
	PfdData                        *PfdData             `json:"pfdData,omitempty"`
	AfEeData                       *AfEventExposureData `json:"afEeData,omitempty"`
	GpsiRanges                     []IdentityRange      `json:"gpsiRanges,omitempty"`
	ExternalGroupIdentifiersRanges []IdentityRange      `json:"externalGroupIdentifiersRanges,omitempty"`
	ServedFqdnList                 []string             `json:"servedFqdnList,omitempty"`
	TaiList                        []Tai                `json:"taiList,omitempty"`
	TaiRangeList                   []TaiRange           `json:"taiRangeList,omitempty"`
	DnaiList                       []string             `json:"dnaiList,omitempty"`
	UnTrustAfInfoList              []UnTrustAfInfo      `json:"unTrustAfInfoList,omitempty"`
	UasNfFunctionalityInd          *bool                `json:"uasNfFunctionalityInd,omitempty"`
}

NefInfo Information of an NEF NF Instance

func NewNefInfo ¶

func NewNefInfo() *NefInfo

NewNefInfo instantiates a new NefInfo 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 NewNefInfoWithDefaults ¶

func NewNefInfoWithDefaults() *NefInfo

NewNefInfoWithDefaults instantiates a new NefInfo 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 (*NefInfo) GetAfEeData ¶

func (o *NefInfo) GetAfEeData() AfEventExposureData

GetAfEeData returns the AfEeData field value if set, zero value otherwise.

func (*NefInfo) GetAfEeDataOk ¶

func (o *NefInfo) GetAfEeDataOk() (*AfEventExposureData, bool)

GetAfEeDataOk returns a tuple with the AfEeData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefInfo) GetDnaiList ¶

func (o *NefInfo) GetDnaiList() []string

GetDnaiList returns the DnaiList field value if set, zero value otherwise.

func (*NefInfo) GetDnaiListOk ¶

func (o *NefInfo) GetDnaiListOk() ([]string, bool)

GetDnaiListOk returns a tuple with the DnaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefInfo) GetExternalGroupIdentifiersRanges ¶

func (o *NefInfo) GetExternalGroupIdentifiersRanges() []IdentityRange

GetExternalGroupIdentifiersRanges returns the ExternalGroupIdentifiersRanges field value if set, zero value otherwise.

func (*NefInfo) GetExternalGroupIdentifiersRangesOk ¶

func (o *NefInfo) GetExternalGroupIdentifiersRangesOk() ([]IdentityRange, bool)

GetExternalGroupIdentifiersRangesOk returns a tuple with the ExternalGroupIdentifiersRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefInfo) GetGpsiRanges ¶

func (o *NefInfo) GetGpsiRanges() []IdentityRange

GetGpsiRanges returns the GpsiRanges field value if set, zero value otherwise.

func (*NefInfo) GetGpsiRangesOk ¶

func (o *NefInfo) GetGpsiRangesOk() ([]IdentityRange, bool)

GetGpsiRangesOk returns a tuple with the GpsiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefInfo) GetNefId ¶

func (o *NefInfo) GetNefId() string

GetNefId returns the NefId field value if set, zero value otherwise.

func (*NefInfo) GetNefIdOk ¶

func (o *NefInfo) GetNefIdOk() (*string, bool)

GetNefIdOk returns a tuple with the NefId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefInfo) GetPfdData ¶

func (o *NefInfo) GetPfdData() PfdData

GetPfdData returns the PfdData field value if set, zero value otherwise.

func (*NefInfo) GetPfdDataOk ¶

func (o *NefInfo) GetPfdDataOk() (*PfdData, bool)

GetPfdDataOk returns a tuple with the PfdData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefInfo) GetServedFqdnList ¶

func (o *NefInfo) GetServedFqdnList() []string

GetServedFqdnList returns the ServedFqdnList field value if set, zero value otherwise.

func (*NefInfo) GetServedFqdnListOk ¶

func (o *NefInfo) GetServedFqdnListOk() ([]string, bool)

GetServedFqdnListOk returns a tuple with the ServedFqdnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefInfo) GetTaiList ¶

func (o *NefInfo) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*NefInfo) GetTaiListOk ¶

func (o *NefInfo) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefInfo) GetTaiRangeList ¶

func (o *NefInfo) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*NefInfo) GetTaiRangeListOk ¶

func (o *NefInfo) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefInfo) GetUasNfFunctionalityInd ¶

func (o *NefInfo) GetUasNfFunctionalityInd() bool

GetUasNfFunctionalityInd returns the UasNfFunctionalityInd field value if set, zero value otherwise.

func (*NefInfo) GetUasNfFunctionalityIndOk ¶

func (o *NefInfo) GetUasNfFunctionalityIndOk() (*bool, bool)

GetUasNfFunctionalityIndOk returns a tuple with the UasNfFunctionalityInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefInfo) GetUnTrustAfInfoList ¶

func (o *NefInfo) GetUnTrustAfInfoList() []UnTrustAfInfo

GetUnTrustAfInfoList returns the UnTrustAfInfoList field value if set, zero value otherwise.

func (*NefInfo) GetUnTrustAfInfoListOk ¶

func (o *NefInfo) GetUnTrustAfInfoListOk() ([]UnTrustAfInfo, bool)

GetUnTrustAfInfoListOk returns a tuple with the UnTrustAfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NefInfo) HasAfEeData ¶

func (o *NefInfo) HasAfEeData() bool

HasAfEeData returns a boolean if a field has been set.

func (*NefInfo) HasDnaiList ¶

func (o *NefInfo) HasDnaiList() bool

HasDnaiList returns a boolean if a field has been set.

func (*NefInfo) HasExternalGroupIdentifiersRanges ¶

func (o *NefInfo) HasExternalGroupIdentifiersRanges() bool

HasExternalGroupIdentifiersRanges returns a boolean if a field has been set.

func (*NefInfo) HasGpsiRanges ¶

func (o *NefInfo) HasGpsiRanges() bool

HasGpsiRanges returns a boolean if a field has been set.

func (*NefInfo) HasNefId ¶

func (o *NefInfo) HasNefId() bool

HasNefId returns a boolean if a field has been set.

func (*NefInfo) HasPfdData ¶

func (o *NefInfo) HasPfdData() bool

HasPfdData returns a boolean if a field has been set.

func (*NefInfo) HasServedFqdnList ¶

func (o *NefInfo) HasServedFqdnList() bool

HasServedFqdnList returns a boolean if a field has been set.

func (*NefInfo) HasTaiList ¶

func (o *NefInfo) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (*NefInfo) HasTaiRangeList ¶

func (o *NefInfo) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (*NefInfo) HasUasNfFunctionalityInd ¶

func (o *NefInfo) HasUasNfFunctionalityInd() bool

HasUasNfFunctionalityInd returns a boolean if a field has been set.

func (*NefInfo) HasUnTrustAfInfoList ¶

func (o *NefInfo) HasUnTrustAfInfoList() bool

HasUnTrustAfInfoList returns a boolean if a field has been set.

func (NefInfo) MarshalJSON ¶

func (o NefInfo) MarshalJSON() ([]byte, error)

func (*NefInfo) SetAfEeData ¶

func (o *NefInfo) SetAfEeData(v AfEventExposureData)

SetAfEeData gets a reference to the given AfEventExposureData and assigns it to the AfEeData field.

func (*NefInfo) SetDnaiList ¶

func (o *NefInfo) SetDnaiList(v []string)

SetDnaiList gets a reference to the given []string and assigns it to the DnaiList field.

func (*NefInfo) SetExternalGroupIdentifiersRanges ¶

func (o *NefInfo) SetExternalGroupIdentifiersRanges(v []IdentityRange)

SetExternalGroupIdentifiersRanges gets a reference to the given []IdentityRange and assigns it to the ExternalGroupIdentifiersRanges field.

func (*NefInfo) SetGpsiRanges ¶

func (o *NefInfo) SetGpsiRanges(v []IdentityRange)

SetGpsiRanges gets a reference to the given []IdentityRange and assigns it to the GpsiRanges field.

func (*NefInfo) SetNefId ¶

func (o *NefInfo) SetNefId(v string)

SetNefId gets a reference to the given string and assigns it to the NefId field.

func (*NefInfo) SetPfdData ¶

func (o *NefInfo) SetPfdData(v PfdData)

SetPfdData gets a reference to the given PfdData and assigns it to the PfdData field.

func (*NefInfo) SetServedFqdnList ¶

func (o *NefInfo) SetServedFqdnList(v []string)

SetServedFqdnList gets a reference to the given []string and assigns it to the ServedFqdnList field.

func (*NefInfo) SetTaiList ¶

func (o *NefInfo) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (*NefInfo) SetTaiRangeList ¶

func (o *NefInfo) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (*NefInfo) SetUasNfFunctionalityInd ¶

func (o *NefInfo) SetUasNfFunctionalityInd(v bool)

SetUasNfFunctionalityInd gets a reference to the given bool and assigns it to the UasNfFunctionalityInd field.

func (*NefInfo) SetUnTrustAfInfoList ¶

func (o *NefInfo) SetUnTrustAfInfoList(v []UnTrustAfInfo)

SetUnTrustAfInfoList gets a reference to the given []UnTrustAfInfo and assigns it to the UnTrustAfInfoList field.

func (NefInfo) ToMap ¶

func (o NefInfo) ToMap() (map[string]interface{}, error)

type NetworkAreaInfo ¶

type NetworkAreaInfo struct {
	// Contains a list of E-UTRA cell identities.
	Ecgis []Ecgi `json:"ecgis,omitempty"`
	// Contains a list of NR cell identities.
	Ncgis []Ncgi `json:"ncgis,omitempty"`
	// Contains a list of NG RAN nodes.
	GRanNodeIds []GlobalRanNodeId `json:"gRanNodeIds,omitempty"`
	// Contains a list of tracking area identities.
	Tais []Tai `json:"tais,omitempty"`
}

NetworkAreaInfo Describes a network area information in which the NF service consumer requests the number of UEs.

func NewNetworkAreaInfo ¶

func NewNetworkAreaInfo() *NetworkAreaInfo

NewNetworkAreaInfo instantiates a new NetworkAreaInfo 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 NewNetworkAreaInfoWithDefaults ¶

func NewNetworkAreaInfoWithDefaults() *NetworkAreaInfo

NewNetworkAreaInfoWithDefaults instantiates a new NetworkAreaInfo 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 (*NetworkAreaInfo) GetEcgis ¶

func (o *NetworkAreaInfo) GetEcgis() []Ecgi

GetEcgis returns the Ecgis field value if set, zero value otherwise.

func (*NetworkAreaInfo) GetEcgisOk ¶

func (o *NetworkAreaInfo) GetEcgisOk() ([]Ecgi, bool)

GetEcgisOk returns a tuple with the Ecgis field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkAreaInfo) GetGRanNodeIds ¶

func (o *NetworkAreaInfo) GetGRanNodeIds() []GlobalRanNodeId

GetGRanNodeIds returns the GRanNodeIds field value if set, zero value otherwise.

func (*NetworkAreaInfo) GetGRanNodeIdsOk ¶

func (o *NetworkAreaInfo) GetGRanNodeIdsOk() ([]GlobalRanNodeId, bool)

GetGRanNodeIdsOk returns a tuple with the GRanNodeIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkAreaInfo) GetNcgis ¶

func (o *NetworkAreaInfo) GetNcgis() []Ncgi

GetNcgis returns the Ncgis field value if set, zero value otherwise.

func (*NetworkAreaInfo) GetNcgisOk ¶

func (o *NetworkAreaInfo) GetNcgisOk() ([]Ncgi, bool)

GetNcgisOk returns a tuple with the Ncgis field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkAreaInfo) GetTais ¶

func (o *NetworkAreaInfo) GetTais() []Tai

GetTais returns the Tais field value if set, zero value otherwise.

func (*NetworkAreaInfo) GetTaisOk ¶

func (o *NetworkAreaInfo) GetTaisOk() ([]Tai, bool)

GetTaisOk returns a tuple with the Tais field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkAreaInfo) HasEcgis ¶

func (o *NetworkAreaInfo) HasEcgis() bool

HasEcgis returns a boolean if a field has been set.

func (*NetworkAreaInfo) HasGRanNodeIds ¶

func (o *NetworkAreaInfo) HasGRanNodeIds() bool

HasGRanNodeIds returns a boolean if a field has been set.

func (*NetworkAreaInfo) HasNcgis ¶

func (o *NetworkAreaInfo) HasNcgis() bool

HasNcgis returns a boolean if a field has been set.

func (*NetworkAreaInfo) HasTais ¶

func (o *NetworkAreaInfo) HasTais() bool

HasTais returns a boolean if a field has been set.

func (NetworkAreaInfo) MarshalJSON ¶

func (o NetworkAreaInfo) MarshalJSON() ([]byte, error)

func (*NetworkAreaInfo) SetEcgis ¶

func (o *NetworkAreaInfo) SetEcgis(v []Ecgi)

SetEcgis gets a reference to the given []Ecgi and assigns it to the Ecgis field.

func (*NetworkAreaInfo) SetGRanNodeIds ¶

func (o *NetworkAreaInfo) SetGRanNodeIds(v []GlobalRanNodeId)

SetGRanNodeIds gets a reference to the given []GlobalRanNodeId and assigns it to the GRanNodeIds field.

func (*NetworkAreaInfo) SetNcgis ¶

func (o *NetworkAreaInfo) SetNcgis(v []Ncgi)

SetNcgis gets a reference to the given []Ncgi and assigns it to the Ncgis field.

func (*NetworkAreaInfo) SetTais ¶

func (o *NetworkAreaInfo) SetTais(v []Tai)

SetTais gets a reference to the given []Tai and assigns it to the Tais field.

func (NetworkAreaInfo) ToMap ¶

func (o NetworkAreaInfo) ToMap() (map[string]interface{}, error)

type NetworkAreaInfo1 ¶

type NetworkAreaInfo1 struct {
	// Contains a list of E-UTRA cell identities.
	Ecgis []Ecgi `json:"ecgis,omitempty"`
	// Contains a list of NR cell identities.
	Ncgis []Ncgi `json:"ncgis,omitempty"`
	// Contains a list of NG RAN nodes.
	GRanNodeIds []GlobalRanNodeId `json:"gRanNodeIds,omitempty"`
	// Contains a list of tracking area identities.
	Tais []Tai `json:"tais,omitempty"`
}

NetworkAreaInfo1 Describes a network area information in which the NF service consumer requests the number of UEs.

func NewNetworkAreaInfo1 ¶

func NewNetworkAreaInfo1() *NetworkAreaInfo1

NewNetworkAreaInfo1 instantiates a new NetworkAreaInfo1 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 NewNetworkAreaInfo1WithDefaults ¶

func NewNetworkAreaInfo1WithDefaults() *NetworkAreaInfo1

NewNetworkAreaInfo1WithDefaults instantiates a new NetworkAreaInfo1 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 (*NetworkAreaInfo1) GetEcgis ¶

func (o *NetworkAreaInfo1) GetEcgis() []Ecgi

GetEcgis returns the Ecgis field value if set, zero value otherwise.

func (*NetworkAreaInfo1) GetEcgisOk ¶

func (o *NetworkAreaInfo1) GetEcgisOk() ([]Ecgi, bool)

GetEcgisOk returns a tuple with the Ecgis field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkAreaInfo1) GetGRanNodeIds ¶

func (o *NetworkAreaInfo1) GetGRanNodeIds() []GlobalRanNodeId

GetGRanNodeIds returns the GRanNodeIds field value if set, zero value otherwise.

func (*NetworkAreaInfo1) GetGRanNodeIdsOk ¶

func (o *NetworkAreaInfo1) GetGRanNodeIdsOk() ([]GlobalRanNodeId, bool)

GetGRanNodeIdsOk returns a tuple with the GRanNodeIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkAreaInfo1) GetNcgis ¶

func (o *NetworkAreaInfo1) GetNcgis() []Ncgi

GetNcgis returns the Ncgis field value if set, zero value otherwise.

func (*NetworkAreaInfo1) GetNcgisOk ¶

func (o *NetworkAreaInfo1) GetNcgisOk() ([]Ncgi, bool)

GetNcgisOk returns a tuple with the Ncgis field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkAreaInfo1) GetTais ¶

func (o *NetworkAreaInfo1) GetTais() []Tai

GetTais returns the Tais field value if set, zero value otherwise.

func (*NetworkAreaInfo1) GetTaisOk ¶

func (o *NetworkAreaInfo1) GetTaisOk() ([]Tai, bool)

GetTaisOk returns a tuple with the Tais field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkAreaInfo1) HasEcgis ¶

func (o *NetworkAreaInfo1) HasEcgis() bool

HasEcgis returns a boolean if a field has been set.

func (*NetworkAreaInfo1) HasGRanNodeIds ¶

func (o *NetworkAreaInfo1) HasGRanNodeIds() bool

HasGRanNodeIds returns a boolean if a field has been set.

func (*NetworkAreaInfo1) HasNcgis ¶

func (o *NetworkAreaInfo1) HasNcgis() bool

HasNcgis returns a boolean if a field has been set.

func (*NetworkAreaInfo1) HasTais ¶

func (o *NetworkAreaInfo1) HasTais() bool

HasTais returns a boolean if a field has been set.

func (NetworkAreaInfo1) MarshalJSON ¶

func (o NetworkAreaInfo1) MarshalJSON() ([]byte, error)

func (*NetworkAreaInfo1) SetEcgis ¶

func (o *NetworkAreaInfo1) SetEcgis(v []Ecgi)

SetEcgis gets a reference to the given []Ecgi and assigns it to the Ecgis field.

func (*NetworkAreaInfo1) SetGRanNodeIds ¶

func (o *NetworkAreaInfo1) SetGRanNodeIds(v []GlobalRanNodeId)

SetGRanNodeIds gets a reference to the given []GlobalRanNodeId and assigns it to the GRanNodeIds field.

func (*NetworkAreaInfo1) SetNcgis ¶

func (o *NetworkAreaInfo1) SetNcgis(v []Ncgi)

SetNcgis gets a reference to the given []Ncgi and assigns it to the Ncgis field.

func (*NetworkAreaInfo1) SetTais ¶

func (o *NetworkAreaInfo1) SetTais(v []Tai)

SetTais gets a reference to the given []Tai and assigns it to the Tais field.

func (NetworkAreaInfo1) ToMap ¶

func (o NetworkAreaInfo1) ToMap() (map[string]interface{}, error)

type NetworkAssistanceSession ¶

type NetworkAssistanceSession struct {
	// String chosen by the 5GMS AF to serve as an identifier in a resource URI.
	NaSessionId                string                       `json:"naSessionId"`
	ServiceDataFlowDescription []ServiceDataFlowDescription `json:"serviceDataFlowDescription,omitempty"`
	// String chosen by the 5GMS AF to serve as an identifier in a resource URI.
	PolicyTemplateId *string             `json:"policyTemplateId,omitempty"`
	RequestedQoS     *M5QoSSpecification `json:"requestedQoS,omitempty"`
	RecommendedQoS   *M5QoSSpecification `json:"recommendedQoS,omitempty"`
	// Uniform Resource Locator, comforming with the URI Generic Syntax specified in IETF RFC 3986.
	NotficationURL *string `json:"notficationURL,omitempty"`
}

NetworkAssistanceSession A representation of a Network Assistance Session resource.

func NewNetworkAssistanceSession ¶

func NewNetworkAssistanceSession(naSessionId string) *NetworkAssistanceSession

NewNetworkAssistanceSession instantiates a new NetworkAssistanceSession 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 NewNetworkAssistanceSessionWithDefaults ¶

func NewNetworkAssistanceSessionWithDefaults() *NetworkAssistanceSession

NewNetworkAssistanceSessionWithDefaults instantiates a new NetworkAssistanceSession 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 (*NetworkAssistanceSession) GetNaSessionId ¶

func (o *NetworkAssistanceSession) GetNaSessionId() string

GetNaSessionId returns the NaSessionId field value

func (*NetworkAssistanceSession) GetNaSessionIdOk ¶

func (o *NetworkAssistanceSession) GetNaSessionIdOk() (*string, bool)

GetNaSessionIdOk returns a tuple with the NaSessionId field value and a boolean to check if the value has been set.

func (*NetworkAssistanceSession) GetNotficationURL ¶

func (o *NetworkAssistanceSession) GetNotficationURL() string

GetNotficationURL returns the NotficationURL field value if set, zero value otherwise.

func (*NetworkAssistanceSession) GetNotficationURLOk ¶

func (o *NetworkAssistanceSession) GetNotficationURLOk() (*string, bool)

GetNotficationURLOk returns a tuple with the NotficationURL field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkAssistanceSession) GetPolicyTemplateId ¶

func (o *NetworkAssistanceSession) GetPolicyTemplateId() string

GetPolicyTemplateId returns the PolicyTemplateId field value if set, zero value otherwise.

func (*NetworkAssistanceSession) GetPolicyTemplateIdOk ¶

func (o *NetworkAssistanceSession) GetPolicyTemplateIdOk() (*string, bool)

GetPolicyTemplateIdOk returns a tuple with the PolicyTemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkAssistanceSession) GetRecommendedQoS ¶

func (o *NetworkAssistanceSession) GetRecommendedQoS() M5QoSSpecification

GetRecommendedQoS returns the RecommendedQoS field value if set, zero value otherwise.

func (*NetworkAssistanceSession) GetRecommendedQoSOk ¶

func (o *NetworkAssistanceSession) GetRecommendedQoSOk() (*M5QoSSpecification, bool)

GetRecommendedQoSOk returns a tuple with the RecommendedQoS field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkAssistanceSession) GetRequestedQoS ¶

func (o *NetworkAssistanceSession) GetRequestedQoS() M5QoSSpecification

GetRequestedQoS returns the RequestedQoS field value if set, zero value otherwise.

func (*NetworkAssistanceSession) GetRequestedQoSOk ¶

func (o *NetworkAssistanceSession) GetRequestedQoSOk() (*M5QoSSpecification, bool)

GetRequestedQoSOk returns a tuple with the RequestedQoS field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkAssistanceSession) GetServiceDataFlowDescription ¶

func (o *NetworkAssistanceSession) GetServiceDataFlowDescription() []ServiceDataFlowDescription

GetServiceDataFlowDescription returns the ServiceDataFlowDescription field value if set, zero value otherwise.

func (*NetworkAssistanceSession) GetServiceDataFlowDescriptionOk ¶

func (o *NetworkAssistanceSession) GetServiceDataFlowDescriptionOk() ([]ServiceDataFlowDescription, bool)

GetServiceDataFlowDescriptionOk returns a tuple with the ServiceDataFlowDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkAssistanceSession) HasNotficationURL ¶

func (o *NetworkAssistanceSession) HasNotficationURL() bool

HasNotficationURL returns a boolean if a field has been set.

func (*NetworkAssistanceSession) HasPolicyTemplateId ¶

func (o *NetworkAssistanceSession) HasPolicyTemplateId() bool

HasPolicyTemplateId returns a boolean if a field has been set.

func (*NetworkAssistanceSession) HasRecommendedQoS ¶

func (o *NetworkAssistanceSession) HasRecommendedQoS() bool

HasRecommendedQoS returns a boolean if a field has been set.

func (*NetworkAssistanceSession) HasRequestedQoS ¶

func (o *NetworkAssistanceSession) HasRequestedQoS() bool

HasRequestedQoS returns a boolean if a field has been set.

func (*NetworkAssistanceSession) HasServiceDataFlowDescription ¶

func (o *NetworkAssistanceSession) HasServiceDataFlowDescription() bool

HasServiceDataFlowDescription returns a boolean if a field has been set.

func (NetworkAssistanceSession) MarshalJSON ¶

func (o NetworkAssistanceSession) MarshalJSON() ([]byte, error)

func (*NetworkAssistanceSession) SetNaSessionId ¶

func (o *NetworkAssistanceSession) SetNaSessionId(v string)

SetNaSessionId sets field value

func (*NetworkAssistanceSession) SetNotficationURL ¶

func (o *NetworkAssistanceSession) SetNotficationURL(v string)

SetNotficationURL gets a reference to the given string and assigns it to the NotficationURL field.

func (*NetworkAssistanceSession) SetPolicyTemplateId ¶

func (o *NetworkAssistanceSession) SetPolicyTemplateId(v string)

SetPolicyTemplateId gets a reference to the given string and assigns it to the PolicyTemplateId field.

func (*NetworkAssistanceSession) SetRecommendedQoS ¶

func (o *NetworkAssistanceSession) SetRecommendedQoS(v M5QoSSpecification)

SetRecommendedQoS gets a reference to the given M5QoSSpecification and assigns it to the RecommendedQoS field.

func (*NetworkAssistanceSession) SetRequestedQoS ¶

func (o *NetworkAssistanceSession) SetRequestedQoS(v M5QoSSpecification)

SetRequestedQoS gets a reference to the given M5QoSSpecification and assigns it to the RequestedQoS field.

func (*NetworkAssistanceSession) SetServiceDataFlowDescription ¶

func (o *NetworkAssistanceSession) SetServiceDataFlowDescription(v []ServiceDataFlowDescription)

SetServiceDataFlowDescription gets a reference to the given []ServiceDataFlowDescription and assigns it to the ServiceDataFlowDescription field.

func (NetworkAssistanceSession) ToMap ¶

func (o NetworkAssistanceSession) ToMap() (map[string]interface{}, error)

type NetworkNodeDiameterAddress ¶

type NetworkNodeDiameterAddress struct {
	// Fully Qualified Domain Name
	Name string `json:"name"`
	// Fully Qualified Domain Name
	Realm string `json:"realm"`
}

NetworkNodeDiameterAddress struct for NetworkNodeDiameterAddress

func NewNetworkNodeDiameterAddress ¶

func NewNetworkNodeDiameterAddress(name string, realm string) *NetworkNodeDiameterAddress

NewNetworkNodeDiameterAddress instantiates a new NetworkNodeDiameterAddress 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 NewNetworkNodeDiameterAddressWithDefaults ¶

func NewNetworkNodeDiameterAddressWithDefaults() *NetworkNodeDiameterAddress

NewNetworkNodeDiameterAddressWithDefaults instantiates a new NetworkNodeDiameterAddress 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 (*NetworkNodeDiameterAddress) GetName ¶

func (o *NetworkNodeDiameterAddress) GetName() string

GetName returns the Name field value

func (*NetworkNodeDiameterAddress) GetNameOk ¶

func (o *NetworkNodeDiameterAddress) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*NetworkNodeDiameterAddress) GetRealm ¶

func (o *NetworkNodeDiameterAddress) GetRealm() string

GetRealm returns the Realm field value

func (*NetworkNodeDiameterAddress) GetRealmOk ¶

func (o *NetworkNodeDiameterAddress) GetRealmOk() (*string, bool)

GetRealmOk returns a tuple with the Realm field value and a boolean to check if the value has been set.

func (NetworkNodeDiameterAddress) MarshalJSON ¶

func (o NetworkNodeDiameterAddress) MarshalJSON() ([]byte, error)

func (*NetworkNodeDiameterAddress) SetName ¶

func (o *NetworkNodeDiameterAddress) SetName(v string)

SetName sets field value

func (*NetworkNodeDiameterAddress) SetRealm ¶

func (o *NetworkNodeDiameterAddress) SetRealm(v string)

SetRealm sets field value

func (NetworkNodeDiameterAddress) ToMap ¶

func (o NetworkNodeDiameterAddress) ToMap() (map[string]interface{}, error)

type NetworkPerfInfo ¶

type NetworkPerfInfo struct {
	NetworkArea *NetworkAreaInfo `json:"networkArea,omitempty"`
	NwPerfType  *NetworkPerfType `json:"nwPerfType,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	RelativeRatio *int32 `json:"relativeRatio,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	AbsoluteNum *int32 `json:"absoluteNum,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Confidence *int32 `json:"confidence,omitempty"`
}

NetworkPerfInfo Represents the network performance information.

func NewNetworkPerfInfo ¶

func NewNetworkPerfInfo() *NetworkPerfInfo

NewNetworkPerfInfo instantiates a new NetworkPerfInfo 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 NewNetworkPerfInfoWithDefaults ¶

func NewNetworkPerfInfoWithDefaults() *NetworkPerfInfo

NewNetworkPerfInfoWithDefaults instantiates a new NetworkPerfInfo 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 (*NetworkPerfInfo) GetAbsoluteNum ¶

func (o *NetworkPerfInfo) GetAbsoluteNum() int32

GetAbsoluteNum returns the AbsoluteNum field value if set, zero value otherwise.

func (*NetworkPerfInfo) GetAbsoluteNumOk ¶

func (o *NetworkPerfInfo) GetAbsoluteNumOk() (*int32, bool)

GetAbsoluteNumOk returns a tuple with the AbsoluteNum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkPerfInfo) GetConfidence ¶

func (o *NetworkPerfInfo) GetConfidence() int32

GetConfidence returns the Confidence field value if set, zero value otherwise.

func (*NetworkPerfInfo) GetConfidenceOk ¶

func (o *NetworkPerfInfo) GetConfidenceOk() (*int32, bool)

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 (*NetworkPerfInfo) GetNetworkArea ¶

func (o *NetworkPerfInfo) GetNetworkArea() NetworkAreaInfo

GetNetworkArea returns the NetworkArea field value if set, zero value otherwise.

func (*NetworkPerfInfo) GetNetworkAreaOk ¶

func (o *NetworkPerfInfo) GetNetworkAreaOk() (*NetworkAreaInfo, bool)

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 (*NetworkPerfInfo) GetNwPerfType ¶

func (o *NetworkPerfInfo) GetNwPerfType() NetworkPerfType

GetNwPerfType returns the NwPerfType field value if set, zero value otherwise.

func (*NetworkPerfInfo) GetNwPerfTypeOk ¶

func (o *NetworkPerfInfo) GetNwPerfTypeOk() (*NetworkPerfType, bool)

GetNwPerfTypeOk returns a tuple with the NwPerfType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkPerfInfo) GetRelativeRatio ¶

func (o *NetworkPerfInfo) GetRelativeRatio() int32

GetRelativeRatio returns the RelativeRatio field value if set, zero value otherwise.

func (*NetworkPerfInfo) GetRelativeRatioOk ¶

func (o *NetworkPerfInfo) GetRelativeRatioOk() (*int32, bool)

GetRelativeRatioOk returns a tuple with the RelativeRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkPerfInfo) HasAbsoluteNum ¶

func (o *NetworkPerfInfo) HasAbsoluteNum() bool

HasAbsoluteNum returns a boolean if a field has been set.

func (*NetworkPerfInfo) HasConfidence ¶

func (o *NetworkPerfInfo) HasConfidence() bool

HasConfidence returns a boolean if a field has been set.

func (*NetworkPerfInfo) HasNetworkArea ¶

func (o *NetworkPerfInfo) HasNetworkArea() bool

HasNetworkArea returns a boolean if a field has been set.

func (*NetworkPerfInfo) HasNwPerfType ¶

func (o *NetworkPerfInfo) HasNwPerfType() bool

HasNwPerfType returns a boolean if a field has been set.

func (*NetworkPerfInfo) HasRelativeRatio ¶

func (o *NetworkPerfInfo) HasRelativeRatio() bool

HasRelativeRatio returns a boolean if a field has been set.

func (NetworkPerfInfo) MarshalJSON ¶

func (o NetworkPerfInfo) MarshalJSON() ([]byte, error)

func (*NetworkPerfInfo) SetAbsoluteNum ¶

func (o *NetworkPerfInfo) SetAbsoluteNum(v int32)

SetAbsoluteNum gets a reference to the given int32 and assigns it to the AbsoluteNum field.

func (*NetworkPerfInfo) SetConfidence ¶

func (o *NetworkPerfInfo) SetConfidence(v int32)

SetConfidence gets a reference to the given int32 and assigns it to the Confidence field.

func (*NetworkPerfInfo) SetNetworkArea ¶

func (o *NetworkPerfInfo) SetNetworkArea(v NetworkAreaInfo)

SetNetworkArea gets a reference to the given NetworkAreaInfo and assigns it to the NetworkArea field.

func (*NetworkPerfInfo) SetNwPerfType ¶

func (o *NetworkPerfInfo) SetNwPerfType(v NetworkPerfType)

SetNwPerfType gets a reference to the given NetworkPerfType and assigns it to the NwPerfType field.

func (*NetworkPerfInfo) SetRelativeRatio ¶

func (o *NetworkPerfInfo) SetRelativeRatio(v int32)

SetRelativeRatio gets a reference to the given int32 and assigns it to the RelativeRatio field.

func (NetworkPerfInfo) ToMap ¶

func (o NetworkPerfInfo) ToMap() (map[string]interface{}, error)

type NetworkPerfRequirement ¶

type NetworkPerfRequirement struct {
	NwPerfType NetworkPerfType `json:"nwPerfType"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	RelativeRatio *int32 `json:"relativeRatio,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	AbsoluteNum *int32 `json:"absoluteNum,omitempty"`
}

NetworkPerfRequirement Represents a network performance requirement.

func NewNetworkPerfRequirement ¶

func NewNetworkPerfRequirement(nwPerfType NetworkPerfType) *NetworkPerfRequirement

NewNetworkPerfRequirement instantiates a new NetworkPerfRequirement 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 NewNetworkPerfRequirementWithDefaults ¶

func NewNetworkPerfRequirementWithDefaults() *NetworkPerfRequirement

NewNetworkPerfRequirementWithDefaults instantiates a new NetworkPerfRequirement 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 (*NetworkPerfRequirement) GetAbsoluteNum ¶

func (o *NetworkPerfRequirement) GetAbsoluteNum() int32

GetAbsoluteNum returns the AbsoluteNum field value if set, zero value otherwise.

func (*NetworkPerfRequirement) GetAbsoluteNumOk ¶

func (o *NetworkPerfRequirement) GetAbsoluteNumOk() (*int32, bool)

GetAbsoluteNumOk returns a tuple with the AbsoluteNum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkPerfRequirement) GetNwPerfType ¶

func (o *NetworkPerfRequirement) GetNwPerfType() NetworkPerfType

GetNwPerfType returns the NwPerfType field value

func (*NetworkPerfRequirement) GetNwPerfTypeOk ¶

func (o *NetworkPerfRequirement) GetNwPerfTypeOk() (*NetworkPerfType, bool)

GetNwPerfTypeOk returns a tuple with the NwPerfType field value and a boolean to check if the value has been set.

func (*NetworkPerfRequirement) GetRelativeRatio ¶

func (o *NetworkPerfRequirement) GetRelativeRatio() int32

GetRelativeRatio returns the RelativeRatio field value if set, zero value otherwise.

func (*NetworkPerfRequirement) GetRelativeRatioOk ¶

func (o *NetworkPerfRequirement) GetRelativeRatioOk() (*int32, bool)

GetRelativeRatioOk returns a tuple with the RelativeRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkPerfRequirement) HasAbsoluteNum ¶

func (o *NetworkPerfRequirement) HasAbsoluteNum() bool

HasAbsoluteNum returns a boolean if a field has been set.

func (*NetworkPerfRequirement) HasRelativeRatio ¶

func (o *NetworkPerfRequirement) HasRelativeRatio() bool

HasRelativeRatio returns a boolean if a field has been set.

func (NetworkPerfRequirement) MarshalJSON ¶

func (o NetworkPerfRequirement) MarshalJSON() ([]byte, error)

func (*NetworkPerfRequirement) SetAbsoluteNum ¶

func (o *NetworkPerfRequirement) SetAbsoluteNum(v int32)

SetAbsoluteNum gets a reference to the given int32 and assigns it to the AbsoluteNum field.

func (*NetworkPerfRequirement) SetNwPerfType ¶

func (o *NetworkPerfRequirement) SetNwPerfType(v NetworkPerfType)

SetNwPerfType sets field value

func (*NetworkPerfRequirement) SetRelativeRatio ¶

func (o *NetworkPerfRequirement) SetRelativeRatio(v int32)

SetRelativeRatio gets a reference to the given int32 and assigns it to the RelativeRatio field.

func (NetworkPerfRequirement) ToMap ¶

func (o NetworkPerfRequirement) ToMap() (map[string]interface{}, error)

type NetworkPerfType ¶

type NetworkPerfType struct {
	String *string
}

NetworkPerfType Possible values are: - GNB_ACTIVE_RATIO: Indicates that the network performance requirement is gNodeB active (i.e. up and running) rate. Indicates the ratio of gNB active (i.e. up and running) number to the total number of gNB - GNB_COMPUTING_USAGE: Indicates gNodeB computing resource usage. - GNB_MEMORY_USAGE: Indicates gNodeB memory usage. - GNB_DISK_USAGE: Indicates gNodeB disk usage. - NUM_OF_UE: Indicates number of UEs. - SESS_SUCC_RATIO: Indicates ratio of successful setup of PDU sessions to total PDU session setup attempts. - HO_SUCC_RATIO: Indicates Ratio of successful handovers to the total handover attempts.

func (*NetworkPerfType) MarshalJSON ¶

func (src *NetworkPerfType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NetworkPerfType) UnmarshalJSON ¶

func (dst *NetworkPerfType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NetworkSliceCond ¶

type NetworkSliceCond struct {
	SnssaiList []Snssai `json:"snssaiList"`
	NsiList    []string `json:"nsiList,omitempty"`
}

NetworkSliceCond Subscription to a set of NFs, based on the slices (S-NSSAI and NSI) they support

func NewNetworkSliceCond ¶

func NewNetworkSliceCond(snssaiList []Snssai) *NetworkSliceCond

NewNetworkSliceCond instantiates a new NetworkSliceCond 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 NewNetworkSliceCondWithDefaults ¶

func NewNetworkSliceCondWithDefaults() *NetworkSliceCond

NewNetworkSliceCondWithDefaults instantiates a new NetworkSliceCond 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 (*NetworkSliceCond) GetNsiList ¶

func (o *NetworkSliceCond) GetNsiList() []string

GetNsiList returns the NsiList field value if set, zero value otherwise.

func (*NetworkSliceCond) GetNsiListOk ¶

func (o *NetworkSliceCond) GetNsiListOk() ([]string, bool)

GetNsiListOk returns a tuple with the NsiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NetworkSliceCond) GetSnssaiList ¶

func (o *NetworkSliceCond) GetSnssaiList() []Snssai

GetSnssaiList returns the SnssaiList field value

func (*NetworkSliceCond) GetSnssaiListOk ¶

func (o *NetworkSliceCond) GetSnssaiListOk() ([]Snssai, bool)

GetSnssaiListOk returns a tuple with the SnssaiList field value and a boolean to check if the value has been set.

func (*NetworkSliceCond) HasNsiList ¶

func (o *NetworkSliceCond) HasNsiList() bool

HasNsiList returns a boolean if a field has been set.

func (NetworkSliceCond) MarshalJSON ¶

func (o NetworkSliceCond) MarshalJSON() ([]byte, error)

func (*NetworkSliceCond) SetNsiList ¶

func (o *NetworkSliceCond) SetNsiList(v []string)

SetNsiList gets a reference to the given []string and assigns it to the NsiList field.

func (*NetworkSliceCond) SetSnssaiList ¶

func (o *NetworkSliceCond) SetSnssaiList(v []Snssai)

SetSnssaiList sets field value

func (NetworkSliceCond) ToMap ¶

func (o NetworkSliceCond) ToMap() (map[string]interface{}, error)

type NfGroupCond ¶

type NfGroupCond struct {
	NfType string `json:"nfType"`
	// Identifier of a group of NFs.
	NfGroupId string `json:"nfGroupId"`
}

NfGroupCond Subscription to a set of NFs based on their Group Id

func NewNfGroupCond ¶

func NewNfGroupCond(nfType string, nfGroupId string) *NfGroupCond

NewNfGroupCond instantiates a new NfGroupCond 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 NewNfGroupCondWithDefaults ¶

func NewNfGroupCondWithDefaults() *NfGroupCond

NewNfGroupCondWithDefaults instantiates a new NfGroupCond 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 (*NfGroupCond) GetNfGroupId ¶

func (o *NfGroupCond) GetNfGroupId() string

GetNfGroupId returns the NfGroupId field value

func (*NfGroupCond) GetNfGroupIdOk ¶

func (o *NfGroupCond) GetNfGroupIdOk() (*string, bool)

GetNfGroupIdOk returns a tuple with the NfGroupId field value and a boolean to check if the value has been set.

func (*NfGroupCond) GetNfType ¶

func (o *NfGroupCond) GetNfType() string

GetNfType returns the NfType field value

func (*NfGroupCond) GetNfTypeOk ¶

func (o *NfGroupCond) GetNfTypeOk() (*string, bool)

GetNfTypeOk returns a tuple with the NfType field value and a boolean to check if the value has been set.

func (NfGroupCond) MarshalJSON ¶

func (o NfGroupCond) MarshalJSON() ([]byte, error)

func (*NfGroupCond) SetNfGroupId ¶

func (o *NfGroupCond) SetNfGroupId(v string)

SetNfGroupId sets field value

func (*NfGroupCond) SetNfType ¶

func (o *NfGroupCond) SetNfType(v string)

SetNfType sets field value

func (NfGroupCond) ToMap ¶

func (o NfGroupCond) ToMap() (map[string]interface{}, error)

type NfGroupListCond ¶

type NfGroupListCond struct {
	ConditionType string   `json:"conditionType"`
	NfType        string   `json:"nfType"`
	NfGroupIdList []string `json:"nfGroupIdList"`
}

NfGroupListCond Subscription to a set of NFs based on their Group Ids

func NewNfGroupListCond ¶

func NewNfGroupListCond(conditionType string, nfType string, nfGroupIdList []string) *NfGroupListCond

NewNfGroupListCond instantiates a new NfGroupListCond 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 NewNfGroupListCondWithDefaults ¶

func NewNfGroupListCondWithDefaults() *NfGroupListCond

NewNfGroupListCondWithDefaults instantiates a new NfGroupListCond 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 (*NfGroupListCond) GetConditionType ¶

func (o *NfGroupListCond) GetConditionType() string

GetConditionType returns the ConditionType field value

func (*NfGroupListCond) GetConditionTypeOk ¶

func (o *NfGroupListCond) GetConditionTypeOk() (*string, bool)

GetConditionTypeOk returns a tuple with the ConditionType field value and a boolean to check if the value has been set.

func (*NfGroupListCond) GetNfGroupIdList ¶

func (o *NfGroupListCond) GetNfGroupIdList() []string

GetNfGroupIdList returns the NfGroupIdList field value

func (*NfGroupListCond) GetNfGroupIdListOk ¶

func (o *NfGroupListCond) GetNfGroupIdListOk() ([]string, bool)

GetNfGroupIdListOk returns a tuple with the NfGroupIdList field value and a boolean to check if the value has been set.

func (*NfGroupListCond) GetNfType ¶

func (o *NfGroupListCond) GetNfType() string

GetNfType returns the NfType field value

func (*NfGroupListCond) GetNfTypeOk ¶

func (o *NfGroupListCond) GetNfTypeOk() (*string, bool)

GetNfTypeOk returns a tuple with the NfType field value and a boolean to check if the value has been set.

func (NfGroupListCond) MarshalJSON ¶

func (o NfGroupListCond) MarshalJSON() ([]byte, error)

func (*NfGroupListCond) SetConditionType ¶

func (o *NfGroupListCond) SetConditionType(v string)

SetConditionType sets field value

func (*NfGroupListCond) SetNfGroupIdList ¶

func (o *NfGroupListCond) SetNfGroupIdList(v []string)

SetNfGroupIdList sets field value

func (*NfGroupListCond) SetNfType ¶

func (o *NfGroupListCond) SetNfType(v string)

SetNfType sets field value

func (NfGroupListCond) ToMap ¶

func (o NfGroupListCond) ToMap() (map[string]interface{}, error)

type NfInfo ¶

type NfInfo struct {
	NfType *NFType `json:"nfType,omitempty"`
}

NfInfo Information of a generic NF Instance

func NewNfInfo ¶

func NewNfInfo() *NfInfo

NewNfInfo instantiates a new NfInfo 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 NewNfInfoWithDefaults ¶

func NewNfInfoWithDefaults() *NfInfo

NewNfInfoWithDefaults instantiates a new NfInfo 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 (*NfInfo) GetNfType ¶

func (o *NfInfo) GetNfType() NFType

GetNfType returns the NfType field value if set, zero value otherwise.

func (*NfInfo) GetNfTypeOk ¶

func (o *NfInfo) GetNfTypeOk() (*NFType, bool)

GetNfTypeOk returns a tuple with the NfType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NfInfo) HasNfType ¶

func (o *NfInfo) HasNfType() bool

HasNfType returns a boolean if a field has been set.

func (NfInfo) MarshalJSON ¶

func (o NfInfo) MarshalJSON() ([]byte, error)

func (*NfInfo) SetNfType ¶

func (o *NfInfo) SetNfType(v NFType)

SetNfType gets a reference to the given NFType and assigns it to the NfType field.

func (NfInfo) ToMap ¶

func (o NfInfo) ToMap() (map[string]interface{}, error)

type NfInstanceIdCond ¶

type NfInstanceIdCond struct {
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	NfInstanceId string `json:"nfInstanceId"`
}

NfInstanceIdCond Subscription to a given NF Instance Id

func NewNfInstanceIdCond ¶

func NewNfInstanceIdCond(nfInstanceId string) *NfInstanceIdCond

NewNfInstanceIdCond instantiates a new NfInstanceIdCond 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 NewNfInstanceIdCondWithDefaults ¶

func NewNfInstanceIdCondWithDefaults() *NfInstanceIdCond

NewNfInstanceIdCondWithDefaults instantiates a new NfInstanceIdCond 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 (*NfInstanceIdCond) GetNfInstanceId ¶

func (o *NfInstanceIdCond) GetNfInstanceId() string

GetNfInstanceId returns the NfInstanceId field value

func (*NfInstanceIdCond) GetNfInstanceIdOk ¶

func (o *NfInstanceIdCond) GetNfInstanceIdOk() (*string, bool)

GetNfInstanceIdOk returns a tuple with the NfInstanceId field value and a boolean to check if the value has been set.

func (NfInstanceIdCond) MarshalJSON ¶

func (o NfInstanceIdCond) MarshalJSON() ([]byte, error)

func (*NfInstanceIdCond) SetNfInstanceId ¶

func (o *NfInstanceIdCond) SetNfInstanceId(v string)

SetNfInstanceId sets field value

func (NfInstanceIdCond) ToMap ¶

func (o NfInstanceIdCond) ToMap() (map[string]interface{}, error)

type NfInstanceIdListCond ¶

type NfInstanceIdListCond struct {
	NfInstanceIdList []string `json:"nfInstanceIdList"`
}

NfInstanceIdListCond Subscription to a list of NF Instances

func NewNfInstanceIdListCond ¶

func NewNfInstanceIdListCond(nfInstanceIdList []string) *NfInstanceIdListCond

NewNfInstanceIdListCond instantiates a new NfInstanceIdListCond 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 NewNfInstanceIdListCondWithDefaults ¶

func NewNfInstanceIdListCondWithDefaults() *NfInstanceIdListCond

NewNfInstanceIdListCondWithDefaults instantiates a new NfInstanceIdListCond 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 (*NfInstanceIdListCond) GetNfInstanceIdList ¶

func (o *NfInstanceIdListCond) GetNfInstanceIdList() []string

GetNfInstanceIdList returns the NfInstanceIdList field value

func (*NfInstanceIdListCond) GetNfInstanceIdListOk ¶

func (o *NfInstanceIdListCond) GetNfInstanceIdListOk() ([]string, bool)

GetNfInstanceIdListOk returns a tuple with the NfInstanceIdList field value and a boolean to check if the value has been set.

func (NfInstanceIdListCond) MarshalJSON ¶

func (o NfInstanceIdListCond) MarshalJSON() ([]byte, error)

func (*NfInstanceIdListCond) SetNfInstanceIdList ¶

func (o *NfInstanceIdListCond) SetNfInstanceIdList(v []string)

SetNfInstanceIdList sets field value

func (NfInstanceIdListCond) ToMap ¶

func (o NfInstanceIdListCond) ToMap() (map[string]interface{}, error)

type NfLoadLevelInformation ¶

type NfLoadLevelInformation struct {
	NfType *NFType `json:"nfType,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	NfInstanceId *string `json:"nfInstanceId,omitempty"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	NfSetId            *string   `json:"nfSetId,omitempty"`
	NfStatus           *NfStatus `json:"nfStatus,omitempty"`
	NfCpuUsage         *int32    `json:"nfCpuUsage,omitempty"`
	NfMemoryUsage      *int32    `json:"nfMemoryUsage,omitempty"`
	NfStorageUsage     *int32    `json:"nfStorageUsage,omitempty"`
	NfLoadLevelAverage *int32    `json:"nfLoadLevelAverage,omitempty"`
	NfLoadLevelpeak    *int32    `json:"nfLoadLevelpeak,omitempty"`
	NfLoadAvgInAoi     *int32    `json:"nfLoadAvgInAoi,omitempty"`
	Snssai             *Snssai   `json:"snssai,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Confidence *int32 `json:"confidence,omitempty"`
}

NfLoadLevelInformation Represents load level information of a given NF instance.

func NewNfLoadLevelInformation ¶

func NewNfLoadLevelInformation() *NfLoadLevelInformation

NewNfLoadLevelInformation instantiates a new NfLoadLevelInformation 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 NewNfLoadLevelInformationWithDefaults ¶

func NewNfLoadLevelInformationWithDefaults() *NfLoadLevelInformation

NewNfLoadLevelInformationWithDefaults instantiates a new NfLoadLevelInformation 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 (*NfLoadLevelInformation) GetConfidence ¶

func (o *NfLoadLevelInformation) GetConfidence() int32

GetConfidence returns the Confidence field value if set, zero value otherwise.

func (*NfLoadLevelInformation) GetConfidenceOk ¶

func (o *NfLoadLevelInformation) GetConfidenceOk() (*int32, bool)

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 (*NfLoadLevelInformation) GetNfCpuUsage ¶

func (o *NfLoadLevelInformation) GetNfCpuUsage() int32

GetNfCpuUsage returns the NfCpuUsage field value if set, zero value otherwise.

func (*NfLoadLevelInformation) GetNfCpuUsageOk ¶

func (o *NfLoadLevelInformation) GetNfCpuUsageOk() (*int32, bool)

GetNfCpuUsageOk returns a tuple with the NfCpuUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NfLoadLevelInformation) GetNfInstanceId ¶

func (o *NfLoadLevelInformation) GetNfInstanceId() string

GetNfInstanceId returns the NfInstanceId field value if set, zero value otherwise.

func (*NfLoadLevelInformation) GetNfInstanceIdOk ¶

func (o *NfLoadLevelInformation) GetNfInstanceIdOk() (*string, bool)

GetNfInstanceIdOk returns a tuple with the NfInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NfLoadLevelInformation) GetNfLoadAvgInAoi ¶

func (o *NfLoadLevelInformation) GetNfLoadAvgInAoi() int32

GetNfLoadAvgInAoi returns the NfLoadAvgInAoi field value if set, zero value otherwise.

func (*NfLoadLevelInformation) GetNfLoadAvgInAoiOk ¶

func (o *NfLoadLevelInformation) GetNfLoadAvgInAoiOk() (*int32, bool)

GetNfLoadAvgInAoiOk returns a tuple with the NfLoadAvgInAoi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NfLoadLevelInformation) GetNfLoadLevelAverage ¶

func (o *NfLoadLevelInformation) GetNfLoadLevelAverage() int32

GetNfLoadLevelAverage returns the NfLoadLevelAverage field value if set, zero value otherwise.

func (*NfLoadLevelInformation) GetNfLoadLevelAverageOk ¶

func (o *NfLoadLevelInformation) GetNfLoadLevelAverageOk() (*int32, bool)

GetNfLoadLevelAverageOk returns a tuple with the NfLoadLevelAverage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NfLoadLevelInformation) GetNfLoadLevelpeak ¶

func (o *NfLoadLevelInformation) GetNfLoadLevelpeak() int32

GetNfLoadLevelpeak returns the NfLoadLevelpeak field value if set, zero value otherwise.

func (*NfLoadLevelInformation) GetNfLoadLevelpeakOk ¶

func (o *NfLoadLevelInformation) GetNfLoadLevelpeakOk() (*int32, bool)

GetNfLoadLevelpeakOk returns a tuple with the NfLoadLevelpeak field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NfLoadLevelInformation) GetNfMemoryUsage ¶

func (o *NfLoadLevelInformation) GetNfMemoryUsage() int32

GetNfMemoryUsage returns the NfMemoryUsage field value if set, zero value otherwise.

func (*NfLoadLevelInformation) GetNfMemoryUsageOk ¶

func (o *NfLoadLevelInformation) GetNfMemoryUsageOk() (*int32, bool)

GetNfMemoryUsageOk returns a tuple with the NfMemoryUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NfLoadLevelInformation) GetNfSetId ¶

func (o *NfLoadLevelInformation) GetNfSetId() string

GetNfSetId returns the NfSetId field value if set, zero value otherwise.

func (*NfLoadLevelInformation) GetNfSetIdOk ¶

func (o *NfLoadLevelInformation) GetNfSetIdOk() (*string, bool)

GetNfSetIdOk returns a tuple with the NfSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NfLoadLevelInformation) GetNfStatus ¶

func (o *NfLoadLevelInformation) GetNfStatus() NfStatus

GetNfStatus returns the NfStatus field value if set, zero value otherwise.

func (*NfLoadLevelInformation) GetNfStatusOk ¶

func (o *NfLoadLevelInformation) GetNfStatusOk() (*NfStatus, bool)

GetNfStatusOk returns a tuple with the NfStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NfLoadLevelInformation) GetNfStorageUsage ¶

func (o *NfLoadLevelInformation) GetNfStorageUsage() int32

GetNfStorageUsage returns the NfStorageUsage field value if set, zero value otherwise.

func (*NfLoadLevelInformation) GetNfStorageUsageOk ¶

func (o *NfLoadLevelInformation) GetNfStorageUsageOk() (*int32, bool)

GetNfStorageUsageOk returns a tuple with the NfStorageUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NfLoadLevelInformation) GetNfType ¶

func (o *NfLoadLevelInformation) GetNfType() NFType

GetNfType returns the NfType field value if set, zero value otherwise.

func (*NfLoadLevelInformation) GetNfTypeOk ¶

func (o *NfLoadLevelInformation) GetNfTypeOk() (*NFType, bool)

GetNfTypeOk returns a tuple with the NfType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NfLoadLevelInformation) GetSnssai ¶

func (o *NfLoadLevelInformation) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*NfLoadLevelInformation) GetSnssaiOk ¶

func (o *NfLoadLevelInformation) GetSnssaiOk() (*Snssai, bool)

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 (*NfLoadLevelInformation) HasConfidence ¶

func (o *NfLoadLevelInformation) HasConfidence() bool

HasConfidence returns a boolean if a field has been set.

func (*NfLoadLevelInformation) HasNfCpuUsage ¶

func (o *NfLoadLevelInformation) HasNfCpuUsage() bool

HasNfCpuUsage returns a boolean if a field has been set.

func (*NfLoadLevelInformation) HasNfInstanceId ¶

func (o *NfLoadLevelInformation) HasNfInstanceId() bool

HasNfInstanceId returns a boolean if a field has been set.

func (*NfLoadLevelInformation) HasNfLoadAvgInAoi ¶

func (o *NfLoadLevelInformation) HasNfLoadAvgInAoi() bool

HasNfLoadAvgInAoi returns a boolean if a field has been set.

func (*NfLoadLevelInformation) HasNfLoadLevelAverage ¶

func (o *NfLoadLevelInformation) HasNfLoadLevelAverage() bool

HasNfLoadLevelAverage returns a boolean if a field has been set.

func (*NfLoadLevelInformation) HasNfLoadLevelpeak ¶

func (o *NfLoadLevelInformation) HasNfLoadLevelpeak() bool

HasNfLoadLevelpeak returns a boolean if a field has been set.

func (*NfLoadLevelInformation) HasNfMemoryUsage ¶

func (o *NfLoadLevelInformation) HasNfMemoryUsage() bool

HasNfMemoryUsage returns a boolean if a field has been set.

func (*NfLoadLevelInformation) HasNfSetId ¶

func (o *NfLoadLevelInformation) HasNfSetId() bool

HasNfSetId returns a boolean if a field has been set.

func (*NfLoadLevelInformation) HasNfStatus ¶

func (o *NfLoadLevelInformation) HasNfStatus() bool

HasNfStatus returns a boolean if a field has been set.

func (*NfLoadLevelInformation) HasNfStorageUsage ¶

func (o *NfLoadLevelInformation) HasNfStorageUsage() bool

HasNfStorageUsage returns a boolean if a field has been set.

func (*NfLoadLevelInformation) HasNfType ¶

func (o *NfLoadLevelInformation) HasNfType() bool

HasNfType returns a boolean if a field has been set.

func (*NfLoadLevelInformation) HasSnssai ¶

func (o *NfLoadLevelInformation) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (NfLoadLevelInformation) MarshalJSON ¶

func (o NfLoadLevelInformation) MarshalJSON() ([]byte, error)

func (*NfLoadLevelInformation) SetConfidence ¶

func (o *NfLoadLevelInformation) SetConfidence(v int32)

SetConfidence gets a reference to the given int32 and assigns it to the Confidence field.

func (*NfLoadLevelInformation) SetNfCpuUsage ¶

func (o *NfLoadLevelInformation) SetNfCpuUsage(v int32)

SetNfCpuUsage gets a reference to the given int32 and assigns it to the NfCpuUsage field.

func (*NfLoadLevelInformation) SetNfInstanceId ¶

func (o *NfLoadLevelInformation) SetNfInstanceId(v string)

SetNfInstanceId gets a reference to the given string and assigns it to the NfInstanceId field.

func (*NfLoadLevelInformation) SetNfLoadAvgInAoi ¶

func (o *NfLoadLevelInformation) SetNfLoadAvgInAoi(v int32)

SetNfLoadAvgInAoi gets a reference to the given int32 and assigns it to the NfLoadAvgInAoi field.

func (*NfLoadLevelInformation) SetNfLoadLevelAverage ¶

func (o *NfLoadLevelInformation) SetNfLoadLevelAverage(v int32)

SetNfLoadLevelAverage gets a reference to the given int32 and assigns it to the NfLoadLevelAverage field.

func (*NfLoadLevelInformation) SetNfLoadLevelpeak ¶

func (o *NfLoadLevelInformation) SetNfLoadLevelpeak(v int32)

SetNfLoadLevelpeak gets a reference to the given int32 and assigns it to the NfLoadLevelpeak field.

func (*NfLoadLevelInformation) SetNfMemoryUsage ¶

func (o *NfLoadLevelInformation) SetNfMemoryUsage(v int32)

SetNfMemoryUsage gets a reference to the given int32 and assigns it to the NfMemoryUsage field.

func (*NfLoadLevelInformation) SetNfSetId ¶

func (o *NfLoadLevelInformation) SetNfSetId(v string)

SetNfSetId gets a reference to the given string and assigns it to the NfSetId field.

func (*NfLoadLevelInformation) SetNfStatus ¶

func (o *NfLoadLevelInformation) SetNfStatus(v NfStatus)

SetNfStatus gets a reference to the given NfStatus and assigns it to the NfStatus field.

func (*NfLoadLevelInformation) SetNfStorageUsage ¶

func (o *NfLoadLevelInformation) SetNfStorageUsage(v int32)

SetNfStorageUsage gets a reference to the given int32 and assigns it to the NfStorageUsage field.

func (*NfLoadLevelInformation) SetNfType ¶

func (o *NfLoadLevelInformation) SetNfType(v NFType)

SetNfType gets a reference to the given NFType and assigns it to the NfType field.

func (*NfLoadLevelInformation) SetSnssai ¶

func (o *NfLoadLevelInformation) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (NfLoadLevelInformation) ToMap ¶

func (o NfLoadLevelInformation) ToMap() (map[string]interface{}, error)

type NfServiceSetCond ¶

type NfServiceSetCond struct {
	// NF Service Set Identifier (see clause 28.12 of 3GPP TS 23.003) formatted as the following  string \"set<Set ID>.sn<Service Name>.nfi<NF Instance ID>.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.sn<ServiceName>.nfi<NFInstanceID>.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)   <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NID> encoded as defined in clause 5.4.2 (\"Nid\" data type definition)  <NFInstanceId> encoded as defined in clause 5.3.2  <ServiceName> encoded as defined in 3GPP TS 29.510  <Set ID> encoded as a string of characters consisting of alphabetic    characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that shall end    with either an alphabetic character or a digit.
	NfServiceSetId string `json:"nfServiceSetId"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	NfSetId *string `json:"nfSetId,omitempty"`
}

NfServiceSetCond Subscription to a set of NFs based on their Service Set Id

func NewNfServiceSetCond ¶

func NewNfServiceSetCond(nfServiceSetId string) *NfServiceSetCond

NewNfServiceSetCond instantiates a new NfServiceSetCond 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 NewNfServiceSetCondWithDefaults ¶

func NewNfServiceSetCondWithDefaults() *NfServiceSetCond

NewNfServiceSetCondWithDefaults instantiates a new NfServiceSetCond 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 (*NfServiceSetCond) GetNfServiceSetId ¶

func (o *NfServiceSetCond) GetNfServiceSetId() string

GetNfServiceSetId returns the NfServiceSetId field value

func (*NfServiceSetCond) GetNfServiceSetIdOk ¶

func (o *NfServiceSetCond) GetNfServiceSetIdOk() (*string, bool)

GetNfServiceSetIdOk returns a tuple with the NfServiceSetId field value and a boolean to check if the value has been set.

func (*NfServiceSetCond) GetNfSetId ¶

func (o *NfServiceSetCond) GetNfSetId() string

GetNfSetId returns the NfSetId field value if set, zero value otherwise.

func (*NfServiceSetCond) GetNfSetIdOk ¶

func (o *NfServiceSetCond) GetNfSetIdOk() (*string, bool)

GetNfSetIdOk returns a tuple with the NfSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NfServiceSetCond) HasNfSetId ¶

func (o *NfServiceSetCond) HasNfSetId() bool

HasNfSetId returns a boolean if a field has been set.

func (NfServiceSetCond) MarshalJSON ¶

func (o NfServiceSetCond) MarshalJSON() ([]byte, error)

func (*NfServiceSetCond) SetNfServiceSetId ¶

func (o *NfServiceSetCond) SetNfServiceSetId(v string)

SetNfServiceSetId sets field value

func (*NfServiceSetCond) SetNfSetId ¶

func (o *NfServiceSetCond) SetNfSetId(v string)

SetNfSetId gets a reference to the given string and assigns it to the NfSetId field.

func (NfServiceSetCond) ToMap ¶

func (o NfServiceSetCond) ToMap() (map[string]interface{}, error)

type NfSetCond ¶

type NfSetCond struct {
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	NfSetId string `json:"nfSetId"`
}

NfSetCond Subscription to a set of NFs based on their Set Id

func NewNfSetCond ¶

func NewNfSetCond(nfSetId string) *NfSetCond

NewNfSetCond instantiates a new NfSetCond 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 NewNfSetCondWithDefaults ¶

func NewNfSetCondWithDefaults() *NfSetCond

NewNfSetCondWithDefaults instantiates a new NfSetCond 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 (*NfSetCond) GetNfSetId ¶

func (o *NfSetCond) GetNfSetId() string

GetNfSetId returns the NfSetId field value

func (*NfSetCond) GetNfSetIdOk ¶

func (o *NfSetCond) GetNfSetIdOk() (*string, bool)

GetNfSetIdOk returns a tuple with the NfSetId field value and a boolean to check if the value has been set.

func (NfSetCond) MarshalJSON ¶

func (o NfSetCond) MarshalJSON() ([]byte, error)

func (*NfSetCond) SetNfSetId ¶

func (o *NfSetCond) SetNfSetId(v string)

SetNfSetId sets field value

func (NfSetCond) ToMap ¶

func (o NfSetCond) ToMap() (map[string]interface{}, error)

type NfStatus ¶

type NfStatus struct {
	Interface *interface{}
}

NfStatus Contains the percentage of time spent on various NF states.

func (*NfStatus) MarshalJSON ¶

func (src *NfStatus) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NfStatus) UnmarshalJSON ¶

func (dst *NfStatus) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NfTypeCond ¶

type NfTypeCond struct {
	NfType NFType `json:"nfType"`
}

NfTypeCond Subscription to a set of NFs based on their NF Type

func NewNfTypeCond ¶

func NewNfTypeCond(nfType NFType) *NfTypeCond

NewNfTypeCond instantiates a new NfTypeCond 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 NewNfTypeCondWithDefaults ¶

func NewNfTypeCondWithDefaults() *NfTypeCond

NewNfTypeCondWithDefaults instantiates a new NfTypeCond 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 (*NfTypeCond) GetNfType ¶

func (o *NfTypeCond) GetNfType() NFType

GetNfType returns the NfType field value

func (*NfTypeCond) GetNfTypeOk ¶

func (o *NfTypeCond) GetNfTypeOk() (*NFType, bool)

GetNfTypeOk returns a tuple with the NfType field value and a boolean to check if the value has been set.

func (NfTypeCond) MarshalJSON ¶

func (o NfTypeCond) MarshalJSON() ([]byte, error)

func (*NfTypeCond) SetNfType ¶

func (o *NfTypeCond) SetNfType(v NFType)

SetNfType sets field value

func (NfTypeCond) ToMap ¶

func (o NfTypeCond) ToMap() (map[string]interface{}, error)

type NgApCause ¶

type NgApCause struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Group int32 `json:"group"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Value int32 `json:"value"`
}

NgApCause Represents the NGAP cause.

func NewNgApCause ¶

func NewNgApCause(group int32, value int32) *NgApCause

NewNgApCause instantiates a new NgApCause 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 NewNgApCauseWithDefaults ¶

func NewNgApCauseWithDefaults() *NgApCause

NewNgApCauseWithDefaults instantiates a new NgApCause 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 (*NgApCause) GetGroup ¶

func (o *NgApCause) GetGroup() int32

GetGroup returns the Group field value

func (*NgApCause) GetGroupOk ¶

func (o *NgApCause) GetGroupOk() (*int32, bool)

GetGroupOk returns a tuple with the Group field value and a boolean to check if the value has been set.

func (*NgApCause) GetValue ¶

func (o *NgApCause) GetValue() int32

GetValue returns the Value field value

func (*NgApCause) GetValueOk ¶

func (o *NgApCause) GetValueOk() (*int32, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (NgApCause) MarshalJSON ¶

func (o NgApCause) MarshalJSON() ([]byte, error)

func (*NgApCause) SetGroup ¶

func (o *NgApCause) SetGroup(v int32)

SetGroup sets field value

func (*NgApCause) SetValue ¶

func (o *NgApCause) SetValue(v int32)

SetValue sets field value

func (NgApCause) ToMap ¶

func (o NgApCause) ToMap() (map[string]interface{}, error)

type NnwdafEventsSubscription ¶

type NnwdafEventsSubscription struct {
	// Subscribed events
	EventSubscriptions []EventSubscription   `json:"eventSubscriptions"`
	EvtReq             *ReportingInformation `json:"evtReq,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	NotificationURI *string `json:"notificationURI,omitempty"`
	// Notification correlation identifier.
	NotifCorrId *string `json:"notifCorrId,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures  *string                `json:"supportedFeatures,omitempty"`
	EventNotifications []EventNotification    `json:"eventNotifications,omitempty"`
	FailEventReports   []FailureEventInfo     `json:"failEventReports,omitempty"`
	PrevSub            *PrevSubInfo           `json:"prevSub,omitempty"`
	ConsNfInfo         *ConsumerNfInformation `json:"consNfInfo,omitempty"`
}

NnwdafEventsSubscription Represents an Individual NWDAF Event Subscription resource.

func NewNnwdafEventsSubscription ¶

func NewNnwdafEventsSubscription(eventSubscriptions []EventSubscription) *NnwdafEventsSubscription

NewNnwdafEventsSubscription instantiates a new NnwdafEventsSubscription 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 NewNnwdafEventsSubscriptionWithDefaults ¶

func NewNnwdafEventsSubscriptionWithDefaults() *NnwdafEventsSubscription

NewNnwdafEventsSubscriptionWithDefaults instantiates a new NnwdafEventsSubscription 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 (*NnwdafEventsSubscription) GetConsNfInfo ¶

GetConsNfInfo returns the ConsNfInfo field value if set, zero value otherwise.

func (*NnwdafEventsSubscription) GetConsNfInfoOk ¶

func (o *NnwdafEventsSubscription) GetConsNfInfoOk() (*ConsumerNfInformation, bool)

GetConsNfInfoOk returns a tuple with the ConsNfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NnwdafEventsSubscription) GetEventNotifications ¶

func (o *NnwdafEventsSubscription) GetEventNotifications() []EventNotification

GetEventNotifications returns the EventNotifications field value if set, zero value otherwise.

func (*NnwdafEventsSubscription) GetEventNotificationsOk ¶

func (o *NnwdafEventsSubscription) GetEventNotificationsOk() ([]EventNotification, bool)

GetEventNotificationsOk returns a tuple with the EventNotifications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NnwdafEventsSubscription) GetEventSubscriptions ¶

func (o *NnwdafEventsSubscription) GetEventSubscriptions() []EventSubscription

GetEventSubscriptions returns the EventSubscriptions field value

func (*NnwdafEventsSubscription) GetEventSubscriptionsOk ¶

func (o *NnwdafEventsSubscription) GetEventSubscriptionsOk() ([]EventSubscription, bool)

GetEventSubscriptionsOk returns a tuple with the EventSubscriptions field value and a boolean to check if the value has been set.

func (*NnwdafEventsSubscription) GetEvtReq ¶

GetEvtReq returns the EvtReq field value if set, zero value otherwise.

func (*NnwdafEventsSubscription) GetEvtReqOk ¶

func (o *NnwdafEventsSubscription) GetEvtReqOk() (*ReportingInformation, bool)

GetEvtReqOk returns a tuple with the EvtReq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NnwdafEventsSubscription) GetFailEventReports ¶

func (o *NnwdafEventsSubscription) GetFailEventReports() []FailureEventInfo

GetFailEventReports returns the FailEventReports field value if set, zero value otherwise.

func (*NnwdafEventsSubscription) GetFailEventReportsOk ¶

func (o *NnwdafEventsSubscription) GetFailEventReportsOk() ([]FailureEventInfo, bool)

GetFailEventReportsOk returns a tuple with the FailEventReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NnwdafEventsSubscription) GetNotifCorrId ¶

func (o *NnwdafEventsSubscription) GetNotifCorrId() string

GetNotifCorrId returns the NotifCorrId field value if set, zero value otherwise.

func (*NnwdafEventsSubscription) GetNotifCorrIdOk ¶

func (o *NnwdafEventsSubscription) GetNotifCorrIdOk() (*string, bool)

GetNotifCorrIdOk returns a tuple with the NotifCorrId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NnwdafEventsSubscription) GetNotificationURI ¶

func (o *NnwdafEventsSubscription) GetNotificationURI() string

GetNotificationURI returns the NotificationURI field value if set, zero value otherwise.

func (*NnwdafEventsSubscription) GetNotificationURIOk ¶

func (o *NnwdafEventsSubscription) GetNotificationURIOk() (*string, bool)

GetNotificationURIOk returns a tuple with the NotificationURI field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NnwdafEventsSubscription) GetPrevSub ¶

func (o *NnwdafEventsSubscription) GetPrevSub() PrevSubInfo

GetPrevSub returns the PrevSub field value if set, zero value otherwise.

func (*NnwdafEventsSubscription) GetPrevSubOk ¶

func (o *NnwdafEventsSubscription) GetPrevSubOk() (*PrevSubInfo, bool)

GetPrevSubOk returns a tuple with the PrevSub field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NnwdafEventsSubscription) GetSupportedFeatures ¶

func (o *NnwdafEventsSubscription) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*NnwdafEventsSubscription) GetSupportedFeaturesOk ¶

func (o *NnwdafEventsSubscription) GetSupportedFeaturesOk() (*string, bool)

GetSupportedFeaturesOk returns a tuple with the SupportedFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NnwdafEventsSubscription) HasConsNfInfo ¶

func (o *NnwdafEventsSubscription) HasConsNfInfo() bool

HasConsNfInfo returns a boolean if a field has been set.

func (*NnwdafEventsSubscription) HasEventNotifications ¶

func (o *NnwdafEventsSubscription) HasEventNotifications() bool

HasEventNotifications returns a boolean if a field has been set.

func (*NnwdafEventsSubscription) HasEvtReq ¶

func (o *NnwdafEventsSubscription) HasEvtReq() bool

HasEvtReq returns a boolean if a field has been set.

func (*NnwdafEventsSubscription) HasFailEventReports ¶

func (o *NnwdafEventsSubscription) HasFailEventReports() bool

HasFailEventReports returns a boolean if a field has been set.

func (*NnwdafEventsSubscription) HasNotifCorrId ¶

func (o *NnwdafEventsSubscription) HasNotifCorrId() bool

HasNotifCorrId returns a boolean if a field has been set.

func (*NnwdafEventsSubscription) HasNotificationURI ¶

func (o *NnwdafEventsSubscription) HasNotificationURI() bool

HasNotificationURI returns a boolean if a field has been set.

func (*NnwdafEventsSubscription) HasPrevSub ¶

func (o *NnwdafEventsSubscription) HasPrevSub() bool

HasPrevSub returns a boolean if a field has been set.

func (*NnwdafEventsSubscription) HasSupportedFeatures ¶

func (o *NnwdafEventsSubscription) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (NnwdafEventsSubscription) MarshalJSON ¶

func (o NnwdafEventsSubscription) MarshalJSON() ([]byte, error)

func (*NnwdafEventsSubscription) SetConsNfInfo ¶

func (o *NnwdafEventsSubscription) SetConsNfInfo(v ConsumerNfInformation)

SetConsNfInfo gets a reference to the given ConsumerNfInformation and assigns it to the ConsNfInfo field.

func (*NnwdafEventsSubscription) SetEventNotifications ¶

func (o *NnwdafEventsSubscription) SetEventNotifications(v []EventNotification)

SetEventNotifications gets a reference to the given []EventNotification and assigns it to the EventNotifications field.

func (*NnwdafEventsSubscription) SetEventSubscriptions ¶

func (o *NnwdafEventsSubscription) SetEventSubscriptions(v []EventSubscription)

SetEventSubscriptions sets field value

func (*NnwdafEventsSubscription) SetEvtReq ¶

SetEvtReq gets a reference to the given ReportingInformation and assigns it to the EvtReq field.

func (*NnwdafEventsSubscription) SetFailEventReports ¶

func (o *NnwdafEventsSubscription) SetFailEventReports(v []FailureEventInfo)

SetFailEventReports gets a reference to the given []FailureEventInfo and assigns it to the FailEventReports field.

func (*NnwdafEventsSubscription) SetNotifCorrId ¶

func (o *NnwdafEventsSubscription) SetNotifCorrId(v string)

SetNotifCorrId gets a reference to the given string and assigns it to the NotifCorrId field.

func (*NnwdafEventsSubscription) SetNotificationURI ¶

func (o *NnwdafEventsSubscription) SetNotificationURI(v string)

SetNotificationURI gets a reference to the given string and assigns it to the NotificationURI field.

func (*NnwdafEventsSubscription) SetPrevSub ¶

func (o *NnwdafEventsSubscription) SetPrevSub(v PrevSubInfo)

SetPrevSub gets a reference to the given PrevSubInfo and assigns it to the PrevSub field.

func (*NnwdafEventsSubscription) SetSupportedFeatures ¶

func (o *NnwdafEventsSubscription) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (NnwdafEventsSubscription) ToMap ¶

func (o NnwdafEventsSubscription) ToMap() (map[string]interface{}, error)

type NnwdafEventsSubscriptionNotification ¶

type NnwdafEventsSubscriptionNotification struct {
	Interface *interface{}
}

NnwdafEventsSubscriptionNotification - Represents an Individual NWDAF Event Subscription Notification resource.

func InterfaceAsNnwdafEventsSubscriptionNotification ¶

func InterfaceAsNnwdafEventsSubscriptionNotification(v *interface{}) NnwdafEventsSubscriptionNotification

interface{}AsNnwdafEventsSubscriptionNotification is a convenience function that returns interface{} wrapped in NnwdafEventsSubscriptionNotification

func (*NnwdafEventsSubscriptionNotification) GetActualInstance ¶

func (obj *NnwdafEventsSubscriptionNotification) GetActualInstance() interface{}

Get the actual instance

func (NnwdafEventsSubscriptionNotification) MarshalJSON ¶

func (src NnwdafEventsSubscriptionNotification) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NnwdafEventsSubscriptionNotification) UnmarshalJSON ¶

func (dst *NnwdafEventsSubscriptionNotification) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type NotifCondition ¶

type NotifCondition struct {
	MonitoredAttributes   []string `json:"monitoredAttributes,omitempty"`
	UnmonitoredAttributes []string `json:"unmonitoredAttributes,omitempty"`
}

NotifCondition Condition (list of attributes in the NF Profile) to determine whether a notification must be sent by NRF

func NewNotifCondition ¶

func NewNotifCondition() *NotifCondition

NewNotifCondition instantiates a new NotifCondition 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 NewNotifConditionWithDefaults ¶

func NewNotifConditionWithDefaults() *NotifCondition

NewNotifConditionWithDefaults instantiates a new NotifCondition 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 (*NotifCondition) GetMonitoredAttributes ¶

func (o *NotifCondition) GetMonitoredAttributes() []string

GetMonitoredAttributes returns the MonitoredAttributes field value if set, zero value otherwise.

func (*NotifCondition) GetMonitoredAttributesOk ¶

func (o *NotifCondition) GetMonitoredAttributesOk() ([]string, bool)

GetMonitoredAttributesOk returns a tuple with the MonitoredAttributes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotifCondition) GetUnmonitoredAttributes ¶

func (o *NotifCondition) GetUnmonitoredAttributes() []string

GetUnmonitoredAttributes returns the UnmonitoredAttributes field value if set, zero value otherwise.

func (*NotifCondition) GetUnmonitoredAttributesOk ¶

func (o *NotifCondition) GetUnmonitoredAttributesOk() ([]string, bool)

GetUnmonitoredAttributesOk returns a tuple with the UnmonitoredAttributes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotifCondition) HasMonitoredAttributes ¶

func (o *NotifCondition) HasMonitoredAttributes() bool

HasMonitoredAttributes returns a boolean if a field has been set.

func (*NotifCondition) HasUnmonitoredAttributes ¶

func (o *NotifCondition) HasUnmonitoredAttributes() bool

HasUnmonitoredAttributes returns a boolean if a field has been set.

func (NotifCondition) MarshalJSON ¶

func (o NotifCondition) MarshalJSON() ([]byte, error)

func (*NotifCondition) SetMonitoredAttributes ¶

func (o *NotifCondition) SetMonitoredAttributes(v []string)

SetMonitoredAttributes gets a reference to the given []string and assigns it to the MonitoredAttributes field.

func (*NotifCondition) SetUnmonitoredAttributes ¶

func (o *NotifCondition) SetUnmonitoredAttributes(v []string)

SetUnmonitoredAttributes gets a reference to the given []string and assigns it to the UnmonitoredAttributes field.

func (NotifCondition) ToMap ¶

func (o NotifCondition) ToMap() (map[string]interface{}, error)

type NotificationData ¶

type NotificationData struct {
	Event NotificationEventType `json:"event"`
	// String providing an URI formatted according to RFC 3986.
	NfInstanceUri       string               `json:"nfInstanceUri"`
	NfProfile           *NFProfile           `json:"nfProfile,omitempty"`
	ProfileChanges      []ChangeItem         `json:"profileChanges,omitempty"`
	ConditionEvent      *ConditionEventType  `json:"conditionEvent,omitempty"`
	SubscriptionContext *SubscriptionContext `json:"subscriptionContext,omitempty"`
	CompleteNfProfile   *NFProfile           `json:"completeNfProfile,omitempty"`
}

NotificationData Data sent in notifications from NRF to subscribed NF Instances

func NewNotificationData ¶

func NewNotificationData(event NotificationEventType, nfInstanceUri string) *NotificationData

NewNotificationData instantiates a new NotificationData 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 NewNotificationDataWithDefaults ¶

func NewNotificationDataWithDefaults() *NotificationData

NewNotificationDataWithDefaults instantiates a new NotificationData 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 (*NotificationData) GetCompleteNfProfile ¶

func (o *NotificationData) GetCompleteNfProfile() NFProfile

GetCompleteNfProfile returns the CompleteNfProfile field value if set, zero value otherwise.

func (*NotificationData) GetCompleteNfProfileOk ¶

func (o *NotificationData) GetCompleteNfProfileOk() (*NFProfile, bool)

GetCompleteNfProfileOk returns a tuple with the CompleteNfProfile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationData) GetConditionEvent ¶

func (o *NotificationData) GetConditionEvent() ConditionEventType

GetConditionEvent returns the ConditionEvent field value if set, zero value otherwise.

func (*NotificationData) GetConditionEventOk ¶

func (o *NotificationData) GetConditionEventOk() (*ConditionEventType, bool)

GetConditionEventOk returns a tuple with the ConditionEvent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationData) GetEvent ¶

GetEvent returns the Event field value

func (*NotificationData) GetEventOk ¶

func (o *NotificationData) GetEventOk() (*NotificationEventType, bool)

GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.

func (*NotificationData) GetNfInstanceUri ¶

func (o *NotificationData) GetNfInstanceUri() string

GetNfInstanceUri returns the NfInstanceUri field value

func (*NotificationData) GetNfInstanceUriOk ¶

func (o *NotificationData) GetNfInstanceUriOk() (*string, bool)

GetNfInstanceUriOk returns a tuple with the NfInstanceUri field value and a boolean to check if the value has been set.

func (*NotificationData) GetNfProfile ¶

func (o *NotificationData) GetNfProfile() NFProfile

GetNfProfile returns the NfProfile field value if set, zero value otherwise.

func (*NotificationData) GetNfProfileOk ¶

func (o *NotificationData) GetNfProfileOk() (*NFProfile, bool)

GetNfProfileOk returns a tuple with the NfProfile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationData) GetProfileChanges ¶

func (o *NotificationData) GetProfileChanges() []ChangeItem

GetProfileChanges returns the ProfileChanges field value if set, zero value otherwise.

func (*NotificationData) GetProfileChangesOk ¶

func (o *NotificationData) GetProfileChangesOk() ([]ChangeItem, bool)

GetProfileChangesOk returns a tuple with the ProfileChanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationData) GetSubscriptionContext ¶

func (o *NotificationData) GetSubscriptionContext() SubscriptionContext

GetSubscriptionContext returns the SubscriptionContext field value if set, zero value otherwise.

func (*NotificationData) GetSubscriptionContextOk ¶

func (o *NotificationData) GetSubscriptionContextOk() (*SubscriptionContext, bool)

GetSubscriptionContextOk returns a tuple with the SubscriptionContext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationData) HasCompleteNfProfile ¶

func (o *NotificationData) HasCompleteNfProfile() bool

HasCompleteNfProfile returns a boolean if a field has been set.

func (*NotificationData) HasConditionEvent ¶

func (o *NotificationData) HasConditionEvent() bool

HasConditionEvent returns a boolean if a field has been set.

func (*NotificationData) HasNfProfile ¶

func (o *NotificationData) HasNfProfile() bool

HasNfProfile returns a boolean if a field has been set.

func (*NotificationData) HasProfileChanges ¶

func (o *NotificationData) HasProfileChanges() bool

HasProfileChanges returns a boolean if a field has been set.

func (*NotificationData) HasSubscriptionContext ¶

func (o *NotificationData) HasSubscriptionContext() bool

HasSubscriptionContext returns a boolean if a field has been set.

func (NotificationData) MarshalJSON ¶

func (o NotificationData) MarshalJSON() ([]byte, error)

func (*NotificationData) SetCompleteNfProfile ¶

func (o *NotificationData) SetCompleteNfProfile(v NFProfile)

SetCompleteNfProfile gets a reference to the given NFProfile and assigns it to the CompleteNfProfile field.

func (*NotificationData) SetConditionEvent ¶

func (o *NotificationData) SetConditionEvent(v ConditionEventType)

SetConditionEvent gets a reference to the given ConditionEventType and assigns it to the ConditionEvent field.

func (*NotificationData) SetEvent ¶

func (o *NotificationData) SetEvent(v NotificationEventType)

SetEvent sets field value

func (*NotificationData) SetNfInstanceUri ¶

func (o *NotificationData) SetNfInstanceUri(v string)

SetNfInstanceUri sets field value

func (*NotificationData) SetNfProfile ¶

func (o *NotificationData) SetNfProfile(v NFProfile)

SetNfProfile gets a reference to the given NFProfile and assigns it to the NfProfile field.

func (*NotificationData) SetProfileChanges ¶

func (o *NotificationData) SetProfileChanges(v []ChangeItem)

SetProfileChanges gets a reference to the given []ChangeItem and assigns it to the ProfileChanges field.

func (*NotificationData) SetSubscriptionContext ¶

func (o *NotificationData) SetSubscriptionContext(v SubscriptionContext)

SetSubscriptionContext gets a reference to the given SubscriptionContext and assigns it to the SubscriptionContext field.

func (NotificationData) ToMap ¶

func (o NotificationData) ToMap() (map[string]interface{}, error)

type NotificationEventType ¶

type NotificationEventType struct {
	String *string
}

NotificationEventType Types of events sent in notifications from NRF to subscribed NF Instances

func (*NotificationEventType) MarshalJSON ¶

func (src *NotificationEventType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NotificationEventType) UnmarshalJSON ¶

func (dst *NotificationEventType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NotificationFlag ¶

type NotificationFlag struct {
	String *string
}

NotificationFlag Possible values are: - ACTIVATE: The event notification is activated. - DEACTIVATE: The event notification is deactivated and shall be muted. The available event(s) shall be stored. - RETRIEVAL: The event notification shall be sent to the NF service consumer(s), after that, is muted again.

func (*NotificationFlag) MarshalJSON ¶

func (src *NotificationFlag) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NotificationFlag) UnmarshalJSON ¶

func (dst *NotificationFlag) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NotificationMethod ¶

type NotificationMethod struct {
	String *string
}

NotificationMethod Possible values are: - PERIODIC: The subscribe of NWDAF Event is periodically. The periodic of the notification is identified by repetitionPeriod defined in clause 5.1.6.2.3. - THRESHOLD: The subscribe of NWDAF Event is upon threshold exceeded.

func (*NotificationMethod) MarshalJSON ¶

func (src *NotificationMethod) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NotificationMethod) UnmarshalJSON ¶

func (dst *NotificationMethod) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NotificationMethod1 ¶

type NotificationMethod1 struct {
	String *string
}

NotificationMethod1 Possible values are: - PERIODIC - ONE_TIME - ON_EVENT_DETECTION

func (*NotificationMethod1) MarshalJSON ¶

func (src *NotificationMethod1) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NotificationMethod1) UnmarshalJSON ¶

func (dst *NotificationMethod1) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NotificationType ¶

type NotificationType struct {
	String *string
}

NotificationType Types of notifications used in Default Notification URIs in the NF Profile of an NF Instance

func (*NotificationType) MarshalJSON ¶

func (src *NotificationType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NotificationType) UnmarshalJSON ¶

func (dst *NotificationType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrLocation ¶

type NrLocation struct {
	Tai        Tai   `json:"tai"`
	Ncgi       Ncgi  `json:"ncgi"`
	IgnoreNcgi *bool `json:"ignoreNcgi,omitempty"`
	// The value represents the elapsed time in minutes since the last network contact of the mobile station. Value \"0\" indicates that the location information was obtained after a successful paging procedure for Active Location Retrieval when the UE is in idle mode or after a successful  NG-RAN location reporting procedure with the eNB when the UE is in connected mode. Any other value than \"0\" indicates that the location information is the last known one. See 3GPP TS 29.002 clause 17.7.8.
	AgeOfLocationInformation *int32 `json:"ageOfLocationInformation,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	UeLocationTimestamp *time.Time `json:"ueLocationTimestamp,omitempty"`
	// Refer to geographical Information. See 3GPP TS 23.032 clause 7.3.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeographicalInformation *string `json:"geographicalInformation,omitempty"`
	// Refers to Calling Geodetic Location. See ITU-T Recommendation Q.763 (1999) [24] clause 3.88.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeodeticInformation *string          `json:"geodeticInformation,omitempty"`
	GlobalGnbId         *GlobalRanNodeId `json:"globalGnbId,omitempty"`
}

NrLocation Contains the NR user location.

func NewNrLocation ¶

func NewNrLocation(tai Tai, ncgi Ncgi) *NrLocation

NewNrLocation instantiates a new NrLocation 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 NewNrLocationWithDefaults ¶

func NewNrLocationWithDefaults() *NrLocation

NewNrLocationWithDefaults instantiates a new NrLocation 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 (*NrLocation) GetAgeOfLocationInformation ¶

func (o *NrLocation) GetAgeOfLocationInformation() int32

GetAgeOfLocationInformation returns the AgeOfLocationInformation field value if set, zero value otherwise.

func (*NrLocation) GetAgeOfLocationInformationOk ¶

func (o *NrLocation) GetAgeOfLocationInformationOk() (*int32, bool)

GetAgeOfLocationInformationOk returns a tuple with the AgeOfLocationInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrLocation) GetGeodeticInformation ¶

func (o *NrLocation) GetGeodeticInformation() string

GetGeodeticInformation returns the GeodeticInformation field value if set, zero value otherwise.

func (*NrLocation) GetGeodeticInformationOk ¶

func (o *NrLocation) GetGeodeticInformationOk() (*string, bool)

GetGeodeticInformationOk returns a tuple with the GeodeticInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrLocation) GetGeographicalInformation ¶

func (o *NrLocation) GetGeographicalInformation() string

GetGeographicalInformation returns the GeographicalInformation field value if set, zero value otherwise.

func (*NrLocation) GetGeographicalInformationOk ¶

func (o *NrLocation) GetGeographicalInformationOk() (*string, bool)

GetGeographicalInformationOk returns a tuple with the GeographicalInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrLocation) GetGlobalGnbId ¶

func (o *NrLocation) GetGlobalGnbId() GlobalRanNodeId

GetGlobalGnbId returns the GlobalGnbId field value if set, zero value otherwise.

func (*NrLocation) GetGlobalGnbIdOk ¶

func (o *NrLocation) GetGlobalGnbIdOk() (*GlobalRanNodeId, bool)

GetGlobalGnbIdOk returns a tuple with the GlobalGnbId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrLocation) GetIgnoreNcgi ¶

func (o *NrLocation) GetIgnoreNcgi() bool

GetIgnoreNcgi returns the IgnoreNcgi field value if set, zero value otherwise.

func (*NrLocation) GetIgnoreNcgiOk ¶

func (o *NrLocation) GetIgnoreNcgiOk() (*bool, bool)

GetIgnoreNcgiOk returns a tuple with the IgnoreNcgi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrLocation) GetNcgi ¶

func (o *NrLocation) GetNcgi() Ncgi

GetNcgi returns the Ncgi field value

func (*NrLocation) GetNcgiOk ¶

func (o *NrLocation) GetNcgiOk() (*Ncgi, bool)

GetNcgiOk returns a tuple with the Ncgi field value and a boolean to check if the value has been set.

func (*NrLocation) GetTai ¶

func (o *NrLocation) GetTai() Tai

GetTai returns the Tai field value

func (*NrLocation) GetTaiOk ¶

func (o *NrLocation) GetTaiOk() (*Tai, bool)

GetTaiOk returns a tuple with the Tai field value and a boolean to check if the value has been set.

func (*NrLocation) GetUeLocationTimestamp ¶

func (o *NrLocation) GetUeLocationTimestamp() time.Time

GetUeLocationTimestamp returns the UeLocationTimestamp field value if set, zero value otherwise.

func (*NrLocation) GetUeLocationTimestampOk ¶

func (o *NrLocation) GetUeLocationTimestampOk() (*time.Time, bool)

GetUeLocationTimestampOk returns a tuple with the UeLocationTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrLocation) HasAgeOfLocationInformation ¶

func (o *NrLocation) HasAgeOfLocationInformation() bool

HasAgeOfLocationInformation returns a boolean if a field has been set.

func (*NrLocation) HasGeodeticInformation ¶

func (o *NrLocation) HasGeodeticInformation() bool

HasGeodeticInformation returns a boolean if a field has been set.

func (*NrLocation) HasGeographicalInformation ¶

func (o *NrLocation) HasGeographicalInformation() bool

HasGeographicalInformation returns a boolean if a field has been set.

func (*NrLocation) HasGlobalGnbId ¶

func (o *NrLocation) HasGlobalGnbId() bool

HasGlobalGnbId returns a boolean if a field has been set.

func (*NrLocation) HasIgnoreNcgi ¶

func (o *NrLocation) HasIgnoreNcgi() bool

HasIgnoreNcgi returns a boolean if a field has been set.

func (*NrLocation) HasUeLocationTimestamp ¶

func (o *NrLocation) HasUeLocationTimestamp() bool

HasUeLocationTimestamp returns a boolean if a field has been set.

func (NrLocation) MarshalJSON ¶

func (o NrLocation) MarshalJSON() ([]byte, error)

func (*NrLocation) SetAgeOfLocationInformation ¶

func (o *NrLocation) SetAgeOfLocationInformation(v int32)

SetAgeOfLocationInformation gets a reference to the given int32 and assigns it to the AgeOfLocationInformation field.

func (*NrLocation) SetGeodeticInformation ¶

func (o *NrLocation) SetGeodeticInformation(v string)

SetGeodeticInformation gets a reference to the given string and assigns it to the GeodeticInformation field.

func (*NrLocation) SetGeographicalInformation ¶

func (o *NrLocation) SetGeographicalInformation(v string)

SetGeographicalInformation gets a reference to the given string and assigns it to the GeographicalInformation field.

func (*NrLocation) SetGlobalGnbId ¶

func (o *NrLocation) SetGlobalGnbId(v GlobalRanNodeId)

SetGlobalGnbId gets a reference to the given GlobalRanNodeId and assigns it to the GlobalGnbId field.

func (*NrLocation) SetIgnoreNcgi ¶

func (o *NrLocation) SetIgnoreNcgi(v bool)

SetIgnoreNcgi gets a reference to the given bool and assigns it to the IgnoreNcgi field.

func (*NrLocation) SetNcgi ¶

func (o *NrLocation) SetNcgi(v Ncgi)

SetNcgi sets field value

func (*NrLocation) SetTai ¶

func (o *NrLocation) SetTai(v Tai)

SetTai sets field value

func (*NrLocation) SetUeLocationTimestamp ¶

func (o *NrLocation) SetUeLocationTimestamp(v time.Time)

SetUeLocationTimestamp gets a reference to the given time.Time and assigns it to the UeLocationTimestamp field.

func (NrLocation) ToMap ¶

func (o NrLocation) ToMap() (map[string]interface{}, error)

type NrfInfo ¶

type NrfInfo struct {
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedUdrInfo *map[string]NrfInfoServedUdrInfoValue `json:"servedUdrInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedUdrInfoList *map[string]map[string]NrfInfoServedUdrInfoValue `json:"servedUdrInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedUdmInfo *map[string]NrfInfoServedUdmInfoValue `json:"servedUdmInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedUdmInfoList *map[string]map[string]NrfInfoServedUdmInfoValue `json:"servedUdmInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedAusfInfo *map[string]NrfInfoServedAusfInfoValue `json:"servedAusfInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedAusfInfoList *map[string]map[string]NrfInfoServedAusfInfoValue `json:"servedAusfInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedAmfInfo *map[string]NrfInfoServedAmfInfoValue `json:"servedAmfInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedAmfInfoList *map[string]map[string]NrfInfoServedAmfInfoValue `json:"servedAmfInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedSmfInfo *map[string]NrfInfoServedSmfInfoValue `json:"servedSmfInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedSmfInfoList *map[string]map[string]NrfInfoServedSmfInfoValue `json:"servedSmfInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedUpfInfo *map[string]NrfInfoServedUpfInfoValue `json:"servedUpfInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedUpfInfoList *map[string]map[string]NrfInfoServedUpfInfoValue `json:"servedUpfInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedPcfInfo *map[string]NrfInfoServedPcfInfoValue `json:"servedPcfInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedPcfInfoList *map[string]map[string]NrfInfoServedPcfInfoValue `json:"servedPcfInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedBsfInfo *map[string]NrfInfoServedBsfInfoValue `json:"servedBsfInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedBsfInfoList *map[string]map[string]NrfInfoServedBsfInfoValue `json:"servedBsfInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedChfInfo *map[string]NrfInfoServedChfInfoValue `json:"servedChfInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedChfInfoList *map[string]map[string]NrfInfoServedChfInfoValue `json:"servedChfInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedNefInfo *map[string]NrfInfoServedNefInfoValue `json:"servedNefInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedNwdafInfo *map[string]NrfInfoServedNwdafInfoValue `json:"servedNwdafInfo,omitempty"`
	// A map (list of key-value pairs) where NF Instance Id serves as key
	ServedNwdafInfoList *map[string]map[string]NwdafInfo `json:"servedNwdafInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedPcscfInfoList *map[string]map[string]NrfInfoServedPcscfInfoListValueValue `json:"servedPcscfInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedGmlcInfo *map[string]NrfInfoServedGmlcInfoValue `json:"servedGmlcInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedLmfInfo *map[string]NrfInfoServedLmfInfoValue `json:"servedLmfInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedNfInfo *map[string]NfInfo `json:"servedNfInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedHssInfoList *map[string]map[string]NrfInfoServedHssInfoListValueValue `json:"servedHssInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedUdsfInfo *map[string]NrfInfoServedUdsfInfoValue `json:"servedUdsfInfo,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedUdsfInfoList *map[string]map[string]NrfInfoServedUdsfInfoValue `json:"servedUdsfInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedScpInfoList *map[string]NrfInfoServedScpInfoListValue `json:"servedScpInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedSeppInfoList *map[string]NrfInfoServedSeppInfoListValue `json:"servedSeppInfoList,omitempty"`
	// A map (list of key-value pairs) where NF Instance Id serves as key
	ServedAanfInfoList *map[string]map[string]NrfInfoServedAanfInfoListValueValue `json:"servedAanfInfoList,omitempty"`
	Served5gDdnmfInfo  *map[string]Model5GDdnmfInfo                               `json:"served5gDdnmfInfo,omitempty"`
	// A map (list of key-value pairs) where NF Instance Id serves as key
	ServedMfafInfoList *map[string]MfafInfo `json:"servedMfafInfoList,omitempty"`
	// A map (list of key-value pairs) where NF Instance Id serves as key
	ServedEasdfInfoList *map[string]map[string]EasdfInfo `json:"servedEasdfInfoList,omitempty"`
	// A map (list of key-value pairs) where NF Instance Id serves as key
	ServedDccfInfoList *map[string]DccfInfo `json:"servedDccfInfoList,omitempty"`
	// A map (list of key-value pairs) where nfInstanceId serves as key
	ServedMbSmfInfoList *map[string]map[string]NrfInfoServedMbSmfInfoListValueValue `json:"servedMbSmfInfoList,omitempty"`
	// A map (list of key-value pairs) where NF Instance Id serves as key
	ServedTsctsfInfoList *map[string]map[string]TsctsfInfo `json:"servedTsctsfInfoList,omitempty"`
	// A map (list of key-value pairs) where NF Instance Id serves as key
	ServedMbUpfInfoList *map[string]map[string]MbUpfInfo `json:"servedMbUpfInfoList,omitempty"`
	// A map (list of key-value pairs) where NF Instance Id serves as key
	ServedTrustAfInfo *map[string]TrustAfInfo `json:"servedTrustAfInfo,omitempty"`
	// A map (list of key-value pairs) where NF Instance Id serves as key
	ServedNssaafInfo *map[string]NssaafInfo `json:"servedNssaafInfo,omitempty"`
}

NrfInfo Information of an NRF NF Instance, used in hierarchical NRF deployments

func NewNrfInfo ¶

func NewNrfInfo() *NrfInfo

NewNrfInfo instantiates a new NrfInfo 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 NewNrfInfoWithDefaults ¶

func NewNrfInfoWithDefaults() *NrfInfo

NewNrfInfoWithDefaults instantiates a new NrfInfo 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 (*NrfInfo) GetServed5gDdnmfInfo ¶

func (o *NrfInfo) GetServed5gDdnmfInfo() map[string]Model5GDdnmfInfo

GetServed5gDdnmfInfo returns the Served5gDdnmfInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServed5gDdnmfInfoOk ¶

func (o *NrfInfo) GetServed5gDdnmfInfoOk() (*map[string]Model5GDdnmfInfo, bool)

GetServed5gDdnmfInfoOk returns a tuple with the Served5gDdnmfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedAanfInfoList ¶

func (o *NrfInfo) GetServedAanfInfoList() map[string]map[string]NrfInfoServedAanfInfoListValueValue

GetServedAanfInfoList returns the ServedAanfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedAanfInfoListOk ¶

func (o *NrfInfo) GetServedAanfInfoListOk() (*map[string]map[string]NrfInfoServedAanfInfoListValueValue, bool)

GetServedAanfInfoListOk returns a tuple with the ServedAanfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedAmfInfo ¶

func (o *NrfInfo) GetServedAmfInfo() map[string]NrfInfoServedAmfInfoValue

GetServedAmfInfo returns the ServedAmfInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedAmfInfoList ¶

func (o *NrfInfo) GetServedAmfInfoList() map[string]map[string]NrfInfoServedAmfInfoValue

GetServedAmfInfoList returns the ServedAmfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedAmfInfoListOk ¶

func (o *NrfInfo) GetServedAmfInfoListOk() (*map[string]map[string]NrfInfoServedAmfInfoValue, bool)

GetServedAmfInfoListOk returns a tuple with the ServedAmfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedAmfInfoOk ¶

func (o *NrfInfo) GetServedAmfInfoOk() (*map[string]NrfInfoServedAmfInfoValue, bool)

GetServedAmfInfoOk returns a tuple with the ServedAmfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedAusfInfo ¶

func (o *NrfInfo) GetServedAusfInfo() map[string]NrfInfoServedAusfInfoValue

GetServedAusfInfo returns the ServedAusfInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedAusfInfoList ¶

func (o *NrfInfo) GetServedAusfInfoList() map[string]map[string]NrfInfoServedAusfInfoValue

GetServedAusfInfoList returns the ServedAusfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedAusfInfoListOk ¶

func (o *NrfInfo) GetServedAusfInfoListOk() (*map[string]map[string]NrfInfoServedAusfInfoValue, bool)

GetServedAusfInfoListOk returns a tuple with the ServedAusfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedAusfInfoOk ¶

func (o *NrfInfo) GetServedAusfInfoOk() (*map[string]NrfInfoServedAusfInfoValue, bool)

GetServedAusfInfoOk returns a tuple with the ServedAusfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedBsfInfo ¶

func (o *NrfInfo) GetServedBsfInfo() map[string]NrfInfoServedBsfInfoValue

GetServedBsfInfo returns the ServedBsfInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedBsfInfoList ¶

func (o *NrfInfo) GetServedBsfInfoList() map[string]map[string]NrfInfoServedBsfInfoValue

GetServedBsfInfoList returns the ServedBsfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedBsfInfoListOk ¶

func (o *NrfInfo) GetServedBsfInfoListOk() (*map[string]map[string]NrfInfoServedBsfInfoValue, bool)

GetServedBsfInfoListOk returns a tuple with the ServedBsfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedBsfInfoOk ¶

func (o *NrfInfo) GetServedBsfInfoOk() (*map[string]NrfInfoServedBsfInfoValue, bool)

GetServedBsfInfoOk returns a tuple with the ServedBsfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedChfInfo ¶

func (o *NrfInfo) GetServedChfInfo() map[string]NrfInfoServedChfInfoValue

GetServedChfInfo returns the ServedChfInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedChfInfoList ¶

func (o *NrfInfo) GetServedChfInfoList() map[string]map[string]NrfInfoServedChfInfoValue

GetServedChfInfoList returns the ServedChfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedChfInfoListOk ¶

func (o *NrfInfo) GetServedChfInfoListOk() (*map[string]map[string]NrfInfoServedChfInfoValue, bool)

GetServedChfInfoListOk returns a tuple with the ServedChfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedChfInfoOk ¶

func (o *NrfInfo) GetServedChfInfoOk() (*map[string]NrfInfoServedChfInfoValue, bool)

GetServedChfInfoOk returns a tuple with the ServedChfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedDccfInfoList ¶

func (o *NrfInfo) GetServedDccfInfoList() map[string]DccfInfo

GetServedDccfInfoList returns the ServedDccfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedDccfInfoListOk ¶

func (o *NrfInfo) GetServedDccfInfoListOk() (*map[string]DccfInfo, bool)

GetServedDccfInfoListOk returns a tuple with the ServedDccfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedEasdfInfoList ¶

func (o *NrfInfo) GetServedEasdfInfoList() map[string]map[string]EasdfInfo

GetServedEasdfInfoList returns the ServedEasdfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedEasdfInfoListOk ¶

func (o *NrfInfo) GetServedEasdfInfoListOk() (*map[string]map[string]EasdfInfo, bool)

GetServedEasdfInfoListOk returns a tuple with the ServedEasdfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedGmlcInfo ¶

func (o *NrfInfo) GetServedGmlcInfo() map[string]NrfInfoServedGmlcInfoValue

GetServedGmlcInfo returns the ServedGmlcInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedGmlcInfoOk ¶

func (o *NrfInfo) GetServedGmlcInfoOk() (*map[string]NrfInfoServedGmlcInfoValue, bool)

GetServedGmlcInfoOk returns a tuple with the ServedGmlcInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedHssInfoList ¶

func (o *NrfInfo) GetServedHssInfoList() map[string]map[string]NrfInfoServedHssInfoListValueValue

GetServedHssInfoList returns the ServedHssInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedHssInfoListOk ¶

func (o *NrfInfo) GetServedHssInfoListOk() (*map[string]map[string]NrfInfoServedHssInfoListValueValue, bool)

GetServedHssInfoListOk returns a tuple with the ServedHssInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedLmfInfo ¶

func (o *NrfInfo) GetServedLmfInfo() map[string]NrfInfoServedLmfInfoValue

GetServedLmfInfo returns the ServedLmfInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedLmfInfoOk ¶

func (o *NrfInfo) GetServedLmfInfoOk() (*map[string]NrfInfoServedLmfInfoValue, bool)

GetServedLmfInfoOk returns a tuple with the ServedLmfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedMbSmfInfoList ¶

func (o *NrfInfo) GetServedMbSmfInfoList() map[string]map[string]NrfInfoServedMbSmfInfoListValueValue

GetServedMbSmfInfoList returns the ServedMbSmfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedMbSmfInfoListOk ¶

func (o *NrfInfo) GetServedMbSmfInfoListOk() (*map[string]map[string]NrfInfoServedMbSmfInfoListValueValue, bool)

GetServedMbSmfInfoListOk returns a tuple with the ServedMbSmfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedMbUpfInfoList ¶

func (o *NrfInfo) GetServedMbUpfInfoList() map[string]map[string]MbUpfInfo

GetServedMbUpfInfoList returns the ServedMbUpfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedMbUpfInfoListOk ¶

func (o *NrfInfo) GetServedMbUpfInfoListOk() (*map[string]map[string]MbUpfInfo, bool)

GetServedMbUpfInfoListOk returns a tuple with the ServedMbUpfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedMfafInfoList ¶

func (o *NrfInfo) GetServedMfafInfoList() map[string]MfafInfo

GetServedMfafInfoList returns the ServedMfafInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedMfafInfoListOk ¶

func (o *NrfInfo) GetServedMfafInfoListOk() (*map[string]MfafInfo, bool)

GetServedMfafInfoListOk returns a tuple with the ServedMfafInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedNefInfo ¶

func (o *NrfInfo) GetServedNefInfo() map[string]NrfInfoServedNefInfoValue

GetServedNefInfo returns the ServedNefInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedNefInfoOk ¶

func (o *NrfInfo) GetServedNefInfoOk() (*map[string]NrfInfoServedNefInfoValue, bool)

GetServedNefInfoOk returns a tuple with the ServedNefInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedNfInfo ¶

func (o *NrfInfo) GetServedNfInfo() map[string]NfInfo

GetServedNfInfo returns the ServedNfInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedNfInfoOk ¶

func (o *NrfInfo) GetServedNfInfoOk() (*map[string]NfInfo, bool)

GetServedNfInfoOk returns a tuple with the ServedNfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedNssaafInfo ¶

func (o *NrfInfo) GetServedNssaafInfo() map[string]NssaafInfo

GetServedNssaafInfo returns the ServedNssaafInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedNssaafInfoOk ¶

func (o *NrfInfo) GetServedNssaafInfoOk() (*map[string]NssaafInfo, bool)

GetServedNssaafInfoOk returns a tuple with the ServedNssaafInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedNwdafInfo ¶

func (o *NrfInfo) GetServedNwdafInfo() map[string]NrfInfoServedNwdafInfoValue

GetServedNwdafInfo returns the ServedNwdafInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedNwdafInfoList ¶

func (o *NrfInfo) GetServedNwdafInfoList() map[string]map[string]NwdafInfo

GetServedNwdafInfoList returns the ServedNwdafInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedNwdafInfoListOk ¶

func (o *NrfInfo) GetServedNwdafInfoListOk() (*map[string]map[string]NwdafInfo, bool)

GetServedNwdafInfoListOk returns a tuple with the ServedNwdafInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedNwdafInfoOk ¶

func (o *NrfInfo) GetServedNwdafInfoOk() (*map[string]NrfInfoServedNwdafInfoValue, bool)

GetServedNwdafInfoOk returns a tuple with the ServedNwdafInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedPcfInfo ¶

func (o *NrfInfo) GetServedPcfInfo() map[string]NrfInfoServedPcfInfoValue

GetServedPcfInfo returns the ServedPcfInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedPcfInfoList ¶

func (o *NrfInfo) GetServedPcfInfoList() map[string]map[string]NrfInfoServedPcfInfoValue

GetServedPcfInfoList returns the ServedPcfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedPcfInfoListOk ¶

func (o *NrfInfo) GetServedPcfInfoListOk() (*map[string]map[string]NrfInfoServedPcfInfoValue, bool)

GetServedPcfInfoListOk returns a tuple with the ServedPcfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedPcfInfoOk ¶

func (o *NrfInfo) GetServedPcfInfoOk() (*map[string]NrfInfoServedPcfInfoValue, bool)

GetServedPcfInfoOk returns a tuple with the ServedPcfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedPcscfInfoList ¶

func (o *NrfInfo) GetServedPcscfInfoList() map[string]map[string]NrfInfoServedPcscfInfoListValueValue

GetServedPcscfInfoList returns the ServedPcscfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedPcscfInfoListOk ¶

func (o *NrfInfo) GetServedPcscfInfoListOk() (*map[string]map[string]NrfInfoServedPcscfInfoListValueValue, bool)

GetServedPcscfInfoListOk returns a tuple with the ServedPcscfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedScpInfoList ¶

func (o *NrfInfo) GetServedScpInfoList() map[string]NrfInfoServedScpInfoListValue

GetServedScpInfoList returns the ServedScpInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedScpInfoListOk ¶

func (o *NrfInfo) GetServedScpInfoListOk() (*map[string]NrfInfoServedScpInfoListValue, bool)

GetServedScpInfoListOk returns a tuple with the ServedScpInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedSeppInfoList ¶

func (o *NrfInfo) GetServedSeppInfoList() map[string]NrfInfoServedSeppInfoListValue

GetServedSeppInfoList returns the ServedSeppInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedSeppInfoListOk ¶

func (o *NrfInfo) GetServedSeppInfoListOk() (*map[string]NrfInfoServedSeppInfoListValue, bool)

GetServedSeppInfoListOk returns a tuple with the ServedSeppInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedSmfInfo ¶

func (o *NrfInfo) GetServedSmfInfo() map[string]NrfInfoServedSmfInfoValue

GetServedSmfInfo returns the ServedSmfInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedSmfInfoList ¶

func (o *NrfInfo) GetServedSmfInfoList() map[string]map[string]NrfInfoServedSmfInfoValue

GetServedSmfInfoList returns the ServedSmfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedSmfInfoListOk ¶

func (o *NrfInfo) GetServedSmfInfoListOk() (*map[string]map[string]NrfInfoServedSmfInfoValue, bool)

GetServedSmfInfoListOk returns a tuple with the ServedSmfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedSmfInfoOk ¶

func (o *NrfInfo) GetServedSmfInfoOk() (*map[string]NrfInfoServedSmfInfoValue, bool)

GetServedSmfInfoOk returns a tuple with the ServedSmfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedTrustAfInfo ¶

func (o *NrfInfo) GetServedTrustAfInfo() map[string]TrustAfInfo

GetServedTrustAfInfo returns the ServedTrustAfInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedTrustAfInfoOk ¶

func (o *NrfInfo) GetServedTrustAfInfoOk() (*map[string]TrustAfInfo, bool)

GetServedTrustAfInfoOk returns a tuple with the ServedTrustAfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedTsctsfInfoList ¶

func (o *NrfInfo) GetServedTsctsfInfoList() map[string]map[string]TsctsfInfo

GetServedTsctsfInfoList returns the ServedTsctsfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedTsctsfInfoListOk ¶

func (o *NrfInfo) GetServedTsctsfInfoListOk() (*map[string]map[string]TsctsfInfo, bool)

GetServedTsctsfInfoListOk returns a tuple with the ServedTsctsfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedUdmInfo ¶

func (o *NrfInfo) GetServedUdmInfo() map[string]NrfInfoServedUdmInfoValue

GetServedUdmInfo returns the ServedUdmInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedUdmInfoList ¶

func (o *NrfInfo) GetServedUdmInfoList() map[string]map[string]NrfInfoServedUdmInfoValue

GetServedUdmInfoList returns the ServedUdmInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedUdmInfoListOk ¶

func (o *NrfInfo) GetServedUdmInfoListOk() (*map[string]map[string]NrfInfoServedUdmInfoValue, bool)

GetServedUdmInfoListOk returns a tuple with the ServedUdmInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedUdmInfoOk ¶

func (o *NrfInfo) GetServedUdmInfoOk() (*map[string]NrfInfoServedUdmInfoValue, bool)

GetServedUdmInfoOk returns a tuple with the ServedUdmInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedUdrInfo ¶

func (o *NrfInfo) GetServedUdrInfo() map[string]NrfInfoServedUdrInfoValue

GetServedUdrInfo returns the ServedUdrInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedUdrInfoList ¶

func (o *NrfInfo) GetServedUdrInfoList() map[string]map[string]NrfInfoServedUdrInfoValue

GetServedUdrInfoList returns the ServedUdrInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedUdrInfoListOk ¶

func (o *NrfInfo) GetServedUdrInfoListOk() (*map[string]map[string]NrfInfoServedUdrInfoValue, bool)

GetServedUdrInfoListOk returns a tuple with the ServedUdrInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedUdrInfoOk ¶

func (o *NrfInfo) GetServedUdrInfoOk() (*map[string]NrfInfoServedUdrInfoValue, bool)

GetServedUdrInfoOk returns a tuple with the ServedUdrInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedUdsfInfo ¶

func (o *NrfInfo) GetServedUdsfInfo() map[string]NrfInfoServedUdsfInfoValue

GetServedUdsfInfo returns the ServedUdsfInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedUdsfInfoList ¶

func (o *NrfInfo) GetServedUdsfInfoList() map[string]map[string]NrfInfoServedUdsfInfoValue

GetServedUdsfInfoList returns the ServedUdsfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedUdsfInfoListOk ¶

func (o *NrfInfo) GetServedUdsfInfoListOk() (*map[string]map[string]NrfInfoServedUdsfInfoValue, bool)

GetServedUdsfInfoListOk returns a tuple with the ServedUdsfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedUdsfInfoOk ¶

func (o *NrfInfo) GetServedUdsfInfoOk() (*map[string]NrfInfoServedUdsfInfoValue, bool)

GetServedUdsfInfoOk returns a tuple with the ServedUdsfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedUpfInfo ¶

func (o *NrfInfo) GetServedUpfInfo() map[string]NrfInfoServedUpfInfoValue

GetServedUpfInfo returns the ServedUpfInfo field value if set, zero value otherwise.

func (*NrfInfo) GetServedUpfInfoList ¶

func (o *NrfInfo) GetServedUpfInfoList() map[string]map[string]NrfInfoServedUpfInfoValue

GetServedUpfInfoList returns the ServedUpfInfoList field value if set, zero value otherwise.

func (*NrfInfo) GetServedUpfInfoListOk ¶

func (o *NrfInfo) GetServedUpfInfoListOk() (*map[string]map[string]NrfInfoServedUpfInfoValue, bool)

GetServedUpfInfoListOk returns a tuple with the ServedUpfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) GetServedUpfInfoOk ¶

func (o *NrfInfo) GetServedUpfInfoOk() (*map[string]NrfInfoServedUpfInfoValue, bool)

GetServedUpfInfoOk returns a tuple with the ServedUpfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NrfInfo) HasServed5gDdnmfInfo ¶

func (o *NrfInfo) HasServed5gDdnmfInfo() bool

HasServed5gDdnmfInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedAanfInfoList ¶

func (o *NrfInfo) HasServedAanfInfoList() bool

HasServedAanfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedAmfInfo ¶

func (o *NrfInfo) HasServedAmfInfo() bool

HasServedAmfInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedAmfInfoList ¶

func (o *NrfInfo) HasServedAmfInfoList() bool

HasServedAmfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedAusfInfo ¶

func (o *NrfInfo) HasServedAusfInfo() bool

HasServedAusfInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedAusfInfoList ¶

func (o *NrfInfo) HasServedAusfInfoList() bool

HasServedAusfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedBsfInfo ¶

func (o *NrfInfo) HasServedBsfInfo() bool

HasServedBsfInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedBsfInfoList ¶

func (o *NrfInfo) HasServedBsfInfoList() bool

HasServedBsfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedChfInfo ¶

func (o *NrfInfo) HasServedChfInfo() bool

HasServedChfInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedChfInfoList ¶

func (o *NrfInfo) HasServedChfInfoList() bool

HasServedChfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedDccfInfoList ¶

func (o *NrfInfo) HasServedDccfInfoList() bool

HasServedDccfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedEasdfInfoList ¶

func (o *NrfInfo) HasServedEasdfInfoList() bool

HasServedEasdfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedGmlcInfo ¶

func (o *NrfInfo) HasServedGmlcInfo() bool

HasServedGmlcInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedHssInfoList ¶

func (o *NrfInfo) HasServedHssInfoList() bool

HasServedHssInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedLmfInfo ¶

func (o *NrfInfo) HasServedLmfInfo() bool

HasServedLmfInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedMbSmfInfoList ¶

func (o *NrfInfo) HasServedMbSmfInfoList() bool

HasServedMbSmfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedMbUpfInfoList ¶

func (o *NrfInfo) HasServedMbUpfInfoList() bool

HasServedMbUpfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedMfafInfoList ¶

func (o *NrfInfo) HasServedMfafInfoList() bool

HasServedMfafInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedNefInfo ¶

func (o *NrfInfo) HasServedNefInfo() bool

HasServedNefInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedNfInfo ¶

func (o *NrfInfo) HasServedNfInfo() bool

HasServedNfInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedNssaafInfo ¶

func (o *NrfInfo) HasServedNssaafInfo() bool

HasServedNssaafInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedNwdafInfo ¶

func (o *NrfInfo) HasServedNwdafInfo() bool

HasServedNwdafInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedNwdafInfoList ¶

func (o *NrfInfo) HasServedNwdafInfoList() bool

HasServedNwdafInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedPcfInfo ¶

func (o *NrfInfo) HasServedPcfInfo() bool

HasServedPcfInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedPcfInfoList ¶

func (o *NrfInfo) HasServedPcfInfoList() bool

HasServedPcfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedPcscfInfoList ¶

func (o *NrfInfo) HasServedPcscfInfoList() bool

HasServedPcscfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedScpInfoList ¶

func (o *NrfInfo) HasServedScpInfoList() bool

HasServedScpInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedSeppInfoList ¶

func (o *NrfInfo) HasServedSeppInfoList() bool

HasServedSeppInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedSmfInfo ¶

func (o *NrfInfo) HasServedSmfInfo() bool

HasServedSmfInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedSmfInfoList ¶

func (o *NrfInfo) HasServedSmfInfoList() bool

HasServedSmfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedTrustAfInfo ¶

func (o *NrfInfo) HasServedTrustAfInfo() bool

HasServedTrustAfInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedTsctsfInfoList ¶

func (o *NrfInfo) HasServedTsctsfInfoList() bool

HasServedTsctsfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedUdmInfo ¶

func (o *NrfInfo) HasServedUdmInfo() bool

HasServedUdmInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedUdmInfoList ¶

func (o *NrfInfo) HasServedUdmInfoList() bool

HasServedUdmInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedUdrInfo ¶

func (o *NrfInfo) HasServedUdrInfo() bool

HasServedUdrInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedUdrInfoList ¶

func (o *NrfInfo) HasServedUdrInfoList() bool

HasServedUdrInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedUdsfInfo ¶

func (o *NrfInfo) HasServedUdsfInfo() bool

HasServedUdsfInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedUdsfInfoList ¶

func (o *NrfInfo) HasServedUdsfInfoList() bool

HasServedUdsfInfoList returns a boolean if a field has been set.

func (*NrfInfo) HasServedUpfInfo ¶

func (o *NrfInfo) HasServedUpfInfo() bool

HasServedUpfInfo returns a boolean if a field has been set.

func (*NrfInfo) HasServedUpfInfoList ¶

func (o *NrfInfo) HasServedUpfInfoList() bool

HasServedUpfInfoList returns a boolean if a field has been set.

func (NrfInfo) MarshalJSON ¶

func (o NrfInfo) MarshalJSON() ([]byte, error)

func (*NrfInfo) SetServed5gDdnmfInfo ¶

func (o *NrfInfo) SetServed5gDdnmfInfo(v map[string]Model5GDdnmfInfo)

SetServed5gDdnmfInfo gets a reference to the given map[string]Model5GDdnmfInfo and assigns it to the Served5gDdnmfInfo field.

func (*NrfInfo) SetServedAanfInfoList ¶

func (o *NrfInfo) SetServedAanfInfoList(v map[string]map[string]NrfInfoServedAanfInfoListValueValue)

SetServedAanfInfoList gets a reference to the given map[string]map[string]NrfInfoServedAanfInfoListValueValue and assigns it to the ServedAanfInfoList field.

func (*NrfInfo) SetServedAmfInfo ¶

func (o *NrfInfo) SetServedAmfInfo(v map[string]NrfInfoServedAmfInfoValue)

SetServedAmfInfo gets a reference to the given map[string]NrfInfoServedAmfInfoValue and assigns it to the ServedAmfInfo field.

func (*NrfInfo) SetServedAmfInfoList ¶

func (o *NrfInfo) SetServedAmfInfoList(v map[string]map[string]NrfInfoServedAmfInfoValue)

SetServedAmfInfoList gets a reference to the given map[string]map[string]NrfInfoServedAmfInfoValue and assigns it to the ServedAmfInfoList field.

func (*NrfInfo) SetServedAusfInfo ¶

func (o *NrfInfo) SetServedAusfInfo(v map[string]NrfInfoServedAusfInfoValue)

SetServedAusfInfo gets a reference to the given map[string]NrfInfoServedAusfInfoValue and assigns it to the ServedAusfInfo field.

func (*NrfInfo) SetServedAusfInfoList ¶

func (o *NrfInfo) SetServedAusfInfoList(v map[string]map[string]NrfInfoServedAusfInfoValue)

SetServedAusfInfoList gets a reference to the given map[string]map[string]NrfInfoServedAusfInfoValue and assigns it to the ServedAusfInfoList field.

func (*NrfInfo) SetServedBsfInfo ¶

func (o *NrfInfo) SetServedBsfInfo(v map[string]NrfInfoServedBsfInfoValue)

SetServedBsfInfo gets a reference to the given map[string]NrfInfoServedBsfInfoValue and assigns it to the ServedBsfInfo field.

func (*NrfInfo) SetServedBsfInfoList ¶

func (o *NrfInfo) SetServedBsfInfoList(v map[string]map[string]NrfInfoServedBsfInfoValue)

SetServedBsfInfoList gets a reference to the given map[string]map[string]NrfInfoServedBsfInfoValue and assigns it to the ServedBsfInfoList field.

func (*NrfInfo) SetServedChfInfo ¶

func (o *NrfInfo) SetServedChfInfo(v map[string]NrfInfoServedChfInfoValue)

SetServedChfInfo gets a reference to the given map[string]NrfInfoServedChfInfoValue and assigns it to the ServedChfInfo field.

func (*NrfInfo) SetServedChfInfoList ¶

func (o *NrfInfo) SetServedChfInfoList(v map[string]map[string]NrfInfoServedChfInfoValue)

SetServedChfInfoList gets a reference to the given map[string]map[string]NrfInfoServedChfInfoValue and assigns it to the ServedChfInfoList field.

func (*NrfInfo) SetServedDccfInfoList ¶

func (o *NrfInfo) SetServedDccfInfoList(v map[string]DccfInfo)

SetServedDccfInfoList gets a reference to the given map[string]DccfInfo and assigns it to the ServedDccfInfoList field.

func (*NrfInfo) SetServedEasdfInfoList ¶

func (o *NrfInfo) SetServedEasdfInfoList(v map[string]map[string]EasdfInfo)

SetServedEasdfInfoList gets a reference to the given map[string]map[string]EasdfInfo and assigns it to the ServedEasdfInfoList field.

func (*NrfInfo) SetServedGmlcInfo ¶

func (o *NrfInfo) SetServedGmlcInfo(v map[string]NrfInfoServedGmlcInfoValue)

SetServedGmlcInfo gets a reference to the given map[string]NrfInfoServedGmlcInfoValue and assigns it to the ServedGmlcInfo field.

func (*NrfInfo) SetServedHssInfoList ¶

func (o *NrfInfo) SetServedHssInfoList(v map[string]map[string]NrfInfoServedHssInfoListValueValue)

SetServedHssInfoList gets a reference to the given map[string]map[string]NrfInfoServedHssInfoListValueValue and assigns it to the ServedHssInfoList field.

func (*NrfInfo) SetServedLmfInfo ¶

func (o *NrfInfo) SetServedLmfInfo(v map[string]NrfInfoServedLmfInfoValue)

SetServedLmfInfo gets a reference to the given map[string]NrfInfoServedLmfInfoValue and assigns it to the ServedLmfInfo field.

func (*NrfInfo) SetServedMbSmfInfoList ¶

func (o *NrfInfo) SetServedMbSmfInfoList(v map[string]map[string]NrfInfoServedMbSmfInfoListValueValue)

SetServedMbSmfInfoList gets a reference to the given map[string]map[string]NrfInfoServedMbSmfInfoListValueValue and assigns it to the ServedMbSmfInfoList field.

func (*NrfInfo) SetServedMbUpfInfoList ¶

func (o *NrfInfo) SetServedMbUpfInfoList(v map[string]map[string]MbUpfInfo)

SetServedMbUpfInfoList gets a reference to the given map[string]map[string]MbUpfInfo and assigns it to the ServedMbUpfInfoList field.

func (*NrfInfo) SetServedMfafInfoList ¶

func (o *NrfInfo) SetServedMfafInfoList(v map[string]MfafInfo)

SetServedMfafInfoList gets a reference to the given map[string]MfafInfo and assigns it to the ServedMfafInfoList field.

func (*NrfInfo) SetServedNefInfo ¶

func (o *NrfInfo) SetServedNefInfo(v map[string]NrfInfoServedNefInfoValue)

SetServedNefInfo gets a reference to the given map[string]NrfInfoServedNefInfoValue and assigns it to the ServedNefInfo field.

func (*NrfInfo) SetServedNfInfo ¶

func (o *NrfInfo) SetServedNfInfo(v map[string]NfInfo)

SetServedNfInfo gets a reference to the given map[string]NfInfo and assigns it to the ServedNfInfo field.

func (*NrfInfo) SetServedNssaafInfo ¶

func (o *NrfInfo) SetServedNssaafInfo(v map[string]NssaafInfo)

SetServedNssaafInfo gets a reference to the given map[string]NssaafInfo and assigns it to the ServedNssaafInfo field.

func (*NrfInfo) SetServedNwdafInfo ¶

func (o *NrfInfo) SetServedNwdafInfo(v map[string]NrfInfoServedNwdafInfoValue)

SetServedNwdafInfo gets a reference to the given map[string]NrfInfoServedNwdafInfoValue and assigns it to the ServedNwdafInfo field.

func (*NrfInfo) SetServedNwdafInfoList ¶

func (o *NrfInfo) SetServedNwdafInfoList(v map[string]map[string]NwdafInfo)

SetServedNwdafInfoList gets a reference to the given map[string]map[string]NwdafInfo and assigns it to the ServedNwdafInfoList field.

func (*NrfInfo) SetServedPcfInfo ¶

func (o *NrfInfo) SetServedPcfInfo(v map[string]NrfInfoServedPcfInfoValue)

SetServedPcfInfo gets a reference to the given map[string]NrfInfoServedPcfInfoValue and assigns it to the ServedPcfInfo field.

func (*NrfInfo) SetServedPcfInfoList ¶

func (o *NrfInfo) SetServedPcfInfoList(v map[string]map[string]NrfInfoServedPcfInfoValue)

SetServedPcfInfoList gets a reference to the given map[string]map[string]NrfInfoServedPcfInfoValue and assigns it to the ServedPcfInfoList field.

func (*NrfInfo) SetServedPcscfInfoList ¶

func (o *NrfInfo) SetServedPcscfInfoList(v map[string]map[string]NrfInfoServedPcscfInfoListValueValue)

SetServedPcscfInfoList gets a reference to the given map[string]map[string]NrfInfoServedPcscfInfoListValueValue and assigns it to the ServedPcscfInfoList field.

func (*NrfInfo) SetServedScpInfoList ¶

func (o *NrfInfo) SetServedScpInfoList(v map[string]NrfInfoServedScpInfoListValue)

SetServedScpInfoList gets a reference to the given map[string]NrfInfoServedScpInfoListValue and assigns it to the ServedScpInfoList field.

func (*NrfInfo) SetServedSeppInfoList ¶

func (o *NrfInfo) SetServedSeppInfoList(v map[string]NrfInfoServedSeppInfoListValue)

SetServedSeppInfoList gets a reference to the given map[string]NrfInfoServedSeppInfoListValue and assigns it to the ServedSeppInfoList field.

func (*NrfInfo) SetServedSmfInfo ¶

func (o *NrfInfo) SetServedSmfInfo(v map[string]NrfInfoServedSmfInfoValue)

SetServedSmfInfo gets a reference to the given map[string]NrfInfoServedSmfInfoValue and assigns it to the ServedSmfInfo field.

func (*NrfInfo) SetServedSmfInfoList ¶

func (o *NrfInfo) SetServedSmfInfoList(v map[string]map[string]NrfInfoServedSmfInfoValue)

SetServedSmfInfoList gets a reference to the given map[string]map[string]NrfInfoServedSmfInfoValue and assigns it to the ServedSmfInfoList field.

func (*NrfInfo) SetServedTrustAfInfo ¶

func (o *NrfInfo) SetServedTrustAfInfo(v map[string]TrustAfInfo)

SetServedTrustAfInfo gets a reference to the given map[string]TrustAfInfo and assigns it to the ServedTrustAfInfo field.

func (*NrfInfo) SetServedTsctsfInfoList ¶

func (o *NrfInfo) SetServedTsctsfInfoList(v map[string]map[string]TsctsfInfo)

SetServedTsctsfInfoList gets a reference to the given map[string]map[string]TsctsfInfo and assigns it to the ServedTsctsfInfoList field.

func (*NrfInfo) SetServedUdmInfo ¶

func (o *NrfInfo) SetServedUdmInfo(v map[string]NrfInfoServedUdmInfoValue)

SetServedUdmInfo gets a reference to the given map[string]NrfInfoServedUdmInfoValue and assigns it to the ServedUdmInfo field.

func (*NrfInfo) SetServedUdmInfoList ¶

func (o *NrfInfo) SetServedUdmInfoList(v map[string]map[string]NrfInfoServedUdmInfoValue)

SetServedUdmInfoList gets a reference to the given map[string]map[string]NrfInfoServedUdmInfoValue and assigns it to the ServedUdmInfoList field.

func (*NrfInfo) SetServedUdrInfo ¶

func (o *NrfInfo) SetServedUdrInfo(v map[string]NrfInfoServedUdrInfoValue)

SetServedUdrInfo gets a reference to the given map[string]NrfInfoServedUdrInfoValue and assigns it to the ServedUdrInfo field.

func (*NrfInfo) SetServedUdrInfoList ¶

func (o *NrfInfo) SetServedUdrInfoList(v map[string]map[string]NrfInfoServedUdrInfoValue)

SetServedUdrInfoList gets a reference to the given map[string]map[string]NrfInfoServedUdrInfoValue and assigns it to the ServedUdrInfoList field.

func (*NrfInfo) SetServedUdsfInfo ¶

func (o *NrfInfo) SetServedUdsfInfo(v map[string]NrfInfoServedUdsfInfoValue)

SetServedUdsfInfo gets a reference to the given map[string]NrfInfoServedUdsfInfoValue and assigns it to the ServedUdsfInfo field.

func (*NrfInfo) SetServedUdsfInfoList ¶

func (o *NrfInfo) SetServedUdsfInfoList(v map[string]map[string]NrfInfoServedUdsfInfoValue)

SetServedUdsfInfoList gets a reference to the given map[string]map[string]NrfInfoServedUdsfInfoValue and assigns it to the ServedUdsfInfoList field.

func (*NrfInfo) SetServedUpfInfo ¶

func (o *NrfInfo) SetServedUpfInfo(v map[string]NrfInfoServedUpfInfoValue)

SetServedUpfInfo gets a reference to the given map[string]NrfInfoServedUpfInfoValue and assigns it to the ServedUpfInfo field.

func (*NrfInfo) SetServedUpfInfoList ¶

func (o *NrfInfo) SetServedUpfInfoList(v map[string]map[string]NrfInfoServedUpfInfoValue)

SetServedUpfInfoList gets a reference to the given map[string]map[string]NrfInfoServedUpfInfoValue and assigns it to the ServedUpfInfoList field.

func (NrfInfo) ToMap ¶

func (o NrfInfo) ToMap() (map[string]interface{}, error)

type NrfInfoServedAanfInfoListValueValue ¶

type NrfInfoServedAanfInfoListValueValue struct {
	AanfInfo       *AanfInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedAanfInfoListValueValue struct for NrfInfoServedAanfInfoListValueValue

func (*NrfInfoServedAanfInfoListValueValue) MarshalJSON ¶

func (src *NrfInfoServedAanfInfoListValueValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedAanfInfoListValueValue) UnmarshalJSON ¶

func (dst *NrfInfoServedAanfInfoListValueValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedAmfInfoValue ¶

type NrfInfoServedAmfInfoValue struct {
	AmfInfo        *AmfInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedAmfInfoValue struct for NrfInfoServedAmfInfoValue

func (*NrfInfoServedAmfInfoValue) MarshalJSON ¶

func (src *NrfInfoServedAmfInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedAmfInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedAmfInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedAusfInfoValue ¶

type NrfInfoServedAusfInfoValue struct {
	AusfInfo       *AusfInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedAusfInfoValue struct for NrfInfoServedAusfInfoValue

func (*NrfInfoServedAusfInfoValue) MarshalJSON ¶

func (src *NrfInfoServedAusfInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedAusfInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedAusfInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedBsfInfoValue ¶

type NrfInfoServedBsfInfoValue struct {
	BsfInfo        *BsfInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedBsfInfoValue struct for NrfInfoServedBsfInfoValue

func (*NrfInfoServedBsfInfoValue) MarshalJSON ¶

func (src *NrfInfoServedBsfInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedBsfInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedBsfInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedChfInfoValue ¶

type NrfInfoServedChfInfoValue struct {
	ChfInfo        *ChfInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedChfInfoValue struct for NrfInfoServedChfInfoValue

func (*NrfInfoServedChfInfoValue) MarshalJSON ¶

func (src *NrfInfoServedChfInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedChfInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedChfInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedGmlcInfoValue ¶

type NrfInfoServedGmlcInfoValue struct {
	GmlcInfo       *GmlcInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedGmlcInfoValue struct for NrfInfoServedGmlcInfoValue

func (*NrfInfoServedGmlcInfoValue) MarshalJSON ¶

func (src *NrfInfoServedGmlcInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedGmlcInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedGmlcInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedHssInfoListValueValue ¶

type NrfInfoServedHssInfoListValueValue struct {
	HssInfo        *HssInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedHssInfoListValueValue struct for NrfInfoServedHssInfoListValueValue

func (*NrfInfoServedHssInfoListValueValue) MarshalJSON ¶

func (src *NrfInfoServedHssInfoListValueValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedHssInfoListValueValue) UnmarshalJSON ¶

func (dst *NrfInfoServedHssInfoListValueValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedLmfInfoValue ¶

type NrfInfoServedLmfInfoValue struct {
	LmfInfo        *LmfInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedLmfInfoValue struct for NrfInfoServedLmfInfoValue

func (*NrfInfoServedLmfInfoValue) MarshalJSON ¶

func (src *NrfInfoServedLmfInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedLmfInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedLmfInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedMbSmfInfoListValueValue ¶

type NrfInfoServedMbSmfInfoListValueValue struct {
	MbSmfInfo      *MbSmfInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedMbSmfInfoListValueValue struct for NrfInfoServedMbSmfInfoListValueValue

func (*NrfInfoServedMbSmfInfoListValueValue) MarshalJSON ¶

func (src *NrfInfoServedMbSmfInfoListValueValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedMbSmfInfoListValueValue) UnmarshalJSON ¶

func (dst *NrfInfoServedMbSmfInfoListValueValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedNefInfoValue ¶

type NrfInfoServedNefInfoValue struct {
	NefInfo        *NefInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedNefInfoValue struct for NrfInfoServedNefInfoValue

func (*NrfInfoServedNefInfoValue) MarshalJSON ¶

func (src *NrfInfoServedNefInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedNefInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedNefInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedNwdafInfoValue ¶

type NrfInfoServedNwdafInfoValue struct {
	NwdafInfo      *NwdafInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedNwdafInfoValue struct for NrfInfoServedNwdafInfoValue

func (*NrfInfoServedNwdafInfoValue) MarshalJSON ¶

func (src *NrfInfoServedNwdafInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedNwdafInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedNwdafInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedPcfInfoValue ¶

type NrfInfoServedPcfInfoValue struct {
	PcfInfo        *PcfInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedPcfInfoValue struct for NrfInfoServedPcfInfoValue

func (*NrfInfoServedPcfInfoValue) MarshalJSON ¶

func (src *NrfInfoServedPcfInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedPcfInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedPcfInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedPcscfInfoListValueValue ¶

type NrfInfoServedPcscfInfoListValueValue struct {
	PcscfInfo      *PcscfInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedPcscfInfoListValueValue struct for NrfInfoServedPcscfInfoListValueValue

func (*NrfInfoServedPcscfInfoListValueValue) MarshalJSON ¶

func (src *NrfInfoServedPcscfInfoListValueValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedPcscfInfoListValueValue) UnmarshalJSON ¶

func (dst *NrfInfoServedPcscfInfoListValueValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedScpInfoListValue ¶

type NrfInfoServedScpInfoListValue struct {
	ScpInfo        *ScpInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedScpInfoListValue struct for NrfInfoServedScpInfoListValue

func (*NrfInfoServedScpInfoListValue) MarshalJSON ¶

func (src *NrfInfoServedScpInfoListValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedScpInfoListValue) UnmarshalJSON ¶

func (dst *NrfInfoServedScpInfoListValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedSeppInfoListValue ¶

type NrfInfoServedSeppInfoListValue struct {
	SeppInfo       *SeppInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedSeppInfoListValue struct for NrfInfoServedSeppInfoListValue

func (*NrfInfoServedSeppInfoListValue) MarshalJSON ¶

func (src *NrfInfoServedSeppInfoListValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedSeppInfoListValue) UnmarshalJSON ¶

func (dst *NrfInfoServedSeppInfoListValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedSmfInfoValue ¶

type NrfInfoServedSmfInfoValue struct {
	SmfInfo        *SmfInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedSmfInfoValue struct for NrfInfoServedSmfInfoValue

func (*NrfInfoServedSmfInfoValue) MarshalJSON ¶

func (src *NrfInfoServedSmfInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedSmfInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedSmfInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedUdmInfoValue ¶

type NrfInfoServedUdmInfoValue struct {
	UdmInfo        *UdmInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedUdmInfoValue struct for NrfInfoServedUdmInfoValue

func (*NrfInfoServedUdmInfoValue) MarshalJSON ¶

func (src *NrfInfoServedUdmInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedUdmInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedUdmInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedUdrInfoValue ¶

type NrfInfoServedUdrInfoValue struct {
	UdrInfo        *UdrInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedUdrInfoValue struct for NrfInfoServedUdrInfoValue

func (*NrfInfoServedUdrInfoValue) MarshalJSON ¶

func (src *NrfInfoServedUdrInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedUdrInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedUdrInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedUdsfInfoValue ¶

type NrfInfoServedUdsfInfoValue struct {
	UdsfInfo       *UdsfInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedUdsfInfoValue struct for NrfInfoServedUdsfInfoValue

func (*NrfInfoServedUdsfInfoValue) MarshalJSON ¶

func (src *NrfInfoServedUdsfInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedUdsfInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedUdsfInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NrfInfoServedUpfInfoValue ¶

type NrfInfoServedUpfInfoValue struct {
	UpfInfo        *UpfInfo
	MapOfInterface *map[string]interface{}
}

NrfInfoServedUpfInfoValue struct for NrfInfoServedUpfInfoValue

func (*NrfInfoServedUpfInfoValue) MarshalJSON ¶

func (src *NrfInfoServedUpfInfoValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NrfInfoServedUpfInfoValue) UnmarshalJSON ¶

func (dst *NrfInfoServedUpfInfoValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NsacfCapability ¶

type NsacfCapability struct {
	// Indicates the service capability of the NSACF to monitor and control the number of registered UEs per network slice for the network slice that is subject to NSAC   true: Supported   false (default): Not Supported
	SupportUeSAC *bool `json:"supportUeSAC,omitempty"`
	// Indicates the service capability of the NSACF to monitor and control the number of established PDU sessions per network slice for the network slice that is subject to NSAC   true: Supported   false (default): Not Supported
	SupportPduSAC *bool `json:"supportPduSAC,omitempty"`
}

NsacfCapability NSACF service capabilities (e.g. to monitor and control the number of registered UEs or established PDU sessions per network slice)

func NewNsacfCapability ¶

func NewNsacfCapability() *NsacfCapability

NewNsacfCapability instantiates a new NsacfCapability 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 NewNsacfCapabilityWithDefaults ¶

func NewNsacfCapabilityWithDefaults() *NsacfCapability

NewNsacfCapabilityWithDefaults instantiates a new NsacfCapability 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 (*NsacfCapability) GetSupportPduSAC ¶

func (o *NsacfCapability) GetSupportPduSAC() bool

GetSupportPduSAC returns the SupportPduSAC field value if set, zero value otherwise.

func (*NsacfCapability) GetSupportPduSACOk ¶

func (o *NsacfCapability) GetSupportPduSACOk() (*bool, bool)

GetSupportPduSACOk returns a tuple with the SupportPduSAC field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsacfCapability) GetSupportUeSAC ¶

func (o *NsacfCapability) GetSupportUeSAC() bool

GetSupportUeSAC returns the SupportUeSAC field value if set, zero value otherwise.

func (*NsacfCapability) GetSupportUeSACOk ¶

func (o *NsacfCapability) GetSupportUeSACOk() (*bool, bool)

GetSupportUeSACOk returns a tuple with the SupportUeSAC field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsacfCapability) HasSupportPduSAC ¶

func (o *NsacfCapability) HasSupportPduSAC() bool

HasSupportPduSAC returns a boolean if a field has been set.

func (*NsacfCapability) HasSupportUeSAC ¶

func (o *NsacfCapability) HasSupportUeSAC() bool

HasSupportUeSAC returns a boolean if a field has been set.

func (NsacfCapability) MarshalJSON ¶

func (o NsacfCapability) MarshalJSON() ([]byte, error)

func (*NsacfCapability) SetSupportPduSAC ¶

func (o *NsacfCapability) SetSupportPduSAC(v bool)

SetSupportPduSAC gets a reference to the given bool and assigns it to the SupportPduSAC field.

func (*NsacfCapability) SetSupportUeSAC ¶

func (o *NsacfCapability) SetSupportUeSAC(v bool)

SetSupportUeSAC gets a reference to the given bool and assigns it to the SupportUeSAC field.

func (NsacfCapability) ToMap ¶

func (o NsacfCapability) ToMap() (map[string]interface{}, error)

type NsacfInfo ¶

type NsacfInfo struct {
	NsacfCapability NsacfCapability `json:"nsacfCapability"`
	TaiList         []Tai           `json:"taiList,omitempty"`
	TaiRangeList    []TaiRange      `json:"taiRangeList,omitempty"`
}

NsacfInfo Information of a NSACF NF Instance

func NewNsacfInfo ¶

func NewNsacfInfo(nsacfCapability NsacfCapability) *NsacfInfo

NewNsacfInfo instantiates a new NsacfInfo 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 NewNsacfInfoWithDefaults ¶

func NewNsacfInfoWithDefaults() *NsacfInfo

NewNsacfInfoWithDefaults instantiates a new NsacfInfo 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 (*NsacfInfo) GetNsacfCapability ¶

func (o *NsacfInfo) GetNsacfCapability() NsacfCapability

GetNsacfCapability returns the NsacfCapability field value

func (*NsacfInfo) GetNsacfCapabilityOk ¶

func (o *NsacfInfo) GetNsacfCapabilityOk() (*NsacfCapability, bool)

GetNsacfCapabilityOk returns a tuple with the NsacfCapability field value and a boolean to check if the value has been set.

func (*NsacfInfo) GetTaiList ¶

func (o *NsacfInfo) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*NsacfInfo) GetTaiListOk ¶

func (o *NsacfInfo) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsacfInfo) GetTaiRangeList ¶

func (o *NsacfInfo) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*NsacfInfo) GetTaiRangeListOk ¶

func (o *NsacfInfo) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsacfInfo) HasTaiList ¶

func (o *NsacfInfo) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (*NsacfInfo) HasTaiRangeList ¶

func (o *NsacfInfo) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (NsacfInfo) MarshalJSON ¶

func (o NsacfInfo) MarshalJSON() ([]byte, error)

func (*NsacfInfo) SetNsacfCapability ¶

func (o *NsacfInfo) SetNsacfCapability(v NsacfCapability)

SetNsacfCapability sets field value

func (*NsacfInfo) SetTaiList ¶

func (o *NsacfInfo) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (*NsacfInfo) SetTaiRangeList ¶

func (o *NsacfInfo) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (NsacfInfo) ToMap ¶

func (o NsacfInfo) ToMap() (map[string]interface{}, error)

type NsiIdInfo ¶

type NsiIdInfo struct {
	Snssai Snssai   `json:"snssai"`
	NsiIds []string `json:"nsiIds,omitempty"`
}

NsiIdInfo Represents the S-NSSAI and the optionally associated Network Slice Instance(s).

func NewNsiIdInfo ¶

func NewNsiIdInfo(snssai Snssai) *NsiIdInfo

NewNsiIdInfo instantiates a new NsiIdInfo 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 NewNsiIdInfoWithDefaults ¶

func NewNsiIdInfoWithDefaults() *NsiIdInfo

NewNsiIdInfoWithDefaults instantiates a new NsiIdInfo 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 (*NsiIdInfo) GetNsiIds ¶

func (o *NsiIdInfo) GetNsiIds() []string

GetNsiIds returns the NsiIds field value if set, zero value otherwise.

func (*NsiIdInfo) GetNsiIdsOk ¶

func (o *NsiIdInfo) GetNsiIdsOk() ([]string, bool)

GetNsiIdsOk returns a tuple with the NsiIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsiIdInfo) GetSnssai ¶

func (o *NsiIdInfo) GetSnssai() Snssai

GetSnssai returns the Snssai field value

func (*NsiIdInfo) GetSnssaiOk ¶

func (o *NsiIdInfo) GetSnssaiOk() (*Snssai, bool)

GetSnssaiOk returns a tuple with the Snssai field value and a boolean to check if the value has been set.

func (*NsiIdInfo) HasNsiIds ¶

func (o *NsiIdInfo) HasNsiIds() bool

HasNsiIds returns a boolean if a field has been set.

func (NsiIdInfo) MarshalJSON ¶

func (o NsiIdInfo) MarshalJSON() ([]byte, error)

func (*NsiIdInfo) SetNsiIds ¶

func (o *NsiIdInfo) SetNsiIds(v []string)

SetNsiIds gets a reference to the given []string and assigns it to the NsiIds field.

func (*NsiIdInfo) SetSnssai ¶

func (o *NsiIdInfo) SetSnssai(v Snssai)

SetSnssai sets field value

func (NsiIdInfo) ToMap ¶

func (o NsiIdInfo) ToMap() (map[string]interface{}, error)

type NsiLoadLevelInfo ¶

type NsiLoadLevelInfo struct {
	// Load level information of the network slice and the optionally associated network slice  instance.
	LoadLevelInformation int32  `json:"loadLevelInformation"`
	Snssai               Snssai `json:"snssai"`
	// Contains the Identifier of the selected Network Slice instance
	NsiId    *string        `json:"nsiId,omitempty"`
	ResUsage *ResourceUsage `json:"resUsage,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	NumOfExceedLoadLevelThr *int32           `json:"numOfExceedLoadLevelThr,omitempty"`
	ExceedLoadLevelThrInd   *bool            `json:"exceedLoadLevelThrInd,omitempty"`
	NetworkArea             *NetworkAreaInfo `json:"networkArea,omitempty"`
	TimePeriod              *TimeWindow      `json:"timePeriod,omitempty"`
	// Each element indicates the time elapsed between times each threshold is met or exceeded or crossed. The start time and end time are the exact time stamps of the resource usage threshold is reached or exceeded. May be present if the \"listOfAnaSubsets\" attribute is  provided and the maximum number of instances shall not exceed the value provided in the  \"numOfExceedLoadLevelThr\" attribute.
	ResUsgThrCrossTimePeriod []TimeWindow   `json:"resUsgThrCrossTimePeriod,omitempty"`
	NumOfUes                 *NumberAverage `json:"numOfUes,omitempty"`
	NumOfPduSess             *NumberAverage `json:"numOfPduSess,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Confidence *int32 `json:"confidence,omitempty"`
}

NsiLoadLevelInfo Represents the network slice and optionally the associated network slice instance and the load level information.

func NewNsiLoadLevelInfo ¶

func NewNsiLoadLevelInfo(loadLevelInformation int32, snssai Snssai) *NsiLoadLevelInfo

NewNsiLoadLevelInfo instantiates a new NsiLoadLevelInfo 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 NewNsiLoadLevelInfoWithDefaults ¶

func NewNsiLoadLevelInfoWithDefaults() *NsiLoadLevelInfo

NewNsiLoadLevelInfoWithDefaults instantiates a new NsiLoadLevelInfo 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 (*NsiLoadLevelInfo) GetConfidence ¶

func (o *NsiLoadLevelInfo) GetConfidence() int32

GetConfidence returns the Confidence field value if set, zero value otherwise.

func (*NsiLoadLevelInfo) GetConfidenceOk ¶

func (o *NsiLoadLevelInfo) GetConfidenceOk() (*int32, bool)

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 (*NsiLoadLevelInfo) GetExceedLoadLevelThrInd ¶

func (o *NsiLoadLevelInfo) GetExceedLoadLevelThrInd() bool

GetExceedLoadLevelThrInd returns the ExceedLoadLevelThrInd field value if set, zero value otherwise.

func (*NsiLoadLevelInfo) GetExceedLoadLevelThrIndOk ¶

func (o *NsiLoadLevelInfo) GetExceedLoadLevelThrIndOk() (*bool, bool)

GetExceedLoadLevelThrIndOk returns a tuple with the ExceedLoadLevelThrInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsiLoadLevelInfo) GetLoadLevelInformation ¶

func (o *NsiLoadLevelInfo) GetLoadLevelInformation() int32

GetLoadLevelInformation returns the LoadLevelInformation field value

func (*NsiLoadLevelInfo) GetLoadLevelInformationOk ¶

func (o *NsiLoadLevelInfo) GetLoadLevelInformationOk() (*int32, bool)

GetLoadLevelInformationOk returns a tuple with the LoadLevelInformation field value and a boolean to check if the value has been set.

func (*NsiLoadLevelInfo) GetNetworkArea ¶

func (o *NsiLoadLevelInfo) GetNetworkArea() NetworkAreaInfo

GetNetworkArea returns the NetworkArea field value if set, zero value otherwise.

func (*NsiLoadLevelInfo) GetNetworkAreaOk ¶

func (o *NsiLoadLevelInfo) GetNetworkAreaOk() (*NetworkAreaInfo, bool)

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 (*NsiLoadLevelInfo) GetNsiId ¶

func (o *NsiLoadLevelInfo) GetNsiId() string

GetNsiId returns the NsiId field value if set, zero value otherwise.

func (*NsiLoadLevelInfo) GetNsiIdOk ¶

func (o *NsiLoadLevelInfo) GetNsiIdOk() (*string, bool)

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 (*NsiLoadLevelInfo) GetNumOfExceedLoadLevelThr ¶

func (o *NsiLoadLevelInfo) GetNumOfExceedLoadLevelThr() int32

GetNumOfExceedLoadLevelThr returns the NumOfExceedLoadLevelThr field value if set, zero value otherwise.

func (*NsiLoadLevelInfo) GetNumOfExceedLoadLevelThrOk ¶

func (o *NsiLoadLevelInfo) GetNumOfExceedLoadLevelThrOk() (*int32, bool)

GetNumOfExceedLoadLevelThrOk returns a tuple with the NumOfExceedLoadLevelThr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsiLoadLevelInfo) GetNumOfPduSess ¶

func (o *NsiLoadLevelInfo) GetNumOfPduSess() NumberAverage

GetNumOfPduSess returns the NumOfPduSess field value if set, zero value otherwise.

func (*NsiLoadLevelInfo) GetNumOfPduSessOk ¶

func (o *NsiLoadLevelInfo) GetNumOfPduSessOk() (*NumberAverage, bool)

GetNumOfPduSessOk returns a tuple with the NumOfPduSess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsiLoadLevelInfo) GetNumOfUes ¶

func (o *NsiLoadLevelInfo) GetNumOfUes() NumberAverage

GetNumOfUes returns the NumOfUes field value if set, zero value otherwise.

func (*NsiLoadLevelInfo) GetNumOfUesOk ¶

func (o *NsiLoadLevelInfo) GetNumOfUesOk() (*NumberAverage, bool)

GetNumOfUesOk returns a tuple with the NumOfUes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsiLoadLevelInfo) GetResUsage ¶

func (o *NsiLoadLevelInfo) GetResUsage() ResourceUsage

GetResUsage returns the ResUsage field value if set, zero value otherwise.

func (*NsiLoadLevelInfo) GetResUsageOk ¶

func (o *NsiLoadLevelInfo) GetResUsageOk() (*ResourceUsage, bool)

GetResUsageOk returns a tuple with the ResUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsiLoadLevelInfo) GetResUsgThrCrossTimePeriod ¶

func (o *NsiLoadLevelInfo) GetResUsgThrCrossTimePeriod() []TimeWindow

GetResUsgThrCrossTimePeriod returns the ResUsgThrCrossTimePeriod field value if set, zero value otherwise.

func (*NsiLoadLevelInfo) GetResUsgThrCrossTimePeriodOk ¶

func (o *NsiLoadLevelInfo) GetResUsgThrCrossTimePeriodOk() ([]TimeWindow, bool)

GetResUsgThrCrossTimePeriodOk returns a tuple with the ResUsgThrCrossTimePeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsiLoadLevelInfo) GetSnssai ¶

func (o *NsiLoadLevelInfo) GetSnssai() Snssai

GetSnssai returns the Snssai field value

func (*NsiLoadLevelInfo) GetSnssaiOk ¶

func (o *NsiLoadLevelInfo) GetSnssaiOk() (*Snssai, bool)

GetSnssaiOk returns a tuple with the Snssai field value and a boolean to check if the value has been set.

func (*NsiLoadLevelInfo) GetTimePeriod ¶

func (o *NsiLoadLevelInfo) GetTimePeriod() TimeWindow

GetTimePeriod returns the TimePeriod field value if set, zero value otherwise.

func (*NsiLoadLevelInfo) GetTimePeriodOk ¶

func (o *NsiLoadLevelInfo) GetTimePeriodOk() (*TimeWindow, bool)

GetTimePeriodOk returns a tuple with the TimePeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsiLoadLevelInfo) HasConfidence ¶

func (o *NsiLoadLevelInfo) HasConfidence() bool

HasConfidence returns a boolean if a field has been set.

func (*NsiLoadLevelInfo) HasExceedLoadLevelThrInd ¶

func (o *NsiLoadLevelInfo) HasExceedLoadLevelThrInd() bool

HasExceedLoadLevelThrInd returns a boolean if a field has been set.

func (*NsiLoadLevelInfo) HasNetworkArea ¶

func (o *NsiLoadLevelInfo) HasNetworkArea() bool

HasNetworkArea returns a boolean if a field has been set.

func (*NsiLoadLevelInfo) HasNsiId ¶

func (o *NsiLoadLevelInfo) HasNsiId() bool

HasNsiId returns a boolean if a field has been set.

func (*NsiLoadLevelInfo) HasNumOfExceedLoadLevelThr ¶

func (o *NsiLoadLevelInfo) HasNumOfExceedLoadLevelThr() bool

HasNumOfExceedLoadLevelThr returns a boolean if a field has been set.

func (*NsiLoadLevelInfo) HasNumOfPduSess ¶

func (o *NsiLoadLevelInfo) HasNumOfPduSess() bool

HasNumOfPduSess returns a boolean if a field has been set.

func (*NsiLoadLevelInfo) HasNumOfUes ¶

func (o *NsiLoadLevelInfo) HasNumOfUes() bool

HasNumOfUes returns a boolean if a field has been set.

func (*NsiLoadLevelInfo) HasResUsage ¶

func (o *NsiLoadLevelInfo) HasResUsage() bool

HasResUsage returns a boolean if a field has been set.

func (*NsiLoadLevelInfo) HasResUsgThrCrossTimePeriod ¶

func (o *NsiLoadLevelInfo) HasResUsgThrCrossTimePeriod() bool

HasResUsgThrCrossTimePeriod returns a boolean if a field has been set.

func (*NsiLoadLevelInfo) HasTimePeriod ¶

func (o *NsiLoadLevelInfo) HasTimePeriod() bool

HasTimePeriod returns a boolean if a field has been set.

func (NsiLoadLevelInfo) MarshalJSON ¶

func (o NsiLoadLevelInfo) MarshalJSON() ([]byte, error)

func (*NsiLoadLevelInfo) SetConfidence ¶

func (o *NsiLoadLevelInfo) SetConfidence(v int32)

SetConfidence gets a reference to the given int32 and assigns it to the Confidence field.

func (*NsiLoadLevelInfo) SetExceedLoadLevelThrInd ¶

func (o *NsiLoadLevelInfo) SetExceedLoadLevelThrInd(v bool)

SetExceedLoadLevelThrInd gets a reference to the given bool and assigns it to the ExceedLoadLevelThrInd field.

func (*NsiLoadLevelInfo) SetLoadLevelInformation ¶

func (o *NsiLoadLevelInfo) SetLoadLevelInformation(v int32)

SetLoadLevelInformation sets field value

func (*NsiLoadLevelInfo) SetNetworkArea ¶

func (o *NsiLoadLevelInfo) SetNetworkArea(v NetworkAreaInfo)

SetNetworkArea gets a reference to the given NetworkAreaInfo and assigns it to the NetworkArea field.

func (*NsiLoadLevelInfo) SetNsiId ¶

func (o *NsiLoadLevelInfo) SetNsiId(v string)

SetNsiId gets a reference to the given string and assigns it to the NsiId field.

func (*NsiLoadLevelInfo) SetNumOfExceedLoadLevelThr ¶

func (o *NsiLoadLevelInfo) SetNumOfExceedLoadLevelThr(v int32)

SetNumOfExceedLoadLevelThr gets a reference to the given int32 and assigns it to the NumOfExceedLoadLevelThr field.

func (*NsiLoadLevelInfo) SetNumOfPduSess ¶

func (o *NsiLoadLevelInfo) SetNumOfPduSess(v NumberAverage)

SetNumOfPduSess gets a reference to the given NumberAverage and assigns it to the NumOfPduSess field.

func (*NsiLoadLevelInfo) SetNumOfUes ¶

func (o *NsiLoadLevelInfo) SetNumOfUes(v NumberAverage)

SetNumOfUes gets a reference to the given NumberAverage and assigns it to the NumOfUes field.

func (*NsiLoadLevelInfo) SetResUsage ¶

func (o *NsiLoadLevelInfo) SetResUsage(v ResourceUsage)

SetResUsage gets a reference to the given ResourceUsage and assigns it to the ResUsage field.

func (*NsiLoadLevelInfo) SetResUsgThrCrossTimePeriod ¶

func (o *NsiLoadLevelInfo) SetResUsgThrCrossTimePeriod(v []TimeWindow)

SetResUsgThrCrossTimePeriod gets a reference to the given []TimeWindow and assigns it to the ResUsgThrCrossTimePeriod field.

func (*NsiLoadLevelInfo) SetSnssai ¶

func (o *NsiLoadLevelInfo) SetSnssai(v Snssai)

SetSnssai sets field value

func (*NsiLoadLevelInfo) SetTimePeriod ¶

func (o *NsiLoadLevelInfo) SetTimePeriod(v TimeWindow)

SetTimePeriod gets a reference to the given TimeWindow and assigns it to the TimePeriod field.

func (NsiLoadLevelInfo) ToMap ¶

func (o NsiLoadLevelInfo) ToMap() (map[string]interface{}, error)

type NsmfEventExposure ¶

type NsmfEventExposure struct {
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,omitempty"`
	// 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.
	Gpsi *string `json:"gpsi,omitempty"`
	// Any UE indication. This IE shall be present if the event subscription is applicable to  any UE. Default value \"false\" is used, if not present.
	AnyUeInd *bool `json:"anyUeInd,omitempty"`
	// String identifying a group of devices network internal globally unique ID which identifies a set of IMSIs, as specified in clause 19.9 of 3GPP TS 23.003.
	GroupId *string `json:"groupId,omitempty"`
	// Unsigned integer identifying a PDU session, within the range 0 to 255, as specified in  clause 11.2.3.1b, bits 1 to 8, of 3GPP TS 24.007. If the PDU Session ID is allocated by the  Core Network for UEs not supporting N1 mode, reserved range 64 to 95 is used. PDU Session ID  within the reserved range is only visible in the Core Network.
	PduSeId *int32 `json:"pduSeId,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"`
	Snssai *Snssai `json:"snssai,omitempty"`
	// Identifies an Individual SMF Notification Subscription. To enable that the value is used as part of a URI, the string shall only contain characters allowed according to the \"lower-with-hyphen\" naming convention defined in 3GPP TS 29.501. In an OpenAPI schema, the format shall be designated as \"SubId\".
	SubId *string `json:"subId,omitempty"`
	// Notification Correlation ID assigned by the NF service consumer.
	NotifId string `json:"notifId"`
	// String providing an URI formatted according to RFC 3986.
	NotifUri string `json:"notifUri"`
	// Alternate or backup IPv4 address(es) where to send Notifications.
	AltNotifIpv4Addrs []string `json:"altNotifIpv4Addrs,omitempty"`
	// Alternate or backup IPv6 address(es) where to send Notifications.
	AltNotifIpv6Addrs []Ipv6Addr `json:"altNotifIpv6Addrs,omitempty"`
	// Alternate or backup FQDN(s) where to send Notifications.
	AltNotifFqdns []string `json:"altNotifFqdns,omitempty"`
	// Subscribed events
	EventSubs   []EventSubscription1 `json:"eventSubs"`
	EventNotifs []EventNotification1 `json:"eventNotifs,omitempty"`
	ImmeRep     *bool                `json:"ImmeRep,omitempty"`
	NotifMethod *NotificationMethod1 `json:"notifMethod,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	MaxReportNbr *int32 `json:"maxReportNbr,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	Expiry *time.Time `json:"expiry,omitempty"`
	// indicating a time in seconds.
	RepPeriod   *int32       `json:"repPeriod,omitempty"`
	Guami       *Guami       `json:"guami,omitempty"`
	ServiveName *ServiceName `json:"serviveName,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures *string `json:"supportedFeatures,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	SampRatio *int32 `json:"sampRatio,omitempty"`
	// Criteria for partitioning the UEs before applying the sampling ratio.
	PartitionCriteria []PartitioningCriteria `json:"partitionCriteria,omitempty"`
	// indicating a time in seconds.
	GrpRepTime *int32            `json:"grpRepTime,omitempty"`
	NotifFlag  *NotificationFlag `json:"notifFlag,omitempty"`
}

NsmfEventExposure Represents an Individual SMF Notification Subscription resource. The serviveName property corresponds to the serviceName in the main body of the specification.

func NewNsmfEventExposure ¶

func NewNsmfEventExposure(notifId string, notifUri string, eventSubs []EventSubscription1) *NsmfEventExposure

NewNsmfEventExposure instantiates a new NsmfEventExposure 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 NewNsmfEventExposureWithDefaults ¶

func NewNsmfEventExposureWithDefaults() *NsmfEventExposure

NewNsmfEventExposureWithDefaults instantiates a new NsmfEventExposure 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 (*NsmfEventExposure) GetAltNotifFqdns ¶

func (o *NsmfEventExposure) GetAltNotifFqdns() []string

GetAltNotifFqdns returns the AltNotifFqdns field value if set, zero value otherwise.

func (*NsmfEventExposure) GetAltNotifFqdnsOk ¶

func (o *NsmfEventExposure) GetAltNotifFqdnsOk() ([]string, bool)

GetAltNotifFqdnsOk returns a tuple with the AltNotifFqdns field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetAltNotifIpv4Addrs ¶

func (o *NsmfEventExposure) GetAltNotifIpv4Addrs() []string

GetAltNotifIpv4Addrs returns the AltNotifIpv4Addrs field value if set, zero value otherwise.

func (*NsmfEventExposure) GetAltNotifIpv4AddrsOk ¶

func (o *NsmfEventExposure) GetAltNotifIpv4AddrsOk() ([]string, bool)

GetAltNotifIpv4AddrsOk returns a tuple with the AltNotifIpv4Addrs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetAltNotifIpv6Addrs ¶

func (o *NsmfEventExposure) GetAltNotifIpv6Addrs() []Ipv6Addr

GetAltNotifIpv6Addrs returns the AltNotifIpv6Addrs field value if set, zero value otherwise.

func (*NsmfEventExposure) GetAltNotifIpv6AddrsOk ¶

func (o *NsmfEventExposure) GetAltNotifIpv6AddrsOk() ([]Ipv6Addr, bool)

GetAltNotifIpv6AddrsOk returns a tuple with the AltNotifIpv6Addrs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetAnyUeInd ¶

func (o *NsmfEventExposure) GetAnyUeInd() bool

GetAnyUeInd returns the AnyUeInd field value if set, zero value otherwise.

func (*NsmfEventExposure) GetAnyUeIndOk ¶

func (o *NsmfEventExposure) GetAnyUeIndOk() (*bool, bool)

GetAnyUeIndOk returns a tuple with the AnyUeInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetDnn ¶

func (o *NsmfEventExposure) GetDnn() string

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*NsmfEventExposure) GetDnnOk ¶

func (o *NsmfEventExposure) GetDnnOk() (*string, bool)

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 (*NsmfEventExposure) GetEventNotifs ¶

func (o *NsmfEventExposure) GetEventNotifs() []EventNotification1

GetEventNotifs returns the EventNotifs field value if set, zero value otherwise.

func (*NsmfEventExposure) GetEventNotifsOk ¶

func (o *NsmfEventExposure) GetEventNotifsOk() ([]EventNotification1, bool)

GetEventNotifsOk returns a tuple with the EventNotifs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetEventSubs ¶

func (o *NsmfEventExposure) GetEventSubs() []EventSubscription1

GetEventSubs returns the EventSubs field value

func (*NsmfEventExposure) GetEventSubsOk ¶

func (o *NsmfEventExposure) GetEventSubsOk() ([]EventSubscription1, bool)

GetEventSubsOk returns a tuple with the EventSubs field value and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetExpiry ¶

func (o *NsmfEventExposure) GetExpiry() time.Time

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*NsmfEventExposure) GetExpiryOk ¶

func (o *NsmfEventExposure) GetExpiryOk() (*time.Time, bool)

GetExpiryOk returns a tuple with the Expiry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetGpsi ¶

func (o *NsmfEventExposure) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*NsmfEventExposure) GetGpsiOk ¶

func (o *NsmfEventExposure) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetGroupId ¶

func (o *NsmfEventExposure) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*NsmfEventExposure) GetGroupIdOk ¶

func (o *NsmfEventExposure) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetGrpRepTime ¶

func (o *NsmfEventExposure) GetGrpRepTime() int32

GetGrpRepTime returns the GrpRepTime field value if set, zero value otherwise.

func (*NsmfEventExposure) GetGrpRepTimeOk ¶

func (o *NsmfEventExposure) GetGrpRepTimeOk() (*int32, bool)

GetGrpRepTimeOk returns a tuple with the GrpRepTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetGuami ¶

func (o *NsmfEventExposure) GetGuami() Guami

GetGuami returns the Guami field value if set, zero value otherwise.

func (*NsmfEventExposure) GetGuamiOk ¶

func (o *NsmfEventExposure) GetGuamiOk() (*Guami, bool)

GetGuamiOk returns a tuple with the Guami field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetImmeRep ¶

func (o *NsmfEventExposure) GetImmeRep() bool

GetImmeRep returns the ImmeRep field value if set, zero value otherwise.

func (*NsmfEventExposure) GetImmeRepOk ¶

func (o *NsmfEventExposure) GetImmeRepOk() (*bool, bool)

GetImmeRepOk returns a tuple with the ImmeRep field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetMaxReportNbr ¶

func (o *NsmfEventExposure) GetMaxReportNbr() int32

GetMaxReportNbr returns the MaxReportNbr field value if set, zero value otherwise.

func (*NsmfEventExposure) GetMaxReportNbrOk ¶

func (o *NsmfEventExposure) GetMaxReportNbrOk() (*int32, bool)

GetMaxReportNbrOk returns a tuple with the MaxReportNbr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetNotifFlag ¶

func (o *NsmfEventExposure) GetNotifFlag() NotificationFlag

GetNotifFlag returns the NotifFlag field value if set, zero value otherwise.

func (*NsmfEventExposure) GetNotifFlagOk ¶

func (o *NsmfEventExposure) GetNotifFlagOk() (*NotificationFlag, bool)

GetNotifFlagOk returns a tuple with the NotifFlag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetNotifId ¶

func (o *NsmfEventExposure) GetNotifId() string

GetNotifId returns the NotifId field value

func (*NsmfEventExposure) GetNotifIdOk ¶

func (o *NsmfEventExposure) GetNotifIdOk() (*string, bool)

GetNotifIdOk returns a tuple with the NotifId field value and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetNotifMethod ¶

func (o *NsmfEventExposure) GetNotifMethod() NotificationMethod1

GetNotifMethod returns the NotifMethod field value if set, zero value otherwise.

func (*NsmfEventExposure) GetNotifMethodOk ¶

func (o *NsmfEventExposure) GetNotifMethodOk() (*NotificationMethod1, bool)

GetNotifMethodOk returns a tuple with the NotifMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetNotifUri ¶

func (o *NsmfEventExposure) GetNotifUri() string

GetNotifUri returns the NotifUri field value

func (*NsmfEventExposure) GetNotifUriOk ¶

func (o *NsmfEventExposure) GetNotifUriOk() (*string, bool)

GetNotifUriOk returns a tuple with the NotifUri field value and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetPartitionCriteria ¶

func (o *NsmfEventExposure) GetPartitionCriteria() []PartitioningCriteria

GetPartitionCriteria returns the PartitionCriteria field value if set, zero value otherwise.

func (*NsmfEventExposure) GetPartitionCriteriaOk ¶

func (o *NsmfEventExposure) GetPartitionCriteriaOk() ([]PartitioningCriteria, bool)

GetPartitionCriteriaOk returns a tuple with the PartitionCriteria field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetPduSeId ¶

func (o *NsmfEventExposure) GetPduSeId() int32

GetPduSeId returns the PduSeId field value if set, zero value otherwise.

func (*NsmfEventExposure) GetPduSeIdOk ¶

func (o *NsmfEventExposure) GetPduSeIdOk() (*int32, bool)

GetPduSeIdOk returns a tuple with the PduSeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetRepPeriod ¶

func (o *NsmfEventExposure) GetRepPeriod() int32

GetRepPeriod returns the RepPeriod field value if set, zero value otherwise.

func (*NsmfEventExposure) GetRepPeriodOk ¶

func (o *NsmfEventExposure) GetRepPeriodOk() (*int32, bool)

GetRepPeriodOk returns a tuple with the RepPeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetSampRatio ¶

func (o *NsmfEventExposure) GetSampRatio() int32

GetSampRatio returns the SampRatio field value if set, zero value otherwise.

func (*NsmfEventExposure) GetSampRatioOk ¶

func (o *NsmfEventExposure) GetSampRatioOk() (*int32, bool)

GetSampRatioOk returns a tuple with the SampRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetServiveName ¶

func (o *NsmfEventExposure) GetServiveName() ServiceName

GetServiveName returns the ServiveName field value if set, zero value otherwise.

func (*NsmfEventExposure) GetServiveNameOk ¶

func (o *NsmfEventExposure) GetServiveNameOk() (*ServiceName, bool)

GetServiveNameOk returns a tuple with the ServiveName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetSnssai ¶

func (o *NsmfEventExposure) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*NsmfEventExposure) GetSnssaiOk ¶

func (o *NsmfEventExposure) GetSnssaiOk() (*Snssai, bool)

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 (*NsmfEventExposure) GetSubId ¶

func (o *NsmfEventExposure) GetSubId() string

GetSubId returns the SubId field value if set, zero value otherwise.

func (*NsmfEventExposure) GetSubIdOk ¶

func (o *NsmfEventExposure) GetSubIdOk() (*string, bool)

GetSubIdOk returns a tuple with the SubId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetSupi ¶

func (o *NsmfEventExposure) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*NsmfEventExposure) GetSupiOk ¶

func (o *NsmfEventExposure) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) GetSupportedFeatures ¶

func (o *NsmfEventExposure) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*NsmfEventExposure) GetSupportedFeaturesOk ¶

func (o *NsmfEventExposure) GetSupportedFeaturesOk() (*string, bool)

GetSupportedFeaturesOk returns a tuple with the SupportedFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposure) HasAltNotifFqdns ¶

func (o *NsmfEventExposure) HasAltNotifFqdns() bool

HasAltNotifFqdns returns a boolean if a field has been set.

func (*NsmfEventExposure) HasAltNotifIpv4Addrs ¶

func (o *NsmfEventExposure) HasAltNotifIpv4Addrs() bool

HasAltNotifIpv4Addrs returns a boolean if a field has been set.

func (*NsmfEventExposure) HasAltNotifIpv6Addrs ¶

func (o *NsmfEventExposure) HasAltNotifIpv6Addrs() bool

HasAltNotifIpv6Addrs returns a boolean if a field has been set.

func (*NsmfEventExposure) HasAnyUeInd ¶

func (o *NsmfEventExposure) HasAnyUeInd() bool

HasAnyUeInd returns a boolean if a field has been set.

func (*NsmfEventExposure) HasDnn ¶

func (o *NsmfEventExposure) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*NsmfEventExposure) HasEventNotifs ¶

func (o *NsmfEventExposure) HasEventNotifs() bool

HasEventNotifs returns a boolean if a field has been set.

func (*NsmfEventExposure) HasExpiry ¶

func (o *NsmfEventExposure) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*NsmfEventExposure) HasGpsi ¶

func (o *NsmfEventExposure) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*NsmfEventExposure) HasGroupId ¶

func (o *NsmfEventExposure) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*NsmfEventExposure) HasGrpRepTime ¶

func (o *NsmfEventExposure) HasGrpRepTime() bool

HasGrpRepTime returns a boolean if a field has been set.

func (*NsmfEventExposure) HasGuami ¶

func (o *NsmfEventExposure) HasGuami() bool

HasGuami returns a boolean if a field has been set.

func (*NsmfEventExposure) HasImmeRep ¶

func (o *NsmfEventExposure) HasImmeRep() bool

HasImmeRep returns a boolean if a field has been set.

func (*NsmfEventExposure) HasMaxReportNbr ¶

func (o *NsmfEventExposure) HasMaxReportNbr() bool

HasMaxReportNbr returns a boolean if a field has been set.

func (*NsmfEventExposure) HasNotifFlag ¶

func (o *NsmfEventExposure) HasNotifFlag() bool

HasNotifFlag returns a boolean if a field has been set.

func (*NsmfEventExposure) HasNotifMethod ¶

func (o *NsmfEventExposure) HasNotifMethod() bool

HasNotifMethod returns a boolean if a field has been set.

func (*NsmfEventExposure) HasPartitionCriteria ¶

func (o *NsmfEventExposure) HasPartitionCriteria() bool

HasPartitionCriteria returns a boolean if a field has been set.

func (*NsmfEventExposure) HasPduSeId ¶

func (o *NsmfEventExposure) HasPduSeId() bool

HasPduSeId returns a boolean if a field has been set.

func (*NsmfEventExposure) HasRepPeriod ¶

func (o *NsmfEventExposure) HasRepPeriod() bool

HasRepPeriod returns a boolean if a field has been set.

func (*NsmfEventExposure) HasSampRatio ¶

func (o *NsmfEventExposure) HasSampRatio() bool

HasSampRatio returns a boolean if a field has been set.

func (*NsmfEventExposure) HasServiveName ¶

func (o *NsmfEventExposure) HasServiveName() bool

HasServiveName returns a boolean if a field has been set.

func (*NsmfEventExposure) HasSnssai ¶

func (o *NsmfEventExposure) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*NsmfEventExposure) HasSubId ¶

func (o *NsmfEventExposure) HasSubId() bool

HasSubId returns a boolean if a field has been set.

func (*NsmfEventExposure) HasSupi ¶

func (o *NsmfEventExposure) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (*NsmfEventExposure) HasSupportedFeatures ¶

func (o *NsmfEventExposure) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (NsmfEventExposure) MarshalJSON ¶

func (o NsmfEventExposure) MarshalJSON() ([]byte, error)

func (*NsmfEventExposure) SetAltNotifFqdns ¶

func (o *NsmfEventExposure) SetAltNotifFqdns(v []string)

SetAltNotifFqdns gets a reference to the given []string and assigns it to the AltNotifFqdns field.

func (*NsmfEventExposure) SetAltNotifIpv4Addrs ¶

func (o *NsmfEventExposure) SetAltNotifIpv4Addrs(v []string)

SetAltNotifIpv4Addrs gets a reference to the given []string and assigns it to the AltNotifIpv4Addrs field.

func (*NsmfEventExposure) SetAltNotifIpv6Addrs ¶

func (o *NsmfEventExposure) SetAltNotifIpv6Addrs(v []Ipv6Addr)

SetAltNotifIpv6Addrs gets a reference to the given []Ipv6Addr and assigns it to the AltNotifIpv6Addrs field.

func (*NsmfEventExposure) SetAnyUeInd ¶

func (o *NsmfEventExposure) SetAnyUeInd(v bool)

SetAnyUeInd gets a reference to the given bool and assigns it to the AnyUeInd field.

func (*NsmfEventExposure) SetDnn ¶

func (o *NsmfEventExposure) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*NsmfEventExposure) SetEventNotifs ¶

func (o *NsmfEventExposure) SetEventNotifs(v []EventNotification1)

SetEventNotifs gets a reference to the given []EventNotification1 and assigns it to the EventNotifs field.

func (*NsmfEventExposure) SetEventSubs ¶

func (o *NsmfEventExposure) SetEventSubs(v []EventSubscription1)

SetEventSubs sets field value

func (*NsmfEventExposure) SetExpiry ¶

func (o *NsmfEventExposure) SetExpiry(v time.Time)

SetExpiry gets a reference to the given time.Time and assigns it to the Expiry field.

func (*NsmfEventExposure) SetGpsi ¶

func (o *NsmfEventExposure) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*NsmfEventExposure) SetGroupId ¶

func (o *NsmfEventExposure) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*NsmfEventExposure) SetGrpRepTime ¶

func (o *NsmfEventExposure) SetGrpRepTime(v int32)

SetGrpRepTime gets a reference to the given int32 and assigns it to the GrpRepTime field.

func (*NsmfEventExposure) SetGuami ¶

func (o *NsmfEventExposure) SetGuami(v Guami)

SetGuami gets a reference to the given Guami and assigns it to the Guami field.

func (*NsmfEventExposure) SetImmeRep ¶

func (o *NsmfEventExposure) SetImmeRep(v bool)

SetImmeRep gets a reference to the given bool and assigns it to the ImmeRep field.

func (*NsmfEventExposure) SetMaxReportNbr ¶

func (o *NsmfEventExposure) SetMaxReportNbr(v int32)

SetMaxReportNbr gets a reference to the given int32 and assigns it to the MaxReportNbr field.

func (*NsmfEventExposure) SetNotifFlag ¶

func (o *NsmfEventExposure) SetNotifFlag(v NotificationFlag)

SetNotifFlag gets a reference to the given NotificationFlag and assigns it to the NotifFlag field.

func (*NsmfEventExposure) SetNotifId ¶

func (o *NsmfEventExposure) SetNotifId(v string)

SetNotifId sets field value

func (*NsmfEventExposure) SetNotifMethod ¶

func (o *NsmfEventExposure) SetNotifMethod(v NotificationMethod1)

SetNotifMethod gets a reference to the given NotificationMethod1 and assigns it to the NotifMethod field.

func (*NsmfEventExposure) SetNotifUri ¶

func (o *NsmfEventExposure) SetNotifUri(v string)

SetNotifUri sets field value

func (*NsmfEventExposure) SetPartitionCriteria ¶

func (o *NsmfEventExposure) SetPartitionCriteria(v []PartitioningCriteria)

SetPartitionCriteria gets a reference to the given []PartitioningCriteria and assigns it to the PartitionCriteria field.

func (*NsmfEventExposure) SetPduSeId ¶

func (o *NsmfEventExposure) SetPduSeId(v int32)

SetPduSeId gets a reference to the given int32 and assigns it to the PduSeId field.

func (*NsmfEventExposure) SetRepPeriod ¶

func (o *NsmfEventExposure) SetRepPeriod(v int32)

SetRepPeriod gets a reference to the given int32 and assigns it to the RepPeriod field.

func (*NsmfEventExposure) SetSampRatio ¶

func (o *NsmfEventExposure) SetSampRatio(v int32)

SetSampRatio gets a reference to the given int32 and assigns it to the SampRatio field.

func (*NsmfEventExposure) SetServiveName ¶

func (o *NsmfEventExposure) SetServiveName(v ServiceName)

SetServiveName gets a reference to the given ServiceName and assigns it to the ServiveName field.

func (*NsmfEventExposure) SetSnssai ¶

func (o *NsmfEventExposure) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (*NsmfEventExposure) SetSubId ¶

func (o *NsmfEventExposure) SetSubId(v string)

SetSubId gets a reference to the given string and assigns it to the SubId field.

func (*NsmfEventExposure) SetSupi ¶

func (o *NsmfEventExposure) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (*NsmfEventExposure) SetSupportedFeatures ¶

func (o *NsmfEventExposure) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (NsmfEventExposure) ToMap ¶

func (o NsmfEventExposure) ToMap() (map[string]interface{}, error)

type NsmfEventExposureNotification ¶

type NsmfEventExposureNotification struct {
	// Notification correlation ID
	NotifId string `json:"notifId"`
	// Notifications about Individual Events
	EventNotifs []EventNotification1 `json:"eventNotifs"`
	// String providing an URI formatted according to RFC 3986.
	AckUri *string `json:"ackUri,omitempty"`
}

NsmfEventExposureNotification Represents notifications on events that occurred.

func NewNsmfEventExposureNotification ¶

func NewNsmfEventExposureNotification(notifId string, eventNotifs []EventNotification1) *NsmfEventExposureNotification

NewNsmfEventExposureNotification instantiates a new NsmfEventExposureNotification 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 NewNsmfEventExposureNotificationWithDefaults ¶

func NewNsmfEventExposureNotificationWithDefaults() *NsmfEventExposureNotification

NewNsmfEventExposureNotificationWithDefaults instantiates a new NsmfEventExposureNotification 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 (*NsmfEventExposureNotification) GetAckUri ¶

func (o *NsmfEventExposureNotification) GetAckUri() string

GetAckUri returns the AckUri field value if set, zero value otherwise.

func (*NsmfEventExposureNotification) GetAckUriOk ¶

func (o *NsmfEventExposureNotification) GetAckUriOk() (*string, bool)

GetAckUriOk returns a tuple with the AckUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NsmfEventExposureNotification) GetEventNotifs ¶

func (o *NsmfEventExposureNotification) GetEventNotifs() []EventNotification1

GetEventNotifs returns the EventNotifs field value

func (*NsmfEventExposureNotification) GetEventNotifsOk ¶

func (o *NsmfEventExposureNotification) GetEventNotifsOk() ([]EventNotification1, bool)

GetEventNotifsOk returns a tuple with the EventNotifs field value and a boolean to check if the value has been set.

func (*NsmfEventExposureNotification) GetNotifId ¶

func (o *NsmfEventExposureNotification) GetNotifId() string

GetNotifId returns the NotifId field value

func (*NsmfEventExposureNotification) GetNotifIdOk ¶

func (o *NsmfEventExposureNotification) GetNotifIdOk() (*string, bool)

GetNotifIdOk returns a tuple with the NotifId field value and a boolean to check if the value has been set.

func (*NsmfEventExposureNotification) HasAckUri ¶

func (o *NsmfEventExposureNotification) HasAckUri() bool

HasAckUri returns a boolean if a field has been set.

func (NsmfEventExposureNotification) MarshalJSON ¶

func (o NsmfEventExposureNotification) MarshalJSON() ([]byte, error)

func (*NsmfEventExposureNotification) SetAckUri ¶

func (o *NsmfEventExposureNotification) SetAckUri(v string)

SetAckUri gets a reference to the given string and assigns it to the AckUri field.

func (*NsmfEventExposureNotification) SetEventNotifs ¶

func (o *NsmfEventExposureNotification) SetEventNotifs(v []EventNotification1)

SetEventNotifs sets field value

func (*NsmfEventExposureNotification) SetNotifId ¶

func (o *NsmfEventExposureNotification) SetNotifId(v string)

SetNotifId sets field value

func (NsmfEventExposureNotification) ToMap ¶

func (o NsmfEventExposureNotification) ToMap() (map[string]interface{}, error)

type NssaafInfo ¶

type NssaafInfo struct {
	SupiRanges                     []SupiRange            `json:"supiRanges,omitempty"`
	InternalGroupIdentifiersRanges []InternalGroupIdRange `json:"internalGroupIdentifiersRanges,omitempty"`
}

NssaafInfo Information of a NSSAAF Instance

func NewNssaafInfo ¶

func NewNssaafInfo() *NssaafInfo

NewNssaafInfo instantiates a new NssaafInfo 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 NewNssaafInfoWithDefaults ¶

func NewNssaafInfoWithDefaults() *NssaafInfo

NewNssaafInfoWithDefaults instantiates a new NssaafInfo 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 (*NssaafInfo) GetInternalGroupIdentifiersRanges ¶

func (o *NssaafInfo) GetInternalGroupIdentifiersRanges() []InternalGroupIdRange

GetInternalGroupIdentifiersRanges returns the InternalGroupIdentifiersRanges field value if set, zero value otherwise.

func (*NssaafInfo) GetInternalGroupIdentifiersRangesOk ¶

func (o *NssaafInfo) GetInternalGroupIdentifiersRangesOk() ([]InternalGroupIdRange, bool)

GetInternalGroupIdentifiersRangesOk returns a tuple with the InternalGroupIdentifiersRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NssaafInfo) GetSupiRanges ¶

func (o *NssaafInfo) GetSupiRanges() []SupiRange

GetSupiRanges returns the SupiRanges field value if set, zero value otherwise.

func (*NssaafInfo) GetSupiRangesOk ¶

func (o *NssaafInfo) GetSupiRangesOk() ([]SupiRange, bool)

GetSupiRangesOk returns a tuple with the SupiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NssaafInfo) HasInternalGroupIdentifiersRanges ¶

func (o *NssaafInfo) HasInternalGroupIdentifiersRanges() bool

HasInternalGroupIdentifiersRanges returns a boolean if a field has been set.

func (*NssaafInfo) HasSupiRanges ¶

func (o *NssaafInfo) HasSupiRanges() bool

HasSupiRanges returns a boolean if a field has been set.

func (NssaafInfo) MarshalJSON ¶

func (o NssaafInfo) MarshalJSON() ([]byte, error)

func (*NssaafInfo) SetInternalGroupIdentifiersRanges ¶

func (o *NssaafInfo) SetInternalGroupIdentifiersRanges(v []InternalGroupIdRange)

SetInternalGroupIdentifiersRanges gets a reference to the given []InternalGroupIdRange and assigns it to the InternalGroupIdentifiersRanges field.

func (*NssaafInfo) SetSupiRanges ¶

func (o *NssaafInfo) SetSupiRanges(v []SupiRange)

SetSupiRanges gets a reference to the given []SupiRange and assigns it to the SupiRanges field.

func (NssaafInfo) ToMap ¶

func (o NssaafInfo) ToMap() (map[string]interface{}, error)

type NullableAanfInfo ¶

type NullableAanfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableAanfInfo ¶

func NewNullableAanfInfo(val *AanfInfo) *NullableAanfInfo

func (NullableAanfInfo) Get ¶

func (v NullableAanfInfo) Get() *AanfInfo

func (NullableAanfInfo) IsSet ¶

func (v NullableAanfInfo) IsSet() bool

func (NullableAanfInfo) MarshalJSON ¶

func (v NullableAanfInfo) MarshalJSON() ([]byte, error)

func (*NullableAanfInfo) Set ¶

func (v *NullableAanfInfo) Set(val *AanfInfo)

func (*NullableAanfInfo) UnmarshalJSON ¶

func (v *NullableAanfInfo) UnmarshalJSON(src []byte) error

func (*NullableAanfInfo) Unset ¶

func (v *NullableAanfInfo) Unset()

type NullableAbnormalBehaviour ¶

type NullableAbnormalBehaviour struct {
	// contains filtered or unexported fields
}

func NewNullableAbnormalBehaviour ¶

func NewNullableAbnormalBehaviour(val *AbnormalBehaviour) *NullableAbnormalBehaviour

func (NullableAbnormalBehaviour) Get ¶

func (NullableAbnormalBehaviour) IsSet ¶

func (v NullableAbnormalBehaviour) IsSet() bool

func (NullableAbnormalBehaviour) MarshalJSON ¶

func (v NullableAbnormalBehaviour) MarshalJSON() ([]byte, error)

func (*NullableAbnormalBehaviour) Set ¶

func (*NullableAbnormalBehaviour) UnmarshalJSON ¶

func (v *NullableAbnormalBehaviour) UnmarshalJSON(src []byte) error

func (*NullableAbnormalBehaviour) Unset ¶

func (v *NullableAbnormalBehaviour) Unset()

type NullableAccessStateTransitionType ¶

type NullableAccessStateTransitionType struct {
	// contains filtered or unexported fields
}

func (NullableAccessStateTransitionType) Get ¶

func (NullableAccessStateTransitionType) IsSet ¶

func (NullableAccessStateTransitionType) MarshalJSON ¶

func (v NullableAccessStateTransitionType) MarshalJSON() ([]byte, error)

func (*NullableAccessStateTransitionType) Set ¶

func (*NullableAccessStateTransitionType) UnmarshalJSON ¶

func (v *NullableAccessStateTransitionType) UnmarshalJSON(src []byte) error

func (*NullableAccessStateTransitionType) Unset ¶

type NullableAccessTokenErr ¶

type NullableAccessTokenErr struct {
	// contains filtered or unexported fields
}

func NewNullableAccessTokenErr ¶

func NewNullableAccessTokenErr(val *AccessTokenErr) *NullableAccessTokenErr

func (NullableAccessTokenErr) Get ¶

func (NullableAccessTokenErr) IsSet ¶

func (v NullableAccessTokenErr) IsSet() bool

func (NullableAccessTokenErr) MarshalJSON ¶

func (v NullableAccessTokenErr) MarshalJSON() ([]byte, error)

func (*NullableAccessTokenErr) Set ¶

func (*NullableAccessTokenErr) UnmarshalJSON ¶

func (v *NullableAccessTokenErr) UnmarshalJSON(src []byte) error

func (*NullableAccessTokenErr) Unset ¶

func (v *NullableAccessTokenErr) Unset()

type NullableAccessTokenReq ¶

type NullableAccessTokenReq struct {
	// contains filtered or unexported fields
}

func NewNullableAccessTokenReq ¶

func NewNullableAccessTokenReq(val *AccessTokenReq) *NullableAccessTokenReq

func (NullableAccessTokenReq) Get ¶

func (NullableAccessTokenReq) IsSet ¶

func (v NullableAccessTokenReq) IsSet() bool

func (NullableAccessTokenReq) MarshalJSON ¶

func (v NullableAccessTokenReq) MarshalJSON() ([]byte, error)

func (*NullableAccessTokenReq) Set ¶

func (*NullableAccessTokenReq) UnmarshalJSON ¶

func (v *NullableAccessTokenReq) UnmarshalJSON(src []byte) error

func (*NullableAccessTokenReq) Unset ¶

func (v *NullableAccessTokenReq) Unset()

type NullableAccessType ¶

type NullableAccessType struct {
	// contains filtered or unexported fields
}

func NewNullableAccessType ¶

func NewNullableAccessType(val *AccessType) *NullableAccessType

func (NullableAccessType) Get ¶

func (v NullableAccessType) Get() *AccessType

func (NullableAccessType) IsSet ¶

func (v NullableAccessType) IsSet() bool

func (NullableAccessType) MarshalJSON ¶

func (v NullableAccessType) MarshalJSON() ([]byte, error)

func (*NullableAccessType) Set ¶

func (v *NullableAccessType) Set(val *AccessType)

func (*NullableAccessType) UnmarshalJSON ¶

func (v *NullableAccessType) UnmarshalJSON(src []byte) error

func (*NullableAccessType) Unset ¶

func (v *NullableAccessType) Unset()

type NullableAccuracy ¶

type NullableAccuracy struct {
	// contains filtered or unexported fields
}

func NewNullableAccuracy ¶

func NewNullableAccuracy(val *Accuracy) *NullableAccuracy

func (NullableAccuracy) Get ¶

func (v NullableAccuracy) Get() *Accuracy

func (NullableAccuracy) IsSet ¶

func (v NullableAccuracy) IsSet() bool

func (NullableAccuracy) MarshalJSON ¶

func (v NullableAccuracy) MarshalJSON() ([]byte, error)

func (*NullableAccuracy) Set ¶

func (v *NullableAccuracy) Set(val *Accuracy)

func (*NullableAccuracy) UnmarshalJSON ¶

func (v *NullableAccuracy) UnmarshalJSON(src []byte) error

func (*NullableAccuracy) Unset ¶

func (v *NullableAccuracy) Unset()

type NullableAdditionalMeasurement ¶

type NullableAdditionalMeasurement struct {
	// contains filtered or unexported fields
}

func (NullableAdditionalMeasurement) Get ¶

func (NullableAdditionalMeasurement) IsSet ¶

func (NullableAdditionalMeasurement) MarshalJSON ¶

func (v NullableAdditionalMeasurement) MarshalJSON() ([]byte, error)

func (*NullableAdditionalMeasurement) Set ¶

func (*NullableAdditionalMeasurement) UnmarshalJSON ¶

func (v *NullableAdditionalMeasurement) UnmarshalJSON(src []byte) error

func (*NullableAdditionalMeasurement) Unset ¶

func (v *NullableAdditionalMeasurement) Unset()

type NullableAddrFqdn ¶

type NullableAddrFqdn struct {
	// contains filtered or unexported fields
}

func NewNullableAddrFqdn ¶

func NewNullableAddrFqdn(val *AddrFqdn) *NullableAddrFqdn

func (NullableAddrFqdn) Get ¶

func (v NullableAddrFqdn) Get() *AddrFqdn

func (NullableAddrFqdn) IsSet ¶

func (v NullableAddrFqdn) IsSet() bool

func (NullableAddrFqdn) MarshalJSON ¶

func (v NullableAddrFqdn) MarshalJSON() ([]byte, error)

func (*NullableAddrFqdn) Set ¶

func (v *NullableAddrFqdn) Set(val *AddrFqdn)

func (*NullableAddrFqdn) UnmarshalJSON ¶

func (v *NullableAddrFqdn) UnmarshalJSON(src []byte) error

func (*NullableAddrFqdn) Unset ¶

func (v *NullableAddrFqdn) Unset()

type NullableAddressList ¶

type NullableAddressList struct {
	// contains filtered or unexported fields
}

func NewNullableAddressList ¶

func NewNullableAddressList(val *AddressList) *NullableAddressList

func (NullableAddressList) Get ¶

func (NullableAddressList) IsSet ¶

func (v NullableAddressList) IsSet() bool

func (NullableAddressList) MarshalJSON ¶

func (v NullableAddressList) MarshalJSON() ([]byte, error)

func (*NullableAddressList) Set ¶

func (v *NullableAddressList) Set(val *AddressList)

func (*NullableAddressList) UnmarshalJSON ¶

func (v *NullableAddressList) UnmarshalJSON(src []byte) error

func (*NullableAddressList) Unset ¶

func (v *NullableAddressList) Unset()

type NullableAfEvent ¶

type NullableAfEvent struct {
	// contains filtered or unexported fields
}

func NewNullableAfEvent ¶

func NewNullableAfEvent(val *AfEvent) *NullableAfEvent

func (NullableAfEvent) Get ¶

func (v NullableAfEvent) Get() *AfEvent

func (NullableAfEvent) IsSet ¶

func (v NullableAfEvent) IsSet() bool

func (NullableAfEvent) MarshalJSON ¶

func (v NullableAfEvent) MarshalJSON() ([]byte, error)

func (*NullableAfEvent) Set ¶

func (v *NullableAfEvent) Set(val *AfEvent)

func (*NullableAfEvent) UnmarshalJSON ¶

func (v *NullableAfEvent) UnmarshalJSON(src []byte) error

func (*NullableAfEvent) Unset ¶

func (v *NullableAfEvent) Unset()

type NullableAfEventExposureData ¶

type NullableAfEventExposureData struct {
	// contains filtered or unexported fields
}

func (NullableAfEventExposureData) Get ¶

func (NullableAfEventExposureData) IsSet ¶

func (NullableAfEventExposureData) MarshalJSON ¶

func (v NullableAfEventExposureData) MarshalJSON() ([]byte, error)

func (*NullableAfEventExposureData) Set ¶

func (*NullableAfEventExposureData) UnmarshalJSON ¶

func (v *NullableAfEventExposureData) UnmarshalJSON(src []byte) error

func (*NullableAfEventExposureData) Unset ¶

func (v *NullableAfEventExposureData) Unset()

type NullableAfEventExposureNotif ¶

type NullableAfEventExposureNotif struct {
	// contains filtered or unexported fields
}

func (NullableAfEventExposureNotif) Get ¶

func (NullableAfEventExposureNotif) IsSet ¶

func (NullableAfEventExposureNotif) MarshalJSON ¶

func (v NullableAfEventExposureNotif) MarshalJSON() ([]byte, error)

func (*NullableAfEventExposureNotif) Set ¶

func (*NullableAfEventExposureNotif) UnmarshalJSON ¶

func (v *NullableAfEventExposureNotif) UnmarshalJSON(src []byte) error

func (*NullableAfEventExposureNotif) Unset ¶

func (v *NullableAfEventExposureNotif) Unset()

type NullableAfEventExposureSubsc ¶

type NullableAfEventExposureSubsc struct {
	// contains filtered or unexported fields
}

func (NullableAfEventExposureSubsc) Get ¶

func (NullableAfEventExposureSubsc) IsSet ¶

func (NullableAfEventExposureSubsc) MarshalJSON ¶

func (v NullableAfEventExposureSubsc) MarshalJSON() ([]byte, error)

func (*NullableAfEventExposureSubsc) Set ¶

func (*NullableAfEventExposureSubsc) UnmarshalJSON ¶

func (v *NullableAfEventExposureSubsc) UnmarshalJSON(src []byte) error

func (*NullableAfEventExposureSubsc) Unset ¶

func (v *NullableAfEventExposureSubsc) Unset()

type NullableAfEventNotification ¶

type NullableAfEventNotification struct {
	// contains filtered or unexported fields
}

func (NullableAfEventNotification) Get ¶

func (NullableAfEventNotification) IsSet ¶

func (NullableAfEventNotification) MarshalJSON ¶

func (v NullableAfEventNotification) MarshalJSON() ([]byte, error)

func (*NullableAfEventNotification) Set ¶

func (*NullableAfEventNotification) UnmarshalJSON ¶

func (v *NullableAfEventNotification) UnmarshalJSON(src []byte) error

func (*NullableAfEventNotification) Unset ¶

func (v *NullableAfEventNotification) Unset()

type NullableAggregationLevel ¶

type NullableAggregationLevel struct {
	// contains filtered or unexported fields
}

func NewNullableAggregationLevel ¶

func NewNullableAggregationLevel(val *AggregationLevel) *NullableAggregationLevel

func (NullableAggregationLevel) Get ¶

func (NullableAggregationLevel) IsSet ¶

func (v NullableAggregationLevel) IsSet() bool

func (NullableAggregationLevel) MarshalJSON ¶

func (v NullableAggregationLevel) MarshalJSON() ([]byte, error)

func (*NullableAggregationLevel) Set ¶

func (*NullableAggregationLevel) UnmarshalJSON ¶

func (v *NullableAggregationLevel) UnmarshalJSON(src []byte) error

func (*NullableAggregationLevel) Unset ¶

func (v *NullableAggregationLevel) Unset()

type NullableAmfCond ¶

type NullableAmfCond struct {
	// contains filtered or unexported fields
}

func NewNullableAmfCond ¶

func NewNullableAmfCond(val *AmfCond) *NullableAmfCond

func (NullableAmfCond) Get ¶

func (v NullableAmfCond) Get() *AmfCond

func (NullableAmfCond) IsSet ¶

func (v NullableAmfCond) IsSet() bool

func (NullableAmfCond) MarshalJSON ¶

func (v NullableAmfCond) MarshalJSON() ([]byte, error)

func (*NullableAmfCond) Set ¶

func (v *NullableAmfCond) Set(val *AmfCond)

func (*NullableAmfCond) UnmarshalJSON ¶

func (v *NullableAmfCond) UnmarshalJSON(src []byte) error

func (*NullableAmfCond) Unset ¶

func (v *NullableAmfCond) Unset()

type NullableAmfEvent ¶

type NullableAmfEvent struct {
	// contains filtered or unexported fields
}

func NewNullableAmfEvent ¶

func NewNullableAmfEvent(val *AmfEvent) *NullableAmfEvent

func (NullableAmfEvent) Get ¶

func (v NullableAmfEvent) Get() *AmfEvent

func (NullableAmfEvent) IsSet ¶

func (v NullableAmfEvent) IsSet() bool

func (NullableAmfEvent) MarshalJSON ¶

func (v NullableAmfEvent) MarshalJSON() ([]byte, error)

func (*NullableAmfEvent) Set ¶

func (v *NullableAmfEvent) Set(val *AmfEvent)

func (*NullableAmfEvent) UnmarshalJSON ¶

func (v *NullableAmfEvent) UnmarshalJSON(src []byte) error

func (*NullableAmfEvent) Unset ¶

func (v *NullableAmfEvent) Unset()

type NullableAmfEventArea ¶

type NullableAmfEventArea struct {
	// contains filtered or unexported fields
}

func NewNullableAmfEventArea ¶

func NewNullableAmfEventArea(val *AmfEventArea) *NullableAmfEventArea

func (NullableAmfEventArea) Get ¶

func (NullableAmfEventArea) IsSet ¶

func (v NullableAmfEventArea) IsSet() bool

func (NullableAmfEventArea) MarshalJSON ¶

func (v NullableAmfEventArea) MarshalJSON() ([]byte, error)

func (*NullableAmfEventArea) Set ¶

func (v *NullableAmfEventArea) Set(val *AmfEventArea)

func (*NullableAmfEventArea) UnmarshalJSON ¶

func (v *NullableAmfEventArea) UnmarshalJSON(src []byte) error

func (*NullableAmfEventArea) Unset ¶

func (v *NullableAmfEventArea) Unset()

type NullableAmfEventMode ¶

type NullableAmfEventMode struct {
	// contains filtered or unexported fields
}

func NewNullableAmfEventMode ¶

func NewNullableAmfEventMode(val *AmfEventMode) *NullableAmfEventMode

func (NullableAmfEventMode) Get ¶

func (NullableAmfEventMode) IsSet ¶

func (v NullableAmfEventMode) IsSet() bool

func (NullableAmfEventMode) MarshalJSON ¶

func (v NullableAmfEventMode) MarshalJSON() ([]byte, error)

func (*NullableAmfEventMode) Set ¶

func (v *NullableAmfEventMode) Set(val *AmfEventMode)

func (*NullableAmfEventMode) UnmarshalJSON ¶

func (v *NullableAmfEventMode) UnmarshalJSON(src []byte) error

func (*NullableAmfEventMode) Unset ¶

func (v *NullableAmfEventMode) Unset()

type NullableAmfEventNotification ¶

type NullableAmfEventNotification struct {
	// contains filtered or unexported fields
}

func (NullableAmfEventNotification) Get ¶

func (NullableAmfEventNotification) IsSet ¶

func (NullableAmfEventNotification) MarshalJSON ¶

func (v NullableAmfEventNotification) MarshalJSON() ([]byte, error)

func (*NullableAmfEventNotification) Set ¶

func (*NullableAmfEventNotification) UnmarshalJSON ¶

func (v *NullableAmfEventNotification) UnmarshalJSON(src []byte) error

func (*NullableAmfEventNotification) Unset ¶

func (v *NullableAmfEventNotification) Unset()

type NullableAmfEventReport ¶

type NullableAmfEventReport struct {
	// contains filtered or unexported fields
}

func NewNullableAmfEventReport ¶

func NewNullableAmfEventReport(val *AmfEventReport) *NullableAmfEventReport

func (NullableAmfEventReport) Get ¶

func (NullableAmfEventReport) IsSet ¶

func (v NullableAmfEventReport) IsSet() bool

func (NullableAmfEventReport) MarshalJSON ¶

func (v NullableAmfEventReport) MarshalJSON() ([]byte, error)

func (*NullableAmfEventReport) Set ¶

func (*NullableAmfEventReport) UnmarshalJSON ¶

func (v *NullableAmfEventReport) UnmarshalJSON(src []byte) error

func (*NullableAmfEventReport) Unset ¶

func (v *NullableAmfEventReport) Unset()

type NullableAmfEventState ¶

type NullableAmfEventState struct {
	// contains filtered or unexported fields
}

func NewNullableAmfEventState ¶

func NewNullableAmfEventState(val *AmfEventState) *NullableAmfEventState

func (NullableAmfEventState) Get ¶

func (NullableAmfEventState) IsSet ¶

func (v NullableAmfEventState) IsSet() bool

func (NullableAmfEventState) MarshalJSON ¶

func (v NullableAmfEventState) MarshalJSON() ([]byte, error)

func (*NullableAmfEventState) Set ¶

func (v *NullableAmfEventState) Set(val *AmfEventState)

func (*NullableAmfEventState) UnmarshalJSON ¶

func (v *NullableAmfEventState) UnmarshalJSON(src []byte) error

func (*NullableAmfEventState) Unset ¶

func (v *NullableAmfEventState) Unset()

type NullableAmfEventSubsSyncInfo ¶

type NullableAmfEventSubsSyncInfo struct {
	// contains filtered or unexported fields
}

func (NullableAmfEventSubsSyncInfo) Get ¶

func (NullableAmfEventSubsSyncInfo) IsSet ¶

func (NullableAmfEventSubsSyncInfo) MarshalJSON ¶

func (v NullableAmfEventSubsSyncInfo) MarshalJSON() ([]byte, error)

func (*NullableAmfEventSubsSyncInfo) Set ¶

func (*NullableAmfEventSubsSyncInfo) UnmarshalJSON ¶

func (v *NullableAmfEventSubsSyncInfo) UnmarshalJSON(src []byte) error

func (*NullableAmfEventSubsSyncInfo) Unset ¶

func (v *NullableAmfEventSubsSyncInfo) Unset()

type NullableAmfEventSubscription ¶

type NullableAmfEventSubscription struct {
	// contains filtered or unexported fields
}

func (NullableAmfEventSubscription) Get ¶

func (NullableAmfEventSubscription) IsSet ¶

func (NullableAmfEventSubscription) MarshalJSON ¶

func (v NullableAmfEventSubscription) MarshalJSON() ([]byte, error)

func (*NullableAmfEventSubscription) Set ¶

func (*NullableAmfEventSubscription) UnmarshalJSON ¶

func (v *NullableAmfEventSubscription) UnmarshalJSON(src []byte) error

func (*NullableAmfEventSubscription) Unset ¶

func (v *NullableAmfEventSubscription) Unset()

type NullableAmfEventSubscriptionInfo ¶

type NullableAmfEventSubscriptionInfo struct {
	// contains filtered or unexported fields
}

func (NullableAmfEventSubscriptionInfo) Get ¶

func (NullableAmfEventSubscriptionInfo) IsSet ¶

func (NullableAmfEventSubscriptionInfo) MarshalJSON ¶

func (v NullableAmfEventSubscriptionInfo) MarshalJSON() ([]byte, error)

func (*NullableAmfEventSubscriptionInfo) Set ¶

func (*NullableAmfEventSubscriptionInfo) UnmarshalJSON ¶

func (v *NullableAmfEventSubscriptionInfo) UnmarshalJSON(src []byte) error

func (*NullableAmfEventSubscriptionInfo) Unset ¶

type NullableAmfEventTrigger ¶

type NullableAmfEventTrigger struct {
	// contains filtered or unexported fields
}

func NewNullableAmfEventTrigger ¶

func NewNullableAmfEventTrigger(val *AmfEventTrigger) *NullableAmfEventTrigger

func (NullableAmfEventTrigger) Get ¶

func (NullableAmfEventTrigger) IsSet ¶

func (v NullableAmfEventTrigger) IsSet() bool

func (NullableAmfEventTrigger) MarshalJSON ¶

func (v NullableAmfEventTrigger) MarshalJSON() ([]byte, error)

func (*NullableAmfEventTrigger) Set ¶

func (*NullableAmfEventTrigger) UnmarshalJSON ¶

func (v *NullableAmfEventTrigger) UnmarshalJSON(src []byte) error

func (*NullableAmfEventTrigger) Unset ¶

func (v *NullableAmfEventTrigger) Unset()

type NullableAmfEventType ¶

type NullableAmfEventType struct {
	// contains filtered or unexported fields
}

func NewNullableAmfEventType ¶

func NewNullableAmfEventType(val *AmfEventType) *NullableAmfEventType

func (NullableAmfEventType) Get ¶

func (NullableAmfEventType) IsSet ¶

func (v NullableAmfEventType) IsSet() bool

func (NullableAmfEventType) MarshalJSON ¶

func (v NullableAmfEventType) MarshalJSON() ([]byte, error)

func (*NullableAmfEventType) Set ¶

func (v *NullableAmfEventType) Set(val *AmfEventType)

func (*NullableAmfEventType) UnmarshalJSON ¶

func (v *NullableAmfEventType) UnmarshalJSON(src []byte) error

func (*NullableAmfEventType) Unset ¶

func (v *NullableAmfEventType) Unset()

type NullableAmfInfo ¶

type NullableAmfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableAmfInfo ¶

func NewNullableAmfInfo(val *AmfInfo) *NullableAmfInfo

func (NullableAmfInfo) Get ¶

func (v NullableAmfInfo) Get() *AmfInfo

func (NullableAmfInfo) IsSet ¶

func (v NullableAmfInfo) IsSet() bool

func (NullableAmfInfo) MarshalJSON ¶

func (v NullableAmfInfo) MarshalJSON() ([]byte, error)

func (*NullableAmfInfo) Set ¶

func (v *NullableAmfInfo) Set(val *AmfInfo)

func (*NullableAmfInfo) UnmarshalJSON ¶

func (v *NullableAmfInfo) UnmarshalJSON(src []byte) error

func (*NullableAmfInfo) Unset ¶

func (v *NullableAmfInfo) Unset()

type NullableAnNodeType ¶

type NullableAnNodeType struct {
	// contains filtered or unexported fields
}

func NewNullableAnNodeType ¶

func NewNullableAnNodeType(val *AnNodeType) *NullableAnNodeType

func (NullableAnNodeType) Get ¶

func (v NullableAnNodeType) Get() *AnNodeType

func (NullableAnNodeType) IsSet ¶

func (v NullableAnNodeType) IsSet() bool

func (NullableAnNodeType) MarshalJSON ¶

func (v NullableAnNodeType) MarshalJSON() ([]byte, error)

func (*NullableAnNodeType) Set ¶

func (v *NullableAnNodeType) Set(val *AnNodeType)

func (*NullableAnNodeType) UnmarshalJSON ¶

func (v *NullableAnNodeType) UnmarshalJSON(src []byte) error

func (*NullableAnNodeType) Unset ¶

func (v *NullableAnNodeType) Unset()

type NullableAnalyticsMetadata ¶

type NullableAnalyticsMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableAnalyticsMetadata ¶

func NewNullableAnalyticsMetadata(val *AnalyticsMetadata) *NullableAnalyticsMetadata

func (NullableAnalyticsMetadata) Get ¶

func (NullableAnalyticsMetadata) IsSet ¶

func (v NullableAnalyticsMetadata) IsSet() bool

func (NullableAnalyticsMetadata) MarshalJSON ¶

func (v NullableAnalyticsMetadata) MarshalJSON() ([]byte, error)

func (*NullableAnalyticsMetadata) Set ¶

func (*NullableAnalyticsMetadata) UnmarshalJSON ¶

func (v *NullableAnalyticsMetadata) UnmarshalJSON(src []byte) error

func (*NullableAnalyticsMetadata) Unset ¶

func (v *NullableAnalyticsMetadata) Unset()

type NullableAnalyticsMetadataIndication ¶

type NullableAnalyticsMetadataIndication struct {
	// contains filtered or unexported fields
}

func (NullableAnalyticsMetadataIndication) Get ¶

func (NullableAnalyticsMetadataIndication) IsSet ¶

func (NullableAnalyticsMetadataIndication) MarshalJSON ¶

func (v NullableAnalyticsMetadataIndication) MarshalJSON() ([]byte, error)

func (*NullableAnalyticsMetadataIndication) Set ¶

func (*NullableAnalyticsMetadataIndication) UnmarshalJSON ¶

func (v *NullableAnalyticsMetadataIndication) UnmarshalJSON(src []byte) error

func (*NullableAnalyticsMetadataIndication) Unset ¶

type NullableAnalyticsMetadataInfo ¶

type NullableAnalyticsMetadataInfo struct {
	// contains filtered or unexported fields
}

func (NullableAnalyticsMetadataInfo) Get ¶

func (NullableAnalyticsMetadataInfo) IsSet ¶

func (NullableAnalyticsMetadataInfo) MarshalJSON ¶

func (v NullableAnalyticsMetadataInfo) MarshalJSON() ([]byte, error)

func (*NullableAnalyticsMetadataInfo) Set ¶

func (*NullableAnalyticsMetadataInfo) UnmarshalJSON ¶

func (v *NullableAnalyticsMetadataInfo) UnmarshalJSON(src []byte) error

func (*NullableAnalyticsMetadataInfo) Unset ¶

func (v *NullableAnalyticsMetadataInfo) Unset()

type NullableAnalyticsSubset ¶

type NullableAnalyticsSubset struct {
	// contains filtered or unexported fields
}

func NewNullableAnalyticsSubset ¶

func NewNullableAnalyticsSubset(val *AnalyticsSubset) *NullableAnalyticsSubset

func (NullableAnalyticsSubset) Get ¶

func (NullableAnalyticsSubset) IsSet ¶

func (v NullableAnalyticsSubset) IsSet() bool

func (NullableAnalyticsSubset) MarshalJSON ¶

func (v NullableAnalyticsSubset) MarshalJSON() ([]byte, error)

func (*NullableAnalyticsSubset) Set ¶

func (*NullableAnalyticsSubset) UnmarshalJSON ¶

func (v *NullableAnalyticsSubset) UnmarshalJSON(src []byte) error

func (*NullableAnalyticsSubset) Unset ¶

func (v *NullableAnalyticsSubset) Unset()

type NullableAppListForUeComm ¶

type NullableAppListForUeComm struct {
	// contains filtered or unexported fields
}

func NewNullableAppListForUeComm ¶

func NewNullableAppListForUeComm(val *AppListForUeComm) *NullableAppListForUeComm

func (NullableAppListForUeComm) Get ¶

func (NullableAppListForUeComm) IsSet ¶

func (v NullableAppListForUeComm) IsSet() bool

func (NullableAppListForUeComm) MarshalJSON ¶

func (v NullableAppListForUeComm) MarshalJSON() ([]byte, error)

func (*NullableAppListForUeComm) Set ¶

func (*NullableAppListForUeComm) UnmarshalJSON ¶

func (v *NullableAppListForUeComm) UnmarshalJSON(src []byte) error

func (*NullableAppListForUeComm) Unset ¶

func (v *NullableAppListForUeComm) Unset()

type NullableApplicationVolume ¶

type NullableApplicationVolume struct {
	// contains filtered or unexported fields
}

func NewNullableApplicationVolume ¶

func NewNullableApplicationVolume(val *ApplicationVolume) *NullableApplicationVolume

func (NullableApplicationVolume) Get ¶

func (NullableApplicationVolume) IsSet ¶

func (v NullableApplicationVolume) IsSet() bool

func (NullableApplicationVolume) MarshalJSON ¶

func (v NullableApplicationVolume) MarshalJSON() ([]byte, error)

func (*NullableApplicationVolume) Set ¶

func (*NullableApplicationVolume) UnmarshalJSON ¶

func (v *NullableApplicationVolume) UnmarshalJSON(src []byte) error

func (*NullableApplicationVolume) Unset ¶

func (v *NullableApplicationVolume) Unset()

type NullableAppliedSmccType ¶

type NullableAppliedSmccType struct {
	// contains filtered or unexported fields
}

func NewNullableAppliedSmccType ¶

func NewNullableAppliedSmccType(val *AppliedSmccType) *NullableAppliedSmccType

func (NullableAppliedSmccType) Get ¶

func (NullableAppliedSmccType) IsSet ¶

func (v NullableAppliedSmccType) IsSet() bool

func (NullableAppliedSmccType) MarshalJSON ¶

func (v NullableAppliedSmccType) MarshalJSON() ([]byte, error)

func (*NullableAppliedSmccType) Set ¶

func (*NullableAppliedSmccType) UnmarshalJSON ¶

func (v *NullableAppliedSmccType) UnmarshalJSON(src []byte) error

func (*NullableAppliedSmccType) Unset ¶

func (v *NullableAppliedSmccType) Unset()

type NullableAssociationType ¶

type NullableAssociationType struct {
	// contains filtered or unexported fields
}

func NewNullableAssociationType ¶

func NewNullableAssociationType(val *AssociationType) *NullableAssociationType

func (NullableAssociationType) Get ¶

func (NullableAssociationType) IsSet ¶

func (v NullableAssociationType) IsSet() bool

func (NullableAssociationType) MarshalJSON ¶

func (v NullableAssociationType) MarshalJSON() ([]byte, error)

func (*NullableAssociationType) Set ¶

func (*NullableAssociationType) UnmarshalJSON ¶

func (v *NullableAssociationType) UnmarshalJSON(src []byte) error

func (*NullableAssociationType) Unset ¶

func (v *NullableAssociationType) Unset()

type NullableAtsssCapability ¶

type NullableAtsssCapability struct {
	// contains filtered or unexported fields
}

func NewNullableAtsssCapability ¶

func NewNullableAtsssCapability(val *AtsssCapability) *NullableAtsssCapability

func (NullableAtsssCapability) Get ¶

func (NullableAtsssCapability) IsSet ¶

func (v NullableAtsssCapability) IsSet() bool

func (NullableAtsssCapability) MarshalJSON ¶

func (v NullableAtsssCapability) MarshalJSON() ([]byte, error)

func (*NullableAtsssCapability) Set ¶

func (*NullableAtsssCapability) UnmarshalJSON ¶

func (v *NullableAtsssCapability) UnmarshalJSON(src []byte) error

func (*NullableAtsssCapability) Unset ¶

func (v *NullableAtsssCapability) Unset()

type NullableAusfInfo ¶

type NullableAusfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableAusfInfo ¶

func NewNullableAusfInfo(val *AusfInfo) *NullableAusfInfo

func (NullableAusfInfo) Get ¶

func (v NullableAusfInfo) Get() *AusfInfo

func (NullableAusfInfo) IsSet ¶

func (v NullableAusfInfo) IsSet() bool

func (NullableAusfInfo) MarshalJSON ¶

func (v NullableAusfInfo) MarshalJSON() ([]byte, error)

func (*NullableAusfInfo) Set ¶

func (v *NullableAusfInfo) Set(val *AusfInfo)

func (*NullableAusfInfo) UnmarshalJSON ¶

func (v *NullableAusfInfo) UnmarshalJSON(src []byte) error

func (*NullableAusfInfo) Unset ¶

func (v *NullableAusfInfo) Unset()

type NullableBaseRecord ¶

type NullableBaseRecord struct {
	// contains filtered or unexported fields
}

func NewNullableBaseRecord ¶

func NewNullableBaseRecord(val *BaseRecord) *NullableBaseRecord

func (NullableBaseRecord) Get ¶

func (v NullableBaseRecord) Get() *BaseRecord

func (NullableBaseRecord) IsSet ¶

func (v NullableBaseRecord) IsSet() bool

func (NullableBaseRecord) MarshalJSON ¶

func (v NullableBaseRecord) MarshalJSON() ([]byte, error)

func (*NullableBaseRecord) Set ¶

func (v *NullableBaseRecord) Set(val *BaseRecord)

func (*NullableBaseRecord) UnmarshalJSON ¶

func (v *NullableBaseRecord) UnmarshalJSON(src []byte) error

func (*NullableBaseRecord) Unset ¶

func (v *NullableBaseRecord) Unset()

type NullableBatteryIndication ¶

type NullableBatteryIndication struct {
	// contains filtered or unexported fields
}

func NewNullableBatteryIndication ¶

func NewNullableBatteryIndication(val *BatteryIndication) *NullableBatteryIndication

func (NullableBatteryIndication) Get ¶

func (NullableBatteryIndication) IsSet ¶

func (v NullableBatteryIndication) IsSet() bool

func (NullableBatteryIndication) MarshalJSON ¶

func (v NullableBatteryIndication) MarshalJSON() ([]byte, error)

func (*NullableBatteryIndication) Set ¶

func (*NullableBatteryIndication) UnmarshalJSON ¶

func (v *NullableBatteryIndication) UnmarshalJSON(src []byte) error

func (*NullableBatteryIndication) Unset ¶

func (v *NullableBatteryIndication) Unset()

type NullableBool ¶

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool ¶

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get ¶

func (v NullableBool) Get() *bool

func (NullableBool) IsSet ¶

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON ¶

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set ¶

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON ¶

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset ¶

func (v *NullableBool) Unset()

type NullableBsfInfo ¶

type NullableBsfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableBsfInfo ¶

func NewNullableBsfInfo(val *BsfInfo) *NullableBsfInfo

func (NullableBsfInfo) Get ¶

func (v NullableBsfInfo) Get() *BsfInfo

func (NullableBsfInfo) IsSet ¶

func (v NullableBsfInfo) IsSet() bool

func (NullableBsfInfo) MarshalJSON ¶

func (v NullableBsfInfo) MarshalJSON() ([]byte, error)

func (*NullableBsfInfo) Set ¶

func (v *NullableBsfInfo) Set(val *BsfInfo)

func (*NullableBsfInfo) UnmarshalJSON ¶

func (v *NullableBsfInfo) UnmarshalJSON(src []byte) error

func (*NullableBsfInfo) Unset ¶

func (v *NullableBsfInfo) Unset()

type NullableBwRequirement ¶

type NullableBwRequirement struct {
	// contains filtered or unexported fields
}

func NewNullableBwRequirement ¶

func NewNullableBwRequirement(val *BwRequirement) *NullableBwRequirement

func (NullableBwRequirement) Get ¶

func (NullableBwRequirement) IsSet ¶

func (v NullableBwRequirement) IsSet() bool

func (NullableBwRequirement) MarshalJSON ¶

func (v NullableBwRequirement) MarshalJSON() ([]byte, error)

func (*NullableBwRequirement) Set ¶

func (v *NullableBwRequirement) Set(val *BwRequirement)

func (*NullableBwRequirement) UnmarshalJSON ¶

func (v *NullableBwRequirement) UnmarshalJSON(src []byte) error

func (*NullableBwRequirement) Unset ¶

func (v *NullableBwRequirement) Unset()

type NullableCacheStatus ¶

type NullableCacheStatus struct {
	// contains filtered or unexported fields
}

func NewNullableCacheStatus ¶

func NewNullableCacheStatus(val *CacheStatus) *NullableCacheStatus

func (NullableCacheStatus) Get ¶

func (NullableCacheStatus) IsSet ¶

func (v NullableCacheStatus) IsSet() bool

func (NullableCacheStatus) MarshalJSON ¶

func (v NullableCacheStatus) MarshalJSON() ([]byte, error)

func (*NullableCacheStatus) Set ¶

func (v *NullableCacheStatus) Set(val *CacheStatus)

func (*NullableCacheStatus) UnmarshalJSON ¶

func (v *NullableCacheStatus) UnmarshalJSON(src []byte) error

func (*NullableCacheStatus) Unset ¶

func (v *NullableCacheStatus) Unset()

type NullableCellGlobalId ¶

type NullableCellGlobalId struct {
	// contains filtered or unexported fields
}

func NewNullableCellGlobalId ¶

func NewNullableCellGlobalId(val *CellGlobalId) *NullableCellGlobalId

func (NullableCellGlobalId) Get ¶

func (NullableCellGlobalId) IsSet ¶

func (v NullableCellGlobalId) IsSet() bool

func (NullableCellGlobalId) MarshalJSON ¶

func (v NullableCellGlobalId) MarshalJSON() ([]byte, error)

func (*NullableCellGlobalId) Set ¶

func (v *NullableCellGlobalId) Set(val *CellGlobalId)

func (*NullableCellGlobalId) UnmarshalJSON ¶

func (v *NullableCellGlobalId) UnmarshalJSON(src []byte) error

func (*NullableCellGlobalId) Unset ¶

func (v *NullableCellGlobalId) Unset()

type NullableChangeItem ¶

type NullableChangeItem struct {
	// contains filtered or unexported fields
}

func NewNullableChangeItem ¶

func NewNullableChangeItem(val *ChangeItem) *NullableChangeItem

func (NullableChangeItem) Get ¶

func (v NullableChangeItem) Get() *ChangeItem

func (NullableChangeItem) IsSet ¶

func (v NullableChangeItem) IsSet() bool

func (NullableChangeItem) MarshalJSON ¶

func (v NullableChangeItem) MarshalJSON() ([]byte, error)

func (*NullableChangeItem) Set ¶

func (v *NullableChangeItem) Set(val *ChangeItem)

func (*NullableChangeItem) UnmarshalJSON ¶

func (v *NullableChangeItem) UnmarshalJSON(src []byte) error

func (*NullableChangeItem) Unset ¶

func (v *NullableChangeItem) Unset()

type NullableChangeOfSupiPeiAssociationReport ¶

type NullableChangeOfSupiPeiAssociationReport struct {
	// contains filtered or unexported fields
}

func (NullableChangeOfSupiPeiAssociationReport) Get ¶

func (NullableChangeOfSupiPeiAssociationReport) IsSet ¶

func (NullableChangeOfSupiPeiAssociationReport) MarshalJSON ¶

func (*NullableChangeOfSupiPeiAssociationReport) Set ¶

func (*NullableChangeOfSupiPeiAssociationReport) UnmarshalJSON ¶

func (v *NullableChangeOfSupiPeiAssociationReport) UnmarshalJSON(src []byte) error

func (*NullableChangeOfSupiPeiAssociationReport) Unset ¶

type NullableChangeType ¶

type NullableChangeType struct {
	// contains filtered or unexported fields
}

func NewNullableChangeType ¶

func NewNullableChangeType(val *ChangeType) *NullableChangeType

func (NullableChangeType) Get ¶

func (v NullableChangeType) Get() *ChangeType

func (NullableChangeType) IsSet ¶

func (v NullableChangeType) IsSet() bool

func (NullableChangeType) MarshalJSON ¶

func (v NullableChangeType) MarshalJSON() ([]byte, error)

func (*NullableChangeType) Set ¶

func (v *NullableChangeType) Set(val *ChangeType)

func (*NullableChangeType) UnmarshalJSON ¶

func (v *NullableChangeType) UnmarshalJSON(src []byte) error

func (*NullableChangeType) Unset ¶

func (v *NullableChangeType) Unset()

type NullableChfInfo ¶

type NullableChfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableChfInfo ¶

func NewNullableChfInfo(val *ChfInfo) *NullableChfInfo

func (NullableChfInfo) Get ¶

func (v NullableChfInfo) Get() *ChfInfo

func (NullableChfInfo) IsSet ¶

func (v NullableChfInfo) IsSet() bool

func (NullableChfInfo) MarshalJSON ¶

func (v NullableChfInfo) MarshalJSON() ([]byte, error)

func (*NullableChfInfo) Set ¶

func (v *NullableChfInfo) Set(val *ChfInfo)

func (*NullableChfInfo) UnmarshalJSON ¶

func (v *NullableChfInfo) UnmarshalJSON(src []byte) error

func (*NullableChfInfo) Unset ¶

func (v *NullableChfInfo) Unset()

type NullableCircumstanceDescription ¶

type NullableCircumstanceDescription struct {
	// contains filtered or unexported fields
}

func (NullableCircumstanceDescription) Get ¶

func (NullableCircumstanceDescription) IsSet ¶

func (NullableCircumstanceDescription) MarshalJSON ¶

func (v NullableCircumstanceDescription) MarshalJSON() ([]byte, error)

func (*NullableCircumstanceDescription) Set ¶

func (*NullableCircumstanceDescription) UnmarshalJSON ¶

func (v *NullableCircumstanceDescription) UnmarshalJSON(src []byte) error

func (*NullableCircumstanceDescription) Unset ¶

type NullableCivicAddress ¶

type NullableCivicAddress struct {
	// contains filtered or unexported fields
}

func NewNullableCivicAddress ¶

func NewNullableCivicAddress(val *CivicAddress) *NullableCivicAddress

func (NullableCivicAddress) Get ¶

func (NullableCivicAddress) IsSet ¶

func (v NullableCivicAddress) IsSet() bool

func (NullableCivicAddress) MarshalJSON ¶

func (v NullableCivicAddress) MarshalJSON() ([]byte, error)

func (*NullableCivicAddress) Set ¶

func (v *NullableCivicAddress) Set(val *CivicAddress)

func (*NullableCivicAddress) UnmarshalJSON ¶

func (v *NullableCivicAddress) UnmarshalJSON(src []byte) error

func (*NullableCivicAddress) Unset ¶

func (v *NullableCivicAddress) Unset()

type NullableClassCriterion ¶

type NullableClassCriterion struct {
	// contains filtered or unexported fields
}

func NewNullableClassCriterion ¶

func NewNullableClassCriterion(val *ClassCriterion) *NullableClassCriterion

func (NullableClassCriterion) Get ¶

func (NullableClassCriterion) IsSet ¶

func (v NullableClassCriterion) IsSet() bool

func (NullableClassCriterion) MarshalJSON ¶

func (v NullableClassCriterion) MarshalJSON() ([]byte, error)

func (*NullableClassCriterion) Set ¶

func (*NullableClassCriterion) UnmarshalJSON ¶

func (v *NullableClassCriterion) UnmarshalJSON(src []byte) error

func (*NullableClassCriterion) Unset ¶

func (v *NullableClassCriterion) Unset()

type NullableCmInfo ¶

type NullableCmInfo struct {
	// contains filtered or unexported fields
}

func NewNullableCmInfo ¶

func NewNullableCmInfo(val *CmInfo) *NullableCmInfo

func (NullableCmInfo) Get ¶

func (v NullableCmInfo) Get() *CmInfo

func (NullableCmInfo) IsSet ¶

func (v NullableCmInfo) IsSet() bool

func (NullableCmInfo) MarshalJSON ¶

func (v NullableCmInfo) MarshalJSON() ([]byte, error)

func (*NullableCmInfo) Set ¶

func (v *NullableCmInfo) Set(val *CmInfo)

func (*NullableCmInfo) UnmarshalJSON ¶

func (v *NullableCmInfo) UnmarshalJSON(src []byte) error

func (*NullableCmInfo) Unset ¶

func (v *NullableCmInfo) Unset()

type NullableCmInfoReport ¶

type NullableCmInfoReport struct {
	// contains filtered or unexported fields
}

func NewNullableCmInfoReport ¶

func NewNullableCmInfoReport(val *CmInfoReport) *NullableCmInfoReport

func (NullableCmInfoReport) Get ¶

func (NullableCmInfoReport) IsSet ¶

func (v NullableCmInfoReport) IsSet() bool

func (NullableCmInfoReport) MarshalJSON ¶

func (v NullableCmInfoReport) MarshalJSON() ([]byte, error)

func (*NullableCmInfoReport) Set ¶

func (v *NullableCmInfoReport) Set(val *CmInfoReport)

func (*NullableCmInfoReport) UnmarshalJSON ¶

func (v *NullableCmInfoReport) UnmarshalJSON(src []byte) error

func (*NullableCmInfoReport) Unset ¶

func (v *NullableCmInfoReport) Unset()

type NullableCmState ¶

type NullableCmState struct {
	// contains filtered or unexported fields
}

func NewNullableCmState ¶

func NewNullableCmState(val *CmState) *NullableCmState

func (NullableCmState) Get ¶

func (v NullableCmState) Get() *CmState

func (NullableCmState) IsSet ¶

func (v NullableCmState) IsSet() bool

func (NullableCmState) MarshalJSON ¶

func (v NullableCmState) MarshalJSON() ([]byte, error)

func (*NullableCmState) Set ¶

func (v *NullableCmState) Set(val *CmState)

func (*NullableCmState) UnmarshalJSON ¶

func (v *NullableCmState) UnmarshalJSON(src []byte) error

func (*NullableCmState) Unset ¶

func (v *NullableCmState) Unset()

type NullableCnType ¶

type NullableCnType struct {
	// contains filtered or unexported fields
}

func NewNullableCnType ¶

func NewNullableCnType(val *CnType) *NullableCnType

func (NullableCnType) Get ¶

func (v NullableCnType) Get() *CnType

func (NullableCnType) IsSet ¶

func (v NullableCnType) IsSet() bool

func (NullableCnType) MarshalJSON ¶

func (v NullableCnType) MarshalJSON() ([]byte, error)

func (*NullableCnType) Set ¶

func (v *NullableCnType) Set(val *CnType)

func (*NullableCnType) UnmarshalJSON ¶

func (v *NullableCnType) UnmarshalJSON(src []byte) error

func (*NullableCnType) Unset ¶

func (v *NullableCnType) Unset()

type NullableCnTypeChangeReport ¶

type NullableCnTypeChangeReport struct {
	// contains filtered or unexported fields
}

func NewNullableCnTypeChangeReport ¶

func NewNullableCnTypeChangeReport(val *CnTypeChangeReport) *NullableCnTypeChangeReport

func (NullableCnTypeChangeReport) Get ¶

func (NullableCnTypeChangeReport) IsSet ¶

func (v NullableCnTypeChangeReport) IsSet() bool

func (NullableCnTypeChangeReport) MarshalJSON ¶

func (v NullableCnTypeChangeReport) MarshalJSON() ([]byte, error)

func (*NullableCnTypeChangeReport) Set ¶

func (*NullableCnTypeChangeReport) UnmarshalJSON ¶

func (v *NullableCnTypeChangeReport) UnmarshalJSON(src []byte) error

func (*NullableCnTypeChangeReport) Unset ¶

func (v *NullableCnTypeChangeReport) Unset()

type NullableCollectiveBehaviourFilter ¶

type NullableCollectiveBehaviourFilter struct {
	// contains filtered or unexported fields
}

func (NullableCollectiveBehaviourFilter) Get ¶

func (NullableCollectiveBehaviourFilter) IsSet ¶

func (NullableCollectiveBehaviourFilter) MarshalJSON ¶

func (v NullableCollectiveBehaviourFilter) MarshalJSON() ([]byte, error)

func (*NullableCollectiveBehaviourFilter) Set ¶

func (*NullableCollectiveBehaviourFilter) UnmarshalJSON ¶

func (v *NullableCollectiveBehaviourFilter) UnmarshalJSON(src []byte) error

func (*NullableCollectiveBehaviourFilter) Unset ¶

type NullableCollectiveBehaviourFilterType ¶

type NullableCollectiveBehaviourFilterType struct {
	// contains filtered or unexported fields
}

func (NullableCollectiveBehaviourFilterType) Get ¶

func (NullableCollectiveBehaviourFilterType) IsSet ¶

func (NullableCollectiveBehaviourFilterType) MarshalJSON ¶

func (v NullableCollectiveBehaviourFilterType) MarshalJSON() ([]byte, error)

func (*NullableCollectiveBehaviourFilterType) Set ¶

func (*NullableCollectiveBehaviourFilterType) UnmarshalJSON ¶

func (v *NullableCollectiveBehaviourFilterType) UnmarshalJSON(src []byte) error

func (*NullableCollectiveBehaviourFilterType) Unset ¶

type NullableCollectiveBehaviourInfo ¶

type NullableCollectiveBehaviourInfo struct {
	// contains filtered or unexported fields
}

func (NullableCollectiveBehaviourInfo) Get ¶

func (NullableCollectiveBehaviourInfo) IsSet ¶

func (NullableCollectiveBehaviourInfo) MarshalJSON ¶

func (v NullableCollectiveBehaviourInfo) MarshalJSON() ([]byte, error)

func (*NullableCollectiveBehaviourInfo) Set ¶

func (*NullableCollectiveBehaviourInfo) UnmarshalJSON ¶

func (v *NullableCollectiveBehaviourInfo) UnmarshalJSON(src []byte) error

func (*NullableCollectiveBehaviourInfo) Unset ¶

type NullableCollocatedNfInstance ¶

type NullableCollocatedNfInstance struct {
	// contains filtered or unexported fields
}

func (NullableCollocatedNfInstance) Get ¶

func (NullableCollocatedNfInstance) IsSet ¶

func (NullableCollocatedNfInstance) MarshalJSON ¶

func (v NullableCollocatedNfInstance) MarshalJSON() ([]byte, error)

func (*NullableCollocatedNfInstance) Set ¶

func (*NullableCollocatedNfInstance) UnmarshalJSON ¶

func (v *NullableCollocatedNfInstance) UnmarshalJSON(src []byte) error

func (*NullableCollocatedNfInstance) Unset ¶

func (v *NullableCollocatedNfInstance) Unset()

type NullableCollocatedNfType ¶

type NullableCollocatedNfType struct {
	// contains filtered or unexported fields
}

func NewNullableCollocatedNfType ¶

func NewNullableCollocatedNfType(val *CollocatedNfType) *NullableCollocatedNfType

func (NullableCollocatedNfType) Get ¶

func (NullableCollocatedNfType) IsSet ¶

func (v NullableCollocatedNfType) IsSet() bool

func (NullableCollocatedNfType) MarshalJSON ¶

func (v NullableCollocatedNfType) MarshalJSON() ([]byte, error)

func (*NullableCollocatedNfType) Set ¶

func (*NullableCollocatedNfType) UnmarshalJSON ¶

func (v *NullableCollocatedNfType) UnmarshalJSON(src []byte) error

func (*NullableCollocatedNfType) Unset ¶

func (v *NullableCollocatedNfType) Unset()

type NullableCommunicationCollection ¶

type NullableCommunicationCollection struct {
	// contains filtered or unexported fields
}

func (NullableCommunicationCollection) Get ¶

func (NullableCommunicationCollection) IsSet ¶

func (NullableCommunicationCollection) MarshalJSON ¶

func (v NullableCommunicationCollection) MarshalJSON() ([]byte, error)

func (*NullableCommunicationCollection) Set ¶

func (*NullableCommunicationCollection) UnmarshalJSON ¶

func (v *NullableCommunicationCollection) UnmarshalJSON(src []byte) error

func (*NullableCommunicationCollection) Unset ¶

type NullableCommunicationFailure ¶

type NullableCommunicationFailure struct {
	// contains filtered or unexported fields
}

func (NullableCommunicationFailure) Get ¶

func (NullableCommunicationFailure) IsSet ¶

func (NullableCommunicationFailure) MarshalJSON ¶

func (v NullableCommunicationFailure) MarshalJSON() ([]byte, error)

func (*NullableCommunicationFailure) Set ¶

func (*NullableCommunicationFailure) UnmarshalJSON ¶

func (v *NullableCommunicationFailure) UnmarshalJSON(src []byte) error

func (*NullableCommunicationFailure) Unset ¶

func (v *NullableCommunicationFailure) Unset()

type NullableConditionEventType ¶

type NullableConditionEventType struct {
	// contains filtered or unexported fields
}

func NewNullableConditionEventType ¶

func NewNullableConditionEventType(val *ConditionEventType) *NullableConditionEventType

func (NullableConditionEventType) Get ¶

func (NullableConditionEventType) IsSet ¶

func (v NullableConditionEventType) IsSet() bool

func (NullableConditionEventType) MarshalJSON ¶

func (v NullableConditionEventType) MarshalJSON() ([]byte, error)

func (*NullableConditionEventType) Set ¶

func (*NullableConditionEventType) UnmarshalJSON ¶

func (v *NullableConditionEventType) UnmarshalJSON(src []byte) error

func (*NullableConditionEventType) Unset ¶

func (v *NullableConditionEventType) Unset()

type NullableCongestionInfo ¶

type NullableCongestionInfo struct {
	// contains filtered or unexported fields
}

func NewNullableCongestionInfo ¶

func NewNullableCongestionInfo(val *CongestionInfo) *NullableCongestionInfo

func (NullableCongestionInfo) Get ¶

func (NullableCongestionInfo) IsSet ¶

func (v NullableCongestionInfo) IsSet() bool

func (NullableCongestionInfo) MarshalJSON ¶

func (v NullableCongestionInfo) MarshalJSON() ([]byte, error)

func (*NullableCongestionInfo) Set ¶

func (*NullableCongestionInfo) UnmarshalJSON ¶

func (v *NullableCongestionInfo) UnmarshalJSON(src []byte) error

func (*NullableCongestionInfo) Unset ¶

func (v *NullableCongestionInfo) Unset()

type NullableCongestionType ¶

type NullableCongestionType struct {
	// contains filtered or unexported fields
}

func NewNullableCongestionType ¶

func NewNullableCongestionType(val *CongestionType) *NullableCongestionType

func (NullableCongestionType) Get ¶

func (NullableCongestionType) IsSet ¶

func (v NullableCongestionType) IsSet() bool

func (NullableCongestionType) MarshalJSON ¶

func (v NullableCongestionType) MarshalJSON() ([]byte, error)

func (*NullableCongestionType) Set ¶

func (*NullableCongestionType) UnmarshalJSON ¶

func (v *NullableCongestionType) UnmarshalJSON(src []byte) error

func (*NullableCongestionType) Unset ¶

func (v *NullableCongestionType) Unset()

type NullableConsumerNfInformation ¶

type NullableConsumerNfInformation struct {
	// contains filtered or unexported fields
}

func (NullableConsumerNfInformation) Get ¶

func (NullableConsumerNfInformation) IsSet ¶

func (NullableConsumerNfInformation) MarshalJSON ¶

func (v NullableConsumerNfInformation) MarshalJSON() ([]byte, error)

func (*NullableConsumerNfInformation) Set ¶

func (*NullableConsumerNfInformation) UnmarshalJSON ¶

func (v *NullableConsumerNfInformation) UnmarshalJSON(src []byte) error

func (*NullableConsumerNfInformation) Unset ¶

func (v *NullableConsumerNfInformation) Unset()

type NullableContextInfo ¶

type NullableContextInfo struct {
	// contains filtered or unexported fields
}

func NewNullableContextInfo ¶

func NewNullableContextInfo(val *ContextInfo) *NullableContextInfo

func (NullableContextInfo) Get ¶

func (NullableContextInfo) IsSet ¶

func (v NullableContextInfo) IsSet() bool

func (NullableContextInfo) MarshalJSON ¶

func (v NullableContextInfo) MarshalJSON() ([]byte, error)

func (*NullableContextInfo) Set ¶

func (v *NullableContextInfo) Set(val *ContextInfo)

func (*NullableContextInfo) UnmarshalJSON ¶

func (v *NullableContextInfo) UnmarshalJSON(src []byte) error

func (*NullableContextInfo) Unset ¶

func (v *NullableContextInfo) Unset()

type NullableDataNotification ¶

type NullableDataNotification struct {
	// contains filtered or unexported fields
}

func NewNullableDataNotification ¶

func NewNullableDataNotification(val *DataNotification) *NullableDataNotification

func (NullableDataNotification) Get ¶

func (NullableDataNotification) IsSet ¶

func (v NullableDataNotification) IsSet() bool

func (NullableDataNotification) MarshalJSON ¶

func (v NullableDataNotification) MarshalJSON() ([]byte, error)

func (*NullableDataNotification) Set ¶

func (*NullableDataNotification) UnmarshalJSON ¶

func (v *NullableDataNotification) UnmarshalJSON(src []byte) error

func (*NullableDataNotification) Unset ¶

func (v *NullableDataNotification) Unset()

type NullableDataSetId ¶

type NullableDataSetId struct {
	// contains filtered or unexported fields
}

func NewNullableDataSetId ¶

func NewNullableDataSetId(val *DataSetId) *NullableDataSetId

func (NullableDataSetId) Get ¶

func (v NullableDataSetId) Get() *DataSetId

func (NullableDataSetId) IsSet ¶

func (v NullableDataSetId) IsSet() bool

func (NullableDataSetId) MarshalJSON ¶

func (v NullableDataSetId) MarshalJSON() ([]byte, error)

func (*NullableDataSetId) Set ¶

func (v *NullableDataSetId) Set(val *DataSetId)

func (*NullableDataSetId) UnmarshalJSON ¶

func (v *NullableDataSetId) UnmarshalJSON(src []byte) error

func (*NullableDataSetId) Unset ¶

func (v *NullableDataSetId) Unset()

type NullableDataSubscription ¶

type NullableDataSubscription struct {
	// contains filtered or unexported fields
}

func NewNullableDataSubscription ¶

func NewNullableDataSubscription(val *DataSubscription) *NullableDataSubscription

func (NullableDataSubscription) Get ¶

func (NullableDataSubscription) IsSet ¶

func (v NullableDataSubscription) IsSet() bool

func (NullableDataSubscription) MarshalJSON ¶

func (v NullableDataSubscription) MarshalJSON() ([]byte, error)

func (*NullableDataSubscription) Set ¶

func (*NullableDataSubscription) UnmarshalJSON ¶

func (v *NullableDataSubscription) UnmarshalJSON(src []byte) error

func (*NullableDataSubscription) Unset ¶

func (v *NullableDataSubscription) Unset()

type NullableDatalinkReportingConfiguration ¶

type NullableDatalinkReportingConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableDatalinkReportingConfiguration) Get ¶

func (NullableDatalinkReportingConfiguration) IsSet ¶

func (NullableDatalinkReportingConfiguration) MarshalJSON ¶

func (v NullableDatalinkReportingConfiguration) MarshalJSON() ([]byte, error)

func (*NullableDatalinkReportingConfiguration) Set ¶

func (*NullableDatalinkReportingConfiguration) UnmarshalJSON ¶

func (v *NullableDatalinkReportingConfiguration) UnmarshalJSON(src []byte) error

func (*NullableDatalinkReportingConfiguration) Unset ¶

type NullableDatasetStatisticalProperty ¶

type NullableDatasetStatisticalProperty struct {
	// contains filtered or unexported fields
}

func (NullableDatasetStatisticalProperty) Get ¶

func (NullableDatasetStatisticalProperty) IsSet ¶

func (NullableDatasetStatisticalProperty) MarshalJSON ¶

func (v NullableDatasetStatisticalProperty) MarshalJSON() ([]byte, error)

func (*NullableDatasetStatisticalProperty) Set ¶

func (*NullableDatasetStatisticalProperty) UnmarshalJSON ¶

func (v *NullableDatasetStatisticalProperty) UnmarshalJSON(src []byte) error

func (*NullableDatasetStatisticalProperty) Unset ¶

type NullableDccfCond ¶

type NullableDccfCond struct {
	// contains filtered or unexported fields
}

func NewNullableDccfCond ¶

func NewNullableDccfCond(val *DccfCond) *NullableDccfCond

func (NullableDccfCond) Get ¶

func (v NullableDccfCond) Get() *DccfCond

func (NullableDccfCond) IsSet ¶

func (v NullableDccfCond) IsSet() bool

func (NullableDccfCond) MarshalJSON ¶

func (v NullableDccfCond) MarshalJSON() ([]byte, error)

func (*NullableDccfCond) Set ¶

func (v *NullableDccfCond) Set(val *DccfCond)

func (*NullableDccfCond) UnmarshalJSON ¶

func (v *NullableDccfCond) UnmarshalJSON(src []byte) error

func (*NullableDccfCond) Unset ¶

func (v *NullableDccfCond) Unset()

type NullableDccfEvent ¶

type NullableDccfEvent struct {
	// contains filtered or unexported fields
}

func NewNullableDccfEvent ¶

func NewNullableDccfEvent(val *DccfEvent) *NullableDccfEvent

func (NullableDccfEvent) Get ¶

func (v NullableDccfEvent) Get() *DccfEvent

func (NullableDccfEvent) IsSet ¶

func (v NullableDccfEvent) IsSet() bool

func (NullableDccfEvent) MarshalJSON ¶

func (v NullableDccfEvent) MarshalJSON() ([]byte, error)

func (*NullableDccfEvent) Set ¶

func (v *NullableDccfEvent) Set(val *DccfEvent)

func (*NullableDccfEvent) UnmarshalJSON ¶

func (v *NullableDccfEvent) UnmarshalJSON(src []byte) error

func (*NullableDccfEvent) Unset ¶

func (v *NullableDccfEvent) Unset()

type NullableDccfInfo ¶

type NullableDccfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableDccfInfo ¶

func NewNullableDccfInfo(val *DccfInfo) *NullableDccfInfo

func (NullableDccfInfo) Get ¶

func (v NullableDccfInfo) Get() *DccfInfo

func (NullableDccfInfo) IsSet ¶

func (v NullableDccfInfo) IsSet() bool

func (NullableDccfInfo) MarshalJSON ¶

func (v NullableDccfInfo) MarshalJSON() ([]byte, error)

func (*NullableDccfInfo) Set ¶

func (v *NullableDccfInfo) Set(val *DccfInfo)

func (*NullableDccfInfo) UnmarshalJSON ¶

func (v *NullableDccfInfo) UnmarshalJSON(src []byte) error

func (*NullableDccfInfo) Unset ¶

func (v *NullableDccfInfo) Unset()

type NullableDddTrafficDescriptor ¶

type NullableDddTrafficDescriptor struct {
	// contains filtered or unexported fields
}

func (NullableDddTrafficDescriptor) Get ¶

func (NullableDddTrafficDescriptor) IsSet ¶

func (NullableDddTrafficDescriptor) MarshalJSON ¶

func (v NullableDddTrafficDescriptor) MarshalJSON() ([]byte, error)

func (*NullableDddTrafficDescriptor) Set ¶

func (*NullableDddTrafficDescriptor) UnmarshalJSON ¶

func (v *NullableDddTrafficDescriptor) UnmarshalJSON(src []byte) error

func (*NullableDddTrafficDescriptor) Unset ¶

func (v *NullableDddTrafficDescriptor) Unset()

type NullableDefSubServiceInfo ¶

type NullableDefSubServiceInfo struct {
	// contains filtered or unexported fields
}

func NewNullableDefSubServiceInfo ¶

func NewNullableDefSubServiceInfo(val *DefSubServiceInfo) *NullableDefSubServiceInfo

func (NullableDefSubServiceInfo) Get ¶

func (NullableDefSubServiceInfo) IsSet ¶

func (v NullableDefSubServiceInfo) IsSet() bool

func (NullableDefSubServiceInfo) MarshalJSON ¶

func (v NullableDefSubServiceInfo) MarshalJSON() ([]byte, error)

func (*NullableDefSubServiceInfo) Set ¶

func (*NullableDefSubServiceInfo) UnmarshalJSON ¶

func (v *NullableDefSubServiceInfo) UnmarshalJSON(src []byte) error

func (*NullableDefSubServiceInfo) Unset ¶

func (v *NullableDefSubServiceInfo) Unset()

type NullableDefaultNotificationSubscription ¶

type NullableDefaultNotificationSubscription struct {
	// contains filtered or unexported fields
}

func (NullableDefaultNotificationSubscription) Get ¶

func (NullableDefaultNotificationSubscription) IsSet ¶

func (NullableDefaultNotificationSubscription) MarshalJSON ¶

func (v NullableDefaultNotificationSubscription) MarshalJSON() ([]byte, error)

func (*NullableDefaultNotificationSubscription) Set ¶

func (*NullableDefaultNotificationSubscription) UnmarshalJSON ¶

func (v *NullableDefaultNotificationSubscription) UnmarshalJSON(src []byte) error

func (*NullableDefaultNotificationSubscription) Unset ¶

type NullableDispersionArea ¶

type NullableDispersionArea struct {
	// contains filtered or unexported fields
}

func NewNullableDispersionArea ¶

func NewNullableDispersionArea(val *DispersionArea) *NullableDispersionArea

func (NullableDispersionArea) Get ¶

func (NullableDispersionArea) IsSet ¶

func (v NullableDispersionArea) IsSet() bool

func (NullableDispersionArea) MarshalJSON ¶

func (v NullableDispersionArea) MarshalJSON() ([]byte, error)

func (*NullableDispersionArea) Set ¶

func (*NullableDispersionArea) UnmarshalJSON ¶

func (v *NullableDispersionArea) UnmarshalJSON(src []byte) error

func (*NullableDispersionArea) Unset ¶

func (v *NullableDispersionArea) Unset()

type NullableDispersionClass ¶

type NullableDispersionClass struct {
	// contains filtered or unexported fields
}

func NewNullableDispersionClass ¶

func NewNullableDispersionClass(val *DispersionClass) *NullableDispersionClass

func (NullableDispersionClass) Get ¶

func (NullableDispersionClass) IsSet ¶

func (v NullableDispersionClass) IsSet() bool

func (NullableDispersionClass) MarshalJSON ¶

func (v NullableDispersionClass) MarshalJSON() ([]byte, error)

func (*NullableDispersionClass) Set ¶

func (*NullableDispersionClass) UnmarshalJSON ¶

func (v *NullableDispersionClass) UnmarshalJSON(src []byte) error

func (*NullableDispersionClass) Unset ¶

func (v *NullableDispersionClass) Unset()

type NullableDispersionCollection ¶

type NullableDispersionCollection struct {
	// contains filtered or unexported fields
}

func (NullableDispersionCollection) Get ¶

func (NullableDispersionCollection) IsSet ¶

func (NullableDispersionCollection) MarshalJSON ¶

func (v NullableDispersionCollection) MarshalJSON() ([]byte, error)

func (*NullableDispersionCollection) Set ¶

func (*NullableDispersionCollection) UnmarshalJSON ¶

func (v *NullableDispersionCollection) UnmarshalJSON(src []byte) error

func (*NullableDispersionCollection) Unset ¶

func (v *NullableDispersionCollection) Unset()

type NullableDispersionCollection1 ¶

type NullableDispersionCollection1 struct {
	// contains filtered or unexported fields
}

func (NullableDispersionCollection1) Get ¶

func (NullableDispersionCollection1) IsSet ¶

func (NullableDispersionCollection1) MarshalJSON ¶

func (v NullableDispersionCollection1) MarshalJSON() ([]byte, error)

func (*NullableDispersionCollection1) Set ¶

func (*NullableDispersionCollection1) UnmarshalJSON ¶

func (v *NullableDispersionCollection1) UnmarshalJSON(src []byte) error

func (*NullableDispersionCollection1) Unset ¶

func (v *NullableDispersionCollection1) Unset()

type NullableDispersionInfo ¶

type NullableDispersionInfo struct {
	// contains filtered or unexported fields
}

func NewNullableDispersionInfo ¶

func NewNullableDispersionInfo(val *DispersionInfo) *NullableDispersionInfo

func (NullableDispersionInfo) Get ¶

func (NullableDispersionInfo) IsSet ¶

func (v NullableDispersionInfo) IsSet() bool

func (NullableDispersionInfo) MarshalJSON ¶

func (v NullableDispersionInfo) MarshalJSON() ([]byte, error)

func (*NullableDispersionInfo) Set ¶

func (*NullableDispersionInfo) UnmarshalJSON ¶

func (v *NullableDispersionInfo) UnmarshalJSON(src []byte) error

func (*NullableDispersionInfo) Unset ¶

func (v *NullableDispersionInfo) Unset()

type NullableDispersionOrderingCriterion ¶

type NullableDispersionOrderingCriterion struct {
	// contains filtered or unexported fields
}

func (NullableDispersionOrderingCriterion) Get ¶

func (NullableDispersionOrderingCriterion) IsSet ¶

func (NullableDispersionOrderingCriterion) MarshalJSON ¶

func (v NullableDispersionOrderingCriterion) MarshalJSON() ([]byte, error)

func (*NullableDispersionOrderingCriterion) Set ¶

func (*NullableDispersionOrderingCriterion) UnmarshalJSON ¶

func (v *NullableDispersionOrderingCriterion) UnmarshalJSON(src []byte) error

func (*NullableDispersionOrderingCriterion) Unset ¶

type NullableDispersionRequirement ¶

type NullableDispersionRequirement struct {
	// contains filtered or unexported fields
}

func (NullableDispersionRequirement) Get ¶

func (NullableDispersionRequirement) IsSet ¶

func (NullableDispersionRequirement) MarshalJSON ¶

func (v NullableDispersionRequirement) MarshalJSON() ([]byte, error)

func (*NullableDispersionRequirement) Set ¶

func (*NullableDispersionRequirement) UnmarshalJSON ¶

func (v *NullableDispersionRequirement) UnmarshalJSON(src []byte) error

func (*NullableDispersionRequirement) Unset ¶

func (v *NullableDispersionRequirement) Unset()

type NullableDispersionType ¶

type NullableDispersionType struct {
	// contains filtered or unexported fields
}

func NewNullableDispersionType ¶

func NewNullableDispersionType(val *DispersionType) *NullableDispersionType

func (NullableDispersionType) Get ¶

func (NullableDispersionType) IsSet ¶

func (v NullableDispersionType) IsSet() bool

func (NullableDispersionType) MarshalJSON ¶

func (v NullableDispersionType) MarshalJSON() ([]byte, error)

func (*NullableDispersionType) Set ¶

func (*NullableDispersionType) UnmarshalJSON ¶

func (v *NullableDispersionType) UnmarshalJSON(src []byte) error

func (*NullableDispersionType) Unset ¶

func (v *NullableDispersionType) Unset()

type NullableDlDataDeliveryStatus ¶

type NullableDlDataDeliveryStatus struct {
	// contains filtered or unexported fields
}

func (NullableDlDataDeliveryStatus) Get ¶

func (NullableDlDataDeliveryStatus) IsSet ¶

func (NullableDlDataDeliveryStatus) MarshalJSON ¶

func (v NullableDlDataDeliveryStatus) MarshalJSON() ([]byte, error)

func (*NullableDlDataDeliveryStatus) Set ¶

func (*NullableDlDataDeliveryStatus) UnmarshalJSON ¶

func (v *NullableDlDataDeliveryStatus) UnmarshalJSON(src []byte) error

func (*NullableDlDataDeliveryStatus) Unset ¶

func (v *NullableDlDataDeliveryStatus) Unset()

type NullableDnPerf ¶

type NullableDnPerf struct {
	// contains filtered or unexported fields
}

func NewNullableDnPerf ¶

func NewNullableDnPerf(val *DnPerf) *NullableDnPerf

func (NullableDnPerf) Get ¶

func (v NullableDnPerf) Get() *DnPerf

func (NullableDnPerf) IsSet ¶

func (v NullableDnPerf) IsSet() bool

func (NullableDnPerf) MarshalJSON ¶

func (v NullableDnPerf) MarshalJSON() ([]byte, error)

func (*NullableDnPerf) Set ¶

func (v *NullableDnPerf) Set(val *DnPerf)

func (*NullableDnPerf) UnmarshalJSON ¶

func (v *NullableDnPerf) UnmarshalJSON(src []byte) error

func (*NullableDnPerf) Unset ¶

func (v *NullableDnPerf) Unset()

type NullableDnPerfInfo ¶

type NullableDnPerfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableDnPerfInfo ¶

func NewNullableDnPerfInfo(val *DnPerfInfo) *NullableDnPerfInfo

func (NullableDnPerfInfo) Get ¶

func (v NullableDnPerfInfo) Get() *DnPerfInfo

func (NullableDnPerfInfo) IsSet ¶

func (v NullableDnPerfInfo) IsSet() bool

func (NullableDnPerfInfo) MarshalJSON ¶

func (v NullableDnPerfInfo) MarshalJSON() ([]byte, error)

func (*NullableDnPerfInfo) Set ¶

func (v *NullableDnPerfInfo) Set(val *DnPerfInfo)

func (*NullableDnPerfInfo) UnmarshalJSON ¶

func (v *NullableDnPerfInfo) UnmarshalJSON(src []byte) error

func (*NullableDnPerfInfo) Unset ¶

func (v *NullableDnPerfInfo) Unset()

type NullableDnPerfOrderingCriterion ¶

type NullableDnPerfOrderingCriterion struct {
	// contains filtered or unexported fields
}

func (NullableDnPerfOrderingCriterion) Get ¶

func (NullableDnPerfOrderingCriterion) IsSet ¶

func (NullableDnPerfOrderingCriterion) MarshalJSON ¶

func (v NullableDnPerfOrderingCriterion) MarshalJSON() ([]byte, error)

func (*NullableDnPerfOrderingCriterion) Set ¶

func (*NullableDnPerfOrderingCriterion) UnmarshalJSON ¶

func (v *NullableDnPerfOrderingCriterion) UnmarshalJSON(src []byte) error

func (*NullableDnPerfOrderingCriterion) Unset ¶

type NullableDnPerformanceReq ¶

type NullableDnPerformanceReq struct {
	// contains filtered or unexported fields
}

func NewNullableDnPerformanceReq ¶

func NewNullableDnPerformanceReq(val *DnPerformanceReq) *NullableDnPerformanceReq

func (NullableDnPerformanceReq) Get ¶

func (NullableDnPerformanceReq) IsSet ¶

func (v NullableDnPerformanceReq) IsSet() bool

func (NullableDnPerformanceReq) MarshalJSON ¶

func (v NullableDnPerformanceReq) MarshalJSON() ([]byte, error)

func (*NullableDnPerformanceReq) Set ¶

func (*NullableDnPerformanceReq) UnmarshalJSON ¶

func (v *NullableDnPerformanceReq) UnmarshalJSON(src []byte) error

func (*NullableDnPerformanceReq) Unset ¶

func (v *NullableDnPerformanceReq) Unset()

type NullableDnaiChangeType ¶

type NullableDnaiChangeType struct {
	// contains filtered or unexported fields
}

func NewNullableDnaiChangeType ¶

func NewNullableDnaiChangeType(val *DnaiChangeType) *NullableDnaiChangeType

func (NullableDnaiChangeType) Get ¶

func (NullableDnaiChangeType) IsSet ¶

func (v NullableDnaiChangeType) IsSet() bool

func (NullableDnaiChangeType) MarshalJSON ¶

func (v NullableDnaiChangeType) MarshalJSON() ([]byte, error)

func (*NullableDnaiChangeType) Set ¶

func (*NullableDnaiChangeType) UnmarshalJSON ¶

func (v *NullableDnaiChangeType) UnmarshalJSON(src []byte) error

func (*NullableDnaiChangeType) Unset ¶

func (v *NullableDnaiChangeType) Unset()

type NullableDnnEasdfInfoItem ¶

type NullableDnnEasdfInfoItem struct {
	// contains filtered or unexported fields
}

func NewNullableDnnEasdfInfoItem ¶

func NewNullableDnnEasdfInfoItem(val *DnnEasdfInfoItem) *NullableDnnEasdfInfoItem

func (NullableDnnEasdfInfoItem) Get ¶

func (NullableDnnEasdfInfoItem) IsSet ¶

func (v NullableDnnEasdfInfoItem) IsSet() bool

func (NullableDnnEasdfInfoItem) MarshalJSON ¶

func (v NullableDnnEasdfInfoItem) MarshalJSON() ([]byte, error)

func (*NullableDnnEasdfInfoItem) Set ¶

func (*NullableDnnEasdfInfoItem) UnmarshalJSON ¶

func (v *NullableDnnEasdfInfoItem) UnmarshalJSON(src []byte) error

func (*NullableDnnEasdfInfoItem) Unset ¶

func (v *NullableDnnEasdfInfoItem) Unset()

type NullableDnnInfoItem ¶

type NullableDnnInfoItem struct {
	// contains filtered or unexported fields
}

func NewNullableDnnInfoItem ¶

func NewNullableDnnInfoItem(val *DnnInfoItem) *NullableDnnInfoItem

func (NullableDnnInfoItem) Get ¶

func (NullableDnnInfoItem) IsSet ¶

func (v NullableDnnInfoItem) IsSet() bool

func (NullableDnnInfoItem) MarshalJSON ¶

func (v NullableDnnInfoItem) MarshalJSON() ([]byte, error)

func (*NullableDnnInfoItem) Set ¶

func (v *NullableDnnInfoItem) Set(val *DnnInfoItem)

func (*NullableDnnInfoItem) UnmarshalJSON ¶

func (v *NullableDnnInfoItem) UnmarshalJSON(src []byte) error

func (*NullableDnnInfoItem) Unset ¶

func (v *NullableDnnInfoItem) Unset()

type NullableDnnMbSmfInfoItem ¶

type NullableDnnMbSmfInfoItem struct {
	// contains filtered or unexported fields
}

func NewNullableDnnMbSmfInfoItem ¶

func NewNullableDnnMbSmfInfoItem(val *DnnMbSmfInfoItem) *NullableDnnMbSmfInfoItem

func (NullableDnnMbSmfInfoItem) Get ¶

func (NullableDnnMbSmfInfoItem) IsSet ¶

func (v NullableDnnMbSmfInfoItem) IsSet() bool

func (NullableDnnMbSmfInfoItem) MarshalJSON ¶

func (v NullableDnnMbSmfInfoItem) MarshalJSON() ([]byte, error)

func (*NullableDnnMbSmfInfoItem) Set ¶

func (*NullableDnnMbSmfInfoItem) UnmarshalJSON ¶

func (v *NullableDnnMbSmfInfoItem) UnmarshalJSON(src []byte) error

func (*NullableDnnMbSmfInfoItem) Unset ¶

func (v *NullableDnnMbSmfInfoItem) Unset()

type NullableDnnSmfInfoItem ¶

type NullableDnnSmfInfoItem struct {
	// contains filtered or unexported fields
}

func NewNullableDnnSmfInfoItem ¶

func NewNullableDnnSmfInfoItem(val *DnnSmfInfoItem) *NullableDnnSmfInfoItem

func (NullableDnnSmfInfoItem) Get ¶

func (NullableDnnSmfInfoItem) IsSet ¶

func (v NullableDnnSmfInfoItem) IsSet() bool

func (NullableDnnSmfInfoItem) MarshalJSON ¶

func (v NullableDnnSmfInfoItem) MarshalJSON() ([]byte, error)

func (*NullableDnnSmfInfoItem) Set ¶

func (*NullableDnnSmfInfoItem) UnmarshalJSON ¶

func (v *NullableDnnSmfInfoItem) UnmarshalJSON(src []byte) error

func (*NullableDnnSmfInfoItem) Unset ¶

func (v *NullableDnnSmfInfoItem) Unset()

type NullableDnnSmfInfoItemDnaiListInner ¶

type NullableDnnSmfInfoItemDnaiListInner struct {
	// contains filtered or unexported fields
}

func (NullableDnnSmfInfoItemDnaiListInner) Get ¶

func (NullableDnnSmfInfoItemDnaiListInner) IsSet ¶

func (NullableDnnSmfInfoItemDnaiListInner) MarshalJSON ¶

func (v NullableDnnSmfInfoItemDnaiListInner) MarshalJSON() ([]byte, error)

func (*NullableDnnSmfInfoItemDnaiListInner) Set ¶

func (*NullableDnnSmfInfoItemDnaiListInner) UnmarshalJSON ¶

func (v *NullableDnnSmfInfoItemDnaiListInner) UnmarshalJSON(src []byte) error

func (*NullableDnnSmfInfoItemDnaiListInner) Unset ¶

type NullableDnnSmfInfoItemDnn ¶

type NullableDnnSmfInfoItemDnn struct {
	// contains filtered or unexported fields
}

func NewNullableDnnSmfInfoItemDnn ¶

func NewNullableDnnSmfInfoItemDnn(val *DnnSmfInfoItemDnn) *NullableDnnSmfInfoItemDnn

func (NullableDnnSmfInfoItemDnn) Get ¶

func (NullableDnnSmfInfoItemDnn) IsSet ¶

func (v NullableDnnSmfInfoItemDnn) IsSet() bool

func (NullableDnnSmfInfoItemDnn) MarshalJSON ¶

func (v NullableDnnSmfInfoItemDnn) MarshalJSON() ([]byte, error)

func (*NullableDnnSmfInfoItemDnn) Set ¶

func (*NullableDnnSmfInfoItemDnn) UnmarshalJSON ¶

func (v *NullableDnnSmfInfoItemDnn) UnmarshalJSON(src []byte) error

func (*NullableDnnSmfInfoItemDnn) Unset ¶

func (v *NullableDnnSmfInfoItemDnn) Unset()

type NullableDnnTsctsfInfoItem ¶

type NullableDnnTsctsfInfoItem struct {
	// contains filtered or unexported fields
}

func NewNullableDnnTsctsfInfoItem ¶

func NewNullableDnnTsctsfInfoItem(val *DnnTsctsfInfoItem) *NullableDnnTsctsfInfoItem

func (NullableDnnTsctsfInfoItem) Get ¶

func (NullableDnnTsctsfInfoItem) IsSet ¶

func (v NullableDnnTsctsfInfoItem) IsSet() bool

func (NullableDnnTsctsfInfoItem) MarshalJSON ¶

func (v NullableDnnTsctsfInfoItem) MarshalJSON() ([]byte, error)

func (*NullableDnnTsctsfInfoItem) Set ¶

func (*NullableDnnTsctsfInfoItem) UnmarshalJSON ¶

func (v *NullableDnnTsctsfInfoItem) UnmarshalJSON(src []byte) error

func (*NullableDnnTsctsfInfoItem) Unset ¶

func (v *NullableDnnTsctsfInfoItem) Unset()

type NullableDnnUpfInfoItem ¶

type NullableDnnUpfInfoItem struct {
	// contains filtered or unexported fields
}

func NewNullableDnnUpfInfoItem ¶

func NewNullableDnnUpfInfoItem(val *DnnUpfInfoItem) *NullableDnnUpfInfoItem

func (NullableDnnUpfInfoItem) Get ¶

func (NullableDnnUpfInfoItem) IsSet ¶

func (v NullableDnnUpfInfoItem) IsSet() bool

func (NullableDnnUpfInfoItem) MarshalJSON ¶

func (v NullableDnnUpfInfoItem) MarshalJSON() ([]byte, error)

func (*NullableDnnUpfInfoItem) Set ¶

func (*NullableDnnUpfInfoItem) UnmarshalJSON ¶

func (v *NullableDnnUpfInfoItem) UnmarshalJSON(src []byte) error

func (*NullableDnnUpfInfoItem) Unset ¶

func (v *NullableDnnUpfInfoItem) Unset()

type NullableDynamicPolicy ¶

type NullableDynamicPolicy struct {
	// contains filtered or unexported fields
}

func NewNullableDynamicPolicy ¶

func NewNullableDynamicPolicy(val *DynamicPolicy) *NullableDynamicPolicy

func (NullableDynamicPolicy) Get ¶

func (NullableDynamicPolicy) IsSet ¶

func (v NullableDynamicPolicy) IsSet() bool

func (NullableDynamicPolicy) MarshalJSON ¶

func (v NullableDynamicPolicy) MarshalJSON() ([]byte, error)

func (*NullableDynamicPolicy) Set ¶

func (v *NullableDynamicPolicy) Set(val *DynamicPolicy)

func (*NullableDynamicPolicy) UnmarshalJSON ¶

func (v *NullableDynamicPolicy) UnmarshalJSON(src []byte) error

func (*NullableDynamicPolicy) Unset ¶

func (v *NullableDynamicPolicy) Unset()

type NullableEasdfInfo ¶

type NullableEasdfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableEasdfInfo ¶

func NewNullableEasdfInfo(val *EasdfInfo) *NullableEasdfInfo

func (NullableEasdfInfo) Get ¶

func (v NullableEasdfInfo) Get() *EasdfInfo

func (NullableEasdfInfo) IsSet ¶

func (v NullableEasdfInfo) IsSet() bool

func (NullableEasdfInfo) MarshalJSON ¶

func (v NullableEasdfInfo) MarshalJSON() ([]byte, error)

func (*NullableEasdfInfo) Set ¶

func (v *NullableEasdfInfo) Set(val *EasdfInfo)

func (*NullableEasdfInfo) UnmarshalJSON ¶

func (v *NullableEasdfInfo) UnmarshalJSON(src []byte) error

func (*NullableEasdfInfo) Unset ¶

func (v *NullableEasdfInfo) Unset()

type NullableEcgi ¶

type NullableEcgi struct {
	// contains filtered or unexported fields
}

func NewNullableEcgi ¶

func NewNullableEcgi(val *Ecgi) *NullableEcgi

func (NullableEcgi) Get ¶

func (v NullableEcgi) Get() *Ecgi

func (NullableEcgi) IsSet ¶

func (v NullableEcgi) IsSet() bool

func (NullableEcgi) MarshalJSON ¶

func (v NullableEcgi) MarshalJSON() ([]byte, error)

func (*NullableEcgi) Set ¶

func (v *NullableEcgi) Set(val *Ecgi)

func (*NullableEcgi) UnmarshalJSON ¶

func (v *NullableEcgi) UnmarshalJSON(src []byte) error

func (*NullableEcgi) Unset ¶

func (v *NullableEcgi) Unset()

type NullableEeSubscription ¶

type NullableEeSubscription struct {
	// contains filtered or unexported fields
}

func NewNullableEeSubscription ¶

func NewNullableEeSubscription(val *EeSubscription) *NullableEeSubscription

func (NullableEeSubscription) Get ¶

func (NullableEeSubscription) IsSet ¶

func (v NullableEeSubscription) IsSet() bool

func (NullableEeSubscription) MarshalJSON ¶

func (v NullableEeSubscription) MarshalJSON() ([]byte, error)

func (*NullableEeSubscription) Set ¶

func (*NullableEeSubscription) UnmarshalJSON ¶

func (v *NullableEeSubscription) UnmarshalJSON(src []byte) error

func (*NullableEeSubscription) Unset ¶

func (v *NullableEeSubscription) Unset()

type NullableEllipsoidArc ¶

type NullableEllipsoidArc struct {
	// contains filtered or unexported fields
}

func NewNullableEllipsoidArc ¶

func NewNullableEllipsoidArc(val *EllipsoidArc) *NullableEllipsoidArc

func (NullableEllipsoidArc) Get ¶

func (NullableEllipsoidArc) IsSet ¶

func (v NullableEllipsoidArc) IsSet() bool

func (NullableEllipsoidArc) MarshalJSON ¶

func (v NullableEllipsoidArc) MarshalJSON() ([]byte, error)

func (*NullableEllipsoidArc) Set ¶

func (v *NullableEllipsoidArc) Set(val *EllipsoidArc)

func (*NullableEllipsoidArc) UnmarshalJSON ¶

func (v *NullableEllipsoidArc) UnmarshalJSON(src []byte) error

func (*NullableEllipsoidArc) Unset ¶

func (v *NullableEllipsoidArc) Unset()

type NullableEllipsoidArcAllOf ¶

type NullableEllipsoidArcAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableEllipsoidArcAllOf ¶

func NewNullableEllipsoidArcAllOf(val *EllipsoidArcAllOf) *NullableEllipsoidArcAllOf

func (NullableEllipsoidArcAllOf) Get ¶

func (NullableEllipsoidArcAllOf) IsSet ¶

func (v NullableEllipsoidArcAllOf) IsSet() bool

func (NullableEllipsoidArcAllOf) MarshalJSON ¶

func (v NullableEllipsoidArcAllOf) MarshalJSON() ([]byte, error)

func (*NullableEllipsoidArcAllOf) Set ¶

func (*NullableEllipsoidArcAllOf) UnmarshalJSON ¶

func (v *NullableEllipsoidArcAllOf) UnmarshalJSON(src []byte) error

func (*NullableEllipsoidArcAllOf) Unset ¶

func (v *NullableEllipsoidArcAllOf) Unset()

type NullableEndpointAddress ¶

type NullableEndpointAddress struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointAddress ¶

func NewNullableEndpointAddress(val *EndpointAddress) *NullableEndpointAddress

func (NullableEndpointAddress) Get ¶

func (NullableEndpointAddress) IsSet ¶

func (v NullableEndpointAddress) IsSet() bool

func (NullableEndpointAddress) MarshalJSON ¶

func (v NullableEndpointAddress) MarshalJSON() ([]byte, error)

func (*NullableEndpointAddress) Set ¶

func (*NullableEndpointAddress) UnmarshalJSON ¶

func (v *NullableEndpointAddress) UnmarshalJSON(src []byte) error

func (*NullableEndpointAddress) Unset ¶

func (v *NullableEndpointAddress) Unset()

type NullableEthFlowDescription ¶

type NullableEthFlowDescription struct {
	// contains filtered or unexported fields
}

func NewNullableEthFlowDescription ¶

func NewNullableEthFlowDescription(val *EthFlowDescription) *NullableEthFlowDescription

func (NullableEthFlowDescription) Get ¶

func (NullableEthFlowDescription) IsSet ¶

func (v NullableEthFlowDescription) IsSet() bool

func (NullableEthFlowDescription) MarshalJSON ¶

func (v NullableEthFlowDescription) MarshalJSON() ([]byte, error)

func (*NullableEthFlowDescription) Set ¶

func (*NullableEthFlowDescription) UnmarshalJSON ¶

func (v *NullableEthFlowDescription) UnmarshalJSON(src []byte) error

func (*NullableEthFlowDescription) Unset ¶

func (v *NullableEthFlowDescription) Unset()

type NullableEutraLocation ¶

type NullableEutraLocation struct {
	// contains filtered or unexported fields
}

func NewNullableEutraLocation ¶

func NewNullableEutraLocation(val *EutraLocation) *NullableEutraLocation

func (NullableEutraLocation) Get ¶

func (NullableEutraLocation) IsSet ¶

func (v NullableEutraLocation) IsSet() bool

func (NullableEutraLocation) MarshalJSON ¶

func (v NullableEutraLocation) MarshalJSON() ([]byte, error)

func (*NullableEutraLocation) Set ¶

func (v *NullableEutraLocation) Set(val *EutraLocation)

func (*NullableEutraLocation) UnmarshalJSON ¶

func (v *NullableEutraLocation) UnmarshalJSON(src []byte) error

func (*NullableEutraLocation) Unset ¶

func (v *NullableEutraLocation) Unset()

type NullableEventFilter ¶

type NullableEventFilter struct {
	// contains filtered or unexported fields
}

func NewNullableEventFilter ¶

func NewNullableEventFilter(val *EventFilter) *NullableEventFilter

func (NullableEventFilter) Get ¶

func (NullableEventFilter) IsSet ¶

func (v NullableEventFilter) IsSet() bool

func (NullableEventFilter) MarshalJSON ¶

func (v NullableEventFilter) MarshalJSON() ([]byte, error)

func (*NullableEventFilter) Set ¶

func (v *NullableEventFilter) Set(val *EventFilter)

func (*NullableEventFilter) UnmarshalJSON ¶

func (v *NullableEventFilter) UnmarshalJSON(src []byte) error

func (*NullableEventFilter) Unset ¶

func (v *NullableEventFilter) Unset()

type NullableEventId ¶

type NullableEventId struct {
	// contains filtered or unexported fields
}

func NewNullableEventId ¶

func NewNullableEventId(val *EventId) *NullableEventId

func (NullableEventId) Get ¶

func (v NullableEventId) Get() *EventId

func (NullableEventId) IsSet ¶

func (v NullableEventId) IsSet() bool

func (NullableEventId) MarshalJSON ¶

func (v NullableEventId) MarshalJSON() ([]byte, error)

func (*NullableEventId) Set ¶

func (v *NullableEventId) Set(val *EventId)

func (*NullableEventId) UnmarshalJSON ¶

func (v *NullableEventId) UnmarshalJSON(src []byte) error

func (*NullableEventId) Unset ¶

func (v *NullableEventId) Unset()

type NullableEventNotification ¶

type NullableEventNotification struct {
	// contains filtered or unexported fields
}

func NewNullableEventNotification ¶

func NewNullableEventNotification(val *EventNotification) *NullableEventNotification

func (NullableEventNotification) Get ¶

func (NullableEventNotification) IsSet ¶

func (v NullableEventNotification) IsSet() bool

func (NullableEventNotification) MarshalJSON ¶

func (v NullableEventNotification) MarshalJSON() ([]byte, error)

func (*NullableEventNotification) Set ¶

func (*NullableEventNotification) UnmarshalJSON ¶

func (v *NullableEventNotification) UnmarshalJSON(src []byte) error

func (*NullableEventNotification) Unset ¶

func (v *NullableEventNotification) Unset()

type NullableEventNotification1 ¶

type NullableEventNotification1 struct {
	// contains filtered or unexported fields
}

func NewNullableEventNotification1 ¶

func NewNullableEventNotification1(val *EventNotification1) *NullableEventNotification1

func (NullableEventNotification1) Get ¶

func (NullableEventNotification1) IsSet ¶

func (v NullableEventNotification1) IsSet() bool

func (NullableEventNotification1) MarshalJSON ¶

func (v NullableEventNotification1) MarshalJSON() ([]byte, error)

func (*NullableEventNotification1) Set ¶

func (*NullableEventNotification1) UnmarshalJSON ¶

func (v *NullableEventNotification1) UnmarshalJSON(src []byte) error

func (*NullableEventNotification1) Unset ¶

func (v *NullableEventNotification1) Unset()

type NullableEventReportMode ¶

type NullableEventReportMode struct {
	// contains filtered or unexported fields
}

func NewNullableEventReportMode ¶

func NewNullableEventReportMode(val *EventReportMode) *NullableEventReportMode

func (NullableEventReportMode) Get ¶

func (NullableEventReportMode) IsSet ¶

func (v NullableEventReportMode) IsSet() bool

func (NullableEventReportMode) MarshalJSON ¶

func (v NullableEventReportMode) MarshalJSON() ([]byte, error)

func (*NullableEventReportMode) Set ¶

func (*NullableEventReportMode) UnmarshalJSON ¶

func (v *NullableEventReportMode) UnmarshalJSON(src []byte) error

func (*NullableEventReportMode) Unset ¶

func (v *NullableEventReportMode) Unset()

type NullableEventReportingRequirement ¶

type NullableEventReportingRequirement struct {
	// contains filtered or unexported fields
}

func (NullableEventReportingRequirement) Get ¶

func (NullableEventReportingRequirement) IsSet ¶

func (NullableEventReportingRequirement) MarshalJSON ¶

func (v NullableEventReportingRequirement) MarshalJSON() ([]byte, error)

func (*NullableEventReportingRequirement) Set ¶

func (*NullableEventReportingRequirement) UnmarshalJSON ¶

func (v *NullableEventReportingRequirement) UnmarshalJSON(src []byte) error

func (*NullableEventReportingRequirement) Unset ¶

type NullableEventSubscription ¶

type NullableEventSubscription struct {
	// contains filtered or unexported fields
}

func NewNullableEventSubscription ¶

func NewNullableEventSubscription(val *EventSubscription) *NullableEventSubscription

func (NullableEventSubscription) Get ¶

func (NullableEventSubscription) IsSet ¶

func (v NullableEventSubscription) IsSet() bool

func (NullableEventSubscription) MarshalJSON ¶

func (v NullableEventSubscription) MarshalJSON() ([]byte, error)

func (*NullableEventSubscription) Set ¶

func (*NullableEventSubscription) UnmarshalJSON ¶

func (v *NullableEventSubscription) UnmarshalJSON(src []byte) error

func (*NullableEventSubscription) Unset ¶

func (v *NullableEventSubscription) Unset()

type NullableEventSubscription1 ¶

type NullableEventSubscription1 struct {
	// contains filtered or unexported fields
}

func NewNullableEventSubscription1 ¶

func NewNullableEventSubscription1(val *EventSubscription1) *NullableEventSubscription1

func (NullableEventSubscription1) Get ¶

func (NullableEventSubscription1) IsSet ¶

func (v NullableEventSubscription1) IsSet() bool

func (NullableEventSubscription1) MarshalJSON ¶

func (v NullableEventSubscription1) MarshalJSON() ([]byte, error)

func (*NullableEventSubscription1) Set ¶

func (*NullableEventSubscription1) UnmarshalJSON ¶

func (v *NullableEventSubscription1) UnmarshalJSON(src []byte) error

func (*NullableEventSubscription1) Unset ¶

func (v *NullableEventSubscription1) Unset()

type NullableEventType ¶

type NullableEventType struct {
	// contains filtered or unexported fields
}

func NewNullableEventType ¶

func NewNullableEventType(val *EventType) *NullableEventType

func (NullableEventType) Get ¶

func (v NullableEventType) Get() *EventType

func (NullableEventType) IsSet ¶

func (v NullableEventType) IsSet() bool

func (NullableEventType) MarshalJSON ¶

func (v NullableEventType) MarshalJSON() ([]byte, error)

func (*NullableEventType) Set ¶

func (v *NullableEventType) Set(val *EventType)

func (*NullableEventType) UnmarshalJSON ¶

func (v *NullableEventType) UnmarshalJSON(src []byte) error

func (*NullableEventType) Unset ¶

func (v *NullableEventType) Unset()

type NullableEventsSubs ¶

type NullableEventsSubs struct {
	// contains filtered or unexported fields
}

func NewNullableEventsSubs ¶

func NewNullableEventsSubs(val *EventsSubs) *NullableEventsSubs

func (NullableEventsSubs) Get ¶

func (v NullableEventsSubs) Get() *EventsSubs

func (NullableEventsSubs) IsSet ¶

func (v NullableEventsSubs) IsSet() bool

func (NullableEventsSubs) MarshalJSON ¶

func (v NullableEventsSubs) MarshalJSON() ([]byte, error)

func (*NullableEventsSubs) Set ¶

func (v *NullableEventsSubs) Set(val *EventsSubs)

func (*NullableEventsSubs) UnmarshalJSON ¶

func (v *NullableEventsSubs) UnmarshalJSON(src []byte) error

func (*NullableEventsSubs) Unset ¶

func (v *NullableEventsSubs) Unset()

type NullableException ¶

type NullableException struct {
	// contains filtered or unexported fields
}

func NewNullableException ¶

func NewNullableException(val *Exception) *NullableException

func (NullableException) Get ¶

func (v NullableException) Get() *Exception

func (NullableException) IsSet ¶

func (v NullableException) IsSet() bool

func (NullableException) MarshalJSON ¶

func (v NullableException) MarshalJSON() ([]byte, error)

func (*NullableException) Set ¶

func (v *NullableException) Set(val *Exception)

func (*NullableException) UnmarshalJSON ¶

func (v *NullableException) UnmarshalJSON(src []byte) error

func (*NullableException) Unset ¶

func (v *NullableException) Unset()

type NullableExceptionId ¶

type NullableExceptionId struct {
	// contains filtered or unexported fields
}

func NewNullableExceptionId ¶

func NewNullableExceptionId(val *ExceptionId) *NullableExceptionId

func (NullableExceptionId) Get ¶

func (NullableExceptionId) IsSet ¶

func (v NullableExceptionId) IsSet() bool

func (NullableExceptionId) MarshalJSON ¶

func (v NullableExceptionId) MarshalJSON() ([]byte, error)

func (*NullableExceptionId) Set ¶

func (v *NullableExceptionId) Set(val *ExceptionId)

func (*NullableExceptionId) UnmarshalJSON ¶

func (v *NullableExceptionId) UnmarshalJSON(src []byte) error

func (*NullableExceptionId) Unset ¶

func (v *NullableExceptionId) Unset()

type NullableExceptionInfo ¶

type NullableExceptionInfo struct {
	// contains filtered or unexported fields
}

func NewNullableExceptionInfo ¶

func NewNullableExceptionInfo(val *ExceptionInfo) *NullableExceptionInfo

func (NullableExceptionInfo) Get ¶

func (NullableExceptionInfo) IsSet ¶

func (v NullableExceptionInfo) IsSet() bool

func (NullableExceptionInfo) MarshalJSON ¶

func (v NullableExceptionInfo) MarshalJSON() ([]byte, error)

func (*NullableExceptionInfo) Set ¶

func (v *NullableExceptionInfo) Set(val *ExceptionInfo)

func (*NullableExceptionInfo) UnmarshalJSON ¶

func (v *NullableExceptionInfo) UnmarshalJSON(src []byte) error

func (*NullableExceptionInfo) Unset ¶

func (v *NullableExceptionInfo) Unset()

type NullableExceptionTrend ¶

type NullableExceptionTrend struct {
	// contains filtered or unexported fields
}

func NewNullableExceptionTrend ¶

func NewNullableExceptionTrend(val *ExceptionTrend) *NullableExceptionTrend

func (NullableExceptionTrend) Get ¶

func (NullableExceptionTrend) IsSet ¶

func (v NullableExceptionTrend) IsSet() bool

func (NullableExceptionTrend) MarshalJSON ¶

func (v NullableExceptionTrend) MarshalJSON() ([]byte, error)

func (*NullableExceptionTrend) Set ¶

func (*NullableExceptionTrend) UnmarshalJSON ¶

func (v *NullableExceptionTrend) UnmarshalJSON(src []byte) error

func (*NullableExceptionTrend) Unset ¶

func (v *NullableExceptionTrend) Unset()

type NullableExpectedAnalyticsType ¶

type NullableExpectedAnalyticsType struct {
	// contains filtered or unexported fields
}

func (NullableExpectedAnalyticsType) Get ¶

func (NullableExpectedAnalyticsType) IsSet ¶

func (NullableExpectedAnalyticsType) MarshalJSON ¶

func (v NullableExpectedAnalyticsType) MarshalJSON() ([]byte, error)

func (*NullableExpectedAnalyticsType) Set ¶

func (*NullableExpectedAnalyticsType) UnmarshalJSON ¶

func (v *NullableExpectedAnalyticsType) UnmarshalJSON(src []byte) error

func (*NullableExpectedAnalyticsType) Unset ¶

func (v *NullableExpectedAnalyticsType) Unset()

type NullableExpectedUeBehaviourData ¶

type NullableExpectedUeBehaviourData struct {
	// contains filtered or unexported fields
}

func (NullableExpectedUeBehaviourData) Get ¶

func (NullableExpectedUeBehaviourData) IsSet ¶

func (NullableExpectedUeBehaviourData) MarshalJSON ¶

func (v NullableExpectedUeBehaviourData) MarshalJSON() ([]byte, error)

func (*NullableExpectedUeBehaviourData) Set ¶

func (*NullableExpectedUeBehaviourData) UnmarshalJSON ¶

func (v *NullableExpectedUeBehaviourData) UnmarshalJSON(src []byte) error

func (*NullableExpectedUeBehaviourData) Unset ¶

type NullableExtSnssai ¶

type NullableExtSnssai struct {
	// contains filtered or unexported fields
}

func NewNullableExtSnssai ¶

func NewNullableExtSnssai(val *ExtSnssai) *NullableExtSnssai

func (NullableExtSnssai) Get ¶

func (v NullableExtSnssai) Get() *ExtSnssai

func (NullableExtSnssai) IsSet ¶

func (v NullableExtSnssai) IsSet() bool

func (NullableExtSnssai) MarshalJSON ¶

func (v NullableExtSnssai) MarshalJSON() ([]byte, error)

func (*NullableExtSnssai) Set ¶

func (v *NullableExtSnssai) Set(val *ExtSnssai)

func (*NullableExtSnssai) UnmarshalJSON ¶

func (v *NullableExtSnssai) UnmarshalJSON(src []byte) error

func (*NullableExtSnssai) Unset ¶

func (v *NullableExtSnssai) Unset()

type NullableExternalClientType ¶

type NullableExternalClientType struct {
	// contains filtered or unexported fields
}

func NewNullableExternalClientType ¶

func NewNullableExternalClientType(val *ExternalClientType) *NullableExternalClientType

func (NullableExternalClientType) Get ¶

func (NullableExternalClientType) IsSet ¶

func (v NullableExternalClientType) IsSet() bool

func (NullableExternalClientType) MarshalJSON ¶

func (v NullableExternalClientType) MarshalJSON() ([]byte, error)

func (*NullableExternalClientType) Set ¶

func (*NullableExternalClientType) UnmarshalJSON ¶

func (v *NullableExternalClientType) UnmarshalJSON(src []byte) error

func (*NullableExternalClientType) Unset ¶

func (v *NullableExternalClientType) Unset()

type NullableFailureEventInfo ¶

type NullableFailureEventInfo struct {
	// contains filtered or unexported fields
}

func NewNullableFailureEventInfo ¶

func NewNullableFailureEventInfo(val *FailureEventInfo) *NullableFailureEventInfo

func (NullableFailureEventInfo) Get ¶

func (NullableFailureEventInfo) IsSet ¶

func (v NullableFailureEventInfo) IsSet() bool

func (NullableFailureEventInfo) MarshalJSON ¶

func (v NullableFailureEventInfo) MarshalJSON() ([]byte, error)

func (*NullableFailureEventInfo) Set ¶

func (*NullableFailureEventInfo) UnmarshalJSON ¶

func (v *NullableFailureEventInfo) UnmarshalJSON(src []byte) error

func (*NullableFailureEventInfo) Unset ¶

func (v *NullableFailureEventInfo) Unset()

type NullableFetchInstruction ¶

type NullableFetchInstruction struct {
	// contains filtered or unexported fields
}

func NewNullableFetchInstruction ¶

func NewNullableFetchInstruction(val *FetchInstruction) *NullableFetchInstruction

func (NullableFetchInstruction) Get ¶

func (NullableFetchInstruction) IsSet ¶

func (v NullableFetchInstruction) IsSet() bool

func (NullableFetchInstruction) MarshalJSON ¶

func (v NullableFetchInstruction) MarshalJSON() ([]byte, error)

func (*NullableFetchInstruction) Set ¶

func (*NullableFetchInstruction) UnmarshalJSON ¶

func (v *NullableFetchInstruction) UnmarshalJSON(src []byte) error

func (*NullableFetchInstruction) Unset ¶

func (v *NullableFetchInstruction) Unset()

type NullableFloat32 ¶

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32 ¶

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get ¶

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet ¶

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON ¶

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set ¶

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON ¶

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset ¶

func (v *NullableFloat32) Unset()

type NullableFloat64 ¶

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64 ¶

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get ¶

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet ¶

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON ¶

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set ¶

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON ¶

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset ¶

func (v *NullableFloat64) Unset()

type NullableFlowDirection ¶

type NullableFlowDirection struct {
	// contains filtered or unexported fields
}

func NewNullableFlowDirection ¶

func NewNullableFlowDirection(val *FlowDirection) *NullableFlowDirection

func (NullableFlowDirection) Get ¶

func (NullableFlowDirection) IsSet ¶

func (v NullableFlowDirection) IsSet() bool

func (NullableFlowDirection) MarshalJSON ¶

func (v NullableFlowDirection) MarshalJSON() ([]byte, error)

func (*NullableFlowDirection) Set ¶

func (v *NullableFlowDirection) Set(val *FlowDirection)

func (*NullableFlowDirection) UnmarshalJSON ¶

func (v *NullableFlowDirection) UnmarshalJSON(src []byte) error

func (*NullableFlowDirection) Unset ¶

func (v *NullableFlowDirection) Unset()

type NullableFlowInfo ¶

type NullableFlowInfo struct {
	// contains filtered or unexported fields
}

func NewNullableFlowInfo ¶

func NewNullableFlowInfo(val *FlowInfo) *NullableFlowInfo

func (NullableFlowInfo) Get ¶

func (v NullableFlowInfo) Get() *FlowInfo

func (NullableFlowInfo) IsSet ¶

func (v NullableFlowInfo) IsSet() bool

func (NullableFlowInfo) MarshalJSON ¶

func (v NullableFlowInfo) MarshalJSON() ([]byte, error)

func (*NullableFlowInfo) Set ¶

func (v *NullableFlowInfo) Set(val *FlowInfo)

func (*NullableFlowInfo) UnmarshalJSON ¶

func (v *NullableFlowInfo) UnmarshalJSON(src []byte) error

func (*NullableFlowInfo) Unset ¶

func (v *NullableFlowInfo) Unset()

type NullableFormattingInstruction ¶

type NullableFormattingInstruction struct {
	// contains filtered or unexported fields
}

func (NullableFormattingInstruction) Get ¶

func (NullableFormattingInstruction) IsSet ¶

func (NullableFormattingInstruction) MarshalJSON ¶

func (v NullableFormattingInstruction) MarshalJSON() ([]byte, error)

func (*NullableFormattingInstruction) Set ¶

func (*NullableFormattingInstruction) UnmarshalJSON ¶

func (v *NullableFormattingInstruction) UnmarshalJSON(src []byte) error

func (*NullableFormattingInstruction) Unset ¶

func (v *NullableFormattingInstruction) Unset()

type NullableGADShape ¶

type NullableGADShape struct {
	// contains filtered or unexported fields
}

func NewNullableGADShape ¶

func NewNullableGADShape(val *GADShape) *NullableGADShape

func (NullableGADShape) Get ¶

func (v NullableGADShape) Get() *GADShape

func (NullableGADShape) IsSet ¶

func (v NullableGADShape) IsSet() bool

func (NullableGADShape) MarshalJSON ¶

func (v NullableGADShape) MarshalJSON() ([]byte, error)

func (*NullableGADShape) Set ¶

func (v *NullableGADShape) Set(val *GADShape)

func (*NullableGADShape) UnmarshalJSON ¶

func (v *NullableGADShape) UnmarshalJSON(src []byte) error

func (*NullableGADShape) Unset ¶

func (v *NullableGADShape) Unset()

type NullableGNbId ¶

type NullableGNbId struct {
	// contains filtered or unexported fields
}

func NewNullableGNbId ¶

func NewNullableGNbId(val *GNbId) *NullableGNbId

func (NullableGNbId) Get ¶

func (v NullableGNbId) Get() *GNbId

func (NullableGNbId) IsSet ¶

func (v NullableGNbId) IsSet() bool

func (NullableGNbId) MarshalJSON ¶

func (v NullableGNbId) MarshalJSON() ([]byte, error)

func (*NullableGNbId) Set ¶

func (v *NullableGNbId) Set(val *GNbId)

func (*NullableGNbId) UnmarshalJSON ¶

func (v *NullableGNbId) UnmarshalJSON(src []byte) error

func (*NullableGNbId) Unset ¶

func (v *NullableGNbId) Unset()

type NullableGeographicArea ¶

type NullableGeographicArea struct {
	// contains filtered or unexported fields
}

func NewNullableGeographicArea ¶

func NewNullableGeographicArea(val *GeographicArea) *NullableGeographicArea

func (NullableGeographicArea) Get ¶

func (NullableGeographicArea) IsSet ¶

func (v NullableGeographicArea) IsSet() bool

func (NullableGeographicArea) MarshalJSON ¶

func (v NullableGeographicArea) MarshalJSON() ([]byte, error)

func (*NullableGeographicArea) Set ¶

func (*NullableGeographicArea) UnmarshalJSON ¶

func (v *NullableGeographicArea) UnmarshalJSON(src []byte) error

func (*NullableGeographicArea) Unset ¶

func (v *NullableGeographicArea) Unset()

type NullableGeographicalCoordinates ¶

type NullableGeographicalCoordinates struct {
	// contains filtered or unexported fields
}

func (NullableGeographicalCoordinates) Get ¶

func (NullableGeographicalCoordinates) IsSet ¶

func (NullableGeographicalCoordinates) MarshalJSON ¶

func (v NullableGeographicalCoordinates) MarshalJSON() ([]byte, error)

func (*NullableGeographicalCoordinates) Set ¶

func (*NullableGeographicalCoordinates) UnmarshalJSON ¶

func (v *NullableGeographicalCoordinates) UnmarshalJSON(src []byte) error

func (*NullableGeographicalCoordinates) Unset ¶

type NullableGeraLocation ¶

type NullableGeraLocation struct {
	// contains filtered or unexported fields
}

func NewNullableGeraLocation ¶

func NewNullableGeraLocation(val *GeraLocation) *NullableGeraLocation

func (NullableGeraLocation) Get ¶

func (NullableGeraLocation) IsSet ¶

func (v NullableGeraLocation) IsSet() bool

func (NullableGeraLocation) MarshalJSON ¶

func (v NullableGeraLocation) MarshalJSON() ([]byte, error)

func (*NullableGeraLocation) Set ¶

func (v *NullableGeraLocation) Set(val *GeraLocation)

func (*NullableGeraLocation) UnmarshalJSON ¶

func (v *NullableGeraLocation) UnmarshalJSON(src []byte) error

func (*NullableGeraLocation) Unset ¶

func (v *NullableGeraLocation) Unset()

type NullableGlobalRanNodeId ¶

type NullableGlobalRanNodeId struct {
	// contains filtered or unexported fields
}

func NewNullableGlobalRanNodeId ¶

func NewNullableGlobalRanNodeId(val *GlobalRanNodeId) *NullableGlobalRanNodeId

func (NullableGlobalRanNodeId) Get ¶

func (NullableGlobalRanNodeId) IsSet ¶

func (v NullableGlobalRanNodeId) IsSet() bool

func (NullableGlobalRanNodeId) MarshalJSON ¶

func (v NullableGlobalRanNodeId) MarshalJSON() ([]byte, error)

func (*NullableGlobalRanNodeId) Set ¶

func (*NullableGlobalRanNodeId) UnmarshalJSON ¶

func (v *NullableGlobalRanNodeId) UnmarshalJSON(src []byte) error

func (*NullableGlobalRanNodeId) Unset ¶

func (v *NullableGlobalRanNodeId) Unset()

type NullableGmlcInfo ¶

type NullableGmlcInfo struct {
	// contains filtered or unexported fields
}

func NewNullableGmlcInfo ¶

func NewNullableGmlcInfo(val *GmlcInfo) *NullableGmlcInfo

func (NullableGmlcInfo) Get ¶

func (v NullableGmlcInfo) Get() *GmlcInfo

func (NullableGmlcInfo) IsSet ¶

func (v NullableGmlcInfo) IsSet() bool

func (NullableGmlcInfo) MarshalJSON ¶

func (v NullableGmlcInfo) MarshalJSON() ([]byte, error)

func (*NullableGmlcInfo) Set ¶

func (v *NullableGmlcInfo) Set(val *GmlcInfo)

func (*NullableGmlcInfo) UnmarshalJSON ¶

func (v *NullableGmlcInfo) UnmarshalJSON(src []byte) error

func (*NullableGmlcInfo) Unset ¶

func (v *NullableGmlcInfo) Unset()

type NullableGuami ¶

type NullableGuami struct {
	// contains filtered or unexported fields
}

func NewNullableGuami ¶

func NewNullableGuami(val *Guami) *NullableGuami

func (NullableGuami) Get ¶

func (v NullableGuami) Get() *Guami

func (NullableGuami) IsSet ¶

func (v NullableGuami) IsSet() bool

func (NullableGuami) MarshalJSON ¶

func (v NullableGuami) MarshalJSON() ([]byte, error)

func (*NullableGuami) Set ¶

func (v *NullableGuami) Set(val *Guami)

func (*NullableGuami) UnmarshalJSON ¶

func (v *NullableGuami) UnmarshalJSON(src []byte) error

func (*NullableGuami) Unset ¶

func (v *NullableGuami) Unset()

type NullableGuamiListCond ¶

type NullableGuamiListCond struct {
	// contains filtered or unexported fields
}

func NewNullableGuamiListCond ¶

func NewNullableGuamiListCond(val *GuamiListCond) *NullableGuamiListCond

func (NullableGuamiListCond) Get ¶

func (NullableGuamiListCond) IsSet ¶

func (v NullableGuamiListCond) IsSet() bool

func (NullableGuamiListCond) MarshalJSON ¶

func (v NullableGuamiListCond) MarshalJSON() ([]byte, error)

func (*NullableGuamiListCond) Set ¶

func (v *NullableGuamiListCond) Set(val *GuamiListCond)

func (*NullableGuamiListCond) UnmarshalJSON ¶

func (v *NullableGuamiListCond) UnmarshalJSON(src []byte) error

func (*NullableGuamiListCond) Unset ¶

func (v *NullableGuamiListCond) Unset()

type NullableHfcNodeId ¶

type NullableHfcNodeId struct {
	// contains filtered or unexported fields
}

func NewNullableHfcNodeId ¶

func NewNullableHfcNodeId(val *HfcNodeId) *NullableHfcNodeId

func (NullableHfcNodeId) Get ¶

func (v NullableHfcNodeId) Get() *HfcNodeId

func (NullableHfcNodeId) IsSet ¶

func (v NullableHfcNodeId) IsSet() bool

func (NullableHfcNodeId) MarshalJSON ¶

func (v NullableHfcNodeId) MarshalJSON() ([]byte, error)

func (*NullableHfcNodeId) Set ¶

func (v *NullableHfcNodeId) Set(val *HfcNodeId)

func (*NullableHfcNodeId) UnmarshalJSON ¶

func (v *NullableHfcNodeId) UnmarshalJSON(src []byte) error

func (*NullableHfcNodeId) Unset ¶

func (v *NullableHfcNodeId) Unset()

type NullableHssInfo ¶

type NullableHssInfo struct {
	// contains filtered or unexported fields
}

func NewNullableHssInfo ¶

func NewNullableHssInfo(val *HssInfo) *NullableHssInfo

func (NullableHssInfo) Get ¶

func (v NullableHssInfo) Get() *HssInfo

func (NullableHssInfo) IsSet ¶

func (v NullableHssInfo) IsSet() bool

func (NullableHssInfo) MarshalJSON ¶

func (v NullableHssInfo) MarshalJSON() ([]byte, error)

func (*NullableHssInfo) Set ¶

func (v *NullableHssInfo) Set(val *HssInfo)

func (*NullableHssInfo) UnmarshalJSON ¶

func (v *NullableHssInfo) UnmarshalJSON(src []byte) error

func (*NullableHssInfo) Unset ¶

func (v *NullableHssInfo) Unset()

type NullableIdentityRange ¶

type NullableIdentityRange struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityRange ¶

func NewNullableIdentityRange(val *IdentityRange) *NullableIdentityRange

func (NullableIdentityRange) Get ¶

func (NullableIdentityRange) IsSet ¶

func (v NullableIdentityRange) IsSet() bool

func (NullableIdentityRange) MarshalJSON ¶

func (v NullableIdentityRange) MarshalJSON() ([]byte, error)

func (*NullableIdentityRange) Set ¶

func (v *NullableIdentityRange) Set(val *IdentityRange)

func (*NullableIdentityRange) UnmarshalJSON ¶

func (v *NullableIdentityRange) UnmarshalJSON(src []byte) error

func (*NullableIdentityRange) Unset ¶

func (v *NullableIdentityRange) Unset()

type NullableIdleStatusIndication ¶

type NullableIdleStatusIndication struct {
	// contains filtered or unexported fields
}

func (NullableIdleStatusIndication) Get ¶

func (NullableIdleStatusIndication) IsSet ¶

func (NullableIdleStatusIndication) MarshalJSON ¶

func (v NullableIdleStatusIndication) MarshalJSON() ([]byte, error)

func (*NullableIdleStatusIndication) Set ¶

func (*NullableIdleStatusIndication) UnmarshalJSON ¶

func (v *NullableIdleStatusIndication) UnmarshalJSON(src []byte) error

func (*NullableIdleStatusIndication) Unset ¶

func (v *NullableIdleStatusIndication) Unset()

type NullableImsiRange ¶

type NullableImsiRange struct {
	// contains filtered or unexported fields
}

func NewNullableImsiRange ¶

func NewNullableImsiRange(val *ImsiRange) *NullableImsiRange

func (NullableImsiRange) Get ¶

func (v NullableImsiRange) Get() *ImsiRange

func (NullableImsiRange) IsSet ¶

func (v NullableImsiRange) IsSet() bool

func (NullableImsiRange) MarshalJSON ¶

func (v NullableImsiRange) MarshalJSON() ([]byte, error)

func (*NullableImsiRange) Set ¶

func (v *NullableImsiRange) Set(val *ImsiRange)

func (*NullableImsiRange) UnmarshalJSON ¶

func (v *NullableImsiRange) UnmarshalJSON(src []byte) error

func (*NullableImsiRange) Unset ¶

func (v *NullableImsiRange) Unset()

type NullableInt ¶

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt ¶

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get ¶

func (v NullableInt) Get() *int

func (NullableInt) IsSet ¶

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON ¶

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set ¶

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON ¶

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset ¶

func (v *NullableInt) Unset()

type NullableInt32 ¶

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32 ¶

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get ¶

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet ¶

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON ¶

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set ¶

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON ¶

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset ¶

func (v *NullableInt32) Unset()

type NullableInt64 ¶

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64 ¶

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get ¶

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet ¶

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON ¶

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set ¶

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON ¶

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset ¶

func (v *NullableInt64) Unset()

type NullableInterfaceUpfInfoItem ¶

type NullableInterfaceUpfInfoItem struct {
	// contains filtered or unexported fields
}

func (NullableInterfaceUpfInfoItem) Get ¶

func (NullableInterfaceUpfInfoItem) IsSet ¶

func (NullableInterfaceUpfInfoItem) MarshalJSON ¶

func (v NullableInterfaceUpfInfoItem) MarshalJSON() ([]byte, error)

func (*NullableInterfaceUpfInfoItem) Set ¶

func (*NullableInterfaceUpfInfoItem) UnmarshalJSON ¶

func (v *NullableInterfaceUpfInfoItem) UnmarshalJSON(src []byte) error

func (*NullableInterfaceUpfInfoItem) Unset ¶

func (v *NullableInterfaceUpfInfoItem) Unset()

type NullableInternalGroupIdRange ¶

type NullableInternalGroupIdRange struct {
	// contains filtered or unexported fields
}

func (NullableInternalGroupIdRange) Get ¶

func (NullableInternalGroupIdRange) IsSet ¶

func (NullableInternalGroupIdRange) MarshalJSON ¶

func (v NullableInternalGroupIdRange) MarshalJSON() ([]byte, error)

func (*NullableInternalGroupIdRange) Set ¶

func (*NullableInternalGroupIdRange) UnmarshalJSON ¶

func (v *NullableInternalGroupIdRange) UnmarshalJSON(src []byte) error

func (*NullableInternalGroupIdRange) Unset ¶

func (v *NullableInternalGroupIdRange) Unset()

type NullableInvalidParam ¶

type NullableInvalidParam struct {
	// contains filtered or unexported fields
}

func NewNullableInvalidParam ¶

func NewNullableInvalidParam(val *InvalidParam) *NullableInvalidParam

func (NullableInvalidParam) Get ¶

func (NullableInvalidParam) IsSet ¶

func (v NullableInvalidParam) IsSet() bool

func (NullableInvalidParam) MarshalJSON ¶

func (v NullableInvalidParam) MarshalJSON() ([]byte, error)

func (*NullableInvalidParam) Set ¶

func (v *NullableInvalidParam) Set(val *InvalidParam)

func (*NullableInvalidParam) UnmarshalJSON ¶

func (v *NullableInvalidParam) UnmarshalJSON(src []byte) error

func (*NullableInvalidParam) Unset ¶

func (v *NullableInvalidParam) Unset()

type NullableIpAddr ¶

type NullableIpAddr struct {
	// contains filtered or unexported fields
}

func NewNullableIpAddr ¶

func NewNullableIpAddr(val *IpAddr) *NullableIpAddr

func (NullableIpAddr) Get ¶

func (v NullableIpAddr) Get() *IpAddr

func (NullableIpAddr) IsSet ¶

func (v NullableIpAddr) IsSet() bool

func (NullableIpAddr) MarshalJSON ¶

func (v NullableIpAddr) MarshalJSON() ([]byte, error)

func (*NullableIpAddr) Set ¶

func (v *NullableIpAddr) Set(val *IpAddr)

func (*NullableIpAddr) UnmarshalJSON ¶

func (v *NullableIpAddr) UnmarshalJSON(src []byte) error

func (*NullableIpAddr) Unset ¶

func (v *NullableIpAddr) Unset()

type NullableIpEndPoint ¶

type NullableIpEndPoint struct {
	// contains filtered or unexported fields
}

func NewNullableIpEndPoint ¶

func NewNullableIpEndPoint(val *IpEndPoint) *NullableIpEndPoint

func (NullableIpEndPoint) Get ¶

func (v NullableIpEndPoint) Get() *IpEndPoint

func (NullableIpEndPoint) IsSet ¶

func (v NullableIpEndPoint) IsSet() bool

func (NullableIpEndPoint) MarshalJSON ¶

func (v NullableIpEndPoint) MarshalJSON() ([]byte, error)

func (*NullableIpEndPoint) Set ¶

func (v *NullableIpEndPoint) Set(val *IpEndPoint)

func (*NullableIpEndPoint) UnmarshalJSON ¶

func (v *NullableIpEndPoint) UnmarshalJSON(src []byte) error

func (*NullableIpEndPoint) Unset ¶

func (v *NullableIpEndPoint) Unset()

type NullableIpEthFlowDescription ¶

type NullableIpEthFlowDescription struct {
	// contains filtered or unexported fields
}

func (NullableIpEthFlowDescription) Get ¶

func (NullableIpEthFlowDescription) IsSet ¶

func (NullableIpEthFlowDescription) MarshalJSON ¶

func (v NullableIpEthFlowDescription) MarshalJSON() ([]byte, error)

func (*NullableIpEthFlowDescription) Set ¶

func (*NullableIpEthFlowDescription) UnmarshalJSON ¶

func (v *NullableIpEthFlowDescription) UnmarshalJSON(src []byte) error

func (*NullableIpEthFlowDescription) Unset ¶

func (v *NullableIpEthFlowDescription) Unset()

type NullableIpIndex ¶

type NullableIpIndex struct {
	// contains filtered or unexported fields
}

func NewNullableIpIndex ¶

func NewNullableIpIndex(val *IpIndex) *NullableIpIndex

func (NullableIpIndex) Get ¶

func (v NullableIpIndex) Get() *IpIndex

func (NullableIpIndex) IsSet ¶

func (v NullableIpIndex) IsSet() bool

func (NullableIpIndex) MarshalJSON ¶

func (v NullableIpIndex) MarshalJSON() ([]byte, error)

func (*NullableIpIndex) Set ¶

func (v *NullableIpIndex) Set(val *IpIndex)

func (*NullableIpIndex) UnmarshalJSON ¶

func (v *NullableIpIndex) UnmarshalJSON(src []byte) error

func (*NullableIpIndex) Unset ¶

func (v *NullableIpIndex) Unset()

type NullableIpPacketFilterSet ¶

type NullableIpPacketFilterSet struct {
	// contains filtered or unexported fields
}

func NewNullableIpPacketFilterSet ¶

func NewNullableIpPacketFilterSet(val *IpPacketFilterSet) *NullableIpPacketFilterSet

func (NullableIpPacketFilterSet) Get ¶

func (NullableIpPacketFilterSet) IsSet ¶

func (v NullableIpPacketFilterSet) IsSet() bool

func (NullableIpPacketFilterSet) MarshalJSON ¶

func (v NullableIpPacketFilterSet) MarshalJSON() ([]byte, error)

func (*NullableIpPacketFilterSet) Set ¶

func (*NullableIpPacketFilterSet) UnmarshalJSON ¶

func (v *NullableIpPacketFilterSet) UnmarshalJSON(src []byte) error

func (*NullableIpPacketFilterSet) Unset ¶

func (v *NullableIpPacketFilterSet) Unset()

type NullableIpReachability ¶

type NullableIpReachability struct {
	// contains filtered or unexported fields
}

func NewNullableIpReachability ¶

func NewNullableIpReachability(val *IpReachability) *NullableIpReachability

func (NullableIpReachability) Get ¶

func (NullableIpReachability) IsSet ¶

func (v NullableIpReachability) IsSet() bool

func (NullableIpReachability) MarshalJSON ¶

func (v NullableIpReachability) MarshalJSON() ([]byte, error)

func (*NullableIpReachability) Set ¶

func (*NullableIpReachability) UnmarshalJSON ¶

func (v *NullableIpReachability) UnmarshalJSON(src []byte) error

func (*NullableIpReachability) Unset ¶

func (v *NullableIpReachability) Unset()

type NullableIpv4AddressRange ¶

type NullableIpv4AddressRange struct {
	// contains filtered or unexported fields
}

func NewNullableIpv4AddressRange ¶

func NewNullableIpv4AddressRange(val *Ipv4AddressRange) *NullableIpv4AddressRange

func (NullableIpv4AddressRange) Get ¶

func (NullableIpv4AddressRange) IsSet ¶

func (v NullableIpv4AddressRange) IsSet() bool

func (NullableIpv4AddressRange) MarshalJSON ¶

func (v NullableIpv4AddressRange) MarshalJSON() ([]byte, error)

func (*NullableIpv4AddressRange) Set ¶

func (*NullableIpv4AddressRange) UnmarshalJSON ¶

func (v *NullableIpv4AddressRange) UnmarshalJSON(src []byte) error

func (*NullableIpv4AddressRange) Unset ¶

func (v *NullableIpv4AddressRange) Unset()

type NullableIpv6Addr ¶

type NullableIpv6Addr struct {
	// contains filtered or unexported fields
}

func NewNullableIpv6Addr ¶

func NewNullableIpv6Addr(val *Ipv6Addr) *NullableIpv6Addr

func (NullableIpv6Addr) Get ¶

func (v NullableIpv6Addr) Get() *Ipv6Addr

func (NullableIpv6Addr) IsSet ¶

func (v NullableIpv6Addr) IsSet() bool

func (NullableIpv6Addr) MarshalJSON ¶

func (v NullableIpv6Addr) MarshalJSON() ([]byte, error)

func (*NullableIpv6Addr) Set ¶

func (v *NullableIpv6Addr) Set(val *Ipv6Addr)

func (*NullableIpv6Addr) UnmarshalJSON ¶

func (v *NullableIpv6Addr) UnmarshalJSON(src []byte) error

func (*NullableIpv6Addr) Unset ¶

func (v *NullableIpv6Addr) Unset()

type NullableIpv6Prefix ¶

type NullableIpv6Prefix struct {
	// contains filtered or unexported fields
}

func NewNullableIpv6Prefix ¶

func NewNullableIpv6Prefix(val *Ipv6Prefix) *NullableIpv6Prefix

func (NullableIpv6Prefix) Get ¶

func (v NullableIpv6Prefix) Get() *Ipv6Prefix

func (NullableIpv6Prefix) IsSet ¶

func (v NullableIpv6Prefix) IsSet() bool

func (NullableIpv6Prefix) MarshalJSON ¶

func (v NullableIpv6Prefix) MarshalJSON() ([]byte, error)

func (*NullableIpv6Prefix) Set ¶

func (v *NullableIpv6Prefix) Set(val *Ipv6Prefix)

func (*NullableIpv6Prefix) UnmarshalJSON ¶

func (v *NullableIpv6Prefix) UnmarshalJSON(src []byte) error

func (*NullableIpv6Prefix) Unset ¶

func (v *NullableIpv6Prefix) Unset()

type NullableIpv6PrefixRange ¶

type NullableIpv6PrefixRange struct {
	// contains filtered or unexported fields
}

func NewNullableIpv6PrefixRange ¶

func NewNullableIpv6PrefixRange(val *Ipv6PrefixRange) *NullableIpv6PrefixRange

func (NullableIpv6PrefixRange) Get ¶

func (NullableIpv6PrefixRange) IsSet ¶

func (v NullableIpv6PrefixRange) IsSet() bool

func (NullableIpv6PrefixRange) MarshalJSON ¶

func (v NullableIpv6PrefixRange) MarshalJSON() ([]byte, error)

func (*NullableIpv6PrefixRange) Set ¶

func (*NullableIpv6PrefixRange) UnmarshalJSON ¶

func (v *NullableIpv6PrefixRange) UnmarshalJSON(src []byte) error

func (*NullableIpv6PrefixRange) Unset ¶

func (v *NullableIpv6PrefixRange) Unset()

type NullableIwmscInfo ¶

type NullableIwmscInfo struct {
	// contains filtered or unexported fields
}

func NewNullableIwmscInfo ¶

func NewNullableIwmscInfo(val *IwmscInfo) *NullableIwmscInfo

func (NullableIwmscInfo) Get ¶

func (v NullableIwmscInfo) Get() *IwmscInfo

func (NullableIwmscInfo) IsSet ¶

func (v NullableIwmscInfo) IsSet() bool

func (NullableIwmscInfo) MarshalJSON ¶

func (v NullableIwmscInfo) MarshalJSON() ([]byte, error)

func (*NullableIwmscInfo) Set ¶

func (v *NullableIwmscInfo) Set(val *IwmscInfo)

func (*NullableIwmscInfo) UnmarshalJSON ¶

func (v *NullableIwmscInfo) UnmarshalJSON(src []byte) error

func (*NullableIwmscInfo) Unset ¶

func (v *NullableIwmscInfo) Unset()

type NullableLadnInfo ¶

type NullableLadnInfo struct {
	// contains filtered or unexported fields
}

func NewNullableLadnInfo ¶

func NewNullableLadnInfo(val *LadnInfo) *NullableLadnInfo

func (NullableLadnInfo) Get ¶

func (v NullableLadnInfo) Get() *LadnInfo

func (NullableLadnInfo) IsSet ¶

func (v NullableLadnInfo) IsSet() bool

func (NullableLadnInfo) MarshalJSON ¶

func (v NullableLadnInfo) MarshalJSON() ([]byte, error)

func (*NullableLadnInfo) Set ¶

func (v *NullableLadnInfo) Set(val *LadnInfo)

func (*NullableLadnInfo) UnmarshalJSON ¶

func (v *NullableLadnInfo) UnmarshalJSON(src []byte) error

func (*NullableLadnInfo) Unset ¶

func (v *NullableLadnInfo) Unset()

type NullableLineType ¶

type NullableLineType struct {
	// contains filtered or unexported fields
}

func NewNullableLineType ¶

func NewNullableLineType(val *LineType) *NullableLineType

func (NullableLineType) Get ¶

func (v NullableLineType) Get() *LineType

func (NullableLineType) IsSet ¶

func (v NullableLineType) IsSet() bool

func (NullableLineType) MarshalJSON ¶

func (v NullableLineType) MarshalJSON() ([]byte, error)

func (*NullableLineType) Set ¶

func (v *NullableLineType) Set(val *LineType)

func (*NullableLineType) UnmarshalJSON ¶

func (v *NullableLineType) UnmarshalJSON(src []byte) error

func (*NullableLineType) Unset ¶

func (v *NullableLineType) Unset()

type NullableLmfInfo ¶

type NullableLmfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableLmfInfo ¶

func NewNullableLmfInfo(val *LmfInfo) *NullableLmfInfo

func (NullableLmfInfo) Get ¶

func (v NullableLmfInfo) Get() *LmfInfo

func (NullableLmfInfo) IsSet ¶

func (v NullableLmfInfo) IsSet() bool

func (NullableLmfInfo) MarshalJSON ¶

func (v NullableLmfInfo) MarshalJSON() ([]byte, error)

func (*NullableLmfInfo) Set ¶

func (v *NullableLmfInfo) Set(val *LmfInfo)

func (*NullableLmfInfo) UnmarshalJSON ¶

func (v *NullableLmfInfo) UnmarshalJSON(src []byte) error

func (*NullableLmfInfo) Unset ¶

func (v *NullableLmfInfo) Unset()

type NullableLocal2dPointUncertaintyEllipse ¶

type NullableLocal2dPointUncertaintyEllipse struct {
	// contains filtered or unexported fields
}

func (NullableLocal2dPointUncertaintyEllipse) Get ¶

func (NullableLocal2dPointUncertaintyEllipse) IsSet ¶

func (NullableLocal2dPointUncertaintyEllipse) MarshalJSON ¶

func (v NullableLocal2dPointUncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*NullableLocal2dPointUncertaintyEllipse) Set ¶

func (*NullableLocal2dPointUncertaintyEllipse) UnmarshalJSON ¶

func (v *NullableLocal2dPointUncertaintyEllipse) UnmarshalJSON(src []byte) error

func (*NullableLocal2dPointUncertaintyEllipse) Unset ¶

type NullableLocal2dPointUncertaintyEllipseAllOf ¶

type NullableLocal2dPointUncertaintyEllipseAllOf struct {
	// contains filtered or unexported fields
}

func (NullableLocal2dPointUncertaintyEllipseAllOf) Get ¶

func (NullableLocal2dPointUncertaintyEllipseAllOf) IsSet ¶

func (NullableLocal2dPointUncertaintyEllipseAllOf) MarshalJSON ¶

func (*NullableLocal2dPointUncertaintyEllipseAllOf) Set ¶

func (*NullableLocal2dPointUncertaintyEllipseAllOf) UnmarshalJSON ¶

func (v *NullableLocal2dPointUncertaintyEllipseAllOf) UnmarshalJSON(src []byte) error

func (*NullableLocal2dPointUncertaintyEllipseAllOf) Unset ¶

type NullableLocal3dPointUncertaintyEllipsoid ¶

type NullableLocal3dPointUncertaintyEllipsoid struct {
	// contains filtered or unexported fields
}

func (NullableLocal3dPointUncertaintyEllipsoid) Get ¶

func (NullableLocal3dPointUncertaintyEllipsoid) IsSet ¶

func (NullableLocal3dPointUncertaintyEllipsoid) MarshalJSON ¶

func (*NullableLocal3dPointUncertaintyEllipsoid) Set ¶

func (*NullableLocal3dPointUncertaintyEllipsoid) UnmarshalJSON ¶

func (v *NullableLocal3dPointUncertaintyEllipsoid) UnmarshalJSON(src []byte) error

func (*NullableLocal3dPointUncertaintyEllipsoid) Unset ¶

type NullableLocal3dPointUncertaintyEllipsoidAllOf ¶

type NullableLocal3dPointUncertaintyEllipsoidAllOf struct {
	// contains filtered or unexported fields
}

func (NullableLocal3dPointUncertaintyEllipsoidAllOf) Get ¶

func (NullableLocal3dPointUncertaintyEllipsoidAllOf) IsSet ¶

func (NullableLocal3dPointUncertaintyEllipsoidAllOf) MarshalJSON ¶

func (*NullableLocal3dPointUncertaintyEllipsoidAllOf) Set ¶

func (*NullableLocal3dPointUncertaintyEllipsoidAllOf) UnmarshalJSON ¶

func (*NullableLocal3dPointUncertaintyEllipsoidAllOf) Unset ¶

type NullableLocalOrigin ¶

type NullableLocalOrigin struct {
	// contains filtered or unexported fields
}

func NewNullableLocalOrigin ¶

func NewNullableLocalOrigin(val *LocalOrigin) *NullableLocalOrigin

func (NullableLocalOrigin) Get ¶

func (NullableLocalOrigin) IsSet ¶

func (v NullableLocalOrigin) IsSet() bool

func (NullableLocalOrigin) MarshalJSON ¶

func (v NullableLocalOrigin) MarshalJSON() ([]byte, error)

func (*NullableLocalOrigin) Set ¶

func (v *NullableLocalOrigin) Set(val *LocalOrigin)

func (*NullableLocalOrigin) UnmarshalJSON ¶

func (v *NullableLocalOrigin) UnmarshalJSON(src []byte) error

func (*NullableLocalOrigin) Unset ¶

func (v *NullableLocalOrigin) Unset()

type NullableLocalityDescription ¶

type NullableLocalityDescription struct {
	// contains filtered or unexported fields
}

func (NullableLocalityDescription) Get ¶

func (NullableLocalityDescription) IsSet ¶

func (NullableLocalityDescription) MarshalJSON ¶

func (v NullableLocalityDescription) MarshalJSON() ([]byte, error)

func (*NullableLocalityDescription) Set ¶

func (*NullableLocalityDescription) UnmarshalJSON ¶

func (v *NullableLocalityDescription) UnmarshalJSON(src []byte) error

func (*NullableLocalityDescription) Unset ¶

func (v *NullableLocalityDescription) Unset()

type NullableLocalityDescriptionItem ¶

type NullableLocalityDescriptionItem struct {
	// contains filtered or unexported fields
}

func (NullableLocalityDescriptionItem) Get ¶

func (NullableLocalityDescriptionItem) IsSet ¶

func (NullableLocalityDescriptionItem) MarshalJSON ¶

func (v NullableLocalityDescriptionItem) MarshalJSON() ([]byte, error)

func (*NullableLocalityDescriptionItem) Set ¶

func (*NullableLocalityDescriptionItem) UnmarshalJSON ¶

func (v *NullableLocalityDescriptionItem) UnmarshalJSON(src []byte) error

func (*NullableLocalityDescriptionItem) Unset ¶

type NullableLocalityType ¶

type NullableLocalityType struct {
	// contains filtered or unexported fields
}

func NewNullableLocalityType ¶

func NewNullableLocalityType(val *LocalityType) *NullableLocalityType

func (NullableLocalityType) Get ¶

func (NullableLocalityType) IsSet ¶

func (v NullableLocalityType) IsSet() bool

func (NullableLocalityType) MarshalJSON ¶

func (v NullableLocalityType) MarshalJSON() ([]byte, error)

func (*NullableLocalityType) Set ¶

func (v *NullableLocalityType) Set(val *LocalityType)

func (*NullableLocalityType) UnmarshalJSON ¶

func (v *NullableLocalityType) UnmarshalJSON(src []byte) error

func (*NullableLocalityType) Unset ¶

func (v *NullableLocalityType) Unset()

type NullableLocationAccuracy ¶

type NullableLocationAccuracy struct {
	// contains filtered or unexported fields
}

func NewNullableLocationAccuracy ¶

func NewNullableLocationAccuracy(val *LocationAccuracy) *NullableLocationAccuracy

func (NullableLocationAccuracy) Get ¶

func (NullableLocationAccuracy) IsSet ¶

func (v NullableLocationAccuracy) IsSet() bool

func (NullableLocationAccuracy) MarshalJSON ¶

func (v NullableLocationAccuracy) MarshalJSON() ([]byte, error)

func (*NullableLocationAccuracy) Set ¶

func (*NullableLocationAccuracy) UnmarshalJSON ¶

func (v *NullableLocationAccuracy) UnmarshalJSON(src []byte) error

func (*NullableLocationAccuracy) Unset ¶

func (v *NullableLocationAccuracy) Unset()

type NullableLocationArea ¶

type NullableLocationArea struct {
	// contains filtered or unexported fields
}

func NewNullableLocationArea ¶

func NewNullableLocationArea(val *LocationArea) *NullableLocationArea

func (NullableLocationArea) Get ¶

func (NullableLocationArea) IsSet ¶

func (v NullableLocationArea) IsSet() bool

func (NullableLocationArea) MarshalJSON ¶

func (v NullableLocationArea) MarshalJSON() ([]byte, error)

func (*NullableLocationArea) Set ¶

func (v *NullableLocationArea) Set(val *LocationArea)

func (*NullableLocationArea) UnmarshalJSON ¶

func (v *NullableLocationArea) UnmarshalJSON(src []byte) error

func (*NullableLocationArea) Unset ¶

func (v *NullableLocationArea) Unset()

type NullableLocationArea5G ¶

type NullableLocationArea5G struct {
	// contains filtered or unexported fields
}

func NewNullableLocationArea5G ¶

func NewNullableLocationArea5G(val *LocationArea5G) *NullableLocationArea5G

func (NullableLocationArea5G) Get ¶

func (NullableLocationArea5G) IsSet ¶

func (v NullableLocationArea5G) IsSet() bool

func (NullableLocationArea5G) MarshalJSON ¶

func (v NullableLocationArea5G) MarshalJSON() ([]byte, error)

func (*NullableLocationArea5G) Set ¶

func (*NullableLocationArea5G) UnmarshalJSON ¶

func (v *NullableLocationArea5G) UnmarshalJSON(src []byte) error

func (*NullableLocationArea5G) Unset ¶

func (v *NullableLocationArea5G) Unset()

type NullableLocationAreaId ¶

type NullableLocationAreaId struct {
	// contains filtered or unexported fields
}

func NewNullableLocationAreaId ¶

func NewNullableLocationAreaId(val *LocationAreaId) *NullableLocationAreaId

func (NullableLocationAreaId) Get ¶

func (NullableLocationAreaId) IsSet ¶

func (v NullableLocationAreaId) IsSet() bool

func (NullableLocationAreaId) MarshalJSON ¶

func (v NullableLocationAreaId) MarshalJSON() ([]byte, error)

func (*NullableLocationAreaId) Set ¶

func (*NullableLocationAreaId) UnmarshalJSON ¶

func (v *NullableLocationAreaId) UnmarshalJSON(src []byte) error

func (*NullableLocationAreaId) Unset ¶

func (v *NullableLocationAreaId) Unset()

type NullableLocationFilter ¶

type NullableLocationFilter struct {
	// contains filtered or unexported fields
}

func NewNullableLocationFilter ¶

func NewNullableLocationFilter(val *LocationFilter) *NullableLocationFilter

func (NullableLocationFilter) Get ¶

func (NullableLocationFilter) IsSet ¶

func (v NullableLocationFilter) IsSet() bool

func (NullableLocationFilter) MarshalJSON ¶

func (v NullableLocationFilter) MarshalJSON() ([]byte, error)

func (*NullableLocationFilter) Set ¶

func (*NullableLocationFilter) UnmarshalJSON ¶

func (v *NullableLocationFilter) UnmarshalJSON(src []byte) error

func (*NullableLocationFilter) Unset ¶

func (v *NullableLocationFilter) Unset()

type NullableLocationInfo ¶

type NullableLocationInfo struct {
	// contains filtered or unexported fields
}

func NewNullableLocationInfo ¶

func NewNullableLocationInfo(val *LocationInfo) *NullableLocationInfo

func (NullableLocationInfo) Get ¶

func (NullableLocationInfo) IsSet ¶

func (v NullableLocationInfo) IsSet() bool

func (NullableLocationInfo) MarshalJSON ¶

func (v NullableLocationInfo) MarshalJSON() ([]byte, error)

func (*NullableLocationInfo) Set ¶

func (v *NullableLocationInfo) Set(val *LocationInfo)

func (*NullableLocationInfo) UnmarshalJSON ¶

func (v *NullableLocationInfo) UnmarshalJSON(src []byte) error

func (*NullableLocationInfo) Unset ¶

func (v *NullableLocationInfo) Unset()

type NullableLocationReport ¶

type NullableLocationReport struct {
	// contains filtered or unexported fields
}

func NewNullableLocationReport ¶

func NewNullableLocationReport(val *LocationReport) *NullableLocationReport

func (NullableLocationReport) Get ¶

func (NullableLocationReport) IsSet ¶

func (v NullableLocationReport) IsSet() bool

func (NullableLocationReport) MarshalJSON ¶

func (v NullableLocationReport) MarshalJSON() ([]byte, error)

func (*NullableLocationReport) Set ¶

func (*NullableLocationReport) UnmarshalJSON ¶

func (v *NullableLocationReport) UnmarshalJSON(src []byte) error

func (*NullableLocationReport) Unset ¶

func (v *NullableLocationReport) Unset()

type NullableLocationReportingConfiguration ¶

type NullableLocationReportingConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableLocationReportingConfiguration) Get ¶

func (NullableLocationReportingConfiguration) IsSet ¶

func (NullableLocationReportingConfiguration) MarshalJSON ¶

func (v NullableLocationReportingConfiguration) MarshalJSON() ([]byte, error)

func (*NullableLocationReportingConfiguration) Set ¶

func (*NullableLocationReportingConfiguration) UnmarshalJSON ¶

func (v *NullableLocationReportingConfiguration) UnmarshalJSON(src []byte) error

func (*NullableLocationReportingConfiguration) Unset ¶

type NullableLossConnectivityCfg ¶

type NullableLossConnectivityCfg struct {
	// contains filtered or unexported fields
}

func (NullableLossConnectivityCfg) Get ¶

func (NullableLossConnectivityCfg) IsSet ¶

func (NullableLossConnectivityCfg) MarshalJSON ¶

func (v NullableLossConnectivityCfg) MarshalJSON() ([]byte, error)

func (*NullableLossConnectivityCfg) Set ¶

func (*NullableLossConnectivityCfg) UnmarshalJSON ¶

func (v *NullableLossConnectivityCfg) UnmarshalJSON(src []byte) error

func (*NullableLossConnectivityCfg) Unset ¶

func (v *NullableLossConnectivityCfg) Unset()

type NullableLossConnectivityReport ¶

type NullableLossConnectivityReport struct {
	// contains filtered or unexported fields
}

func (NullableLossConnectivityReport) Get ¶

func (NullableLossConnectivityReport) IsSet ¶

func (NullableLossConnectivityReport) MarshalJSON ¶

func (v NullableLossConnectivityReport) MarshalJSON() ([]byte, error)

func (*NullableLossConnectivityReport) Set ¶

func (*NullableLossConnectivityReport) UnmarshalJSON ¶

func (v *NullableLossConnectivityReport) UnmarshalJSON(src []byte) error

func (*NullableLossConnectivityReport) Unset ¶

func (v *NullableLossConnectivityReport) Unset()

type NullableLossOfConnectivityReason ¶

type NullableLossOfConnectivityReason struct {
	// contains filtered or unexported fields
}

func (NullableLossOfConnectivityReason) Get ¶

func (NullableLossOfConnectivityReason) IsSet ¶

func (NullableLossOfConnectivityReason) MarshalJSON ¶

func (v NullableLossOfConnectivityReason) MarshalJSON() ([]byte, error)

func (*NullableLossOfConnectivityReason) Set ¶

func (*NullableLossOfConnectivityReason) UnmarshalJSON ¶

func (v *NullableLossOfConnectivityReason) UnmarshalJSON(src []byte) error

func (*NullableLossOfConnectivityReason) Unset ¶

type NullableM5QoSSpecification ¶

type NullableM5QoSSpecification struct {
	// contains filtered or unexported fields
}

func NewNullableM5QoSSpecification ¶

func NewNullableM5QoSSpecification(val *M5QoSSpecification) *NullableM5QoSSpecification

func (NullableM5QoSSpecification) Get ¶

func (NullableM5QoSSpecification) IsSet ¶

func (v NullableM5QoSSpecification) IsSet() bool

func (NullableM5QoSSpecification) MarshalJSON ¶

func (v NullableM5QoSSpecification) MarshalJSON() ([]byte, error)

func (*NullableM5QoSSpecification) Set ¶

func (*NullableM5QoSSpecification) UnmarshalJSON ¶

func (v *NullableM5QoSSpecification) UnmarshalJSON(src []byte) error

func (*NullableM5QoSSpecification) Unset ¶

func (v *NullableM5QoSSpecification) Unset()

type NullableMSAccessActivityCollection ¶

type NullableMSAccessActivityCollection struct {
	// contains filtered or unexported fields
}

func (NullableMSAccessActivityCollection) Get ¶

func (NullableMSAccessActivityCollection) IsSet ¶

func (NullableMSAccessActivityCollection) MarshalJSON ¶

func (v NullableMSAccessActivityCollection) MarshalJSON() ([]byte, error)

func (*NullableMSAccessActivityCollection) Set ¶

func (*NullableMSAccessActivityCollection) UnmarshalJSON ¶

func (v *NullableMSAccessActivityCollection) UnmarshalJSON(src []byte) error

func (*NullableMSAccessActivityCollection) Unset ¶

type NullableMatchingDirection ¶

type NullableMatchingDirection struct {
	// contains filtered or unexported fields
}

func NewNullableMatchingDirection ¶

func NewNullableMatchingDirection(val *MatchingDirection) *NullableMatchingDirection

func (NullableMatchingDirection) Get ¶

func (NullableMatchingDirection) IsSet ¶

func (v NullableMatchingDirection) IsSet() bool

func (NullableMatchingDirection) MarshalJSON ¶

func (v NullableMatchingDirection) MarshalJSON() ([]byte, error)

func (*NullableMatchingDirection) Set ¶

func (*NullableMatchingDirection) UnmarshalJSON ¶

func (v *NullableMatchingDirection) UnmarshalJSON(src []byte) error

func (*NullableMatchingDirection) Unset ¶

func (v *NullableMatchingDirection) Unset()

type NullableMbSmfInfo ¶

type NullableMbSmfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableMbSmfInfo ¶

func NewNullableMbSmfInfo(val *MbSmfInfo) *NullableMbSmfInfo

func (NullableMbSmfInfo) Get ¶

func (v NullableMbSmfInfo) Get() *MbSmfInfo

func (NullableMbSmfInfo) IsSet ¶

func (v NullableMbSmfInfo) IsSet() bool

func (NullableMbSmfInfo) MarshalJSON ¶

func (v NullableMbSmfInfo) MarshalJSON() ([]byte, error)

func (*NullableMbSmfInfo) Set ¶

func (v *NullableMbSmfInfo) Set(val *MbSmfInfo)

func (*NullableMbSmfInfo) UnmarshalJSON ¶

func (v *NullableMbSmfInfo) UnmarshalJSON(src []byte) error

func (*NullableMbSmfInfo) Unset ¶

func (v *NullableMbSmfInfo) Unset()

type NullableMbUpfInfo ¶

type NullableMbUpfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableMbUpfInfo ¶

func NewNullableMbUpfInfo(val *MbUpfInfo) *NullableMbUpfInfo

func (NullableMbUpfInfo) Get ¶

func (v NullableMbUpfInfo) Get() *MbUpfInfo

func (NullableMbUpfInfo) IsSet ¶

func (v NullableMbUpfInfo) IsSet() bool

func (NullableMbUpfInfo) MarshalJSON ¶

func (v NullableMbUpfInfo) MarshalJSON() ([]byte, error)

func (*NullableMbUpfInfo) Set ¶

func (v *NullableMbUpfInfo) Set(val *MbUpfInfo)

func (*NullableMbUpfInfo) UnmarshalJSON ¶

func (v *NullableMbUpfInfo) UnmarshalJSON(src []byte) error

func (*NullableMbUpfInfo) Unset ¶

func (v *NullableMbUpfInfo) Unset()

type NullableMbsServiceArea ¶

type NullableMbsServiceArea struct {
	// contains filtered or unexported fields
}

func NewNullableMbsServiceArea ¶

func NewNullableMbsServiceArea(val *MbsServiceArea) *NullableMbsServiceArea

func (NullableMbsServiceArea) Get ¶

func (NullableMbsServiceArea) IsSet ¶

func (v NullableMbsServiceArea) IsSet() bool

func (NullableMbsServiceArea) MarshalJSON ¶

func (v NullableMbsServiceArea) MarshalJSON() ([]byte, error)

func (*NullableMbsServiceArea) Set ¶

func (*NullableMbsServiceArea) UnmarshalJSON ¶

func (v *NullableMbsServiceArea) UnmarshalJSON(src []byte) error

func (*NullableMbsServiceArea) Unset ¶

func (v *NullableMbsServiceArea) Unset()

type NullableMbsServiceAreaInfo ¶

type NullableMbsServiceAreaInfo struct {
	// contains filtered or unexported fields
}

func NewNullableMbsServiceAreaInfo ¶

func NewNullableMbsServiceAreaInfo(val *MbsServiceAreaInfo) *NullableMbsServiceAreaInfo

func (NullableMbsServiceAreaInfo) Get ¶

func (NullableMbsServiceAreaInfo) IsSet ¶

func (v NullableMbsServiceAreaInfo) IsSet() bool

func (NullableMbsServiceAreaInfo) MarshalJSON ¶

func (v NullableMbsServiceAreaInfo) MarshalJSON() ([]byte, error)

func (*NullableMbsServiceAreaInfo) Set ¶

func (*NullableMbsServiceAreaInfo) UnmarshalJSON ¶

func (v *NullableMbsServiceAreaInfo) UnmarshalJSON(src []byte) error

func (*NullableMbsServiceAreaInfo) Unset ¶

func (v *NullableMbsServiceAreaInfo) Unset()

type NullableMbsSession ¶

type NullableMbsSession struct {
	// contains filtered or unexported fields
}

func NewNullableMbsSession ¶

func NewNullableMbsSession(val *MbsSession) *NullableMbsSession

func (NullableMbsSession) Get ¶

func (v NullableMbsSession) Get() *MbsSession

func (NullableMbsSession) IsSet ¶

func (v NullableMbsSession) IsSet() bool

func (NullableMbsSession) MarshalJSON ¶

func (v NullableMbsSession) MarshalJSON() ([]byte, error)

func (*NullableMbsSession) Set ¶

func (v *NullableMbsSession) Set(val *MbsSession)

func (*NullableMbsSession) UnmarshalJSON ¶

func (v *NullableMbsSession) UnmarshalJSON(src []byte) error

func (*NullableMbsSession) Unset ¶

func (v *NullableMbsSession) Unset()

type NullableMbsSessionId ¶

type NullableMbsSessionId struct {
	// contains filtered or unexported fields
}

func NewNullableMbsSessionId ¶

func NewNullableMbsSessionId(val *MbsSessionId) *NullableMbsSessionId

func (NullableMbsSessionId) Get ¶

func (NullableMbsSessionId) IsSet ¶

func (v NullableMbsSessionId) IsSet() bool

func (NullableMbsSessionId) MarshalJSON ¶

func (v NullableMbsSessionId) MarshalJSON() ([]byte, error)

func (*NullableMbsSessionId) Set ¶

func (v *NullableMbsSessionId) Set(val *MbsSessionId)

func (*NullableMbsSessionId) UnmarshalJSON ¶

func (v *NullableMbsSessionId) UnmarshalJSON(src []byte) error

func (*NullableMbsSessionId) Unset ¶

func (v *NullableMbsSessionId) Unset()

type NullableMediaStreamingAccessRecord ¶

type NullableMediaStreamingAccessRecord struct {
	// contains filtered or unexported fields
}

func (NullableMediaStreamingAccessRecord) Get ¶

func (NullableMediaStreamingAccessRecord) IsSet ¶

func (NullableMediaStreamingAccessRecord) MarshalJSON ¶

func (v NullableMediaStreamingAccessRecord) MarshalJSON() ([]byte, error)

func (*NullableMediaStreamingAccessRecord) Set ¶

func (*NullableMediaStreamingAccessRecord) UnmarshalJSON ¶

func (v *NullableMediaStreamingAccessRecord) UnmarshalJSON(src []byte) error

func (*NullableMediaStreamingAccessRecord) Unset ¶

type NullableMediaStreamingAccessRecordAllOf ¶

type NullableMediaStreamingAccessRecordAllOf struct {
	// contains filtered or unexported fields
}

func (NullableMediaStreamingAccessRecordAllOf) Get ¶

func (NullableMediaStreamingAccessRecordAllOf) IsSet ¶

func (NullableMediaStreamingAccessRecordAllOf) MarshalJSON ¶

func (v NullableMediaStreamingAccessRecordAllOf) MarshalJSON() ([]byte, error)

func (*NullableMediaStreamingAccessRecordAllOf) Set ¶

func (*NullableMediaStreamingAccessRecordAllOf) UnmarshalJSON ¶

func (v *NullableMediaStreamingAccessRecordAllOf) UnmarshalJSON(src []byte) error

func (*NullableMediaStreamingAccessRecordAllOf) Unset ¶

type NullableMediaStreamingAccessRecordAllOfConnectionMetrics ¶

type NullableMediaStreamingAccessRecordAllOfConnectionMetrics struct {
	// contains filtered or unexported fields
}

func (NullableMediaStreamingAccessRecordAllOfConnectionMetrics) Get ¶

func (NullableMediaStreamingAccessRecordAllOfConnectionMetrics) IsSet ¶

func (NullableMediaStreamingAccessRecordAllOfConnectionMetrics) MarshalJSON ¶

func (*NullableMediaStreamingAccessRecordAllOfConnectionMetrics) Set ¶

func (*NullableMediaStreamingAccessRecordAllOfConnectionMetrics) UnmarshalJSON ¶

func (*NullableMediaStreamingAccessRecordAllOfConnectionMetrics) Unset ¶

type NullableMediaStreamingAccessRecordAllOfRequestMessage ¶

type NullableMediaStreamingAccessRecordAllOfRequestMessage struct {
	// contains filtered or unexported fields
}

func (NullableMediaStreamingAccessRecordAllOfRequestMessage) Get ¶

func (NullableMediaStreamingAccessRecordAllOfRequestMessage) IsSet ¶

func (NullableMediaStreamingAccessRecordAllOfRequestMessage) MarshalJSON ¶

func (*NullableMediaStreamingAccessRecordAllOfRequestMessage) Set ¶

func (*NullableMediaStreamingAccessRecordAllOfRequestMessage) UnmarshalJSON ¶

func (*NullableMediaStreamingAccessRecordAllOfRequestMessage) Unset ¶

type NullableMediaStreamingAccessRecordAllOfResponseMessage ¶

type NullableMediaStreamingAccessRecordAllOfResponseMessage struct {
	// contains filtered or unexported fields
}

func (NullableMediaStreamingAccessRecordAllOfResponseMessage) Get ¶

func (NullableMediaStreamingAccessRecordAllOfResponseMessage) IsSet ¶

func (NullableMediaStreamingAccessRecordAllOfResponseMessage) MarshalJSON ¶

func (*NullableMediaStreamingAccessRecordAllOfResponseMessage) Set ¶

func (*NullableMediaStreamingAccessRecordAllOfResponseMessage) UnmarshalJSON ¶

func (*NullableMediaStreamingAccessRecordAllOfResponseMessage) Unset ¶

type NullableMfafInfo ¶

type NullableMfafInfo struct {
	// contains filtered or unexported fields
}

func NewNullableMfafInfo ¶

func NewNullableMfafInfo(val *MfafInfo) *NullableMfafInfo

func (NullableMfafInfo) Get ¶

func (v NullableMfafInfo) Get() *MfafInfo

func (NullableMfafInfo) IsSet ¶

func (v NullableMfafInfo) IsSet() bool

func (NullableMfafInfo) MarshalJSON ¶

func (v NullableMfafInfo) MarshalJSON() ([]byte, error)

func (*NullableMfafInfo) Set ¶

func (v *NullableMfafInfo) Set(val *MfafInfo)

func (*NullableMfafInfo) UnmarshalJSON ¶

func (v *NullableMfafInfo) UnmarshalJSON(src []byte) error

func (*NullableMfafInfo) Unset ¶

func (v *NullableMfafInfo) Unset()

type NullableMlAnalyticsInfo ¶

type NullableMlAnalyticsInfo struct {
	// contains filtered or unexported fields
}

func NewNullableMlAnalyticsInfo ¶

func NewNullableMlAnalyticsInfo(val *MlAnalyticsInfo) *NullableMlAnalyticsInfo

func (NullableMlAnalyticsInfo) Get ¶

func (NullableMlAnalyticsInfo) IsSet ¶

func (v NullableMlAnalyticsInfo) IsSet() bool

func (NullableMlAnalyticsInfo) MarshalJSON ¶

func (v NullableMlAnalyticsInfo) MarshalJSON() ([]byte, error)

func (*NullableMlAnalyticsInfo) Set ¶

func (*NullableMlAnalyticsInfo) UnmarshalJSON ¶

func (v *NullableMlAnalyticsInfo) UnmarshalJSON(src []byte) error

func (*NullableMlAnalyticsInfo) Unset ¶

func (v *NullableMlAnalyticsInfo) Unset()

type NullableMmTransactionLocationReportItem ¶

type NullableMmTransactionLocationReportItem struct {
	// contains filtered or unexported fields
}

func (NullableMmTransactionLocationReportItem) Get ¶

func (NullableMmTransactionLocationReportItem) IsSet ¶

func (NullableMmTransactionLocationReportItem) MarshalJSON ¶

func (v NullableMmTransactionLocationReportItem) MarshalJSON() ([]byte, error)

func (*NullableMmTransactionLocationReportItem) Set ¶

func (*NullableMmTransactionLocationReportItem) UnmarshalJSON ¶

func (v *NullableMmTransactionLocationReportItem) UnmarshalJSON(src []byte) error

func (*NullableMmTransactionLocationReportItem) Unset ¶

type NullableMmTransactionSliceReportItem ¶

type NullableMmTransactionSliceReportItem struct {
	// contains filtered or unexported fields
}

func (NullableMmTransactionSliceReportItem) Get ¶

func (NullableMmTransactionSliceReportItem) IsSet ¶

func (NullableMmTransactionSliceReportItem) MarshalJSON ¶

func (v NullableMmTransactionSliceReportItem) MarshalJSON() ([]byte, error)

func (*NullableMmTransactionSliceReportItem) Set ¶

func (*NullableMmTransactionSliceReportItem) UnmarshalJSON ¶

func (v *NullableMmTransactionSliceReportItem) UnmarshalJSON(src []byte) error

func (*NullableMmTransactionSliceReportItem) Unset ¶

type NullableMnpfInfo ¶

type NullableMnpfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableMnpfInfo ¶

func NewNullableMnpfInfo(val *MnpfInfo) *NullableMnpfInfo

func (NullableMnpfInfo) Get ¶

func (v NullableMnpfInfo) Get() *MnpfInfo

func (NullableMnpfInfo) IsSet ¶

func (v NullableMnpfInfo) IsSet() bool

func (NullableMnpfInfo) MarshalJSON ¶

func (v NullableMnpfInfo) MarshalJSON() ([]byte, error)

func (*NullableMnpfInfo) Set ¶

func (v *NullableMnpfInfo) Set(val *MnpfInfo)

func (*NullableMnpfInfo) UnmarshalJSON ¶

func (v *NullableMnpfInfo) UnmarshalJSON(src []byte) error

func (*NullableMnpfInfo) Unset ¶

func (v *NullableMnpfInfo) Unset()

type NullableModel5GDdnmfInfo ¶

type NullableModel5GDdnmfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableModel5GDdnmfInfo ¶

func NewNullableModel5GDdnmfInfo(val *Model5GDdnmfInfo) *NullableModel5GDdnmfInfo

func (NullableModel5GDdnmfInfo) Get ¶

func (NullableModel5GDdnmfInfo) IsSet ¶

func (v NullableModel5GDdnmfInfo) IsSet() bool

func (NullableModel5GDdnmfInfo) MarshalJSON ¶

func (v NullableModel5GDdnmfInfo) MarshalJSON() ([]byte, error)

func (*NullableModel5GDdnmfInfo) Set ¶

func (*NullableModel5GDdnmfInfo) UnmarshalJSON ¶

func (v *NullableModel5GDdnmfInfo) UnmarshalJSON(src []byte) error

func (*NullableModel5GDdnmfInfo) Unset ¶

func (v *NullableModel5GDdnmfInfo) Unset()

type NullableModel5GsUserState ¶

type NullableModel5GsUserState struct {
	// contains filtered or unexported fields
}

func NewNullableModel5GsUserState ¶

func NewNullableModel5GsUserState(val *Model5GsUserState) *NullableModel5GsUserState

func (NullableModel5GsUserState) Get ¶

func (NullableModel5GsUserState) IsSet ¶

func (v NullableModel5GsUserState) IsSet() bool

func (NullableModel5GsUserState) MarshalJSON ¶

func (v NullableModel5GsUserState) MarshalJSON() ([]byte, error)

func (*NullableModel5GsUserState) Set ¶

func (*NullableModel5GsUserState) UnmarshalJSON ¶

func (v *NullableModel5GsUserState) UnmarshalJSON(src []byte) error

func (*NullableModel5GsUserState) Unset ¶

func (v *NullableModel5GsUserState) Unset()

type NullableModel5GsUserStateInfo ¶

type NullableModel5GsUserStateInfo struct {
	// contains filtered or unexported fields
}

func (NullableModel5GsUserStateInfo) Get ¶

func (NullableModel5GsUserStateInfo) IsSet ¶

func (NullableModel5GsUserStateInfo) MarshalJSON ¶

func (v NullableModel5GsUserStateInfo) MarshalJSON() ([]byte, error)

func (*NullableModel5GsUserStateInfo) Set ¶

func (*NullableModel5GsUserStateInfo) UnmarshalJSON ¶

func (v *NullableModel5GsUserStateInfo) UnmarshalJSON(src []byte) error

func (*NullableModel5GsUserStateInfo) Unset ¶

func (v *NullableModel5GsUserStateInfo) Unset()

type NullableMonitoringConfiguration ¶

type NullableMonitoringConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableMonitoringConfiguration) Get ¶

func (NullableMonitoringConfiguration) IsSet ¶

func (NullableMonitoringConfiguration) MarshalJSON ¶

func (v NullableMonitoringConfiguration) MarshalJSON() ([]byte, error)

func (*NullableMonitoringConfiguration) Set ¶

func (*NullableMonitoringConfiguration) UnmarshalJSON ¶

func (v *NullableMonitoringConfiguration) UnmarshalJSON(src []byte) error

func (*NullableMonitoringConfiguration) Unset ¶

type NullableMonitoringReport ¶

type NullableMonitoringReport struct {
	// contains filtered or unexported fields
}

func NewNullableMonitoringReport ¶

func NewNullableMonitoringReport(val *MonitoringReport) *NullableMonitoringReport

func (NullableMonitoringReport) Get ¶

func (NullableMonitoringReport) IsSet ¶

func (v NullableMonitoringReport) IsSet() bool

func (NullableMonitoringReport) MarshalJSON ¶

func (v NullableMonitoringReport) MarshalJSON() ([]byte, error)

func (*NullableMonitoringReport) Set ¶

func (*NullableMonitoringReport) UnmarshalJSON ¶

func (v *NullableMonitoringReport) UnmarshalJSON(src []byte) error

func (*NullableMonitoringReport) Unset ¶

func (v *NullableMonitoringReport) Unset()

type NullableMsConsumptionCollection ¶

type NullableMsConsumptionCollection struct {
	// contains filtered or unexported fields
}

func (NullableMsConsumptionCollection) Get ¶

func (NullableMsConsumptionCollection) IsSet ¶

func (NullableMsConsumptionCollection) MarshalJSON ¶

func (v NullableMsConsumptionCollection) MarshalJSON() ([]byte, error)

func (*NullableMsConsumptionCollection) Set ¶

func (*NullableMsConsumptionCollection) UnmarshalJSON ¶

func (v *NullableMsConsumptionCollection) UnmarshalJSON(src []byte) error

func (*NullableMsConsumptionCollection) Unset ¶

type NullableMsDynPolicyInvocationCollection ¶

type NullableMsDynPolicyInvocationCollection struct {
	// contains filtered or unexported fields
}

func (NullableMsDynPolicyInvocationCollection) Get ¶

func (NullableMsDynPolicyInvocationCollection) IsSet ¶

func (NullableMsDynPolicyInvocationCollection) MarshalJSON ¶

func (v NullableMsDynPolicyInvocationCollection) MarshalJSON() ([]byte, error)

func (*NullableMsDynPolicyInvocationCollection) Set ¶

func (*NullableMsDynPolicyInvocationCollection) UnmarshalJSON ¶

func (v *NullableMsDynPolicyInvocationCollection) UnmarshalJSON(src []byte) error

func (*NullableMsDynPolicyInvocationCollection) Unset ¶

type NullableMsNetAssInvocationCollection ¶

type NullableMsNetAssInvocationCollection struct {
	// contains filtered or unexported fields
}

func (NullableMsNetAssInvocationCollection) Get ¶

func (NullableMsNetAssInvocationCollection) IsSet ¶

func (NullableMsNetAssInvocationCollection) MarshalJSON ¶

func (v NullableMsNetAssInvocationCollection) MarshalJSON() ([]byte, error)

func (*NullableMsNetAssInvocationCollection) Set ¶

func (*NullableMsNetAssInvocationCollection) UnmarshalJSON ¶

func (v *NullableMsNetAssInvocationCollection) UnmarshalJSON(src []byte) error

func (*NullableMsNetAssInvocationCollection) Unset ¶

type NullableMsQoeMetricsCollection ¶

type NullableMsQoeMetricsCollection struct {
	// contains filtered or unexported fields
}

func (NullableMsQoeMetricsCollection) Get ¶

func (NullableMsQoeMetricsCollection) IsSet ¶

func (NullableMsQoeMetricsCollection) MarshalJSON ¶

func (v NullableMsQoeMetricsCollection) MarshalJSON() ([]byte, error)

func (*NullableMsQoeMetricsCollection) Set ¶

func (*NullableMsQoeMetricsCollection) UnmarshalJSON ¶

func (v *NullableMsQoeMetricsCollection) UnmarshalJSON(src []byte) error

func (*NullableMsQoeMetricsCollection) Unset ¶

func (v *NullableMsQoeMetricsCollection) Unset()

type NullableN1MessageClass ¶

type NullableN1MessageClass struct {
	// contains filtered or unexported fields
}

func NewNullableN1MessageClass ¶

func NewNullableN1MessageClass(val *N1MessageClass) *NullableN1MessageClass

func (NullableN1MessageClass) Get ¶

func (NullableN1MessageClass) IsSet ¶

func (v NullableN1MessageClass) IsSet() bool

func (NullableN1MessageClass) MarshalJSON ¶

func (v NullableN1MessageClass) MarshalJSON() ([]byte, error)

func (*NullableN1MessageClass) Set ¶

func (*NullableN1MessageClass) UnmarshalJSON ¶

func (v *NullableN1MessageClass) UnmarshalJSON(src []byte) error

func (*NullableN1MessageClass) Unset ¶

func (v *NullableN1MessageClass) Unset()

type NullableN2InformationClass ¶

type NullableN2InformationClass struct {
	// contains filtered or unexported fields
}

func NewNullableN2InformationClass ¶

func NewNullableN2InformationClass(val *N2InformationClass) *NullableN2InformationClass

func (NullableN2InformationClass) Get ¶

func (NullableN2InformationClass) IsSet ¶

func (v NullableN2InformationClass) IsSet() bool

func (NullableN2InformationClass) MarshalJSON ¶

func (v NullableN2InformationClass) MarshalJSON() ([]byte, error)

func (*NullableN2InformationClass) Set ¶

func (*NullableN2InformationClass) UnmarshalJSON ¶

func (v *NullableN2InformationClass) UnmarshalJSON(src []byte) error

func (*NullableN2InformationClass) Unset ¶

func (v *NullableN2InformationClass) Unset()

type NullableN2InterfaceAmfInfo ¶

type NullableN2InterfaceAmfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableN2InterfaceAmfInfo ¶

func NewNullableN2InterfaceAmfInfo(val *N2InterfaceAmfInfo) *NullableN2InterfaceAmfInfo

func (NullableN2InterfaceAmfInfo) Get ¶

func (NullableN2InterfaceAmfInfo) IsSet ¶

func (v NullableN2InterfaceAmfInfo) IsSet() bool

func (NullableN2InterfaceAmfInfo) MarshalJSON ¶

func (v NullableN2InterfaceAmfInfo) MarshalJSON() ([]byte, error)

func (*NullableN2InterfaceAmfInfo) Set ¶

func (*NullableN2InterfaceAmfInfo) UnmarshalJSON ¶

func (v *NullableN2InterfaceAmfInfo) UnmarshalJSON(src []byte) error

func (*NullableN2InterfaceAmfInfo) Unset ¶

func (v *NullableN2InterfaceAmfInfo) Unset()

type NullableN32Purpose ¶

type NullableN32Purpose struct {
	// contains filtered or unexported fields
}

func NewNullableN32Purpose ¶

func NewNullableN32Purpose(val *N32Purpose) *NullableN32Purpose

func (NullableN32Purpose) Get ¶

func (v NullableN32Purpose) Get() *N32Purpose

func (NullableN32Purpose) IsSet ¶

func (v NullableN32Purpose) IsSet() bool

func (NullableN32Purpose) MarshalJSON ¶

func (v NullableN32Purpose) MarshalJSON() ([]byte, error)

func (*NullableN32Purpose) Set ¶

func (v *NullableN32Purpose) Set(val *N32Purpose)

func (*NullableN32Purpose) UnmarshalJSON ¶

func (v *NullableN32Purpose) UnmarshalJSON(src []byte) error

func (*NullableN32Purpose) Unset ¶

func (v *NullableN32Purpose) Unset()

type NullableN3gaLocation ¶

type NullableN3gaLocation struct {
	// contains filtered or unexported fields
}

func NewNullableN3gaLocation ¶

func NewNullableN3gaLocation(val *N3gaLocation) *NullableN3gaLocation

func (NullableN3gaLocation) Get ¶

func (NullableN3gaLocation) IsSet ¶

func (v NullableN3gaLocation) IsSet() bool

func (NullableN3gaLocation) MarshalJSON ¶

func (v NullableN3gaLocation) MarshalJSON() ([]byte, error)

func (*NullableN3gaLocation) Set ¶

func (v *NullableN3gaLocation) Set(val *N3gaLocation)

func (*NullableN3gaLocation) UnmarshalJSON ¶

func (v *NullableN3gaLocation) UnmarshalJSON(src []byte) error

func (*NullableN3gaLocation) Unset ¶

func (v *NullableN3gaLocation) Unset()

type NullableNFProfile ¶

type NullableNFProfile struct {
	// contains filtered or unexported fields
}

func NewNullableNFProfile ¶

func NewNullableNFProfile(val *NFProfile) *NullableNFProfile

func (NullableNFProfile) Get ¶

func (v NullableNFProfile) Get() *NFProfile

func (NullableNFProfile) IsSet ¶

func (v NullableNFProfile) IsSet() bool

func (NullableNFProfile) MarshalJSON ¶

func (v NullableNFProfile) MarshalJSON() ([]byte, error)

func (*NullableNFProfile) Set ¶

func (v *NullableNFProfile) Set(val *NFProfile)

func (*NullableNFProfile) UnmarshalJSON ¶

func (v *NullableNFProfile) UnmarshalJSON(src []byte) error

func (*NullableNFProfile) Unset ¶

func (v *NullableNFProfile) Unset()

type NullableNFService ¶

type NullableNFService struct {
	// contains filtered or unexported fields
}

func NewNullableNFService ¶

func NewNullableNFService(val *NFService) *NullableNFService

func (NullableNFService) Get ¶

func (v NullableNFService) Get() *NFService

func (NullableNFService) IsSet ¶

func (v NullableNFService) IsSet() bool

func (NullableNFService) MarshalJSON ¶

func (v NullableNFService) MarshalJSON() ([]byte, error)

func (*NullableNFService) Set ¶

func (v *NullableNFService) Set(val *NFService)

func (*NullableNFService) UnmarshalJSON ¶

func (v *NullableNFService) UnmarshalJSON(src []byte) error

func (*NullableNFService) Unset ¶

func (v *NullableNFService) Unset()

type NullableNFServiceStatus ¶

type NullableNFServiceStatus struct {
	// contains filtered or unexported fields
}

func NewNullableNFServiceStatus ¶

func NewNullableNFServiceStatus(val *NFServiceStatus) *NullableNFServiceStatus

func (NullableNFServiceStatus) Get ¶

func (NullableNFServiceStatus) IsSet ¶

func (v NullableNFServiceStatus) IsSet() bool

func (NullableNFServiceStatus) MarshalJSON ¶

func (v NullableNFServiceStatus) MarshalJSON() ([]byte, error)

func (*NullableNFServiceStatus) Set ¶

func (*NullableNFServiceStatus) UnmarshalJSON ¶

func (v *NullableNFServiceStatus) UnmarshalJSON(src []byte) error

func (*NullableNFServiceStatus) Unset ¶

func (v *NullableNFServiceStatus) Unset()

type NullableNFServiceVersion ¶

type NullableNFServiceVersion struct {
	// contains filtered or unexported fields
}

func NewNullableNFServiceVersion ¶

func NewNullableNFServiceVersion(val *NFServiceVersion) *NullableNFServiceVersion

func (NullableNFServiceVersion) Get ¶

func (NullableNFServiceVersion) IsSet ¶

func (v NullableNFServiceVersion) IsSet() bool

func (NullableNFServiceVersion) MarshalJSON ¶

func (v NullableNFServiceVersion) MarshalJSON() ([]byte, error)

func (*NullableNFServiceVersion) Set ¶

func (*NullableNFServiceVersion) UnmarshalJSON ¶

func (v *NullableNFServiceVersion) UnmarshalJSON(src []byte) error

func (*NullableNFServiceVersion) Unset ¶

func (v *NullableNFServiceVersion) Unset()

type NullableNFType ¶

type NullableNFType struct {
	// contains filtered or unexported fields
}

func NewNullableNFType ¶

func NewNullableNFType(val *NFType) *NullableNFType

func (NullableNFType) Get ¶

func (v NullableNFType) Get() *NFType

func (NullableNFType) IsSet ¶

func (v NullableNFType) IsSet() bool

func (NullableNFType) MarshalJSON ¶

func (v NullableNFType) MarshalJSON() ([]byte, error)

func (*NullableNFType) Set ¶

func (v *NullableNFType) Set(val *NFType)

func (*NullableNFType) UnmarshalJSON ¶

func (v *NullableNFType) UnmarshalJSON(src []byte) error

func (*NullableNFType) Unset ¶

func (v *NullableNFType) Unset()

type NullableNadrfDataRetrievalNotification ¶

type NullableNadrfDataRetrievalNotification struct {
	// contains filtered or unexported fields
}

func (NullableNadrfDataRetrievalNotification) Get ¶

func (NullableNadrfDataRetrievalNotification) IsSet ¶

func (NullableNadrfDataRetrievalNotification) MarshalJSON ¶

func (v NullableNadrfDataRetrievalNotification) MarshalJSON() ([]byte, error)

func (*NullableNadrfDataRetrievalNotification) Set ¶

func (*NullableNadrfDataRetrievalNotification) UnmarshalJSON ¶

func (v *NullableNadrfDataRetrievalNotification) UnmarshalJSON(src []byte) error

func (*NullableNadrfDataRetrievalNotification) Unset ¶

type NullableNadrfDataRetrievalSubscription ¶

type NullableNadrfDataRetrievalSubscription struct {
	// contains filtered or unexported fields
}

func (NullableNadrfDataRetrievalSubscription) Get ¶

func (NullableNadrfDataRetrievalSubscription) IsSet ¶

func (NullableNadrfDataRetrievalSubscription) MarshalJSON ¶

func (v NullableNadrfDataRetrievalSubscription) MarshalJSON() ([]byte, error)

func (*NullableNadrfDataRetrievalSubscription) Set ¶

func (*NullableNadrfDataRetrievalSubscription) UnmarshalJSON ¶

func (v *NullableNadrfDataRetrievalSubscription) UnmarshalJSON(src []byte) error

func (*NullableNadrfDataRetrievalSubscription) Unset ¶

type NullableNadrfDataStoreRecord ¶

type NullableNadrfDataStoreRecord struct {
	// contains filtered or unexported fields
}

func (NullableNadrfDataStoreRecord) Get ¶

func (NullableNadrfDataStoreRecord) IsSet ¶

func (NullableNadrfDataStoreRecord) MarshalJSON ¶

func (v NullableNadrfDataStoreRecord) MarshalJSON() ([]byte, error)

func (*NullableNadrfDataStoreRecord) Set ¶

func (*NullableNadrfDataStoreRecord) UnmarshalJSON ¶

func (v *NullableNadrfDataStoreRecord) UnmarshalJSON(src []byte) error

func (*NullableNadrfDataStoreRecord) Unset ¶

func (v *NullableNadrfDataStoreRecord) Unset()

type NullableNadrfDataStoreSubscription ¶

type NullableNadrfDataStoreSubscription struct {
	// contains filtered or unexported fields
}

func (NullableNadrfDataStoreSubscription) Get ¶

func (NullableNadrfDataStoreSubscription) IsSet ¶

func (NullableNadrfDataStoreSubscription) MarshalJSON ¶

func (v NullableNadrfDataStoreSubscription) MarshalJSON() ([]byte, error)

func (*NullableNadrfDataStoreSubscription) Set ¶

func (*NullableNadrfDataStoreSubscription) UnmarshalJSON ¶

func (v *NullableNadrfDataStoreSubscription) UnmarshalJSON(src []byte) error

func (*NullableNadrfDataStoreSubscription) Unset ¶

type NullableNadrfDataStoreSubscriptionRef ¶

type NullableNadrfDataStoreSubscriptionRef struct {
	// contains filtered or unexported fields
}

func (NullableNadrfDataStoreSubscriptionRef) Get ¶

func (NullableNadrfDataStoreSubscriptionRef) IsSet ¶

func (NullableNadrfDataStoreSubscriptionRef) MarshalJSON ¶

func (v NullableNadrfDataStoreSubscriptionRef) MarshalJSON() ([]byte, error)

func (*NullableNadrfDataStoreSubscriptionRef) Set ¶

func (*NullableNadrfDataStoreSubscriptionRef) UnmarshalJSON ¶

func (v *NullableNadrfDataStoreSubscriptionRef) UnmarshalJSON(src []byte) error

func (*NullableNadrfDataStoreSubscriptionRef) Unset ¶

type NullableNadrfStoredDataSpec ¶

type NullableNadrfStoredDataSpec struct {
	// contains filtered or unexported fields
}

func (NullableNadrfStoredDataSpec) Get ¶

func (NullableNadrfStoredDataSpec) IsSet ¶

func (NullableNadrfStoredDataSpec) MarshalJSON ¶

func (v NullableNadrfStoredDataSpec) MarshalJSON() ([]byte, error)

func (*NullableNadrfStoredDataSpec) Set ¶

func (*NullableNadrfStoredDataSpec) UnmarshalJSON ¶

func (v *NullableNadrfStoredDataSpec) UnmarshalJSON(src []byte) error

func (*NullableNadrfStoredDataSpec) Unset ¶

func (v *NullableNadrfStoredDataSpec) Unset()

type NullableNcgi ¶

type NullableNcgi struct {
	// contains filtered or unexported fields
}

func NewNullableNcgi ¶

func NewNullableNcgi(val *Ncgi) *NullableNcgi

func (NullableNcgi) Get ¶

func (v NullableNcgi) Get() *Ncgi

func (NullableNcgi) IsSet ¶

func (v NullableNcgi) IsSet() bool

func (NullableNcgi) MarshalJSON ¶

func (v NullableNcgi) MarshalJSON() ([]byte, error)

func (*NullableNcgi) Set ¶

func (v *NullableNcgi) Set(val *Ncgi)

func (*NullableNcgi) UnmarshalJSON ¶

func (v *NullableNcgi) UnmarshalJSON(src []byte) error

func (*NullableNcgi) Unset ¶

func (v *NullableNcgi) Unset()

type NullableNcgiTai ¶

type NullableNcgiTai struct {
	// contains filtered or unexported fields
}

func NewNullableNcgiTai ¶

func NewNullableNcgiTai(val *NcgiTai) *NullableNcgiTai

func (NullableNcgiTai) Get ¶

func (v NullableNcgiTai) Get() *NcgiTai

func (NullableNcgiTai) IsSet ¶

func (v NullableNcgiTai) IsSet() bool

func (NullableNcgiTai) MarshalJSON ¶

func (v NullableNcgiTai) MarshalJSON() ([]byte, error)

func (*NullableNcgiTai) Set ¶

func (v *NullableNcgiTai) Set(val *NcgiTai)

func (*NullableNcgiTai) UnmarshalJSON ¶

func (v *NullableNcgiTai) UnmarshalJSON(src []byte) error

func (*NullableNcgiTai) Unset ¶

func (v *NullableNcgiTai) Unset()

type NullableNefCond ¶

type NullableNefCond struct {
	// contains filtered or unexported fields
}

func NewNullableNefCond ¶

func NewNullableNefCond(val *NefCond) *NullableNefCond

func (NullableNefCond) Get ¶

func (v NullableNefCond) Get() *NefCond

func (NullableNefCond) IsSet ¶

func (v NullableNefCond) IsSet() bool

func (NullableNefCond) MarshalJSON ¶

func (v NullableNefCond) MarshalJSON() ([]byte, error)

func (*NullableNefCond) Set ¶

func (v *NullableNefCond) Set(val *NefCond)

func (*NullableNefCond) UnmarshalJSON ¶

func (v *NullableNefCond) UnmarshalJSON(src []byte) error

func (*NullableNefCond) Unset ¶

func (v *NullableNefCond) Unset()

type NullableNefEvent ¶

type NullableNefEvent struct {
	// contains filtered or unexported fields
}

func NewNullableNefEvent ¶

func NewNullableNefEvent(val *NefEvent) *NullableNefEvent

func (NullableNefEvent) Get ¶

func (v NullableNefEvent) Get() *NefEvent

func (NullableNefEvent) IsSet ¶

func (v NullableNefEvent) IsSet() bool

func (NullableNefEvent) MarshalJSON ¶

func (v NullableNefEvent) MarshalJSON() ([]byte, error)

func (*NullableNefEvent) Set ¶

func (v *NullableNefEvent) Set(val *NefEvent)

func (*NullableNefEvent) UnmarshalJSON ¶

func (v *NullableNefEvent) UnmarshalJSON(src []byte) error

func (*NullableNefEvent) Unset ¶

func (v *NullableNefEvent) Unset()

type NullableNefEventExposureNotif ¶

type NullableNefEventExposureNotif struct {
	// contains filtered or unexported fields
}

func (NullableNefEventExposureNotif) Get ¶

func (NullableNefEventExposureNotif) IsSet ¶

func (NullableNefEventExposureNotif) MarshalJSON ¶

func (v NullableNefEventExposureNotif) MarshalJSON() ([]byte, error)

func (*NullableNefEventExposureNotif) Set ¶

func (*NullableNefEventExposureNotif) UnmarshalJSON ¶

func (v *NullableNefEventExposureNotif) UnmarshalJSON(src []byte) error

func (*NullableNefEventExposureNotif) Unset ¶

func (v *NullableNefEventExposureNotif) Unset()

type NullableNefEventExposureSubsc ¶

type NullableNefEventExposureSubsc struct {
	// contains filtered or unexported fields
}

func (NullableNefEventExposureSubsc) Get ¶

func (NullableNefEventExposureSubsc) IsSet ¶

func (NullableNefEventExposureSubsc) MarshalJSON ¶

func (v NullableNefEventExposureSubsc) MarshalJSON() ([]byte, error)

func (*NullableNefEventExposureSubsc) Set ¶

func (*NullableNefEventExposureSubsc) UnmarshalJSON ¶

func (v *NullableNefEventExposureSubsc) UnmarshalJSON(src []byte) error

func (*NullableNefEventExposureSubsc) Unset ¶

func (v *NullableNefEventExposureSubsc) Unset()

type NullableNefEventFilter ¶

type NullableNefEventFilter struct {
	// contains filtered or unexported fields
}

func NewNullableNefEventFilter ¶

func NewNullableNefEventFilter(val *NefEventFilter) *NullableNefEventFilter

func (NullableNefEventFilter) Get ¶

func (NullableNefEventFilter) IsSet ¶

func (v NullableNefEventFilter) IsSet() bool

func (NullableNefEventFilter) MarshalJSON ¶

func (v NullableNefEventFilter) MarshalJSON() ([]byte, error)

func (*NullableNefEventFilter) Set ¶

func (*NullableNefEventFilter) UnmarshalJSON ¶

func (v *NullableNefEventFilter) UnmarshalJSON(src []byte) error

func (*NullableNefEventFilter) Unset ¶

func (v *NullableNefEventFilter) Unset()

type NullableNefEventNotification ¶

type NullableNefEventNotification struct {
	// contains filtered or unexported fields
}

func (NullableNefEventNotification) Get ¶

func (NullableNefEventNotification) IsSet ¶

func (NullableNefEventNotification) MarshalJSON ¶

func (v NullableNefEventNotification) MarshalJSON() ([]byte, error)

func (*NullableNefEventNotification) Set ¶

func (*NullableNefEventNotification) UnmarshalJSON ¶

func (v *NullableNefEventNotification) UnmarshalJSON(src []byte) error

func (*NullableNefEventNotification) Unset ¶

func (v *NullableNefEventNotification) Unset()

type NullableNefEventSubs ¶

type NullableNefEventSubs struct {
	// contains filtered or unexported fields
}

func NewNullableNefEventSubs ¶

func NewNullableNefEventSubs(val *NefEventSubs) *NullableNefEventSubs

func (NullableNefEventSubs) Get ¶

func (NullableNefEventSubs) IsSet ¶

func (v NullableNefEventSubs) IsSet() bool

func (NullableNefEventSubs) MarshalJSON ¶

func (v NullableNefEventSubs) MarshalJSON() ([]byte, error)

func (*NullableNefEventSubs) Set ¶

func (v *NullableNefEventSubs) Set(val *NefEventSubs)

func (*NullableNefEventSubs) UnmarshalJSON ¶

func (v *NullableNefEventSubs) UnmarshalJSON(src []byte) error

func (*NullableNefEventSubs) Unset ¶

func (v *NullableNefEventSubs) Unset()

type NullableNefInfo ¶

type NullableNefInfo struct {
	// contains filtered or unexported fields
}

func NewNullableNefInfo ¶

func NewNullableNefInfo(val *NefInfo) *NullableNefInfo

func (NullableNefInfo) Get ¶

func (v NullableNefInfo) Get() *NefInfo

func (NullableNefInfo) IsSet ¶

func (v NullableNefInfo) IsSet() bool

func (NullableNefInfo) MarshalJSON ¶

func (v NullableNefInfo) MarshalJSON() ([]byte, error)

func (*NullableNefInfo) Set ¶

func (v *NullableNefInfo) Set(val *NefInfo)

func (*NullableNefInfo) UnmarshalJSON ¶

func (v *NullableNefInfo) UnmarshalJSON(src []byte) error

func (*NullableNefInfo) Unset ¶

func (v *NullableNefInfo) Unset()

type NullableNetworkAreaInfo ¶

type NullableNetworkAreaInfo struct {
	// contains filtered or unexported fields
}

func NewNullableNetworkAreaInfo ¶

func NewNullableNetworkAreaInfo(val *NetworkAreaInfo) *NullableNetworkAreaInfo

func (NullableNetworkAreaInfo) Get ¶

func (NullableNetworkAreaInfo) IsSet ¶

func (v NullableNetworkAreaInfo) IsSet() bool

func (NullableNetworkAreaInfo) MarshalJSON ¶

func (v NullableNetworkAreaInfo) MarshalJSON() ([]byte, error)

func (*NullableNetworkAreaInfo) Set ¶

func (*NullableNetworkAreaInfo) UnmarshalJSON ¶

func (v *NullableNetworkAreaInfo) UnmarshalJSON(src []byte) error

func (*NullableNetworkAreaInfo) Unset ¶

func (v *NullableNetworkAreaInfo) Unset()

type NullableNetworkAreaInfo1 ¶

type NullableNetworkAreaInfo1 struct {
	// contains filtered or unexported fields
}

func NewNullableNetworkAreaInfo1 ¶

func NewNullableNetworkAreaInfo1(val *NetworkAreaInfo1) *NullableNetworkAreaInfo1

func (NullableNetworkAreaInfo1) Get ¶

func (NullableNetworkAreaInfo1) IsSet ¶

func (v NullableNetworkAreaInfo1) IsSet() bool

func (NullableNetworkAreaInfo1) MarshalJSON ¶

func (v NullableNetworkAreaInfo1) MarshalJSON() ([]byte, error)

func (*NullableNetworkAreaInfo1) Set ¶

func (*NullableNetworkAreaInfo1) UnmarshalJSON ¶

func (v *NullableNetworkAreaInfo1) UnmarshalJSON(src []byte) error

func (*NullableNetworkAreaInfo1) Unset ¶

func (v *NullableNetworkAreaInfo1) Unset()

type NullableNetworkAssistanceSession ¶

type NullableNetworkAssistanceSession struct {
	// contains filtered or unexported fields
}

func (NullableNetworkAssistanceSession) Get ¶

func (NullableNetworkAssistanceSession) IsSet ¶

func (NullableNetworkAssistanceSession) MarshalJSON ¶

func (v NullableNetworkAssistanceSession) MarshalJSON() ([]byte, error)

func (*NullableNetworkAssistanceSession) Set ¶

func (*NullableNetworkAssistanceSession) UnmarshalJSON ¶

func (v *NullableNetworkAssistanceSession) UnmarshalJSON(src []byte) error

func (*NullableNetworkAssistanceSession) Unset ¶

type NullableNetworkNodeDiameterAddress ¶

type NullableNetworkNodeDiameterAddress struct {
	// contains filtered or unexported fields
}

func (NullableNetworkNodeDiameterAddress) Get ¶

func (NullableNetworkNodeDiameterAddress) IsSet ¶

func (NullableNetworkNodeDiameterAddress) MarshalJSON ¶

func (v NullableNetworkNodeDiameterAddress) MarshalJSON() ([]byte, error)

func (*NullableNetworkNodeDiameterAddress) Set ¶

func (*NullableNetworkNodeDiameterAddress) UnmarshalJSON ¶

func (v *NullableNetworkNodeDiameterAddress) UnmarshalJSON(src []byte) error

func (*NullableNetworkNodeDiameterAddress) Unset ¶

type NullableNetworkPerfInfo ¶

type NullableNetworkPerfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableNetworkPerfInfo ¶

func NewNullableNetworkPerfInfo(val *NetworkPerfInfo) *NullableNetworkPerfInfo

func (NullableNetworkPerfInfo) Get ¶

func (NullableNetworkPerfInfo) IsSet ¶

func (v NullableNetworkPerfInfo) IsSet() bool

func (NullableNetworkPerfInfo) MarshalJSON ¶

func (v NullableNetworkPerfInfo) MarshalJSON() ([]byte, error)

func (*NullableNetworkPerfInfo) Set ¶

func (*NullableNetworkPerfInfo) UnmarshalJSON ¶

func (v *NullableNetworkPerfInfo) UnmarshalJSON(src []byte) error

func (*NullableNetworkPerfInfo) Unset ¶

func (v *NullableNetworkPerfInfo) Unset()

type NullableNetworkPerfRequirement ¶

type NullableNetworkPerfRequirement struct {
	// contains filtered or unexported fields
}

func (NullableNetworkPerfRequirement) Get ¶

func (NullableNetworkPerfRequirement) IsSet ¶

func (NullableNetworkPerfRequirement) MarshalJSON ¶

func (v NullableNetworkPerfRequirement) MarshalJSON() ([]byte, error)

func (*NullableNetworkPerfRequirement) Set ¶

func (*NullableNetworkPerfRequirement) UnmarshalJSON ¶

func (v *NullableNetworkPerfRequirement) UnmarshalJSON(src []byte) error

func (*NullableNetworkPerfRequirement) Unset ¶

func (v *NullableNetworkPerfRequirement) Unset()

type NullableNetworkPerfType ¶

type NullableNetworkPerfType struct {
	// contains filtered or unexported fields
}

func NewNullableNetworkPerfType ¶

func NewNullableNetworkPerfType(val *NetworkPerfType) *NullableNetworkPerfType

func (NullableNetworkPerfType) Get ¶

func (NullableNetworkPerfType) IsSet ¶

func (v NullableNetworkPerfType) IsSet() bool

func (NullableNetworkPerfType) MarshalJSON ¶

func (v NullableNetworkPerfType) MarshalJSON() ([]byte, error)

func (*NullableNetworkPerfType) Set ¶

func (*NullableNetworkPerfType) UnmarshalJSON ¶

func (v *NullableNetworkPerfType) UnmarshalJSON(src []byte) error

func (*NullableNetworkPerfType) Unset ¶

func (v *NullableNetworkPerfType) Unset()

type NullableNetworkSliceCond ¶

type NullableNetworkSliceCond struct {
	// contains filtered or unexported fields
}

func NewNullableNetworkSliceCond ¶

func NewNullableNetworkSliceCond(val *NetworkSliceCond) *NullableNetworkSliceCond

func (NullableNetworkSliceCond) Get ¶

func (NullableNetworkSliceCond) IsSet ¶

func (v NullableNetworkSliceCond) IsSet() bool

func (NullableNetworkSliceCond) MarshalJSON ¶

func (v NullableNetworkSliceCond) MarshalJSON() ([]byte, error)

func (*NullableNetworkSliceCond) Set ¶

func (*NullableNetworkSliceCond) UnmarshalJSON ¶

func (v *NullableNetworkSliceCond) UnmarshalJSON(src []byte) error

func (*NullableNetworkSliceCond) Unset ¶

func (v *NullableNetworkSliceCond) Unset()

type NullableNfGroupCond ¶

type NullableNfGroupCond struct {
	// contains filtered or unexported fields
}

func NewNullableNfGroupCond ¶

func NewNullableNfGroupCond(val *NfGroupCond) *NullableNfGroupCond

func (NullableNfGroupCond) Get ¶

func (NullableNfGroupCond) IsSet ¶

func (v NullableNfGroupCond) IsSet() bool

func (NullableNfGroupCond) MarshalJSON ¶

func (v NullableNfGroupCond) MarshalJSON() ([]byte, error)

func (*NullableNfGroupCond) Set ¶

func (v *NullableNfGroupCond) Set(val *NfGroupCond)

func (*NullableNfGroupCond) UnmarshalJSON ¶

func (v *NullableNfGroupCond) UnmarshalJSON(src []byte) error

func (*NullableNfGroupCond) Unset ¶

func (v *NullableNfGroupCond) Unset()

type NullableNfGroupListCond ¶

type NullableNfGroupListCond struct {
	// contains filtered or unexported fields
}

func NewNullableNfGroupListCond ¶

func NewNullableNfGroupListCond(val *NfGroupListCond) *NullableNfGroupListCond

func (NullableNfGroupListCond) Get ¶

func (NullableNfGroupListCond) IsSet ¶

func (v NullableNfGroupListCond) IsSet() bool

func (NullableNfGroupListCond) MarshalJSON ¶

func (v NullableNfGroupListCond) MarshalJSON() ([]byte, error)

func (*NullableNfGroupListCond) Set ¶

func (*NullableNfGroupListCond) UnmarshalJSON ¶

func (v *NullableNfGroupListCond) UnmarshalJSON(src []byte) error

func (*NullableNfGroupListCond) Unset ¶

func (v *NullableNfGroupListCond) Unset()

type NullableNfInfo ¶

type NullableNfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableNfInfo ¶

func NewNullableNfInfo(val *NfInfo) *NullableNfInfo

func (NullableNfInfo) Get ¶

func (v NullableNfInfo) Get() *NfInfo

func (NullableNfInfo) IsSet ¶

func (v NullableNfInfo) IsSet() bool

func (NullableNfInfo) MarshalJSON ¶

func (v NullableNfInfo) MarshalJSON() ([]byte, error)

func (*NullableNfInfo) Set ¶

func (v *NullableNfInfo) Set(val *NfInfo)

func (*NullableNfInfo) UnmarshalJSON ¶

func (v *NullableNfInfo) UnmarshalJSON(src []byte) error

func (*NullableNfInfo) Unset ¶

func (v *NullableNfInfo) Unset()

type NullableNfInstanceIdCond ¶

type NullableNfInstanceIdCond struct {
	// contains filtered or unexported fields
}

func NewNullableNfInstanceIdCond ¶

func NewNullableNfInstanceIdCond(val *NfInstanceIdCond) *NullableNfInstanceIdCond

func (NullableNfInstanceIdCond) Get ¶

func (NullableNfInstanceIdCond) IsSet ¶

func (v NullableNfInstanceIdCond) IsSet() bool

func (NullableNfInstanceIdCond) MarshalJSON ¶

func (v NullableNfInstanceIdCond) MarshalJSON() ([]byte, error)

func (*NullableNfInstanceIdCond) Set ¶

func (*NullableNfInstanceIdCond) UnmarshalJSON ¶

func (v *NullableNfInstanceIdCond) UnmarshalJSON(src []byte) error

func (*NullableNfInstanceIdCond) Unset ¶

func (v *NullableNfInstanceIdCond) Unset()

type NullableNfInstanceIdListCond ¶

type NullableNfInstanceIdListCond struct {
	// contains filtered or unexported fields
}

func (NullableNfInstanceIdListCond) Get ¶

func (NullableNfInstanceIdListCond) IsSet ¶

func (NullableNfInstanceIdListCond) MarshalJSON ¶

func (v NullableNfInstanceIdListCond) MarshalJSON() ([]byte, error)

func (*NullableNfInstanceIdListCond) Set ¶

func (*NullableNfInstanceIdListCond) UnmarshalJSON ¶

func (v *NullableNfInstanceIdListCond) UnmarshalJSON(src []byte) error

func (*NullableNfInstanceIdListCond) Unset ¶

func (v *NullableNfInstanceIdListCond) Unset()

type NullableNfLoadLevelInformation ¶

type NullableNfLoadLevelInformation struct {
	// contains filtered or unexported fields
}

func (NullableNfLoadLevelInformation) Get ¶

func (NullableNfLoadLevelInformation) IsSet ¶

func (NullableNfLoadLevelInformation) MarshalJSON ¶

func (v NullableNfLoadLevelInformation) MarshalJSON() ([]byte, error)

func (*NullableNfLoadLevelInformation) Set ¶

func (*NullableNfLoadLevelInformation) UnmarshalJSON ¶

func (v *NullableNfLoadLevelInformation) UnmarshalJSON(src []byte) error

func (*NullableNfLoadLevelInformation) Unset ¶

func (v *NullableNfLoadLevelInformation) Unset()

type NullableNfServiceSetCond ¶

type NullableNfServiceSetCond struct {
	// contains filtered or unexported fields
}

func NewNullableNfServiceSetCond ¶

func NewNullableNfServiceSetCond(val *NfServiceSetCond) *NullableNfServiceSetCond

func (NullableNfServiceSetCond) Get ¶

func (NullableNfServiceSetCond) IsSet ¶

func (v NullableNfServiceSetCond) IsSet() bool

func (NullableNfServiceSetCond) MarshalJSON ¶

func (v NullableNfServiceSetCond) MarshalJSON() ([]byte, error)

func (*NullableNfServiceSetCond) Set ¶

func (*NullableNfServiceSetCond) UnmarshalJSON ¶

func (v *NullableNfServiceSetCond) UnmarshalJSON(src []byte) error

func (*NullableNfServiceSetCond) Unset ¶

func (v *NullableNfServiceSetCond) Unset()

type NullableNfSetCond ¶

type NullableNfSetCond struct {
	// contains filtered or unexported fields
}

func NewNullableNfSetCond ¶

func NewNullableNfSetCond(val *NfSetCond) *NullableNfSetCond

func (NullableNfSetCond) Get ¶

func (v NullableNfSetCond) Get() *NfSetCond

func (NullableNfSetCond) IsSet ¶

func (v NullableNfSetCond) IsSet() bool

func (NullableNfSetCond) MarshalJSON ¶

func (v NullableNfSetCond) MarshalJSON() ([]byte, error)

func (*NullableNfSetCond) Set ¶

func (v *NullableNfSetCond) Set(val *NfSetCond)

func (*NullableNfSetCond) UnmarshalJSON ¶

func (v *NullableNfSetCond) UnmarshalJSON(src []byte) error

func (*NullableNfSetCond) Unset ¶

func (v *NullableNfSetCond) Unset()

type NullableNfStatus ¶

type NullableNfStatus struct {
	// contains filtered or unexported fields
}

func NewNullableNfStatus ¶

func NewNullableNfStatus(val *NfStatus) *NullableNfStatus

func (NullableNfStatus) Get ¶

func (v NullableNfStatus) Get() *NfStatus

func (NullableNfStatus) IsSet ¶

func (v NullableNfStatus) IsSet() bool

func (NullableNfStatus) MarshalJSON ¶

func (v NullableNfStatus) MarshalJSON() ([]byte, error)

func (*NullableNfStatus) Set ¶

func (v *NullableNfStatus) Set(val *NfStatus)

func (*NullableNfStatus) UnmarshalJSON ¶

func (v *NullableNfStatus) UnmarshalJSON(src []byte) error

func (*NullableNfStatus) Unset ¶

func (v *NullableNfStatus) Unset()

type NullableNfTypeCond ¶

type NullableNfTypeCond struct {
	// contains filtered or unexported fields
}

func NewNullableNfTypeCond ¶

func NewNullableNfTypeCond(val *NfTypeCond) *NullableNfTypeCond

func (NullableNfTypeCond) Get ¶

func (v NullableNfTypeCond) Get() *NfTypeCond

func (NullableNfTypeCond) IsSet ¶

func (v NullableNfTypeCond) IsSet() bool

func (NullableNfTypeCond) MarshalJSON ¶

func (v NullableNfTypeCond) MarshalJSON() ([]byte, error)

func (*NullableNfTypeCond) Set ¶

func (v *NullableNfTypeCond) Set(val *NfTypeCond)

func (*NullableNfTypeCond) UnmarshalJSON ¶

func (v *NullableNfTypeCond) UnmarshalJSON(src []byte) error

func (*NullableNfTypeCond) Unset ¶

func (v *NullableNfTypeCond) Unset()

type NullableNgApCause ¶

type NullableNgApCause struct {
	// contains filtered or unexported fields
}

func NewNullableNgApCause ¶

func NewNullableNgApCause(val *NgApCause) *NullableNgApCause

func (NullableNgApCause) Get ¶

func (v NullableNgApCause) Get() *NgApCause

func (NullableNgApCause) IsSet ¶

func (v NullableNgApCause) IsSet() bool

func (NullableNgApCause) MarshalJSON ¶

func (v NullableNgApCause) MarshalJSON() ([]byte, error)

func (*NullableNgApCause) Set ¶

func (v *NullableNgApCause) Set(val *NgApCause)

func (*NullableNgApCause) UnmarshalJSON ¶

func (v *NullableNgApCause) UnmarshalJSON(src []byte) error

func (*NullableNgApCause) Unset ¶

func (v *NullableNgApCause) Unset()

type NullableNnwdafEventsSubscription ¶

type NullableNnwdafEventsSubscription struct {
	// contains filtered or unexported fields
}

func (NullableNnwdafEventsSubscription) Get ¶

func (NullableNnwdafEventsSubscription) IsSet ¶

func (NullableNnwdafEventsSubscription) MarshalJSON ¶

func (v NullableNnwdafEventsSubscription) MarshalJSON() ([]byte, error)

func (*NullableNnwdafEventsSubscription) Set ¶

func (*NullableNnwdafEventsSubscription) UnmarshalJSON ¶

func (v *NullableNnwdafEventsSubscription) UnmarshalJSON(src []byte) error

func (*NullableNnwdafEventsSubscription) Unset ¶

type NullableNnwdafEventsSubscriptionNotification ¶

type NullableNnwdafEventsSubscriptionNotification struct {
	// contains filtered or unexported fields
}

func (NullableNnwdafEventsSubscriptionNotification) Get ¶

func (NullableNnwdafEventsSubscriptionNotification) IsSet ¶

func (NullableNnwdafEventsSubscriptionNotification) MarshalJSON ¶

func (*NullableNnwdafEventsSubscriptionNotification) Set ¶

func (*NullableNnwdafEventsSubscriptionNotification) UnmarshalJSON ¶

func (*NullableNnwdafEventsSubscriptionNotification) Unset ¶

type NullableNotifCondition ¶

type NullableNotifCondition struct {
	// contains filtered or unexported fields
}

func NewNullableNotifCondition ¶

func NewNullableNotifCondition(val *NotifCondition) *NullableNotifCondition

func (NullableNotifCondition) Get ¶

func (NullableNotifCondition) IsSet ¶

func (v NullableNotifCondition) IsSet() bool

func (NullableNotifCondition) MarshalJSON ¶

func (v NullableNotifCondition) MarshalJSON() ([]byte, error)

func (*NullableNotifCondition) Set ¶

func (*NullableNotifCondition) UnmarshalJSON ¶

func (v *NullableNotifCondition) UnmarshalJSON(src []byte) error

func (*NullableNotifCondition) Unset ¶

func (v *NullableNotifCondition) Unset()

type NullableNotificationData ¶

type NullableNotificationData struct {
	// contains filtered or unexported fields
}

func NewNullableNotificationData ¶

func NewNullableNotificationData(val *NotificationData) *NullableNotificationData

func (NullableNotificationData) Get ¶

func (NullableNotificationData) IsSet ¶

func (v NullableNotificationData) IsSet() bool

func (NullableNotificationData) MarshalJSON ¶

func (v NullableNotificationData) MarshalJSON() ([]byte, error)

func (*NullableNotificationData) Set ¶

func (*NullableNotificationData) UnmarshalJSON ¶

func (v *NullableNotificationData) UnmarshalJSON(src []byte) error

func (*NullableNotificationData) Unset ¶

func (v *NullableNotificationData) Unset()

type NullableNotificationEventType ¶

type NullableNotificationEventType struct {
	// contains filtered or unexported fields
}

func (NullableNotificationEventType) Get ¶

func (NullableNotificationEventType) IsSet ¶

func (NullableNotificationEventType) MarshalJSON ¶

func (v NullableNotificationEventType) MarshalJSON() ([]byte, error)

func (*NullableNotificationEventType) Set ¶

func (*NullableNotificationEventType) UnmarshalJSON ¶

func (v *NullableNotificationEventType) UnmarshalJSON(src []byte) error

func (*NullableNotificationEventType) Unset ¶

func (v *NullableNotificationEventType) Unset()

type NullableNotificationFlag ¶

type NullableNotificationFlag struct {
	// contains filtered or unexported fields
}

func NewNullableNotificationFlag ¶

func NewNullableNotificationFlag(val *NotificationFlag) *NullableNotificationFlag

func (NullableNotificationFlag) Get ¶

func (NullableNotificationFlag) IsSet ¶

func (v NullableNotificationFlag) IsSet() bool

func (NullableNotificationFlag) MarshalJSON ¶

func (v NullableNotificationFlag) MarshalJSON() ([]byte, error)

func (*NullableNotificationFlag) Set ¶

func (*NullableNotificationFlag) UnmarshalJSON ¶

func (v *NullableNotificationFlag) UnmarshalJSON(src []byte) error

func (*NullableNotificationFlag) Unset ¶

func (v *NullableNotificationFlag) Unset()

type NullableNotificationMethod ¶

type NullableNotificationMethod struct {
	// contains filtered or unexported fields
}

func NewNullableNotificationMethod ¶

func NewNullableNotificationMethod(val *NotificationMethod) *NullableNotificationMethod

func (NullableNotificationMethod) Get ¶

func (NullableNotificationMethod) IsSet ¶

func (v NullableNotificationMethod) IsSet() bool

func (NullableNotificationMethod) MarshalJSON ¶

func (v NullableNotificationMethod) MarshalJSON() ([]byte, error)

func (*NullableNotificationMethod) Set ¶

func (*NullableNotificationMethod) UnmarshalJSON ¶

func (v *NullableNotificationMethod) UnmarshalJSON(src []byte) error

func (*NullableNotificationMethod) Unset ¶

func (v *NullableNotificationMethod) Unset()

type NullableNotificationMethod1 ¶

type NullableNotificationMethod1 struct {
	// contains filtered or unexported fields
}

func (NullableNotificationMethod1) Get ¶

func (NullableNotificationMethod1) IsSet ¶

func (NullableNotificationMethod1) MarshalJSON ¶

func (v NullableNotificationMethod1) MarshalJSON() ([]byte, error)

func (*NullableNotificationMethod1) Set ¶

func (*NullableNotificationMethod1) UnmarshalJSON ¶

func (v *NullableNotificationMethod1) UnmarshalJSON(src []byte) error

func (*NullableNotificationMethod1) Unset ¶

func (v *NullableNotificationMethod1) Unset()

type NullableNotificationType ¶

type NullableNotificationType struct {
	// contains filtered or unexported fields
}

func NewNullableNotificationType ¶

func NewNullableNotificationType(val *NotificationType) *NullableNotificationType

func (NullableNotificationType) Get ¶

func (NullableNotificationType) IsSet ¶

func (v NullableNotificationType) IsSet() bool

func (NullableNotificationType) MarshalJSON ¶

func (v NullableNotificationType) MarshalJSON() ([]byte, error)

func (*NullableNotificationType) Set ¶

func (*NullableNotificationType) UnmarshalJSON ¶

func (v *NullableNotificationType) UnmarshalJSON(src []byte) error

func (*NullableNotificationType) Unset ¶

func (v *NullableNotificationType) Unset()

type NullableNrLocation ¶

type NullableNrLocation struct {
	// contains filtered or unexported fields
}

func NewNullableNrLocation ¶

func NewNullableNrLocation(val *NrLocation) *NullableNrLocation

func (NullableNrLocation) Get ¶

func (v NullableNrLocation) Get() *NrLocation

func (NullableNrLocation) IsSet ¶

func (v NullableNrLocation) IsSet() bool

func (NullableNrLocation) MarshalJSON ¶

func (v NullableNrLocation) MarshalJSON() ([]byte, error)

func (*NullableNrLocation) Set ¶

func (v *NullableNrLocation) Set(val *NrLocation)

func (*NullableNrLocation) UnmarshalJSON ¶

func (v *NullableNrLocation) UnmarshalJSON(src []byte) error

func (*NullableNrLocation) Unset ¶

func (v *NullableNrLocation) Unset()

type NullableNrfInfo ¶

type NullableNrfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableNrfInfo ¶

func NewNullableNrfInfo(val *NrfInfo) *NullableNrfInfo

func (NullableNrfInfo) Get ¶

func (v NullableNrfInfo) Get() *NrfInfo

func (NullableNrfInfo) IsSet ¶

func (v NullableNrfInfo) IsSet() bool

func (NullableNrfInfo) MarshalJSON ¶

func (v NullableNrfInfo) MarshalJSON() ([]byte, error)

func (*NullableNrfInfo) Set ¶

func (v *NullableNrfInfo) Set(val *NrfInfo)

func (*NullableNrfInfo) UnmarshalJSON ¶

func (v *NullableNrfInfo) UnmarshalJSON(src []byte) error

func (*NullableNrfInfo) Unset ¶

func (v *NullableNrfInfo) Unset()

type NullableNrfInfoServedAanfInfoListValueValue ¶

type NullableNrfInfoServedAanfInfoListValueValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedAanfInfoListValueValue) Get ¶

func (NullableNrfInfoServedAanfInfoListValueValue) IsSet ¶

func (NullableNrfInfoServedAanfInfoListValueValue) MarshalJSON ¶

func (*NullableNrfInfoServedAanfInfoListValueValue) Set ¶

func (*NullableNrfInfoServedAanfInfoListValueValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedAanfInfoListValueValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedAanfInfoListValueValue) Unset ¶

type NullableNrfInfoServedAmfInfoValue ¶

type NullableNrfInfoServedAmfInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedAmfInfoValue) Get ¶

func (NullableNrfInfoServedAmfInfoValue) IsSet ¶

func (NullableNrfInfoServedAmfInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedAmfInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedAmfInfoValue) Set ¶

func (*NullableNrfInfoServedAmfInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedAmfInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedAmfInfoValue) Unset ¶

type NullableNrfInfoServedAusfInfoValue ¶

type NullableNrfInfoServedAusfInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedAusfInfoValue) Get ¶

func (NullableNrfInfoServedAusfInfoValue) IsSet ¶

func (NullableNrfInfoServedAusfInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedAusfInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedAusfInfoValue) Set ¶

func (*NullableNrfInfoServedAusfInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedAusfInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedAusfInfoValue) Unset ¶

type NullableNrfInfoServedBsfInfoValue ¶

type NullableNrfInfoServedBsfInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedBsfInfoValue) Get ¶

func (NullableNrfInfoServedBsfInfoValue) IsSet ¶

func (NullableNrfInfoServedBsfInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedBsfInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedBsfInfoValue) Set ¶

func (*NullableNrfInfoServedBsfInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedBsfInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedBsfInfoValue) Unset ¶

type NullableNrfInfoServedChfInfoValue ¶

type NullableNrfInfoServedChfInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedChfInfoValue) Get ¶

func (NullableNrfInfoServedChfInfoValue) IsSet ¶

func (NullableNrfInfoServedChfInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedChfInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedChfInfoValue) Set ¶

func (*NullableNrfInfoServedChfInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedChfInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedChfInfoValue) Unset ¶

type NullableNrfInfoServedGmlcInfoValue ¶

type NullableNrfInfoServedGmlcInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedGmlcInfoValue) Get ¶

func (NullableNrfInfoServedGmlcInfoValue) IsSet ¶

func (NullableNrfInfoServedGmlcInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedGmlcInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedGmlcInfoValue) Set ¶

func (*NullableNrfInfoServedGmlcInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedGmlcInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedGmlcInfoValue) Unset ¶

type NullableNrfInfoServedHssInfoListValueValue ¶

type NullableNrfInfoServedHssInfoListValueValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedHssInfoListValueValue) Get ¶

func (NullableNrfInfoServedHssInfoListValueValue) IsSet ¶

func (NullableNrfInfoServedHssInfoListValueValue) MarshalJSON ¶

func (*NullableNrfInfoServedHssInfoListValueValue) Set ¶

func (*NullableNrfInfoServedHssInfoListValueValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedHssInfoListValueValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedHssInfoListValueValue) Unset ¶

type NullableNrfInfoServedLmfInfoValue ¶

type NullableNrfInfoServedLmfInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedLmfInfoValue) Get ¶

func (NullableNrfInfoServedLmfInfoValue) IsSet ¶

func (NullableNrfInfoServedLmfInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedLmfInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedLmfInfoValue) Set ¶

func (*NullableNrfInfoServedLmfInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedLmfInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedLmfInfoValue) Unset ¶

type NullableNrfInfoServedMbSmfInfoListValueValue ¶

type NullableNrfInfoServedMbSmfInfoListValueValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedMbSmfInfoListValueValue) Get ¶

func (NullableNrfInfoServedMbSmfInfoListValueValue) IsSet ¶

func (NullableNrfInfoServedMbSmfInfoListValueValue) MarshalJSON ¶

func (*NullableNrfInfoServedMbSmfInfoListValueValue) Set ¶

func (*NullableNrfInfoServedMbSmfInfoListValueValue) UnmarshalJSON ¶

func (*NullableNrfInfoServedMbSmfInfoListValueValue) Unset ¶

type NullableNrfInfoServedNefInfoValue ¶

type NullableNrfInfoServedNefInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedNefInfoValue) Get ¶

func (NullableNrfInfoServedNefInfoValue) IsSet ¶

func (NullableNrfInfoServedNefInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedNefInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedNefInfoValue) Set ¶

func (*NullableNrfInfoServedNefInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedNefInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedNefInfoValue) Unset ¶

type NullableNrfInfoServedNwdafInfoValue ¶

type NullableNrfInfoServedNwdafInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedNwdafInfoValue) Get ¶

func (NullableNrfInfoServedNwdafInfoValue) IsSet ¶

func (NullableNrfInfoServedNwdafInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedNwdafInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedNwdafInfoValue) Set ¶

func (*NullableNrfInfoServedNwdafInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedNwdafInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedNwdafInfoValue) Unset ¶

type NullableNrfInfoServedPcfInfoValue ¶

type NullableNrfInfoServedPcfInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedPcfInfoValue) Get ¶

func (NullableNrfInfoServedPcfInfoValue) IsSet ¶

func (NullableNrfInfoServedPcfInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedPcfInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedPcfInfoValue) Set ¶

func (*NullableNrfInfoServedPcfInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedPcfInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedPcfInfoValue) Unset ¶

type NullableNrfInfoServedPcscfInfoListValueValue ¶

type NullableNrfInfoServedPcscfInfoListValueValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedPcscfInfoListValueValue) Get ¶

func (NullableNrfInfoServedPcscfInfoListValueValue) IsSet ¶

func (NullableNrfInfoServedPcscfInfoListValueValue) MarshalJSON ¶

func (*NullableNrfInfoServedPcscfInfoListValueValue) Set ¶

func (*NullableNrfInfoServedPcscfInfoListValueValue) UnmarshalJSON ¶

func (*NullableNrfInfoServedPcscfInfoListValueValue) Unset ¶

type NullableNrfInfoServedScpInfoListValue ¶

type NullableNrfInfoServedScpInfoListValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedScpInfoListValue) Get ¶

func (NullableNrfInfoServedScpInfoListValue) IsSet ¶

func (NullableNrfInfoServedScpInfoListValue) MarshalJSON ¶

func (v NullableNrfInfoServedScpInfoListValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedScpInfoListValue) Set ¶

func (*NullableNrfInfoServedScpInfoListValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedScpInfoListValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedScpInfoListValue) Unset ¶

type NullableNrfInfoServedSeppInfoListValue ¶

type NullableNrfInfoServedSeppInfoListValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedSeppInfoListValue) Get ¶

func (NullableNrfInfoServedSeppInfoListValue) IsSet ¶

func (NullableNrfInfoServedSeppInfoListValue) MarshalJSON ¶

func (v NullableNrfInfoServedSeppInfoListValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedSeppInfoListValue) Set ¶

func (*NullableNrfInfoServedSeppInfoListValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedSeppInfoListValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedSeppInfoListValue) Unset ¶

type NullableNrfInfoServedSmfInfoValue ¶

type NullableNrfInfoServedSmfInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedSmfInfoValue) Get ¶

func (NullableNrfInfoServedSmfInfoValue) IsSet ¶

func (NullableNrfInfoServedSmfInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedSmfInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedSmfInfoValue) Set ¶

func (*NullableNrfInfoServedSmfInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedSmfInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedSmfInfoValue) Unset ¶

type NullableNrfInfoServedUdmInfoValue ¶

type NullableNrfInfoServedUdmInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedUdmInfoValue) Get ¶

func (NullableNrfInfoServedUdmInfoValue) IsSet ¶

func (NullableNrfInfoServedUdmInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedUdmInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedUdmInfoValue) Set ¶

func (*NullableNrfInfoServedUdmInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedUdmInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedUdmInfoValue) Unset ¶

type NullableNrfInfoServedUdrInfoValue ¶

type NullableNrfInfoServedUdrInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedUdrInfoValue) Get ¶

func (NullableNrfInfoServedUdrInfoValue) IsSet ¶

func (NullableNrfInfoServedUdrInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedUdrInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedUdrInfoValue) Set ¶

func (*NullableNrfInfoServedUdrInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedUdrInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedUdrInfoValue) Unset ¶

type NullableNrfInfoServedUdsfInfoValue ¶

type NullableNrfInfoServedUdsfInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedUdsfInfoValue) Get ¶

func (NullableNrfInfoServedUdsfInfoValue) IsSet ¶

func (NullableNrfInfoServedUdsfInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedUdsfInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedUdsfInfoValue) Set ¶

func (*NullableNrfInfoServedUdsfInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedUdsfInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedUdsfInfoValue) Unset ¶

type NullableNrfInfoServedUpfInfoValue ¶

type NullableNrfInfoServedUpfInfoValue struct {
	// contains filtered or unexported fields
}

func (NullableNrfInfoServedUpfInfoValue) Get ¶

func (NullableNrfInfoServedUpfInfoValue) IsSet ¶

func (NullableNrfInfoServedUpfInfoValue) MarshalJSON ¶

func (v NullableNrfInfoServedUpfInfoValue) MarshalJSON() ([]byte, error)

func (*NullableNrfInfoServedUpfInfoValue) Set ¶

func (*NullableNrfInfoServedUpfInfoValue) UnmarshalJSON ¶

func (v *NullableNrfInfoServedUpfInfoValue) UnmarshalJSON(src []byte) error

func (*NullableNrfInfoServedUpfInfoValue) Unset ¶

type NullableNsacfCapability ¶

type NullableNsacfCapability struct {
	// contains filtered or unexported fields
}

func NewNullableNsacfCapability ¶

func NewNullableNsacfCapability(val *NsacfCapability) *NullableNsacfCapability

func (NullableNsacfCapability) Get ¶

func (NullableNsacfCapability) IsSet ¶

func (v NullableNsacfCapability) IsSet() bool

func (NullableNsacfCapability) MarshalJSON ¶

func (v NullableNsacfCapability) MarshalJSON() ([]byte, error)

func (*NullableNsacfCapability) Set ¶

func (*NullableNsacfCapability) UnmarshalJSON ¶

func (v *NullableNsacfCapability) UnmarshalJSON(src []byte) error

func (*NullableNsacfCapability) Unset ¶

func (v *NullableNsacfCapability) Unset()

type NullableNsacfInfo ¶

type NullableNsacfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableNsacfInfo ¶

func NewNullableNsacfInfo(val *NsacfInfo) *NullableNsacfInfo

func (NullableNsacfInfo) Get ¶

func (v NullableNsacfInfo) Get() *NsacfInfo

func (NullableNsacfInfo) IsSet ¶

func (v NullableNsacfInfo) IsSet() bool

func (NullableNsacfInfo) MarshalJSON ¶

func (v NullableNsacfInfo) MarshalJSON() ([]byte, error)

func (*NullableNsacfInfo) Set ¶

func (v *NullableNsacfInfo) Set(val *NsacfInfo)

func (*NullableNsacfInfo) UnmarshalJSON ¶

func (v *NullableNsacfInfo) UnmarshalJSON(src []byte) error

func (*NullableNsacfInfo) Unset ¶

func (v *NullableNsacfInfo) Unset()

type NullableNsiIdInfo ¶

type NullableNsiIdInfo struct {
	// contains filtered or unexported fields
}

func NewNullableNsiIdInfo ¶

func NewNullableNsiIdInfo(val *NsiIdInfo) *NullableNsiIdInfo

func (NullableNsiIdInfo) Get ¶

func (v NullableNsiIdInfo) Get() *NsiIdInfo

func (NullableNsiIdInfo) IsSet ¶

func (v NullableNsiIdInfo) IsSet() bool

func (NullableNsiIdInfo) MarshalJSON ¶

func (v NullableNsiIdInfo) MarshalJSON() ([]byte, error)

func (*NullableNsiIdInfo) Set ¶

func (v *NullableNsiIdInfo) Set(val *NsiIdInfo)

func (*NullableNsiIdInfo) UnmarshalJSON ¶

func (v *NullableNsiIdInfo) UnmarshalJSON(src []byte) error

func (*NullableNsiIdInfo) Unset ¶

func (v *NullableNsiIdInfo) Unset()

type NullableNsiLoadLevelInfo ¶

type NullableNsiLoadLevelInfo struct {
	// contains filtered or unexported fields
}

func NewNullableNsiLoadLevelInfo ¶

func NewNullableNsiLoadLevelInfo(val *NsiLoadLevelInfo) *NullableNsiLoadLevelInfo

func (NullableNsiLoadLevelInfo) Get ¶

func (NullableNsiLoadLevelInfo) IsSet ¶

func (v NullableNsiLoadLevelInfo) IsSet() bool

func (NullableNsiLoadLevelInfo) MarshalJSON ¶

func (v NullableNsiLoadLevelInfo) MarshalJSON() ([]byte, error)

func (*NullableNsiLoadLevelInfo) Set ¶

func (*NullableNsiLoadLevelInfo) UnmarshalJSON ¶

func (v *NullableNsiLoadLevelInfo) UnmarshalJSON(src []byte) error

func (*NullableNsiLoadLevelInfo) Unset ¶

func (v *NullableNsiLoadLevelInfo) Unset()

type NullableNsmfEventExposure ¶

type NullableNsmfEventExposure struct {
	// contains filtered or unexported fields
}

func NewNullableNsmfEventExposure ¶

func NewNullableNsmfEventExposure(val *NsmfEventExposure) *NullableNsmfEventExposure

func (NullableNsmfEventExposure) Get ¶

func (NullableNsmfEventExposure) IsSet ¶

func (v NullableNsmfEventExposure) IsSet() bool

func (NullableNsmfEventExposure) MarshalJSON ¶

func (v NullableNsmfEventExposure) MarshalJSON() ([]byte, error)

func (*NullableNsmfEventExposure) Set ¶

func (*NullableNsmfEventExposure) UnmarshalJSON ¶

func (v *NullableNsmfEventExposure) UnmarshalJSON(src []byte) error

func (*NullableNsmfEventExposure) Unset ¶

func (v *NullableNsmfEventExposure) Unset()

type NullableNsmfEventExposureNotification ¶

type NullableNsmfEventExposureNotification struct {
	// contains filtered or unexported fields
}

func (NullableNsmfEventExposureNotification) Get ¶

func (NullableNsmfEventExposureNotification) IsSet ¶

func (NullableNsmfEventExposureNotification) MarshalJSON ¶

func (v NullableNsmfEventExposureNotification) MarshalJSON() ([]byte, error)

func (*NullableNsmfEventExposureNotification) Set ¶

func (*NullableNsmfEventExposureNotification) UnmarshalJSON ¶

func (v *NullableNsmfEventExposureNotification) UnmarshalJSON(src []byte) error

func (*NullableNsmfEventExposureNotification) Unset ¶

type NullableNssaafInfo ¶

type NullableNssaafInfo struct {
	// contains filtered or unexported fields
}

func NewNullableNssaafInfo ¶

func NewNullableNssaafInfo(val *NssaafInfo) *NullableNssaafInfo

func (NullableNssaafInfo) Get ¶

func (v NullableNssaafInfo) Get() *NssaafInfo

func (NullableNssaafInfo) IsSet ¶

func (v NullableNssaafInfo) IsSet() bool

func (NullableNssaafInfo) MarshalJSON ¶

func (v NullableNssaafInfo) MarshalJSON() ([]byte, error)

func (*NullableNssaafInfo) Set ¶

func (v *NullableNssaafInfo) Set(val *NssaafInfo)

func (*NullableNssaafInfo) UnmarshalJSON ¶

func (v *NullableNssaafInfo) UnmarshalJSON(src []byte) error

func (*NullableNssaafInfo) Unset ¶

func (v *NullableNssaafInfo) Unset()

type NullableNumberAverage ¶

type NullableNumberAverage struct {
	// contains filtered or unexported fields
}

func NewNullableNumberAverage ¶

func NewNullableNumberAverage(val *NumberAverage) *NullableNumberAverage

func (NullableNumberAverage) Get ¶

func (NullableNumberAverage) IsSet ¶

func (v NullableNumberAverage) IsSet() bool

func (NullableNumberAverage) MarshalJSON ¶

func (v NullableNumberAverage) MarshalJSON() ([]byte, error)

func (*NullableNumberAverage) Set ¶

func (v *NullableNumberAverage) Set(val *NumberAverage)

func (*NullableNumberAverage) UnmarshalJSON ¶

func (v *NullableNumberAverage) UnmarshalJSON(src []byte) error

func (*NullableNumberAverage) Unset ¶

func (v *NullableNumberAverage) Unset()

type NullableNwdafCapability ¶

type NullableNwdafCapability struct {
	// contains filtered or unexported fields
}

func NewNullableNwdafCapability ¶

func NewNullableNwdafCapability(val *NwdafCapability) *NullableNwdafCapability

func (NullableNwdafCapability) Get ¶

func (NullableNwdafCapability) IsSet ¶

func (v NullableNwdafCapability) IsSet() bool

func (NullableNwdafCapability) MarshalJSON ¶

func (v NullableNwdafCapability) MarshalJSON() ([]byte, error)

func (*NullableNwdafCapability) Set ¶

func (*NullableNwdafCapability) UnmarshalJSON ¶

func (v *NullableNwdafCapability) UnmarshalJSON(src []byte) error

func (*NullableNwdafCapability) Unset ¶

func (v *NullableNwdafCapability) Unset()

type NullableNwdafCond ¶

type NullableNwdafCond struct {
	// contains filtered or unexported fields
}

func NewNullableNwdafCond ¶

func NewNullableNwdafCond(val *NwdafCond) *NullableNwdafCond

func (NullableNwdafCond) Get ¶

func (v NullableNwdafCond) Get() *NwdafCond

func (NullableNwdafCond) IsSet ¶

func (v NullableNwdafCond) IsSet() bool

func (NullableNwdafCond) MarshalJSON ¶

func (v NullableNwdafCond) MarshalJSON() ([]byte, error)

func (*NullableNwdafCond) Set ¶

func (v *NullableNwdafCond) Set(val *NwdafCond)

func (*NullableNwdafCond) UnmarshalJSON ¶

func (v *NullableNwdafCond) UnmarshalJSON(src []byte) error

func (*NullableNwdafCond) Unset ¶

func (v *NullableNwdafCond) Unset()

type NullableNwdafEvent ¶

type NullableNwdafEvent struct {
	// contains filtered or unexported fields
}

func NewNullableNwdafEvent ¶

func NewNullableNwdafEvent(val *NwdafEvent) *NullableNwdafEvent

func (NullableNwdafEvent) Get ¶

func (v NullableNwdafEvent) Get() *NwdafEvent

func (NullableNwdafEvent) IsSet ¶

func (v NullableNwdafEvent) IsSet() bool

func (NullableNwdafEvent) MarshalJSON ¶

func (v NullableNwdafEvent) MarshalJSON() ([]byte, error)

func (*NullableNwdafEvent) Set ¶

func (v *NullableNwdafEvent) Set(val *NwdafEvent)

func (*NullableNwdafEvent) UnmarshalJSON ¶

func (v *NullableNwdafEvent) UnmarshalJSON(src []byte) error

func (*NullableNwdafEvent) Unset ¶

func (v *NullableNwdafEvent) Unset()

type NullableNwdafFailureCode ¶

type NullableNwdafFailureCode struct {
	// contains filtered or unexported fields
}

func NewNullableNwdafFailureCode ¶

func NewNullableNwdafFailureCode(val *NwdafFailureCode) *NullableNwdafFailureCode

func (NullableNwdafFailureCode) Get ¶

func (NullableNwdafFailureCode) IsSet ¶

func (v NullableNwdafFailureCode) IsSet() bool

func (NullableNwdafFailureCode) MarshalJSON ¶

func (v NullableNwdafFailureCode) MarshalJSON() ([]byte, error)

func (*NullableNwdafFailureCode) Set ¶

func (*NullableNwdafFailureCode) UnmarshalJSON ¶

func (v *NullableNwdafFailureCode) UnmarshalJSON(src []byte) error

func (*NullableNwdafFailureCode) Unset ¶

func (v *NullableNwdafFailureCode) Unset()

type NullableNwdafInfo ¶

type NullableNwdafInfo struct {
	// contains filtered or unexported fields
}

func NewNullableNwdafInfo ¶

func NewNullableNwdafInfo(val *NwdafInfo) *NullableNwdafInfo

func (NullableNwdafInfo) Get ¶

func (v NullableNwdafInfo) Get() *NwdafInfo

func (NullableNwdafInfo) IsSet ¶

func (v NullableNwdafInfo) IsSet() bool

func (NullableNwdafInfo) MarshalJSON ¶

func (v NullableNwdafInfo) MarshalJSON() ([]byte, error)

func (*NullableNwdafInfo) Set ¶

func (v *NullableNwdafInfo) Set(val *NwdafInfo)

func (*NullableNwdafInfo) UnmarshalJSON ¶

func (v *NullableNwdafInfo) UnmarshalJSON(src []byte) error

func (*NullableNwdafInfo) Unset ¶

func (v *NullableNwdafInfo) Unset()

type NullableObservedRedundantTransExp ¶

type NullableObservedRedundantTransExp struct {
	// contains filtered or unexported fields
}

func (NullableObservedRedundantTransExp) Get ¶

func (NullableObservedRedundantTransExp) IsSet ¶

func (NullableObservedRedundantTransExp) MarshalJSON ¶

func (v NullableObservedRedundantTransExp) MarshalJSON() ([]byte, error)

func (*NullableObservedRedundantTransExp) Set ¶

func (*NullableObservedRedundantTransExp) UnmarshalJSON ¶

func (v *NullableObservedRedundantTransExp) UnmarshalJSON(src []byte) error

func (*NullableObservedRedundantTransExp) Unset ¶

type NullableOutputStrategy ¶

type NullableOutputStrategy struct {
	// contains filtered or unexported fields
}

func NewNullableOutputStrategy ¶

func NewNullableOutputStrategy(val *OutputStrategy) *NullableOutputStrategy

func (NullableOutputStrategy) Get ¶

func (NullableOutputStrategy) IsSet ¶

func (v NullableOutputStrategy) IsSet() bool

func (NullableOutputStrategy) MarshalJSON ¶

func (v NullableOutputStrategy) MarshalJSON() ([]byte, error)

func (*NullableOutputStrategy) Set ¶

func (*NullableOutputStrategy) UnmarshalJSON ¶

func (v *NullableOutputStrategy) UnmarshalJSON(src []byte) error

func (*NullableOutputStrategy) Unset ¶

func (v *NullableOutputStrategy) Unset()

type NullableParameterProcessingInstruction ¶

type NullableParameterProcessingInstruction struct {
	// contains filtered or unexported fields
}

func (NullableParameterProcessingInstruction) Get ¶

func (NullableParameterProcessingInstruction) IsSet ¶

func (NullableParameterProcessingInstruction) MarshalJSON ¶

func (v NullableParameterProcessingInstruction) MarshalJSON() ([]byte, error)

func (*NullableParameterProcessingInstruction) Set ¶

func (*NullableParameterProcessingInstruction) UnmarshalJSON ¶

func (v *NullableParameterProcessingInstruction) UnmarshalJSON(src []byte) error

func (*NullableParameterProcessingInstruction) Unset ¶

type NullablePartitioningCriteria ¶

type NullablePartitioningCriteria struct {
	// contains filtered or unexported fields
}

func (NullablePartitioningCriteria) Get ¶

func (NullablePartitioningCriteria) IsSet ¶

func (NullablePartitioningCriteria) MarshalJSON ¶

func (v NullablePartitioningCriteria) MarshalJSON() ([]byte, error)

func (*NullablePartitioningCriteria) Set ¶

func (*NullablePartitioningCriteria) UnmarshalJSON ¶

func (v *NullablePartitioningCriteria) UnmarshalJSON(src []byte) error

func (*NullablePartitioningCriteria) Unset ¶

func (v *NullablePartitioningCriteria) Unset()

type NullablePcfInfo ¶

type NullablePcfInfo struct {
	// contains filtered or unexported fields
}

func NewNullablePcfInfo ¶

func NewNullablePcfInfo(val *PcfInfo) *NullablePcfInfo

func (NullablePcfInfo) Get ¶

func (v NullablePcfInfo) Get() *PcfInfo

func (NullablePcfInfo) IsSet ¶

func (v NullablePcfInfo) IsSet() bool

func (NullablePcfInfo) MarshalJSON ¶

func (v NullablePcfInfo) MarshalJSON() ([]byte, error)

func (*NullablePcfInfo) Set ¶

func (v *NullablePcfInfo) Set(val *PcfInfo)

func (*NullablePcfInfo) UnmarshalJSON ¶

func (v *NullablePcfInfo) UnmarshalJSON(src []byte) error

func (*NullablePcfInfo) Unset ¶

func (v *NullablePcfInfo) Unset()

type NullablePcscfInfo ¶

type NullablePcscfInfo struct {
	// contains filtered or unexported fields
}

func NewNullablePcscfInfo ¶

func NewNullablePcscfInfo(val *PcscfInfo) *NullablePcscfInfo

func (NullablePcscfInfo) Get ¶

func (v NullablePcscfInfo) Get() *PcscfInfo

func (NullablePcscfInfo) IsSet ¶

func (v NullablePcscfInfo) IsSet() bool

func (NullablePcscfInfo) MarshalJSON ¶

func (v NullablePcscfInfo) MarshalJSON() ([]byte, error)

func (*NullablePcscfInfo) Set ¶

func (v *NullablePcscfInfo) Set(val *PcscfInfo)

func (*NullablePcscfInfo) UnmarshalJSON ¶

func (v *NullablePcscfInfo) UnmarshalJSON(src []byte) error

func (*NullablePcscfInfo) Unset ¶

func (v *NullablePcscfInfo) Unset()

type NullablePdnConnectivityStatReport ¶

type NullablePdnConnectivityStatReport struct {
	// contains filtered or unexported fields
}

func (NullablePdnConnectivityStatReport) Get ¶

func (NullablePdnConnectivityStatReport) IsSet ¶

func (NullablePdnConnectivityStatReport) MarshalJSON ¶

func (v NullablePdnConnectivityStatReport) MarshalJSON() ([]byte, error)

func (*NullablePdnConnectivityStatReport) Set ¶

func (*NullablePdnConnectivityStatReport) UnmarshalJSON ¶

func (v *NullablePdnConnectivityStatReport) UnmarshalJSON(src []byte) error

func (*NullablePdnConnectivityStatReport) Unset ¶

type NullablePdnConnectivityStatus ¶

type NullablePdnConnectivityStatus struct {
	// contains filtered or unexported fields
}

func (NullablePdnConnectivityStatus) Get ¶

func (NullablePdnConnectivityStatus) IsSet ¶

func (NullablePdnConnectivityStatus) MarshalJSON ¶

func (v NullablePdnConnectivityStatus) MarshalJSON() ([]byte, error)

func (*NullablePdnConnectivityStatus) Set ¶

func (*NullablePdnConnectivityStatus) UnmarshalJSON ¶

func (v *NullablePdnConnectivityStatus) UnmarshalJSON(src []byte) error

func (*NullablePdnConnectivityStatus) Unset ¶

func (v *NullablePdnConnectivityStatus) Unset()

type NullablePduSessionInfo ¶

type NullablePduSessionInfo struct {
	// contains filtered or unexported fields
}

func NewNullablePduSessionInfo ¶

func NewNullablePduSessionInfo(val *PduSessionInfo) *NullablePduSessionInfo

func (NullablePduSessionInfo) Get ¶

func (NullablePduSessionInfo) IsSet ¶

func (v NullablePduSessionInfo) IsSet() bool

func (NullablePduSessionInfo) MarshalJSON ¶

func (v NullablePduSessionInfo) MarshalJSON() ([]byte, error)

func (*NullablePduSessionInfo) Set ¶

func (*NullablePduSessionInfo) UnmarshalJSON ¶

func (v *NullablePduSessionInfo) UnmarshalJSON(src []byte) error

func (*NullablePduSessionInfo) Unset ¶

func (v *NullablePduSessionInfo) Unset()

type NullablePduSessionInformation ¶

type NullablePduSessionInformation struct {
	// contains filtered or unexported fields
}

func (NullablePduSessionInformation) Get ¶

func (NullablePduSessionInformation) IsSet ¶

func (NullablePduSessionInformation) MarshalJSON ¶

func (v NullablePduSessionInformation) MarshalJSON() ([]byte, error)

func (*NullablePduSessionInformation) Set ¶

func (*NullablePduSessionInformation) UnmarshalJSON ¶

func (v *NullablePduSessionInformation) UnmarshalJSON(src []byte) error

func (*NullablePduSessionInformation) Unset ¶

func (v *NullablePduSessionInformation) Unset()

type NullablePduSessionStatus ¶

type NullablePduSessionStatus struct {
	// contains filtered or unexported fields
}

func NewNullablePduSessionStatus ¶

func NewNullablePduSessionStatus(val *PduSessionStatus) *NullablePduSessionStatus

func (NullablePduSessionStatus) Get ¶

func (NullablePduSessionStatus) IsSet ¶

func (v NullablePduSessionStatus) IsSet() bool

func (NullablePduSessionStatus) MarshalJSON ¶

func (v NullablePduSessionStatus) MarshalJSON() ([]byte, error)

func (*NullablePduSessionStatus) Set ¶

func (*NullablePduSessionStatus) UnmarshalJSON ¶

func (v *NullablePduSessionStatus) UnmarshalJSON(src []byte) error

func (*NullablePduSessionStatus) Unset ¶

func (v *NullablePduSessionStatus) Unset()

type NullablePduSessionStatusCfg ¶

type NullablePduSessionStatusCfg struct {
	// contains filtered or unexported fields
}

func (NullablePduSessionStatusCfg) Get ¶

func (NullablePduSessionStatusCfg) IsSet ¶

func (NullablePduSessionStatusCfg) MarshalJSON ¶

func (v NullablePduSessionStatusCfg) MarshalJSON() ([]byte, error)

func (*NullablePduSessionStatusCfg) Set ¶

func (*NullablePduSessionStatusCfg) UnmarshalJSON ¶

func (v *NullablePduSessionStatusCfg) UnmarshalJSON(src []byte) error

func (*NullablePduSessionStatusCfg) Unset ¶

func (v *NullablePduSessionStatusCfg) Unset()

type NullablePduSessionType ¶

type NullablePduSessionType struct {
	// contains filtered or unexported fields
}

func NewNullablePduSessionType ¶

func NewNullablePduSessionType(val *PduSessionType) *NullablePduSessionType

func (NullablePduSessionType) Get ¶

func (NullablePduSessionType) IsSet ¶

func (v NullablePduSessionType) IsSet() bool

func (NullablePduSessionType) MarshalJSON ¶

func (v NullablePduSessionType) MarshalJSON() ([]byte, error)

func (*NullablePduSessionType) Set ¶

func (*NullablePduSessionType) UnmarshalJSON ¶

func (v *NullablePduSessionType) UnmarshalJSON(src []byte) error

func (*NullablePduSessionType) Unset ¶

func (v *NullablePduSessionType) Unset()

type NullablePerUeAttribute ¶

type NullablePerUeAttribute struct {
	// contains filtered or unexported fields
}

func NewNullablePerUeAttribute ¶

func NewNullablePerUeAttribute(val *PerUeAttribute) *NullablePerUeAttribute

func (NullablePerUeAttribute) Get ¶

func (NullablePerUeAttribute) IsSet ¶

func (v NullablePerUeAttribute) IsSet() bool

func (NullablePerUeAttribute) MarshalJSON ¶

func (v NullablePerUeAttribute) MarshalJSON() ([]byte, error)

func (*NullablePerUeAttribute) Set ¶

func (*NullablePerUeAttribute) UnmarshalJSON ¶

func (v *NullablePerUeAttribute) UnmarshalJSON(src []byte) error

func (*NullablePerUeAttribute) Unset ¶

func (v *NullablePerUeAttribute) Unset()

type NullablePerfData ¶

type NullablePerfData struct {
	// contains filtered or unexported fields
}

func NewNullablePerfData ¶

func NewNullablePerfData(val *PerfData) *NullablePerfData

func (NullablePerfData) Get ¶

func (v NullablePerfData) Get() *PerfData

func (NullablePerfData) IsSet ¶

func (v NullablePerfData) IsSet() bool

func (NullablePerfData) MarshalJSON ¶

func (v NullablePerfData) MarshalJSON() ([]byte, error)

func (*NullablePerfData) Set ¶

func (v *NullablePerfData) Set(val *PerfData)

func (*NullablePerfData) UnmarshalJSON ¶

func (v *NullablePerfData) UnmarshalJSON(src []byte) error

func (*NullablePerfData) Unset ¶

func (v *NullablePerfData) Unset()

type NullablePerformanceData ¶

type NullablePerformanceData struct {
	// contains filtered or unexported fields
}

func NewNullablePerformanceData ¶

func NewNullablePerformanceData(val *PerformanceData) *NullablePerformanceData

func (NullablePerformanceData) Get ¶

func (NullablePerformanceData) IsSet ¶

func (v NullablePerformanceData) IsSet() bool

func (NullablePerformanceData) MarshalJSON ¶

func (v NullablePerformanceData) MarshalJSON() ([]byte, error)

func (*NullablePerformanceData) Set ¶

func (*NullablePerformanceData) UnmarshalJSON ¶

func (v *NullablePerformanceData) UnmarshalJSON(src []byte) error

func (*NullablePerformanceData) Unset ¶

func (v *NullablePerformanceData) Unset()

type NullablePerformanceDataCollection ¶

type NullablePerformanceDataCollection struct {
	// contains filtered or unexported fields
}

func (NullablePerformanceDataCollection) Get ¶

func (NullablePerformanceDataCollection) IsSet ¶

func (NullablePerformanceDataCollection) MarshalJSON ¶

func (v NullablePerformanceDataCollection) MarshalJSON() ([]byte, error)

func (*NullablePerformanceDataCollection) Set ¶

func (*NullablePerformanceDataCollection) UnmarshalJSON ¶

func (v *NullablePerformanceDataCollection) UnmarshalJSON(src []byte) error

func (*NullablePerformanceDataCollection) Unset ¶

type NullablePerformanceDataInfo ¶

type NullablePerformanceDataInfo struct {
	// contains filtered or unexported fields
}

func (NullablePerformanceDataInfo) Get ¶

func (NullablePerformanceDataInfo) IsSet ¶

func (NullablePerformanceDataInfo) MarshalJSON ¶

func (v NullablePerformanceDataInfo) MarshalJSON() ([]byte, error)

func (*NullablePerformanceDataInfo) Set ¶

func (*NullablePerformanceDataInfo) UnmarshalJSON ¶

func (v *NullablePerformanceDataInfo) UnmarshalJSON(src []byte) error

func (*NullablePerformanceDataInfo) Unset ¶

func (v *NullablePerformanceDataInfo) Unset()

type NullablePfdData ¶

type NullablePfdData struct {
	// contains filtered or unexported fields
}

func NewNullablePfdData ¶

func NewNullablePfdData(val *PfdData) *NullablePfdData

func (NullablePfdData) Get ¶

func (v NullablePfdData) Get() *PfdData

func (NullablePfdData) IsSet ¶

func (v NullablePfdData) IsSet() bool

func (NullablePfdData) MarshalJSON ¶

func (v NullablePfdData) MarshalJSON() ([]byte, error)

func (*NullablePfdData) Set ¶

func (v *NullablePfdData) Set(val *PfdData)

func (*NullablePfdData) UnmarshalJSON ¶

func (v *NullablePfdData) UnmarshalJSON(src []byte) error

func (*NullablePfdData) Unset ¶

func (v *NullablePfdData) Unset()

type NullablePlmnId ¶

type NullablePlmnId struct {
	// contains filtered or unexported fields
}

func NewNullablePlmnId ¶

func NewNullablePlmnId(val *PlmnId) *NullablePlmnId

func (NullablePlmnId) Get ¶

func (v NullablePlmnId) Get() *PlmnId

func (NullablePlmnId) IsSet ¶

func (v NullablePlmnId) IsSet() bool

func (NullablePlmnId) MarshalJSON ¶

func (v NullablePlmnId) MarshalJSON() ([]byte, error)

func (*NullablePlmnId) Set ¶

func (v *NullablePlmnId) Set(val *PlmnId)

func (*NullablePlmnId) UnmarshalJSON ¶

func (v *NullablePlmnId) UnmarshalJSON(src []byte) error

func (*NullablePlmnId) Unset ¶

func (v *NullablePlmnId) Unset()

type NullablePlmnIdNid ¶

type NullablePlmnIdNid struct {
	// contains filtered or unexported fields
}

func NewNullablePlmnIdNid ¶

func NewNullablePlmnIdNid(val *PlmnIdNid) *NullablePlmnIdNid

func (NullablePlmnIdNid) Get ¶

func (v NullablePlmnIdNid) Get() *PlmnIdNid

func (NullablePlmnIdNid) IsSet ¶

func (v NullablePlmnIdNid) IsSet() bool

func (NullablePlmnIdNid) MarshalJSON ¶

func (v NullablePlmnIdNid) MarshalJSON() ([]byte, error)

func (*NullablePlmnIdNid) Set ¶

func (v *NullablePlmnIdNid) Set(val *PlmnIdNid)

func (*NullablePlmnIdNid) UnmarshalJSON ¶

func (v *NullablePlmnIdNid) UnmarshalJSON(src []byte) error

func (*NullablePlmnIdNid) Unset ¶

func (v *NullablePlmnIdNid) Unset()

type NullablePlmnOauth2 ¶

type NullablePlmnOauth2 struct {
	// contains filtered or unexported fields
}

func NewNullablePlmnOauth2 ¶

func NewNullablePlmnOauth2(val *PlmnOauth2) *NullablePlmnOauth2

func (NullablePlmnOauth2) Get ¶

func (v NullablePlmnOauth2) Get() *PlmnOauth2

func (NullablePlmnOauth2) IsSet ¶

func (v NullablePlmnOauth2) IsSet() bool

func (NullablePlmnOauth2) MarshalJSON ¶

func (v NullablePlmnOauth2) MarshalJSON() ([]byte, error)

func (*NullablePlmnOauth2) Set ¶

func (v *NullablePlmnOauth2) Set(val *PlmnOauth2)

func (*NullablePlmnOauth2) UnmarshalJSON ¶

func (v *NullablePlmnOauth2) UnmarshalJSON(src []byte) error

func (*NullablePlmnOauth2) Unset ¶

func (v *NullablePlmnOauth2) Unset()

type NullablePlmnRange ¶

type NullablePlmnRange struct {
	// contains filtered or unexported fields
}

func NewNullablePlmnRange ¶

func NewNullablePlmnRange(val *PlmnRange) *NullablePlmnRange

func (NullablePlmnRange) Get ¶

func (v NullablePlmnRange) Get() *PlmnRange

func (NullablePlmnRange) IsSet ¶

func (v NullablePlmnRange) IsSet() bool

func (NullablePlmnRange) MarshalJSON ¶

func (v NullablePlmnRange) MarshalJSON() ([]byte, error)

func (*NullablePlmnRange) Set ¶

func (v *NullablePlmnRange) Set(val *PlmnRange)

func (*NullablePlmnRange) UnmarshalJSON ¶

func (v *NullablePlmnRange) UnmarshalJSON(src []byte) error

func (*NullablePlmnRange) Unset ¶

func (v *NullablePlmnRange) Unset()

type NullablePlmnSnssai ¶

type NullablePlmnSnssai struct {
	// contains filtered or unexported fields
}

func NewNullablePlmnSnssai ¶

func NewNullablePlmnSnssai(val *PlmnSnssai) *NullablePlmnSnssai

func (NullablePlmnSnssai) Get ¶

func (v NullablePlmnSnssai) Get() *PlmnSnssai

func (NullablePlmnSnssai) IsSet ¶

func (v NullablePlmnSnssai) IsSet() bool

func (NullablePlmnSnssai) MarshalJSON ¶

func (v NullablePlmnSnssai) MarshalJSON() ([]byte, error)

func (*NullablePlmnSnssai) Set ¶

func (v *NullablePlmnSnssai) Set(val *PlmnSnssai)

func (*NullablePlmnSnssai) UnmarshalJSON ¶

func (v *NullablePlmnSnssai) UnmarshalJSON(src []byte) error

func (*NullablePlmnSnssai) Unset ¶

func (v *NullablePlmnSnssai) Unset()

type NullablePoint ¶

type NullablePoint struct {
	// contains filtered or unexported fields
}

func NewNullablePoint ¶

func NewNullablePoint(val *Point) *NullablePoint

func (NullablePoint) Get ¶

func (v NullablePoint) Get() *Point

func (NullablePoint) IsSet ¶

func (v NullablePoint) IsSet() bool

func (NullablePoint) MarshalJSON ¶

func (v NullablePoint) MarshalJSON() ([]byte, error)

func (*NullablePoint) Set ¶

func (v *NullablePoint) Set(val *Point)

func (*NullablePoint) UnmarshalJSON ¶

func (v *NullablePoint) UnmarshalJSON(src []byte) error

func (*NullablePoint) Unset ¶

func (v *NullablePoint) Unset()

type NullablePointAllOf ¶

type NullablePointAllOf struct {
	// contains filtered or unexported fields
}

func NewNullablePointAllOf ¶

func NewNullablePointAllOf(val *PointAllOf) *NullablePointAllOf

func (NullablePointAllOf) Get ¶

func (v NullablePointAllOf) Get() *PointAllOf

func (NullablePointAllOf) IsSet ¶

func (v NullablePointAllOf) IsSet() bool

func (NullablePointAllOf) MarshalJSON ¶

func (v NullablePointAllOf) MarshalJSON() ([]byte, error)

func (*NullablePointAllOf) Set ¶

func (v *NullablePointAllOf) Set(val *PointAllOf)

func (*NullablePointAllOf) UnmarshalJSON ¶

func (v *NullablePointAllOf) UnmarshalJSON(src []byte) error

func (*NullablePointAllOf) Unset ¶

func (v *NullablePointAllOf) Unset()

type NullablePointAltitude ¶

type NullablePointAltitude struct {
	// contains filtered or unexported fields
}

func NewNullablePointAltitude ¶

func NewNullablePointAltitude(val *PointAltitude) *NullablePointAltitude

func (NullablePointAltitude) Get ¶

func (NullablePointAltitude) IsSet ¶

func (v NullablePointAltitude) IsSet() bool

func (NullablePointAltitude) MarshalJSON ¶

func (v NullablePointAltitude) MarshalJSON() ([]byte, error)

func (*NullablePointAltitude) Set ¶

func (v *NullablePointAltitude) Set(val *PointAltitude)

func (*NullablePointAltitude) UnmarshalJSON ¶

func (v *NullablePointAltitude) UnmarshalJSON(src []byte) error

func (*NullablePointAltitude) Unset ¶

func (v *NullablePointAltitude) Unset()

type NullablePointAltitudeAllOf ¶

type NullablePointAltitudeAllOf struct {
	// contains filtered or unexported fields
}

func NewNullablePointAltitudeAllOf ¶

func NewNullablePointAltitudeAllOf(val *PointAltitudeAllOf) *NullablePointAltitudeAllOf

func (NullablePointAltitudeAllOf) Get ¶

func (NullablePointAltitudeAllOf) IsSet ¶

func (v NullablePointAltitudeAllOf) IsSet() bool

func (NullablePointAltitudeAllOf) MarshalJSON ¶

func (v NullablePointAltitudeAllOf) MarshalJSON() ([]byte, error)

func (*NullablePointAltitudeAllOf) Set ¶

func (*NullablePointAltitudeAllOf) UnmarshalJSON ¶

func (v *NullablePointAltitudeAllOf) UnmarshalJSON(src []byte) error

func (*NullablePointAltitudeAllOf) Unset ¶

func (v *NullablePointAltitudeAllOf) Unset()

type NullablePointAltitudeUncertainty ¶

type NullablePointAltitudeUncertainty struct {
	// contains filtered or unexported fields
}

func (NullablePointAltitudeUncertainty) Get ¶

func (NullablePointAltitudeUncertainty) IsSet ¶

func (NullablePointAltitudeUncertainty) MarshalJSON ¶

func (v NullablePointAltitudeUncertainty) MarshalJSON() ([]byte, error)

func (*NullablePointAltitudeUncertainty) Set ¶

func (*NullablePointAltitudeUncertainty) UnmarshalJSON ¶

func (v *NullablePointAltitudeUncertainty) UnmarshalJSON(src []byte) error

func (*NullablePointAltitudeUncertainty) Unset ¶

type NullablePointAltitudeUncertaintyAllOf ¶

type NullablePointAltitudeUncertaintyAllOf struct {
	// contains filtered or unexported fields
}

func (NullablePointAltitudeUncertaintyAllOf) Get ¶

func (NullablePointAltitudeUncertaintyAllOf) IsSet ¶

func (NullablePointAltitudeUncertaintyAllOf) MarshalJSON ¶

func (v NullablePointAltitudeUncertaintyAllOf) MarshalJSON() ([]byte, error)

func (*NullablePointAltitudeUncertaintyAllOf) Set ¶

func (*NullablePointAltitudeUncertaintyAllOf) UnmarshalJSON ¶

func (v *NullablePointAltitudeUncertaintyAllOf) UnmarshalJSON(src []byte) error

func (*NullablePointAltitudeUncertaintyAllOf) Unset ¶

type NullablePointUncertaintyCircle ¶

type NullablePointUncertaintyCircle struct {
	// contains filtered or unexported fields
}

func (NullablePointUncertaintyCircle) Get ¶

func (NullablePointUncertaintyCircle) IsSet ¶

func (NullablePointUncertaintyCircle) MarshalJSON ¶

func (v NullablePointUncertaintyCircle) MarshalJSON() ([]byte, error)

func (*NullablePointUncertaintyCircle) Set ¶

func (*NullablePointUncertaintyCircle) UnmarshalJSON ¶

func (v *NullablePointUncertaintyCircle) UnmarshalJSON(src []byte) error

func (*NullablePointUncertaintyCircle) Unset ¶

func (v *NullablePointUncertaintyCircle) Unset()

type NullablePointUncertaintyCircleAllOf ¶

type NullablePointUncertaintyCircleAllOf struct {
	// contains filtered or unexported fields
}

func (NullablePointUncertaintyCircleAllOf) Get ¶

func (NullablePointUncertaintyCircleAllOf) IsSet ¶

func (NullablePointUncertaintyCircleAllOf) MarshalJSON ¶

func (v NullablePointUncertaintyCircleAllOf) MarshalJSON() ([]byte, error)

func (*NullablePointUncertaintyCircleAllOf) Set ¶

func (*NullablePointUncertaintyCircleAllOf) UnmarshalJSON ¶

func (v *NullablePointUncertaintyCircleAllOf) UnmarshalJSON(src []byte) error

func (*NullablePointUncertaintyCircleAllOf) Unset ¶

type NullablePointUncertaintyEllipse ¶

type NullablePointUncertaintyEllipse struct {
	// contains filtered or unexported fields
}

func (NullablePointUncertaintyEllipse) Get ¶

func (NullablePointUncertaintyEllipse) IsSet ¶

func (NullablePointUncertaintyEllipse) MarshalJSON ¶

func (v NullablePointUncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*NullablePointUncertaintyEllipse) Set ¶

func (*NullablePointUncertaintyEllipse) UnmarshalJSON ¶

func (v *NullablePointUncertaintyEllipse) UnmarshalJSON(src []byte) error

func (*NullablePointUncertaintyEllipse) Unset ¶

type NullablePointUncertaintyEllipseAllOf ¶

type NullablePointUncertaintyEllipseAllOf struct {
	// contains filtered or unexported fields
}

func (NullablePointUncertaintyEllipseAllOf) Get ¶

func (NullablePointUncertaintyEllipseAllOf) IsSet ¶

func (NullablePointUncertaintyEllipseAllOf) MarshalJSON ¶

func (v NullablePointUncertaintyEllipseAllOf) MarshalJSON() ([]byte, error)

func (*NullablePointUncertaintyEllipseAllOf) Set ¶

func (*NullablePointUncertaintyEllipseAllOf) UnmarshalJSON ¶

func (v *NullablePointUncertaintyEllipseAllOf) UnmarshalJSON(src []byte) error

func (*NullablePointUncertaintyEllipseAllOf) Unset ¶

type NullablePolygon ¶

type NullablePolygon struct {
	// contains filtered or unexported fields
}

func NewNullablePolygon ¶

func NewNullablePolygon(val *Polygon) *NullablePolygon

func (NullablePolygon) Get ¶

func (v NullablePolygon) Get() *Polygon

func (NullablePolygon) IsSet ¶

func (v NullablePolygon) IsSet() bool

func (NullablePolygon) MarshalJSON ¶

func (v NullablePolygon) MarshalJSON() ([]byte, error)

func (*NullablePolygon) Set ¶

func (v *NullablePolygon) Set(val *Polygon)

func (*NullablePolygon) UnmarshalJSON ¶

func (v *NullablePolygon) UnmarshalJSON(src []byte) error

func (*NullablePolygon) Unset ¶

func (v *NullablePolygon) Unset()

type NullablePolygonAllOf ¶

type NullablePolygonAllOf struct {
	// contains filtered or unexported fields
}

func NewNullablePolygonAllOf ¶

func NewNullablePolygonAllOf(val *PolygonAllOf) *NullablePolygonAllOf

func (NullablePolygonAllOf) Get ¶

func (NullablePolygonAllOf) IsSet ¶

func (v NullablePolygonAllOf) IsSet() bool

func (NullablePolygonAllOf) MarshalJSON ¶

func (v NullablePolygonAllOf) MarshalJSON() ([]byte, error)

func (*NullablePolygonAllOf) Set ¶

func (v *NullablePolygonAllOf) Set(val *PolygonAllOf)

func (*NullablePolygonAllOf) UnmarshalJSON ¶

func (v *NullablePolygonAllOf) UnmarshalJSON(src []byte) error

func (*NullablePolygonAllOf) Unset ¶

func (v *NullablePolygonAllOf) Unset()

type NullablePresenceInfo ¶

type NullablePresenceInfo struct {
	// contains filtered or unexported fields
}

func NewNullablePresenceInfo ¶

func NewNullablePresenceInfo(val *PresenceInfo) *NullablePresenceInfo

func (NullablePresenceInfo) Get ¶

func (NullablePresenceInfo) IsSet ¶

func (v NullablePresenceInfo) IsSet() bool

func (NullablePresenceInfo) MarshalJSON ¶

func (v NullablePresenceInfo) MarshalJSON() ([]byte, error)

func (*NullablePresenceInfo) Set ¶

func (v *NullablePresenceInfo) Set(val *PresenceInfo)

func (*NullablePresenceInfo) UnmarshalJSON ¶

func (v *NullablePresenceInfo) UnmarshalJSON(src []byte) error

func (*NullablePresenceInfo) Unset ¶

func (v *NullablePresenceInfo) Unset()

type NullablePresenceState ¶

type NullablePresenceState struct {
	// contains filtered or unexported fields
}

func NewNullablePresenceState ¶

func NewNullablePresenceState(val *PresenceState) *NullablePresenceState

func (NullablePresenceState) Get ¶

func (NullablePresenceState) IsSet ¶

func (v NullablePresenceState) IsSet() bool

func (NullablePresenceState) MarshalJSON ¶

func (v NullablePresenceState) MarshalJSON() ([]byte, error)

func (*NullablePresenceState) Set ¶

func (v *NullablePresenceState) Set(val *PresenceState)

func (*NullablePresenceState) UnmarshalJSON ¶

func (v *NullablePresenceState) UnmarshalJSON(src []byte) error

func (*NullablePresenceState) Unset ¶

func (v *NullablePresenceState) Unset()

type NullablePrevSubInfo ¶

type NullablePrevSubInfo struct {
	// contains filtered or unexported fields
}

func NewNullablePrevSubInfo ¶

func NewNullablePrevSubInfo(val *PrevSubInfo) *NullablePrevSubInfo

func (NullablePrevSubInfo) Get ¶

func (NullablePrevSubInfo) IsSet ¶

func (v NullablePrevSubInfo) IsSet() bool

func (NullablePrevSubInfo) MarshalJSON ¶

func (v NullablePrevSubInfo) MarshalJSON() ([]byte, error)

func (*NullablePrevSubInfo) Set ¶

func (v *NullablePrevSubInfo) Set(val *PrevSubInfo)

func (*NullablePrevSubInfo) UnmarshalJSON ¶

func (v *NullablePrevSubInfo) UnmarshalJSON(src []byte) error

func (*NullablePrevSubInfo) Unset ¶

func (v *NullablePrevSubInfo) Unset()

type NullableProSeCapability ¶

type NullableProSeCapability struct {
	// contains filtered or unexported fields
}

func NewNullableProSeCapability ¶

func NewNullableProSeCapability(val *ProSeCapability) *NullableProSeCapability

func (NullableProSeCapability) Get ¶

func (NullableProSeCapability) IsSet ¶

func (v NullableProSeCapability) IsSet() bool

func (NullableProSeCapability) MarshalJSON ¶

func (v NullableProSeCapability) MarshalJSON() ([]byte, error)

func (*NullableProSeCapability) Set ¶

func (*NullableProSeCapability) UnmarshalJSON ¶

func (v *NullableProSeCapability) UnmarshalJSON(src []byte) error

func (*NullableProSeCapability) Unset ¶

func (v *NullableProSeCapability) Unset()

type NullableProblemDetails ¶

type NullableProblemDetails struct {
	// contains filtered or unexported fields
}

func NewNullableProblemDetails ¶

func NewNullableProblemDetails(val *ProblemDetails) *NullableProblemDetails

func (NullableProblemDetails) Get ¶

func (NullableProblemDetails) IsSet ¶

func (v NullableProblemDetails) IsSet() bool

func (NullableProblemDetails) MarshalJSON ¶

func (v NullableProblemDetails) MarshalJSON() ([]byte, error)

func (*NullableProblemDetails) Set ¶

func (*NullableProblemDetails) UnmarshalJSON ¶

func (v *NullableProblemDetails) UnmarshalJSON(src []byte) error

func (*NullableProblemDetails) Unset ¶

func (v *NullableProblemDetails) Unset()

type NullableProcessingInstruction ¶

type NullableProcessingInstruction struct {
	// contains filtered or unexported fields
}

func (NullableProcessingInstruction) Get ¶

func (NullableProcessingInstruction) IsSet ¶

func (NullableProcessingInstruction) MarshalJSON ¶

func (v NullableProcessingInstruction) MarshalJSON() ([]byte, error)

func (*NullableProcessingInstruction) Set ¶

func (*NullableProcessingInstruction) UnmarshalJSON ¶

func (v *NullableProcessingInstruction) UnmarshalJSON(src []byte) error

func (*NullableProcessingInstruction) Unset ¶

func (v *NullableProcessingInstruction) Unset()

type NullableQosRequirement ¶

type NullableQosRequirement struct {
	// contains filtered or unexported fields
}

func NewNullableQosRequirement ¶

func NewNullableQosRequirement(val *QosRequirement) *NullableQosRequirement

func (NullableQosRequirement) Get ¶

func (NullableQosRequirement) IsSet ¶

func (v NullableQosRequirement) IsSet() bool

func (NullableQosRequirement) MarshalJSON ¶

func (v NullableQosRequirement) MarshalJSON() ([]byte, error)

func (*NullableQosRequirement) Set ¶

func (*NullableQosRequirement) UnmarshalJSON ¶

func (v *NullableQosRequirement) UnmarshalJSON(src []byte) error

func (*NullableQosRequirement) Unset ¶

func (v *NullableQosRequirement) Unset()

type NullableQosResourceType ¶

type NullableQosResourceType struct {
	// contains filtered or unexported fields
}

func NewNullableQosResourceType ¶

func NewNullableQosResourceType(val *QosResourceType) *NullableQosResourceType

func (NullableQosResourceType) Get ¶

func (NullableQosResourceType) IsSet ¶

func (v NullableQosResourceType) IsSet() bool

func (NullableQosResourceType) MarshalJSON ¶

func (v NullableQosResourceType) MarshalJSON() ([]byte, error)

func (*NullableQosResourceType) Set ¶

func (*NullableQosResourceType) UnmarshalJSON ¶

func (v *NullableQosResourceType) UnmarshalJSON(src []byte) error

func (*NullableQosResourceType) Unset ¶

func (v *NullableQosResourceType) Unset()

type NullableQosSustainabilityInfo ¶

type NullableQosSustainabilityInfo struct {
	// contains filtered or unexported fields
}

func (NullableQosSustainabilityInfo) Get ¶

func (NullableQosSustainabilityInfo) IsSet ¶

func (NullableQosSustainabilityInfo) MarshalJSON ¶

func (v NullableQosSustainabilityInfo) MarshalJSON() ([]byte, error)

func (*NullableQosSustainabilityInfo) Set ¶

func (*NullableQosSustainabilityInfo) UnmarshalJSON ¶

func (v *NullableQosSustainabilityInfo) UnmarshalJSON(src []byte) error

func (*NullableQosSustainabilityInfo) Unset ¶

func (v *NullableQosSustainabilityInfo) Unset()

type NullableRankingCriterion ¶

type NullableRankingCriterion struct {
	// contains filtered or unexported fields
}

func NewNullableRankingCriterion ¶

func NewNullableRankingCriterion(val *RankingCriterion) *NullableRankingCriterion

func (NullableRankingCriterion) Get ¶

func (NullableRankingCriterion) IsSet ¶

func (v NullableRankingCriterion) IsSet() bool

func (NullableRankingCriterion) MarshalJSON ¶

func (v NullableRankingCriterion) MarshalJSON() ([]byte, error)

func (*NullableRankingCriterion) Set ¶

func (*NullableRankingCriterion) UnmarshalJSON ¶

func (v *NullableRankingCriterion) UnmarshalJSON(src []byte) error

func (*NullableRankingCriterion) Unset ¶

func (v *NullableRankingCriterion) Unset()

type NullableRatFreqInformation ¶

type NullableRatFreqInformation struct {
	// contains filtered or unexported fields
}

func NewNullableRatFreqInformation ¶

func NewNullableRatFreqInformation(val *RatFreqInformation) *NullableRatFreqInformation

func (NullableRatFreqInformation) Get ¶

func (NullableRatFreqInformation) IsSet ¶

func (v NullableRatFreqInformation) IsSet() bool

func (NullableRatFreqInformation) MarshalJSON ¶

func (v NullableRatFreqInformation) MarshalJSON() ([]byte, error)

func (*NullableRatFreqInformation) Set ¶

func (*NullableRatFreqInformation) UnmarshalJSON ¶

func (v *NullableRatFreqInformation) UnmarshalJSON(src []byte) error

func (*NullableRatFreqInformation) Unset ¶

func (v *NullableRatFreqInformation) Unset()

type NullableRatType ¶

type NullableRatType struct {
	// contains filtered or unexported fields
}

func NewNullableRatType ¶

func NewNullableRatType(val *RatType) *NullableRatType

func (NullableRatType) Get ¶

func (v NullableRatType) Get() *RatType

func (NullableRatType) IsSet ¶

func (v NullableRatType) IsSet() bool

func (NullableRatType) MarshalJSON ¶

func (v NullableRatType) MarshalJSON() ([]byte, error)

func (*NullableRatType) Set ¶

func (v *NullableRatType) Set(val *RatType)

func (*NullableRatType) UnmarshalJSON ¶

func (v *NullableRatType) UnmarshalJSON(src []byte) error

func (*NullableRatType) Unset ¶

func (v *NullableRatType) Unset()

type NullableReachabilityFilter ¶

type NullableReachabilityFilter struct {
	// contains filtered or unexported fields
}

func NewNullableReachabilityFilter ¶

func NewNullableReachabilityFilter(val *ReachabilityFilter) *NullableReachabilityFilter

func (NullableReachabilityFilter) Get ¶

func (NullableReachabilityFilter) IsSet ¶

func (v NullableReachabilityFilter) IsSet() bool

func (NullableReachabilityFilter) MarshalJSON ¶

func (v NullableReachabilityFilter) MarshalJSON() ([]byte, error)

func (*NullableReachabilityFilter) Set ¶

func (*NullableReachabilityFilter) UnmarshalJSON ¶

func (v *NullableReachabilityFilter) UnmarshalJSON(src []byte) error

func (*NullableReachabilityFilter) Unset ¶

func (v *NullableReachabilityFilter) Unset()

type NullableReachabilityForDataConfiguration ¶

type NullableReachabilityForDataConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableReachabilityForDataConfiguration) Get ¶

func (NullableReachabilityForDataConfiguration) IsSet ¶

func (NullableReachabilityForDataConfiguration) MarshalJSON ¶

func (*NullableReachabilityForDataConfiguration) Set ¶

func (*NullableReachabilityForDataConfiguration) UnmarshalJSON ¶

func (v *NullableReachabilityForDataConfiguration) UnmarshalJSON(src []byte) error

func (*NullableReachabilityForDataConfiguration) Unset ¶

type NullableReachabilityForDataReportConfig ¶

type NullableReachabilityForDataReportConfig struct {
	// contains filtered or unexported fields
}

func (NullableReachabilityForDataReportConfig) Get ¶

func (NullableReachabilityForDataReportConfig) IsSet ¶

func (NullableReachabilityForDataReportConfig) MarshalJSON ¶

func (v NullableReachabilityForDataReportConfig) MarshalJSON() ([]byte, error)

func (*NullableReachabilityForDataReportConfig) Set ¶

func (*NullableReachabilityForDataReportConfig) UnmarshalJSON ¶

func (v *NullableReachabilityForDataReportConfig) UnmarshalJSON(src []byte) error

func (*NullableReachabilityForDataReportConfig) Unset ¶

type NullableReachabilityForSmsConfiguration ¶

type NullableReachabilityForSmsConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableReachabilityForSmsConfiguration) Get ¶

func (NullableReachabilityForSmsConfiguration) IsSet ¶

func (NullableReachabilityForSmsConfiguration) MarshalJSON ¶

func (v NullableReachabilityForSmsConfiguration) MarshalJSON() ([]byte, error)

func (*NullableReachabilityForSmsConfiguration) Set ¶

func (*NullableReachabilityForSmsConfiguration) UnmarshalJSON ¶

func (v *NullableReachabilityForSmsConfiguration) UnmarshalJSON(src []byte) error

func (*NullableReachabilityForSmsConfiguration) Unset ¶

type NullableReachabilityForSmsReport ¶

type NullableReachabilityForSmsReport struct {
	// contains filtered or unexported fields
}

func (NullableReachabilityForSmsReport) Get ¶

func (NullableReachabilityForSmsReport) IsSet ¶

func (NullableReachabilityForSmsReport) MarshalJSON ¶

func (v NullableReachabilityForSmsReport) MarshalJSON() ([]byte, error)

func (*NullableReachabilityForSmsReport) Set ¶

func (*NullableReachabilityForSmsReport) UnmarshalJSON ¶

func (v *NullableReachabilityForSmsReport) UnmarshalJSON(src []byte) error

func (*NullableReachabilityForSmsReport) Unset ¶

type NullableReachabilityReport ¶

type NullableReachabilityReport struct {
	// contains filtered or unexported fields
}

func NewNullableReachabilityReport ¶

func NewNullableReachabilityReport(val *ReachabilityReport) *NullableReachabilityReport

func (NullableReachabilityReport) Get ¶

func (NullableReachabilityReport) IsSet ¶

func (v NullableReachabilityReport) IsSet() bool

func (NullableReachabilityReport) MarshalJSON ¶

func (v NullableReachabilityReport) MarshalJSON() ([]byte, error)

func (*NullableReachabilityReport) Set ¶

func (*NullableReachabilityReport) UnmarshalJSON ¶

func (v *NullableReachabilityReport) UnmarshalJSON(src []byte) error

func (*NullableReachabilityReport) Unset ¶

func (v *NullableReachabilityReport) Unset()

type NullableRedTransExpOrderingCriterion ¶

type NullableRedTransExpOrderingCriterion struct {
	// contains filtered or unexported fields
}

func (NullableRedTransExpOrderingCriterion) Get ¶

func (NullableRedTransExpOrderingCriterion) IsSet ¶

func (NullableRedTransExpOrderingCriterion) MarshalJSON ¶

func (v NullableRedTransExpOrderingCriterion) MarshalJSON() ([]byte, error)

func (*NullableRedTransExpOrderingCriterion) Set ¶

func (*NullableRedTransExpOrderingCriterion) UnmarshalJSON ¶

func (v *NullableRedTransExpOrderingCriterion) UnmarshalJSON(src []byte) error

func (*NullableRedTransExpOrderingCriterion) Unset ¶

type NullableRedirectResponse ¶

type NullableRedirectResponse struct {
	// contains filtered or unexported fields
}

func NewNullableRedirectResponse ¶

func NewNullableRedirectResponse(val *RedirectResponse) *NullableRedirectResponse

func (NullableRedirectResponse) Get ¶

func (NullableRedirectResponse) IsSet ¶

func (v NullableRedirectResponse) IsSet() bool

func (NullableRedirectResponse) MarshalJSON ¶

func (v NullableRedirectResponse) MarshalJSON() ([]byte, error)

func (*NullableRedirectResponse) Set ¶

func (*NullableRedirectResponse) UnmarshalJSON ¶

func (v *NullableRedirectResponse) UnmarshalJSON(src []byte) error

func (*NullableRedirectResponse) Unset ¶

func (v *NullableRedirectResponse) Unset()

type NullableRedundantTransmissionExpInfo ¶

type NullableRedundantTransmissionExpInfo struct {
	// contains filtered or unexported fields
}

func (NullableRedundantTransmissionExpInfo) Get ¶

func (NullableRedundantTransmissionExpInfo) IsSet ¶

func (NullableRedundantTransmissionExpInfo) MarshalJSON ¶

func (v NullableRedundantTransmissionExpInfo) MarshalJSON() ([]byte, error)

func (*NullableRedundantTransmissionExpInfo) Set ¶

func (*NullableRedundantTransmissionExpInfo) UnmarshalJSON ¶

func (v *NullableRedundantTransmissionExpInfo) UnmarshalJSON(src []byte) error

func (*NullableRedundantTransmissionExpInfo) Unset ¶

type NullableRedundantTransmissionExpPerTS ¶

type NullableRedundantTransmissionExpPerTS struct {
	// contains filtered or unexported fields
}

func (NullableRedundantTransmissionExpPerTS) Get ¶

func (NullableRedundantTransmissionExpPerTS) IsSet ¶

func (NullableRedundantTransmissionExpPerTS) MarshalJSON ¶

func (v NullableRedundantTransmissionExpPerTS) MarshalJSON() ([]byte, error)

func (*NullableRedundantTransmissionExpPerTS) Set ¶

func (*NullableRedundantTransmissionExpPerTS) UnmarshalJSON ¶

func (v *NullableRedundantTransmissionExpPerTS) UnmarshalJSON(src []byte) error

func (*NullableRedundantTransmissionExpPerTS) Unset ¶

type NullableRedundantTransmissionExpReq ¶

type NullableRedundantTransmissionExpReq struct {
	// contains filtered or unexported fields
}

func (NullableRedundantTransmissionExpReq) Get ¶

func (NullableRedundantTransmissionExpReq) IsSet ¶

func (NullableRedundantTransmissionExpReq) MarshalJSON ¶

func (v NullableRedundantTransmissionExpReq) MarshalJSON() ([]byte, error)

func (*NullableRedundantTransmissionExpReq) Set ¶

func (*NullableRedundantTransmissionExpReq) UnmarshalJSON ¶

func (v *NullableRedundantTransmissionExpReq) UnmarshalJSON(src []byte) error

func (*NullableRedundantTransmissionExpReq) Unset ¶

type NullableRelativeCartesianLocation ¶

type NullableRelativeCartesianLocation struct {
	// contains filtered or unexported fields
}

func (NullableRelativeCartesianLocation) Get ¶

func (NullableRelativeCartesianLocation) IsSet ¶

func (NullableRelativeCartesianLocation) MarshalJSON ¶

func (v NullableRelativeCartesianLocation) MarshalJSON() ([]byte, error)

func (*NullableRelativeCartesianLocation) Set ¶

func (*NullableRelativeCartesianLocation) UnmarshalJSON ¶

func (v *NullableRelativeCartesianLocation) UnmarshalJSON(src []byte) error

func (*NullableRelativeCartesianLocation) Unset ¶

type NullableReport ¶

type NullableReport struct {
	// contains filtered or unexported fields
}

func NewNullableReport ¶

func NewNullableReport(val *Report) *NullableReport

func (NullableReport) Get ¶

func (v NullableReport) Get() *Report

func (NullableReport) IsSet ¶

func (v NullableReport) IsSet() bool

func (NullableReport) MarshalJSON ¶

func (v NullableReport) MarshalJSON() ([]byte, error)

func (*NullableReport) Set ¶

func (v *NullableReport) Set(val *Report)

func (*NullableReport) UnmarshalJSON ¶

func (v *NullableReport) UnmarshalJSON(src []byte) error

func (*NullableReport) Unset ¶

func (v *NullableReport) Unset()

type NullableReportingInformation ¶

type NullableReportingInformation struct {
	// contains filtered or unexported fields
}

func (NullableReportingInformation) Get ¶

func (NullableReportingInformation) IsSet ¶

func (NullableReportingInformation) MarshalJSON ¶

func (v NullableReportingInformation) MarshalJSON() ([]byte, error)

func (*NullableReportingInformation) Set ¶

func (*NullableReportingInformation) UnmarshalJSON ¶

func (v *NullableReportingInformation) UnmarshalJSON(src []byte) error

func (*NullableReportingInformation) Unset ¶

func (v *NullableReportingInformation) Unset()

type NullableReportingOptions ¶

type NullableReportingOptions struct {
	// contains filtered or unexported fields
}

func NewNullableReportingOptions ¶

func NewNullableReportingOptions(val *ReportingOptions) *NullableReportingOptions

func (NullableReportingOptions) Get ¶

func (NullableReportingOptions) IsSet ¶

func (v NullableReportingOptions) IsSet() bool

func (NullableReportingOptions) MarshalJSON ¶

func (v NullableReportingOptions) MarshalJSON() ([]byte, error)

func (*NullableReportingOptions) Set ¶

func (*NullableReportingOptions) UnmarshalJSON ¶

func (v *NullableReportingOptions) UnmarshalJSON(src []byte) error

func (*NullableReportingOptions) Unset ¶

func (v *NullableReportingOptions) Unset()

type NullableReportingOptions1 ¶

type NullableReportingOptions1 struct {
	// contains filtered or unexported fields
}

func NewNullableReportingOptions1 ¶

func NewNullableReportingOptions1(val *ReportingOptions1) *NullableReportingOptions1

func (NullableReportingOptions1) Get ¶

func (NullableReportingOptions1) IsSet ¶

func (v NullableReportingOptions1) IsSet() bool

func (NullableReportingOptions1) MarshalJSON ¶

func (v NullableReportingOptions1) MarshalJSON() ([]byte, error)

func (*NullableReportingOptions1) Set ¶

func (*NullableReportingOptions1) UnmarshalJSON ¶

func (v *NullableReportingOptions1) UnmarshalJSON(src []byte) error

func (*NullableReportingOptions1) Unset ¶

func (v *NullableReportingOptions1) Unset()

type NullableResourceUsage ¶

type NullableResourceUsage struct {
	// contains filtered or unexported fields
}

func NewNullableResourceUsage ¶

func NewNullableResourceUsage(val *ResourceUsage) *NullableResourceUsage

func (NullableResourceUsage) Get ¶

func (NullableResourceUsage) IsSet ¶

func (v NullableResourceUsage) IsSet() bool

func (NullableResourceUsage) MarshalJSON ¶

func (v NullableResourceUsage) MarshalJSON() ([]byte, error)

func (*NullableResourceUsage) Set ¶

func (v *NullableResourceUsage) Set(val *ResourceUsage)

func (*NullableResourceUsage) UnmarshalJSON ¶

func (v *NullableResourceUsage) UnmarshalJSON(src []byte) error

func (*NullableResourceUsage) Unset ¶

func (v *NullableResourceUsage) Unset()

type NullableRetainabilityThreshold ¶

type NullableRetainabilityThreshold struct {
	// contains filtered or unexported fields
}

func (NullableRetainabilityThreshold) Get ¶

func (NullableRetainabilityThreshold) IsSet ¶

func (NullableRetainabilityThreshold) MarshalJSON ¶

func (v NullableRetainabilityThreshold) MarshalJSON() ([]byte, error)

func (*NullableRetainabilityThreshold) Set ¶

func (*NullableRetainabilityThreshold) UnmarshalJSON ¶

func (v *NullableRetainabilityThreshold) UnmarshalJSON(src []byte) error

func (*NullableRetainabilityThreshold) Unset ¶

func (v *NullableRetainabilityThreshold) Unset()

type NullableRmInfo ¶

type NullableRmInfo struct {
	// contains filtered or unexported fields
}

func NewNullableRmInfo ¶

func NewNullableRmInfo(val *RmInfo) *NullableRmInfo

func (NullableRmInfo) Get ¶

func (v NullableRmInfo) Get() *RmInfo

func (NullableRmInfo) IsSet ¶

func (v NullableRmInfo) IsSet() bool

func (NullableRmInfo) MarshalJSON ¶

func (v NullableRmInfo) MarshalJSON() ([]byte, error)

func (*NullableRmInfo) Set ¶

func (v *NullableRmInfo) Set(val *RmInfo)

func (*NullableRmInfo) UnmarshalJSON ¶

func (v *NullableRmInfo) UnmarshalJSON(src []byte) error

func (*NullableRmInfo) Unset ¶

func (v *NullableRmInfo) Unset()

type NullableRmState ¶

type NullableRmState struct {
	// contains filtered or unexported fields
}

func NewNullableRmState ¶

func NewNullableRmState(val *RmState) *NullableRmState

func (NullableRmState) Get ¶

func (v NullableRmState) Get() *RmState

func (NullableRmState) IsSet ¶

func (v NullableRmState) IsSet() bool

func (NullableRmState) MarshalJSON ¶

func (v NullableRmState) MarshalJSON() ([]byte, error)

func (*NullableRmState) Set ¶

func (v *NullableRmState) Set(val *RmState)

func (*NullableRmState) UnmarshalJSON ¶

func (v *NullableRmState) UnmarshalJSON(src []byte) error

func (*NullableRmState) Unset ¶

func (v *NullableRmState) Unset()

type NullableRoamingStatusReport ¶

type NullableRoamingStatusReport struct {
	// contains filtered or unexported fields
}

func (NullableRoamingStatusReport) Get ¶

func (NullableRoamingStatusReport) IsSet ¶

func (NullableRoamingStatusReport) MarshalJSON ¶

func (v NullableRoamingStatusReport) MarshalJSON() ([]byte, error)

func (*NullableRoamingStatusReport) Set ¶

func (*NullableRoamingStatusReport) UnmarshalJSON ¶

func (v *NullableRoamingStatusReport) UnmarshalJSON(src []byte) error

func (*NullableRoamingStatusReport) Unset ¶

func (v *NullableRoamingStatusReport) Unset()

type NullableRouteInformation ¶

type NullableRouteInformation struct {
	// contains filtered or unexported fields
}

func NewNullableRouteInformation ¶

func NewNullableRouteInformation(val *RouteInformation) *NullableRouteInformation

func (NullableRouteInformation) Get ¶

func (NullableRouteInformation) IsSet ¶

func (v NullableRouteInformation) IsSet() bool

func (NullableRouteInformation) MarshalJSON ¶

func (v NullableRouteInformation) MarshalJSON() ([]byte, error)

func (*NullableRouteInformation) Set ¶

func (*NullableRouteInformation) UnmarshalJSON ¶

func (v *NullableRouteInformation) UnmarshalJSON(src []byte) error

func (*NullableRouteInformation) Unset ¶

func (v *NullableRouteInformation) Unset()

type NullableRouteToLocation ¶

type NullableRouteToLocation struct {
	// contains filtered or unexported fields
}

func NewNullableRouteToLocation ¶

func NewNullableRouteToLocation(val *RouteToLocation) *NullableRouteToLocation

func (NullableRouteToLocation) Get ¶

func (NullableRouteToLocation) IsSet ¶

func (v NullableRouteToLocation) IsSet() bool

func (NullableRouteToLocation) MarshalJSON ¶

func (v NullableRouteToLocation) MarshalJSON() ([]byte, error)

func (*NullableRouteToLocation) Set ¶

func (*NullableRouteToLocation) UnmarshalJSON ¶

func (v *NullableRouteToLocation) UnmarshalJSON(src []byte) error

func (*NullableRouteToLocation) Unset ¶

func (v *NullableRouteToLocation) Unset()

type NullableRoutingAreaId ¶

type NullableRoutingAreaId struct {
	// contains filtered or unexported fields
}

func NewNullableRoutingAreaId ¶

func NewNullableRoutingAreaId(val *RoutingAreaId) *NullableRoutingAreaId

func (NullableRoutingAreaId) Get ¶

func (NullableRoutingAreaId) IsSet ¶

func (v NullableRoutingAreaId) IsSet() bool

func (NullableRoutingAreaId) MarshalJSON ¶

func (v NullableRoutingAreaId) MarshalJSON() ([]byte, error)

func (*NullableRoutingAreaId) Set ¶

func (v *NullableRoutingAreaId) Set(val *RoutingAreaId)

func (*NullableRoutingAreaId) UnmarshalJSON ¶

func (v *NullableRoutingAreaId) UnmarshalJSON(src []byte) error

func (*NullableRoutingAreaId) Unset ¶

func (v *NullableRoutingAreaId) Unset()

type NullableSACEvent ¶

type NullableSACEvent struct {
	// contains filtered or unexported fields
}

func NewNullableSACEvent ¶

func NewNullableSACEvent(val *SACEvent) *NullableSACEvent

func (NullableSACEvent) Get ¶

func (v NullableSACEvent) Get() *SACEvent

func (NullableSACEvent) IsSet ¶

func (v NullableSACEvent) IsSet() bool

func (NullableSACEvent) MarshalJSON ¶

func (v NullableSACEvent) MarshalJSON() ([]byte, error)

func (*NullableSACEvent) Set ¶

func (v *NullableSACEvent) Set(val *SACEvent)

func (*NullableSACEvent) UnmarshalJSON ¶

func (v *NullableSACEvent) UnmarshalJSON(src []byte) error

func (*NullableSACEvent) Unset ¶

func (v *NullableSACEvent) Unset()

type NullableSACEventReport ¶

type NullableSACEventReport struct {
	// contains filtered or unexported fields
}

func NewNullableSACEventReport ¶

func NewNullableSACEventReport(val *SACEventReport) *NullableSACEventReport

func (NullableSACEventReport) Get ¶

func (NullableSACEventReport) IsSet ¶

func (v NullableSACEventReport) IsSet() bool

func (NullableSACEventReport) MarshalJSON ¶

func (v NullableSACEventReport) MarshalJSON() ([]byte, error)

func (*NullableSACEventReport) Set ¶

func (*NullableSACEventReport) UnmarshalJSON ¶

func (v *NullableSACEventReport) UnmarshalJSON(src []byte) error

func (*NullableSACEventReport) Unset ¶

func (v *NullableSACEventReport) Unset()

type NullableSACEventReportItem ¶

type NullableSACEventReportItem struct {
	// contains filtered or unexported fields
}

func NewNullableSACEventReportItem ¶

func NewNullableSACEventReportItem(val *SACEventReportItem) *NullableSACEventReportItem

func (NullableSACEventReportItem) Get ¶

func (NullableSACEventReportItem) IsSet ¶

func (v NullableSACEventReportItem) IsSet() bool

func (NullableSACEventReportItem) MarshalJSON ¶

func (v NullableSACEventReportItem) MarshalJSON() ([]byte, error)

func (*NullableSACEventReportItem) Set ¶

func (*NullableSACEventReportItem) UnmarshalJSON ¶

func (v *NullableSACEventReportItem) UnmarshalJSON(src []byte) error

func (*NullableSACEventReportItem) Unset ¶

func (v *NullableSACEventReportItem) Unset()

type NullableSACEventState ¶

type NullableSACEventState struct {
	// contains filtered or unexported fields
}

func NewNullableSACEventState ¶

func NewNullableSACEventState(val *SACEventState) *NullableSACEventState

func (NullableSACEventState) Get ¶

func (NullableSACEventState) IsSet ¶

func (v NullableSACEventState) IsSet() bool

func (NullableSACEventState) MarshalJSON ¶

func (v NullableSACEventState) MarshalJSON() ([]byte, error)

func (*NullableSACEventState) Set ¶

func (v *NullableSACEventState) Set(val *SACEventState)

func (*NullableSACEventState) UnmarshalJSON ¶

func (v *NullableSACEventState) UnmarshalJSON(src []byte) error

func (*NullableSACEventState) Unset ¶

func (v *NullableSACEventState) Unset()

type NullableSACEventStatus ¶

type NullableSACEventStatus struct {
	// contains filtered or unexported fields
}

func NewNullableSACEventStatus ¶

func NewNullableSACEventStatus(val *SACEventStatus) *NullableSACEventStatus

func (NullableSACEventStatus) Get ¶

func (NullableSACEventStatus) IsSet ¶

func (v NullableSACEventStatus) IsSet() bool

func (NullableSACEventStatus) MarshalJSON ¶

func (v NullableSACEventStatus) MarshalJSON() ([]byte, error)

func (*NullableSACEventStatus) Set ¶

func (*NullableSACEventStatus) UnmarshalJSON ¶

func (v *NullableSACEventStatus) UnmarshalJSON(src []byte) error

func (*NullableSACEventStatus) Unset ¶

func (v *NullableSACEventStatus) Unset()

type NullableSACEventSubscription ¶

type NullableSACEventSubscription struct {
	// contains filtered or unexported fields
}

func (NullableSACEventSubscription) Get ¶

func (NullableSACEventSubscription) IsSet ¶

func (NullableSACEventSubscription) MarshalJSON ¶

func (v NullableSACEventSubscription) MarshalJSON() ([]byte, error)

func (*NullableSACEventSubscription) Set ¶

func (*NullableSACEventSubscription) UnmarshalJSON ¶

func (v *NullableSACEventSubscription) UnmarshalJSON(src []byte) error

func (*NullableSACEventSubscription) Unset ¶

func (v *NullableSACEventSubscription) Unset()

type NullableSACEventTrigger ¶

type NullableSACEventTrigger struct {
	// contains filtered or unexported fields
}

func NewNullableSACEventTrigger ¶

func NewNullableSACEventTrigger(val *SACEventTrigger) *NullableSACEventTrigger

func (NullableSACEventTrigger) Get ¶

func (NullableSACEventTrigger) IsSet ¶

func (v NullableSACEventTrigger) IsSet() bool

func (NullableSACEventTrigger) MarshalJSON ¶

func (v NullableSACEventTrigger) MarshalJSON() ([]byte, error)

func (*NullableSACEventTrigger) Set ¶

func (*NullableSACEventTrigger) UnmarshalJSON ¶

func (v *NullableSACEventTrigger) UnmarshalJSON(src []byte) error

func (*NullableSACEventTrigger) Unset ¶

func (v *NullableSACEventTrigger) Unset()

type NullableSACEventType ¶

type NullableSACEventType struct {
	// contains filtered or unexported fields
}

func NewNullableSACEventType ¶

func NewNullableSACEventType(val *SACEventType) *NullableSACEventType

func (NullableSACEventType) Get ¶

func (NullableSACEventType) IsSet ¶

func (v NullableSACEventType) IsSet() bool

func (NullableSACEventType) MarshalJSON ¶

func (v NullableSACEventType) MarshalJSON() ([]byte, error)

func (*NullableSACEventType) Set ¶

func (v *NullableSACEventType) Set(val *SACEventType)

func (*NullableSACEventType) UnmarshalJSON ¶

func (v *NullableSACEventType) UnmarshalJSON(src []byte) error

func (*NullableSACEventType) Unset ¶

func (v *NullableSACEventType) Unset()

type NullableSACInfo ¶

type NullableSACInfo struct {
	// contains filtered or unexported fields
}

func NewNullableSACInfo ¶

func NewNullableSACInfo(val *SACInfo) *NullableSACInfo

func (NullableSACInfo) Get ¶

func (v NullableSACInfo) Get() *SACInfo

func (NullableSACInfo) IsSet ¶

func (v NullableSACInfo) IsSet() bool

func (NullableSACInfo) MarshalJSON ¶

func (v NullableSACInfo) MarshalJSON() ([]byte, error)

func (*NullableSACInfo) Set ¶

func (v *NullableSACInfo) Set(val *SACInfo)

func (*NullableSACInfo) UnmarshalJSON ¶

func (v *NullableSACInfo) UnmarshalJSON(src []byte) error

func (*NullableSACInfo) Unset ¶

func (v *NullableSACInfo) Unset()

type NullableScheduledCommunicationTime ¶

type NullableScheduledCommunicationTime struct {
	// contains filtered or unexported fields
}

func (NullableScheduledCommunicationTime) Get ¶

func (NullableScheduledCommunicationTime) IsSet ¶

func (NullableScheduledCommunicationTime) MarshalJSON ¶

func (v NullableScheduledCommunicationTime) MarshalJSON() ([]byte, error)

func (*NullableScheduledCommunicationTime) Set ¶

func (*NullableScheduledCommunicationTime) UnmarshalJSON ¶

func (v *NullableScheduledCommunicationTime) UnmarshalJSON(src []byte) error

func (*NullableScheduledCommunicationTime) Unset ¶

type NullableScheduledCommunicationTime1 ¶

type NullableScheduledCommunicationTime1 struct {
	// contains filtered or unexported fields
}

func (NullableScheduledCommunicationTime1) Get ¶

func (NullableScheduledCommunicationTime1) IsSet ¶

func (NullableScheduledCommunicationTime1) MarshalJSON ¶

func (v NullableScheduledCommunicationTime1) MarshalJSON() ([]byte, error)

func (*NullableScheduledCommunicationTime1) Set ¶

func (*NullableScheduledCommunicationTime1) UnmarshalJSON ¶

func (v *NullableScheduledCommunicationTime1) UnmarshalJSON(src []byte) error

func (*NullableScheduledCommunicationTime1) Unset ¶

type NullableScheduledCommunicationType ¶

type NullableScheduledCommunicationType struct {
	// contains filtered or unexported fields
}

func (NullableScheduledCommunicationType) Get ¶

func (NullableScheduledCommunicationType) IsSet ¶

func (NullableScheduledCommunicationType) MarshalJSON ¶

func (v NullableScheduledCommunicationType) MarshalJSON() ([]byte, error)

func (*NullableScheduledCommunicationType) Set ¶

func (*NullableScheduledCommunicationType) UnmarshalJSON ¶

func (v *NullableScheduledCommunicationType) UnmarshalJSON(src []byte) error

func (*NullableScheduledCommunicationType) Unset ¶

type NullableScpCapability ¶

type NullableScpCapability struct {
	// contains filtered or unexported fields
}

func NewNullableScpCapability ¶

func NewNullableScpCapability(val *ScpCapability) *NullableScpCapability

func (NullableScpCapability) Get ¶

func (NullableScpCapability) IsSet ¶

func (v NullableScpCapability) IsSet() bool

func (NullableScpCapability) MarshalJSON ¶

func (v NullableScpCapability) MarshalJSON() ([]byte, error)

func (*NullableScpCapability) Set ¶

func (v *NullableScpCapability) Set(val *ScpCapability)

func (*NullableScpCapability) UnmarshalJSON ¶

func (v *NullableScpCapability) UnmarshalJSON(src []byte) error

func (*NullableScpCapability) Unset ¶

func (v *NullableScpCapability) Unset()

type NullableScpDomainCond ¶

type NullableScpDomainCond struct {
	// contains filtered or unexported fields
}

func NewNullableScpDomainCond ¶

func NewNullableScpDomainCond(val *ScpDomainCond) *NullableScpDomainCond

func (NullableScpDomainCond) Get ¶

func (NullableScpDomainCond) IsSet ¶

func (v NullableScpDomainCond) IsSet() bool

func (NullableScpDomainCond) MarshalJSON ¶

func (v NullableScpDomainCond) MarshalJSON() ([]byte, error)

func (*NullableScpDomainCond) Set ¶

func (v *NullableScpDomainCond) Set(val *ScpDomainCond)

func (*NullableScpDomainCond) UnmarshalJSON ¶

func (v *NullableScpDomainCond) UnmarshalJSON(src []byte) error

func (*NullableScpDomainCond) Unset ¶

func (v *NullableScpDomainCond) Unset()

type NullableScpDomainInfo ¶

type NullableScpDomainInfo struct {
	// contains filtered or unexported fields
}

func NewNullableScpDomainInfo ¶

func NewNullableScpDomainInfo(val *ScpDomainInfo) *NullableScpDomainInfo

func (NullableScpDomainInfo) Get ¶

func (NullableScpDomainInfo) IsSet ¶

func (v NullableScpDomainInfo) IsSet() bool

func (NullableScpDomainInfo) MarshalJSON ¶

func (v NullableScpDomainInfo) MarshalJSON() ([]byte, error)

func (*NullableScpDomainInfo) Set ¶

func (v *NullableScpDomainInfo) Set(val *ScpDomainInfo)

func (*NullableScpDomainInfo) UnmarshalJSON ¶

func (v *NullableScpDomainInfo) UnmarshalJSON(src []byte) error

func (*NullableScpDomainInfo) Unset ¶

func (v *NullableScpDomainInfo) Unset()

type NullableScpInfo ¶

type NullableScpInfo struct {
	// contains filtered or unexported fields
}

func NewNullableScpInfo ¶

func NewNullableScpInfo(val *ScpInfo) *NullableScpInfo

func (NullableScpInfo) Get ¶

func (v NullableScpInfo) Get() *ScpInfo

func (NullableScpInfo) IsSet ¶

func (v NullableScpInfo) IsSet() bool

func (NullableScpInfo) MarshalJSON ¶

func (v NullableScpInfo) MarshalJSON() ([]byte, error)

func (*NullableScpInfo) Set ¶

func (v *NullableScpInfo) Set(val *ScpInfo)

func (*NullableScpInfo) UnmarshalJSON ¶

func (v *NullableScpInfo) UnmarshalJSON(src []byte) error

func (*NullableScpInfo) Unset ¶

func (v *NullableScpInfo) Unset()

type NullableSdRange ¶

type NullableSdRange struct {
	// contains filtered or unexported fields
}

func NewNullableSdRange ¶

func NewNullableSdRange(val *SdRange) *NullableSdRange

func (NullableSdRange) Get ¶

func (v NullableSdRange) Get() *SdRange

func (NullableSdRange) IsSet ¶

func (v NullableSdRange) IsSet() bool

func (NullableSdRange) MarshalJSON ¶

func (v NullableSdRange) MarshalJSON() ([]byte, error)

func (*NullableSdRange) Set ¶

func (v *NullableSdRange) Set(val *SdRange)

func (*NullableSdRange) UnmarshalJSON ¶

func (v *NullableSdRange) UnmarshalJSON(src []byte) error

func (*NullableSdRange) Unset ¶

func (v *NullableSdRange) Unset()

type NullableSeppInfo ¶

type NullableSeppInfo struct {
	// contains filtered or unexported fields
}

func NewNullableSeppInfo ¶

func NewNullableSeppInfo(val *SeppInfo) *NullableSeppInfo

func (NullableSeppInfo) Get ¶

func (v NullableSeppInfo) Get() *SeppInfo

func (NullableSeppInfo) IsSet ¶

func (v NullableSeppInfo) IsSet() bool

func (NullableSeppInfo) MarshalJSON ¶

func (v NullableSeppInfo) MarshalJSON() ([]byte, error)

func (*NullableSeppInfo) Set ¶

func (v *NullableSeppInfo) Set(val *SeppInfo)

func (*NullableSeppInfo) UnmarshalJSON ¶

func (v *NullableSeppInfo) UnmarshalJSON(src []byte) error

func (*NullableSeppInfo) Unset ¶

func (v *NullableSeppInfo) Unset()

type NullableServiceAreaId ¶

type NullableServiceAreaId struct {
	// contains filtered or unexported fields
}

func NewNullableServiceAreaId ¶

func NewNullableServiceAreaId(val *ServiceAreaId) *NullableServiceAreaId

func (NullableServiceAreaId) Get ¶

func (NullableServiceAreaId) IsSet ¶

func (v NullableServiceAreaId) IsSet() bool

func (NullableServiceAreaId) MarshalJSON ¶

func (v NullableServiceAreaId) MarshalJSON() ([]byte, error)

func (*NullableServiceAreaId) Set ¶

func (v *NullableServiceAreaId) Set(val *ServiceAreaId)

func (*NullableServiceAreaId) UnmarshalJSON ¶

func (v *NullableServiceAreaId) UnmarshalJSON(src []byte) error

func (*NullableServiceAreaId) Unset ¶

func (v *NullableServiceAreaId) Unset()

type NullableServiceDataFlowDescription ¶

type NullableServiceDataFlowDescription struct {
	// contains filtered or unexported fields
}

func (NullableServiceDataFlowDescription) Get ¶

func (NullableServiceDataFlowDescription) IsSet ¶

func (NullableServiceDataFlowDescription) MarshalJSON ¶

func (v NullableServiceDataFlowDescription) MarshalJSON() ([]byte, error)

func (*NullableServiceDataFlowDescription) Set ¶

func (*NullableServiceDataFlowDescription) UnmarshalJSON ¶

func (v *NullableServiceDataFlowDescription) UnmarshalJSON(src []byte) error

func (*NullableServiceDataFlowDescription) Unset ¶

type NullableServiceExperienceInfo ¶

type NullableServiceExperienceInfo struct {
	// contains filtered or unexported fields
}

func (NullableServiceExperienceInfo) Get ¶

func (NullableServiceExperienceInfo) IsSet ¶

func (NullableServiceExperienceInfo) MarshalJSON ¶

func (v NullableServiceExperienceInfo) MarshalJSON() ([]byte, error)

func (*NullableServiceExperienceInfo) Set ¶

func (*NullableServiceExperienceInfo) UnmarshalJSON ¶

func (v *NullableServiceExperienceInfo) UnmarshalJSON(src []byte) error

func (*NullableServiceExperienceInfo) Unset ¶

func (v *NullableServiceExperienceInfo) Unset()

type NullableServiceExperienceInfo1 ¶

type NullableServiceExperienceInfo1 struct {
	// contains filtered or unexported fields
}

func (NullableServiceExperienceInfo1) Get ¶

func (NullableServiceExperienceInfo1) IsSet ¶

func (NullableServiceExperienceInfo1) MarshalJSON ¶

func (v NullableServiceExperienceInfo1) MarshalJSON() ([]byte, error)

func (*NullableServiceExperienceInfo1) Set ¶

func (*NullableServiceExperienceInfo1) UnmarshalJSON ¶

func (v *NullableServiceExperienceInfo1) UnmarshalJSON(src []byte) error

func (*NullableServiceExperienceInfo1) Unset ¶

func (v *NullableServiceExperienceInfo1) Unset()

type NullableServiceExperienceInfoPerApp ¶

type NullableServiceExperienceInfoPerApp struct {
	// contains filtered or unexported fields
}

func (NullableServiceExperienceInfoPerApp) Get ¶

func (NullableServiceExperienceInfoPerApp) IsSet ¶

func (NullableServiceExperienceInfoPerApp) MarshalJSON ¶

func (v NullableServiceExperienceInfoPerApp) MarshalJSON() ([]byte, error)

func (*NullableServiceExperienceInfoPerApp) Set ¶

func (*NullableServiceExperienceInfoPerApp) UnmarshalJSON ¶

func (v *NullableServiceExperienceInfoPerApp) UnmarshalJSON(src []byte) error

func (*NullableServiceExperienceInfoPerApp) Unset ¶

type NullableServiceExperienceInfoPerFlow ¶

type NullableServiceExperienceInfoPerFlow struct {
	// contains filtered or unexported fields
}

func (NullableServiceExperienceInfoPerFlow) Get ¶

func (NullableServiceExperienceInfoPerFlow) IsSet ¶

func (NullableServiceExperienceInfoPerFlow) MarshalJSON ¶

func (v NullableServiceExperienceInfoPerFlow) MarshalJSON() ([]byte, error)

func (*NullableServiceExperienceInfoPerFlow) Set ¶

func (*NullableServiceExperienceInfoPerFlow) UnmarshalJSON ¶

func (v *NullableServiceExperienceInfoPerFlow) UnmarshalJSON(src []byte) error

func (*NullableServiceExperienceInfoPerFlow) Unset ¶

type NullableServiceExperienceType ¶

type NullableServiceExperienceType struct {
	// contains filtered or unexported fields
}

func (NullableServiceExperienceType) Get ¶

func (NullableServiceExperienceType) IsSet ¶

func (NullableServiceExperienceType) MarshalJSON ¶

func (v NullableServiceExperienceType) MarshalJSON() ([]byte, error)

func (*NullableServiceExperienceType) Set ¶

func (*NullableServiceExperienceType) UnmarshalJSON ¶

func (v *NullableServiceExperienceType) UnmarshalJSON(src []byte) error

func (*NullableServiceExperienceType) Unset ¶

func (v *NullableServiceExperienceType) Unset()

type NullableServiceName ¶

type NullableServiceName struct {
	// contains filtered or unexported fields
}

func NewNullableServiceName ¶

func NewNullableServiceName(val *ServiceName) *NullableServiceName

func (NullableServiceName) Get ¶

func (NullableServiceName) IsSet ¶

func (v NullableServiceName) IsSet() bool

func (NullableServiceName) MarshalJSON ¶

func (v NullableServiceName) MarshalJSON() ([]byte, error)

func (*NullableServiceName) Set ¶

func (v *NullableServiceName) Set(val *ServiceName)

func (*NullableServiceName) UnmarshalJSON ¶

func (v *NullableServiceName) UnmarshalJSON(src []byte) error

func (*NullableServiceName) Unset ¶

func (v *NullableServiceName) Unset()

type NullableServiceNameCond ¶

type NullableServiceNameCond struct {
	// contains filtered or unexported fields
}

func NewNullableServiceNameCond ¶

func NewNullableServiceNameCond(val *ServiceNameCond) *NullableServiceNameCond

func (NullableServiceNameCond) Get ¶

func (NullableServiceNameCond) IsSet ¶

func (v NullableServiceNameCond) IsSet() bool

func (NullableServiceNameCond) MarshalJSON ¶

func (v NullableServiceNameCond) MarshalJSON() ([]byte, error)

func (*NullableServiceNameCond) Set ¶

func (*NullableServiceNameCond) UnmarshalJSON ¶

func (v *NullableServiceNameCond) UnmarshalJSON(src []byte) error

func (*NullableServiceNameCond) Unset ¶

func (v *NullableServiceNameCond) Unset()

type NullableServiceNameListCond ¶

type NullableServiceNameListCond struct {
	// contains filtered or unexported fields
}

func (NullableServiceNameListCond) Get ¶

func (NullableServiceNameListCond) IsSet ¶

func (NullableServiceNameListCond) MarshalJSON ¶

func (v NullableServiceNameListCond) MarshalJSON() ([]byte, error)

func (*NullableServiceNameListCond) Set ¶

func (*NullableServiceNameListCond) UnmarshalJSON ¶

func (v *NullableServiceNameListCond) UnmarshalJSON(src []byte) error

func (*NullableServiceNameListCond) Unset ¶

func (v *NullableServiceNameListCond) Unset()

type NullableSessInactTimerForUeComm ¶

type NullableSessInactTimerForUeComm struct {
	// contains filtered or unexported fields
}

func (NullableSessInactTimerForUeComm) Get ¶

func (NullableSessInactTimerForUeComm) IsSet ¶

func (NullableSessInactTimerForUeComm) MarshalJSON ¶

func (v NullableSessInactTimerForUeComm) MarshalJSON() ([]byte, error)

func (*NullableSessInactTimerForUeComm) Set ¶

func (*NullableSessInactTimerForUeComm) UnmarshalJSON ¶

func (v *NullableSessInactTimerForUeComm) UnmarshalJSON(src []byte) error

func (*NullableSessInactTimerForUeComm) Unset ¶

type NullableSharedDataIdRange ¶

type NullableSharedDataIdRange struct {
	// contains filtered or unexported fields
}

func NewNullableSharedDataIdRange ¶

func NewNullableSharedDataIdRange(val *SharedDataIdRange) *NullableSharedDataIdRange

func (NullableSharedDataIdRange) Get ¶

func (NullableSharedDataIdRange) IsSet ¶

func (v NullableSharedDataIdRange) IsSet() bool

func (NullableSharedDataIdRange) MarshalJSON ¶

func (v NullableSharedDataIdRange) MarshalJSON() ([]byte, error)

func (*NullableSharedDataIdRange) Set ¶

func (*NullableSharedDataIdRange) UnmarshalJSON ¶

func (v *NullableSharedDataIdRange) UnmarshalJSON(src []byte) error

func (*NullableSharedDataIdRange) Unset ¶

func (v *NullableSharedDataIdRange) Unset()

type NullableSliceLoadLevelInformation ¶

type NullableSliceLoadLevelInformation struct {
	// contains filtered or unexported fields
}

func (NullableSliceLoadLevelInformation) Get ¶

func (NullableSliceLoadLevelInformation) IsSet ¶

func (NullableSliceLoadLevelInformation) MarshalJSON ¶

func (v NullableSliceLoadLevelInformation) MarshalJSON() ([]byte, error)

func (*NullableSliceLoadLevelInformation) Set ¶

func (*NullableSliceLoadLevelInformation) UnmarshalJSON ¶

func (v *NullableSliceLoadLevelInformation) UnmarshalJSON(src []byte) error

func (*NullableSliceLoadLevelInformation) Unset ¶

type NullableSmNasFromSmf ¶

type NullableSmNasFromSmf struct {
	// contains filtered or unexported fields
}

func NewNullableSmNasFromSmf ¶

func NewNullableSmNasFromSmf(val *SmNasFromSmf) *NullableSmNasFromSmf

func (NullableSmNasFromSmf) Get ¶

func (NullableSmNasFromSmf) IsSet ¶

func (v NullableSmNasFromSmf) IsSet() bool

func (NullableSmNasFromSmf) MarshalJSON ¶

func (v NullableSmNasFromSmf) MarshalJSON() ([]byte, error)

func (*NullableSmNasFromSmf) Set ¶

func (v *NullableSmNasFromSmf) Set(val *SmNasFromSmf)

func (*NullableSmNasFromSmf) UnmarshalJSON ¶

func (v *NullableSmNasFromSmf) UnmarshalJSON(src []byte) error

func (*NullableSmNasFromSmf) Unset ¶

func (v *NullableSmNasFromSmf) Unset()

type NullableSmNasFromUe ¶

type NullableSmNasFromUe struct {
	// contains filtered or unexported fields
}

func NewNullableSmNasFromUe ¶

func NewNullableSmNasFromUe(val *SmNasFromUe) *NullableSmNasFromUe

func (NullableSmNasFromUe) Get ¶

func (NullableSmNasFromUe) IsSet ¶

func (v NullableSmNasFromUe) IsSet() bool

func (NullableSmNasFromUe) MarshalJSON ¶

func (v NullableSmNasFromUe) MarshalJSON() ([]byte, error)

func (*NullableSmNasFromUe) Set ¶

func (v *NullableSmNasFromUe) Set(val *SmNasFromUe)

func (*NullableSmNasFromUe) UnmarshalJSON ¶

func (v *NullableSmNasFromUe) UnmarshalJSON(src []byte) error

func (*NullableSmNasFromUe) Unset ¶

func (v *NullableSmNasFromUe) Unset()

type NullableSmcceInfo ¶

type NullableSmcceInfo struct {
	// contains filtered or unexported fields
}

func NewNullableSmcceInfo ¶

func NewNullableSmcceInfo(val *SmcceInfo) *NullableSmcceInfo

func (NullableSmcceInfo) Get ¶

func (v NullableSmcceInfo) Get() *SmcceInfo

func (NullableSmcceInfo) IsSet ¶

func (v NullableSmcceInfo) IsSet() bool

func (NullableSmcceInfo) MarshalJSON ¶

func (v NullableSmcceInfo) MarshalJSON() ([]byte, error)

func (*NullableSmcceInfo) Set ¶

func (v *NullableSmcceInfo) Set(val *SmcceInfo)

func (*NullableSmcceInfo) UnmarshalJSON ¶

func (v *NullableSmcceInfo) UnmarshalJSON(src []byte) error

func (*NullableSmcceInfo) Unset ¶

func (v *NullableSmcceInfo) Unset()

type NullableSmcceUeList ¶

type NullableSmcceUeList struct {
	// contains filtered or unexported fields
}

func NewNullableSmcceUeList ¶

func NewNullableSmcceUeList(val *SmcceUeList) *NullableSmcceUeList

func (NullableSmcceUeList) Get ¶

func (NullableSmcceUeList) IsSet ¶

func (v NullableSmcceUeList) IsSet() bool

func (NullableSmcceUeList) MarshalJSON ¶

func (v NullableSmcceUeList) MarshalJSON() ([]byte, error)

func (*NullableSmcceUeList) Set ¶

func (v *NullableSmcceUeList) Set(val *SmcceUeList)

func (*NullableSmcceUeList) UnmarshalJSON ¶

func (v *NullableSmcceUeList) UnmarshalJSON(src []byte) error

func (*NullableSmcceUeList) Unset ¶

func (v *NullableSmcceUeList) Unset()

type NullableSmfEvent ¶

type NullableSmfEvent struct {
	// contains filtered or unexported fields
}

func NewNullableSmfEvent ¶

func NewNullableSmfEvent(val *SmfEvent) *NullableSmfEvent

func (NullableSmfEvent) Get ¶

func (v NullableSmfEvent) Get() *SmfEvent

func (NullableSmfEvent) IsSet ¶

func (v NullableSmfEvent) IsSet() bool

func (NullableSmfEvent) MarshalJSON ¶

func (v NullableSmfEvent) MarshalJSON() ([]byte, error)

func (*NullableSmfEvent) Set ¶

func (v *NullableSmfEvent) Set(val *SmfEvent)

func (*NullableSmfEvent) UnmarshalJSON ¶

func (v *NullableSmfEvent) UnmarshalJSON(src []byte) error

func (*NullableSmfEvent) Unset ¶

func (v *NullableSmfEvent) Unset()

type NullableSmfInfo ¶

type NullableSmfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableSmfInfo ¶

func NewNullableSmfInfo(val *SmfInfo) *NullableSmfInfo

func (NullableSmfInfo) Get ¶

func (v NullableSmfInfo) Get() *SmfInfo

func (NullableSmfInfo) IsSet ¶

func (v NullableSmfInfo) IsSet() bool

func (NullableSmfInfo) MarshalJSON ¶

func (v NullableSmfInfo) MarshalJSON() ([]byte, error)

func (*NullableSmfInfo) Set ¶

func (v *NullableSmfInfo) Set(val *SmfInfo)

func (*NullableSmfInfo) UnmarshalJSON ¶

func (v *NullableSmfInfo) UnmarshalJSON(src []byte) error

func (*NullableSmfInfo) Unset ¶

func (v *NullableSmfInfo) Unset()

type NullableSmsfInfo ¶

type NullableSmsfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableSmsfInfo ¶

func NewNullableSmsfInfo(val *SmsfInfo) *NullableSmsfInfo

func (NullableSmsfInfo) Get ¶

func (v NullableSmsfInfo) Get() *SmsfInfo

func (NullableSmsfInfo) IsSet ¶

func (v NullableSmsfInfo) IsSet() bool

func (NullableSmsfInfo) MarshalJSON ¶

func (v NullableSmsfInfo) MarshalJSON() ([]byte, error)

func (*NullableSmsfInfo) Set ¶

func (v *NullableSmsfInfo) Set(val *SmsfInfo)

func (*NullableSmsfInfo) UnmarshalJSON ¶

func (v *NullableSmsfInfo) UnmarshalJSON(src []byte) error

func (*NullableSmsfInfo) Unset ¶

func (v *NullableSmsfInfo) Unset()

type NullableSnssai ¶

type NullableSnssai struct {
	// contains filtered or unexported fields
}

func NewNullableSnssai ¶

func NewNullableSnssai(val *Snssai) *NullableSnssai

func (NullableSnssai) Get ¶

func (v NullableSnssai) Get() *Snssai

func (NullableSnssai) IsSet ¶

func (v NullableSnssai) IsSet() bool

func (NullableSnssai) MarshalJSON ¶

func (v NullableSnssai) MarshalJSON() ([]byte, error)

func (*NullableSnssai) Set ¶

func (v *NullableSnssai) Set(val *Snssai)

func (*NullableSnssai) UnmarshalJSON ¶

func (v *NullableSnssai) UnmarshalJSON(src []byte) error

func (*NullableSnssai) Unset ¶

func (v *NullableSnssai) Unset()

type NullableSnssaiEasdfInfoItem ¶

type NullableSnssaiEasdfInfoItem struct {
	// contains filtered or unexported fields
}

func (NullableSnssaiEasdfInfoItem) Get ¶

func (NullableSnssaiEasdfInfoItem) IsSet ¶

func (NullableSnssaiEasdfInfoItem) MarshalJSON ¶

func (v NullableSnssaiEasdfInfoItem) MarshalJSON() ([]byte, error)

func (*NullableSnssaiEasdfInfoItem) Set ¶

func (*NullableSnssaiEasdfInfoItem) UnmarshalJSON ¶

func (v *NullableSnssaiEasdfInfoItem) UnmarshalJSON(src []byte) error

func (*NullableSnssaiEasdfInfoItem) Unset ¶

func (v *NullableSnssaiEasdfInfoItem) Unset()

type NullableSnssaiExtension ¶

type NullableSnssaiExtension struct {
	// contains filtered or unexported fields
}

func NewNullableSnssaiExtension ¶

func NewNullableSnssaiExtension(val *SnssaiExtension) *NullableSnssaiExtension

func (NullableSnssaiExtension) Get ¶

func (NullableSnssaiExtension) IsSet ¶

func (v NullableSnssaiExtension) IsSet() bool

func (NullableSnssaiExtension) MarshalJSON ¶

func (v NullableSnssaiExtension) MarshalJSON() ([]byte, error)

func (*NullableSnssaiExtension) Set ¶

func (*NullableSnssaiExtension) UnmarshalJSON ¶

func (v *NullableSnssaiExtension) UnmarshalJSON(src []byte) error

func (*NullableSnssaiExtension) Unset ¶

func (v *NullableSnssaiExtension) Unset()

type NullableSnssaiInfoItem ¶

type NullableSnssaiInfoItem struct {
	// contains filtered or unexported fields
}

func NewNullableSnssaiInfoItem ¶

func NewNullableSnssaiInfoItem(val *SnssaiInfoItem) *NullableSnssaiInfoItem

func (NullableSnssaiInfoItem) Get ¶

func (NullableSnssaiInfoItem) IsSet ¶

func (v NullableSnssaiInfoItem) IsSet() bool

func (NullableSnssaiInfoItem) MarshalJSON ¶

func (v NullableSnssaiInfoItem) MarshalJSON() ([]byte, error)

func (*NullableSnssaiInfoItem) Set ¶

func (*NullableSnssaiInfoItem) UnmarshalJSON ¶

func (v *NullableSnssaiInfoItem) UnmarshalJSON(src []byte) error

func (*NullableSnssaiInfoItem) Unset ¶

func (v *NullableSnssaiInfoItem) Unset()

type NullableSnssaiMbSmfInfoItem ¶

type NullableSnssaiMbSmfInfoItem struct {
	// contains filtered or unexported fields
}

func (NullableSnssaiMbSmfInfoItem) Get ¶

func (NullableSnssaiMbSmfInfoItem) IsSet ¶

func (NullableSnssaiMbSmfInfoItem) MarshalJSON ¶

func (v NullableSnssaiMbSmfInfoItem) MarshalJSON() ([]byte, error)

func (*NullableSnssaiMbSmfInfoItem) Set ¶

func (*NullableSnssaiMbSmfInfoItem) UnmarshalJSON ¶

func (v *NullableSnssaiMbSmfInfoItem) UnmarshalJSON(src []byte) error

func (*NullableSnssaiMbSmfInfoItem) Unset ¶

func (v *NullableSnssaiMbSmfInfoItem) Unset()

type NullableSnssaiSmfInfoItem ¶

type NullableSnssaiSmfInfoItem struct {
	// contains filtered or unexported fields
}

func NewNullableSnssaiSmfInfoItem ¶

func NewNullableSnssaiSmfInfoItem(val *SnssaiSmfInfoItem) *NullableSnssaiSmfInfoItem

func (NullableSnssaiSmfInfoItem) Get ¶

func (NullableSnssaiSmfInfoItem) IsSet ¶

func (v NullableSnssaiSmfInfoItem) IsSet() bool

func (NullableSnssaiSmfInfoItem) MarshalJSON ¶

func (v NullableSnssaiSmfInfoItem) MarshalJSON() ([]byte, error)

func (*NullableSnssaiSmfInfoItem) Set ¶

func (*NullableSnssaiSmfInfoItem) UnmarshalJSON ¶

func (v *NullableSnssaiSmfInfoItem) UnmarshalJSON(src []byte) error

func (*NullableSnssaiSmfInfoItem) Unset ¶

func (v *NullableSnssaiSmfInfoItem) Unset()

type NullableSnssaiTaiMapping ¶

type NullableSnssaiTaiMapping struct {
	// contains filtered or unexported fields
}

func NewNullableSnssaiTaiMapping ¶

func NewNullableSnssaiTaiMapping(val *SnssaiTaiMapping) *NullableSnssaiTaiMapping

func (NullableSnssaiTaiMapping) Get ¶

func (NullableSnssaiTaiMapping) IsSet ¶

func (v NullableSnssaiTaiMapping) IsSet() bool

func (NullableSnssaiTaiMapping) MarshalJSON ¶

func (v NullableSnssaiTaiMapping) MarshalJSON() ([]byte, error)

func (*NullableSnssaiTaiMapping) Set ¶

func (*NullableSnssaiTaiMapping) UnmarshalJSON ¶

func (v *NullableSnssaiTaiMapping) UnmarshalJSON(src []byte) error

func (*NullableSnssaiTaiMapping) Unset ¶

func (v *NullableSnssaiTaiMapping) Unset()

type NullableSnssaiTsctsfInfoItem ¶

type NullableSnssaiTsctsfInfoItem struct {
	// contains filtered or unexported fields
}

func (NullableSnssaiTsctsfInfoItem) Get ¶

func (NullableSnssaiTsctsfInfoItem) IsSet ¶

func (NullableSnssaiTsctsfInfoItem) MarshalJSON ¶

func (v NullableSnssaiTsctsfInfoItem) MarshalJSON() ([]byte, error)

func (*NullableSnssaiTsctsfInfoItem) Set ¶

func (*NullableSnssaiTsctsfInfoItem) UnmarshalJSON ¶

func (v *NullableSnssaiTsctsfInfoItem) UnmarshalJSON(src []byte) error

func (*NullableSnssaiTsctsfInfoItem) Unset ¶

func (v *NullableSnssaiTsctsfInfoItem) Unset()

type NullableSnssaiUpfInfoItem ¶

type NullableSnssaiUpfInfoItem struct {
	// contains filtered or unexported fields
}

func NewNullableSnssaiUpfInfoItem ¶

func NewNullableSnssaiUpfInfoItem(val *SnssaiUpfInfoItem) *NullableSnssaiUpfInfoItem

func (NullableSnssaiUpfInfoItem) Get ¶

func (NullableSnssaiUpfInfoItem) IsSet ¶

func (v NullableSnssaiUpfInfoItem) IsSet() bool

func (NullableSnssaiUpfInfoItem) MarshalJSON ¶

func (v NullableSnssaiUpfInfoItem) MarshalJSON() ([]byte, error)

func (*NullableSnssaiUpfInfoItem) Set ¶

func (*NullableSnssaiUpfInfoItem) UnmarshalJSON ¶

func (v *NullableSnssaiUpfInfoItem) UnmarshalJSON(src []byte) error

func (*NullableSnssaiUpfInfoItem) Unset ¶

func (v *NullableSnssaiUpfInfoItem) Unset()

type NullableSsm ¶

type NullableSsm struct {
	// contains filtered or unexported fields
}

func NewNullableSsm ¶

func NewNullableSsm(val *Ssm) *NullableSsm

func (NullableSsm) Get ¶

func (v NullableSsm) Get() *Ssm

func (NullableSsm) IsSet ¶

func (v NullableSsm) IsSet() bool

func (NullableSsm) MarshalJSON ¶

func (v NullableSsm) MarshalJSON() ([]byte, error)

func (*NullableSsm) Set ¶

func (v *NullableSsm) Set(val *Ssm)

func (*NullableSsm) UnmarshalJSON ¶

func (v *NullableSsm) UnmarshalJSON(src []byte) error

func (*NullableSsm) Unset ¶

func (v *NullableSsm) Unset()

type NullableStationaryIndication ¶

type NullableStationaryIndication struct {
	// contains filtered or unexported fields
}

func (NullableStationaryIndication) Get ¶

func (NullableStationaryIndication) IsSet ¶

func (NullableStationaryIndication) MarshalJSON ¶

func (v NullableStationaryIndication) MarshalJSON() ([]byte, error)

func (*NullableStationaryIndication) Set ¶

func (*NullableStationaryIndication) UnmarshalJSON ¶

func (v *NullableStationaryIndication) UnmarshalJSON(src []byte) error

func (*NullableStationaryIndication) Unset ¶

func (v *NullableStationaryIndication) Unset()

type NullableString ¶

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString ¶

func NewNullableString(val *string) *NullableString

func (NullableString) Get ¶

func (v NullableString) Get() *string

func (NullableString) IsSet ¶

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON ¶

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set ¶

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON ¶

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset ¶

func (v *NullableString) Unset()

type NullableSubTerminationReason ¶

type NullableSubTerminationReason struct {
	// contains filtered or unexported fields
}

func (NullableSubTerminationReason) Get ¶

func (NullableSubTerminationReason) IsSet ¶

func (NullableSubTerminationReason) MarshalJSON ¶

func (v NullableSubTerminationReason) MarshalJSON() ([]byte, error)

func (*NullableSubTerminationReason) Set ¶

func (*NullableSubTerminationReason) UnmarshalJSON ¶

func (v *NullableSubTerminationReason) UnmarshalJSON(src []byte) error

func (*NullableSubTerminationReason) Unset ¶

func (v *NullableSubTerminationReason) Unset()

type NullableSubscrCond ¶

type NullableSubscrCond struct {
	// contains filtered or unexported fields
}

func NewNullableSubscrCond ¶

func NewNullableSubscrCond(val *SubscrCond) *NullableSubscrCond

func (NullableSubscrCond) Get ¶

func (v NullableSubscrCond) Get() *SubscrCond

func (NullableSubscrCond) IsSet ¶

func (v NullableSubscrCond) IsSet() bool

func (NullableSubscrCond) MarshalJSON ¶

func (v NullableSubscrCond) MarshalJSON() ([]byte, error)

func (*NullableSubscrCond) Set ¶

func (v *NullableSubscrCond) Set(val *SubscrCond)

func (*NullableSubscrCond) UnmarshalJSON ¶

func (v *NullableSubscrCond) UnmarshalJSON(src []byte) error

func (*NullableSubscrCond) Unset ¶

func (v *NullableSubscrCond) Unset()

type NullableSubscriptionContext ¶

type NullableSubscriptionContext struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionContext) Get ¶

func (NullableSubscriptionContext) IsSet ¶

func (NullableSubscriptionContext) MarshalJSON ¶

func (v NullableSubscriptionContext) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionContext) Set ¶

func (*NullableSubscriptionContext) UnmarshalJSON ¶

func (v *NullableSubscriptionContext) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionContext) Unset ¶

func (v *NullableSubscriptionContext) Unset()

type NullableSubscriptionData ¶

type NullableSubscriptionData struct {
	// contains filtered or unexported fields
}

func NewNullableSubscriptionData ¶

func NewNullableSubscriptionData(val *SubscriptionData) *NullableSubscriptionData

func (NullableSubscriptionData) Get ¶

func (NullableSubscriptionData) IsSet ¶

func (v NullableSubscriptionData) IsSet() bool

func (NullableSubscriptionData) MarshalJSON ¶

func (v NullableSubscriptionData) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionData) Set ¶

func (*NullableSubscriptionData) UnmarshalJSON ¶

func (v *NullableSubscriptionData) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionData) Unset ¶

func (v *NullableSubscriptionData) Unset()

type NullableSuciInfo ¶

type NullableSuciInfo struct {
	// contains filtered or unexported fields
}

func NewNullableSuciInfo ¶

func NewNullableSuciInfo(val *SuciInfo) *NullableSuciInfo

func (NullableSuciInfo) Get ¶

func (v NullableSuciInfo) Get() *SuciInfo

func (NullableSuciInfo) IsSet ¶

func (v NullableSuciInfo) IsSet() bool

func (NullableSuciInfo) MarshalJSON ¶

func (v NullableSuciInfo) MarshalJSON() ([]byte, error)

func (*NullableSuciInfo) Set ¶

func (v *NullableSuciInfo) Set(val *SuciInfo)

func (*NullableSuciInfo) UnmarshalJSON ¶

func (v *NullableSuciInfo) UnmarshalJSON(src []byte) error

func (*NullableSuciInfo) Unset ¶

func (v *NullableSuciInfo) Unset()

type NullableSummarizationAttribute ¶

type NullableSummarizationAttribute struct {
	// contains filtered or unexported fields
}

func (NullableSummarizationAttribute) Get ¶

func (NullableSummarizationAttribute) IsSet ¶

func (NullableSummarizationAttribute) MarshalJSON ¶

func (v NullableSummarizationAttribute) MarshalJSON() ([]byte, error)

func (*NullableSummarizationAttribute) Set ¶

func (*NullableSummarizationAttribute) UnmarshalJSON ¶

func (v *NullableSummarizationAttribute) UnmarshalJSON(src []byte) error

func (*NullableSummarizationAttribute) Unset ¶

func (v *NullableSummarizationAttribute) Unset()

type NullableSupiRange ¶

type NullableSupiRange struct {
	// contains filtered or unexported fields
}

func NewNullableSupiRange ¶

func NewNullableSupiRange(val *SupiRange) *NullableSupiRange

func (NullableSupiRange) Get ¶

func (v NullableSupiRange) Get() *SupiRange

func (NullableSupiRange) IsSet ¶

func (v NullableSupiRange) IsSet() bool

func (NullableSupiRange) MarshalJSON ¶

func (v NullableSupiRange) MarshalJSON() ([]byte, error)

func (*NullableSupiRange) Set ¶

func (v *NullableSupiRange) Set(val *SupiRange)

func (*NullableSupiRange) UnmarshalJSON ¶

func (v *NullableSupiRange) UnmarshalJSON(src []byte) error

func (*NullableSupiRange) Unset ¶

func (v *NullableSupiRange) Unset()

type NullableSupportedGADShapes ¶

type NullableSupportedGADShapes struct {
	// contains filtered or unexported fields
}

func NewNullableSupportedGADShapes ¶

func NewNullableSupportedGADShapes(val *SupportedGADShapes) *NullableSupportedGADShapes

func (NullableSupportedGADShapes) Get ¶

func (NullableSupportedGADShapes) IsSet ¶

func (v NullableSupportedGADShapes) IsSet() bool

func (NullableSupportedGADShapes) MarshalJSON ¶

func (v NullableSupportedGADShapes) MarshalJSON() ([]byte, error)

func (*NullableSupportedGADShapes) Set ¶

func (*NullableSupportedGADShapes) UnmarshalJSON ¶

func (v *NullableSupportedGADShapes) UnmarshalJSON(src []byte) error

func (*NullableSupportedGADShapes) Unset ¶

func (v *NullableSupportedGADShapes) Unset()

type NullableSupportedSnssai ¶

type NullableSupportedSnssai struct {
	// contains filtered or unexported fields
}

func NewNullableSupportedSnssai ¶

func NewNullableSupportedSnssai(val *SupportedSnssai) *NullableSupportedSnssai

func (NullableSupportedSnssai) Get ¶

func (NullableSupportedSnssai) IsSet ¶

func (v NullableSupportedSnssai) IsSet() bool

func (NullableSupportedSnssai) MarshalJSON ¶

func (v NullableSupportedSnssai) MarshalJSON() ([]byte, error)

func (*NullableSupportedSnssai) Set ¶

func (*NullableSupportedSnssai) UnmarshalJSON ¶

func (v *NullableSupportedSnssai) UnmarshalJSON(src []byte) error

func (*NullableSupportedSnssai) Unset ¶

func (v *NullableSupportedSnssai) Unset()

type NullableSvcExperience ¶

type NullableSvcExperience struct {
	// contains filtered or unexported fields
}

func NewNullableSvcExperience ¶

func NewNullableSvcExperience(val *SvcExperience) *NullableSvcExperience

func (NullableSvcExperience) Get ¶

func (NullableSvcExperience) IsSet ¶

func (v NullableSvcExperience) IsSet() bool

func (NullableSvcExperience) MarshalJSON ¶

func (v NullableSvcExperience) MarshalJSON() ([]byte, error)

func (*NullableSvcExperience) Set ¶

func (v *NullableSvcExperience) Set(val *SvcExperience)

func (*NullableSvcExperience) UnmarshalJSON ¶

func (v *NullableSvcExperience) UnmarshalJSON(src []byte) error

func (*NullableSvcExperience) Unset ¶

func (v *NullableSvcExperience) Unset()

type NullableTacRange ¶

type NullableTacRange struct {
	// contains filtered or unexported fields
}

func NewNullableTacRange ¶

func NewNullableTacRange(val *TacRange) *NullableTacRange

func (NullableTacRange) Get ¶

func (v NullableTacRange) Get() *TacRange

func (NullableTacRange) IsSet ¶

func (v NullableTacRange) IsSet() bool

func (NullableTacRange) MarshalJSON ¶

func (v NullableTacRange) MarshalJSON() ([]byte, error)

func (*NullableTacRange) Set ¶

func (v *NullableTacRange) Set(val *TacRange)

func (*NullableTacRange) UnmarshalJSON ¶

func (v *NullableTacRange) UnmarshalJSON(src []byte) error

func (*NullableTacRange) Unset ¶

func (v *NullableTacRange) Unset()

type NullableTai ¶

type NullableTai struct {
	// contains filtered or unexported fields
}

func NewNullableTai ¶

func NewNullableTai(val *Tai) *NullableTai

func (NullableTai) Get ¶

func (v NullableTai) Get() *Tai

func (NullableTai) IsSet ¶

func (v NullableTai) IsSet() bool

func (NullableTai) MarshalJSON ¶

func (v NullableTai) MarshalJSON() ([]byte, error)

func (*NullableTai) Set ¶

func (v *NullableTai) Set(val *Tai)

func (*NullableTai) UnmarshalJSON ¶

func (v *NullableTai) UnmarshalJSON(src []byte) error

func (*NullableTai) Unset ¶

func (v *NullableTai) Unset()

type NullableTaiRange ¶

type NullableTaiRange struct {
	// contains filtered or unexported fields
}

func NewNullableTaiRange ¶

func NewNullableTaiRange(val *TaiRange) *NullableTaiRange

func (NullableTaiRange) Get ¶

func (v NullableTaiRange) Get() *TaiRange

func (NullableTaiRange) IsSet ¶

func (v NullableTaiRange) IsSet() bool

func (NullableTaiRange) MarshalJSON ¶

func (v NullableTaiRange) MarshalJSON() ([]byte, error)

func (*NullableTaiRange) Set ¶

func (v *NullableTaiRange) Set(val *TaiRange)

func (*NullableTaiRange) UnmarshalJSON ¶

func (v *NullableTaiRange) UnmarshalJSON(src []byte) error

func (*NullableTaiRange) Unset ¶

func (v *NullableTaiRange) Unset()

type NullableTargetArea ¶

type NullableTargetArea struct {
	// contains filtered or unexported fields
}

func NewNullableTargetArea ¶

func NewNullableTargetArea(val *TargetArea) *NullableTargetArea

func (NullableTargetArea) Get ¶

func (v NullableTargetArea) Get() *TargetArea

func (NullableTargetArea) IsSet ¶

func (v NullableTargetArea) IsSet() bool

func (NullableTargetArea) MarshalJSON ¶

func (v NullableTargetArea) MarshalJSON() ([]byte, error)

func (*NullableTargetArea) Set ¶

func (v *NullableTargetArea) Set(val *TargetArea)

func (*NullableTargetArea) UnmarshalJSON ¶

func (v *NullableTargetArea) UnmarshalJSON(src []byte) error

func (*NullableTargetArea) Unset ¶

func (v *NullableTargetArea) Unset()

type NullableTargetUeIdentification ¶

type NullableTargetUeIdentification struct {
	// contains filtered or unexported fields
}

func (NullableTargetUeIdentification) Get ¶

func (NullableTargetUeIdentification) IsSet ¶

func (NullableTargetUeIdentification) MarshalJSON ¶

func (v NullableTargetUeIdentification) MarshalJSON() ([]byte, error)

func (*NullableTargetUeIdentification) Set ¶

func (*NullableTargetUeIdentification) UnmarshalJSON ¶

func (v *NullableTargetUeIdentification) UnmarshalJSON(src []byte) error

func (*NullableTargetUeIdentification) Unset ¶

func (v *NullableTargetUeIdentification) Unset()

type NullableTargetUeInformation ¶

type NullableTargetUeInformation struct {
	// contains filtered or unexported fields
}

func (NullableTargetUeInformation) Get ¶

func (NullableTargetUeInformation) IsSet ¶

func (NullableTargetUeInformation) MarshalJSON ¶

func (v NullableTargetUeInformation) MarshalJSON() ([]byte, error)

func (*NullableTargetUeInformation) Set ¶

func (*NullableTargetUeInformation) UnmarshalJSON ¶

func (v *NullableTargetUeInformation) UnmarshalJSON(src []byte) error

func (*NullableTargetUeInformation) Unset ¶

func (v *NullableTargetUeInformation) Unset()

type NullableTermCause ¶

type NullableTermCause struct {
	// contains filtered or unexported fields
}

func NewNullableTermCause ¶

func NewNullableTermCause(val *TermCause) *NullableTermCause

func (NullableTermCause) Get ¶

func (v NullableTermCause) Get() *TermCause

func (NullableTermCause) IsSet ¶

func (v NullableTermCause) IsSet() bool

func (NullableTermCause) MarshalJSON ¶

func (v NullableTermCause) MarshalJSON() ([]byte, error)

func (*NullableTermCause) Set ¶

func (v *NullableTermCause) Set(val *TermCause)

func (*NullableTermCause) UnmarshalJSON ¶

func (v *NullableTermCause) UnmarshalJSON(src []byte) error

func (*NullableTermCause) Unset ¶

func (v *NullableTermCause) Unset()

type NullableThresholdLevel ¶

type NullableThresholdLevel struct {
	// contains filtered or unexported fields
}

func NewNullableThresholdLevel ¶

func NewNullableThresholdLevel(val *ThresholdLevel) *NullableThresholdLevel

func (NullableThresholdLevel) Get ¶

func (NullableThresholdLevel) IsSet ¶

func (v NullableThresholdLevel) IsSet() bool

func (NullableThresholdLevel) MarshalJSON ¶

func (v NullableThresholdLevel) MarshalJSON() ([]byte, error)

func (*NullableThresholdLevel) Set ¶

func (*NullableThresholdLevel) UnmarshalJSON ¶

func (v *NullableThresholdLevel) UnmarshalJSON(src []byte) error

func (*NullableThresholdLevel) Unset ¶

func (v *NullableThresholdLevel) Unset()

type NullableTime ¶

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime ¶

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get ¶

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet ¶

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON ¶

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set ¶

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON ¶

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset ¶

func (v *NullableTime) Unset()

type NullableTimeUnit ¶

type NullableTimeUnit struct {
	// contains filtered or unexported fields
}

func NewNullableTimeUnit ¶

func NewNullableTimeUnit(val *TimeUnit) *NullableTimeUnit

func (NullableTimeUnit) Get ¶

func (v NullableTimeUnit) Get() *TimeUnit

func (NullableTimeUnit) IsSet ¶

func (v NullableTimeUnit) IsSet() bool

func (NullableTimeUnit) MarshalJSON ¶

func (v NullableTimeUnit) MarshalJSON() ([]byte, error)

func (*NullableTimeUnit) Set ¶

func (v *NullableTimeUnit) Set(val *TimeUnit)

func (*NullableTimeUnit) UnmarshalJSON ¶

func (v *NullableTimeUnit) UnmarshalJSON(src []byte) error

func (*NullableTimeUnit) Unset ¶

func (v *NullableTimeUnit) Unset()

type NullableTimeWindow ¶

type NullableTimeWindow struct {
	// contains filtered or unexported fields
}

func NewNullableTimeWindow ¶

func NewNullableTimeWindow(val *TimeWindow) *NullableTimeWindow

func (NullableTimeWindow) Get ¶

func (v NullableTimeWindow) Get() *TimeWindow

func (NullableTimeWindow) IsSet ¶

func (v NullableTimeWindow) IsSet() bool

func (NullableTimeWindow) MarshalJSON ¶

func (v NullableTimeWindow) MarshalJSON() ([]byte, error)

func (*NullableTimeWindow) Set ¶

func (v *NullableTimeWindow) Set(val *TimeWindow)

func (*NullableTimeWindow) UnmarshalJSON ¶

func (v *NullableTimeWindow) UnmarshalJSON(src []byte) error

func (*NullableTimeWindow) Unset ¶

func (v *NullableTimeWindow) Unset()

type NullableTmgi ¶

type NullableTmgi struct {
	// contains filtered or unexported fields
}

func NewNullableTmgi ¶

func NewNullableTmgi(val *Tmgi) *NullableTmgi

func (NullableTmgi) Get ¶

func (v NullableTmgi) Get() *Tmgi

func (NullableTmgi) IsSet ¶

func (v NullableTmgi) IsSet() bool

func (NullableTmgi) MarshalJSON ¶

func (v NullableTmgi) MarshalJSON() ([]byte, error)

func (*NullableTmgi) Set ¶

func (v *NullableTmgi) Set(val *Tmgi)

func (*NullableTmgi) UnmarshalJSON ¶

func (v *NullableTmgi) UnmarshalJSON(src []byte) error

func (*NullableTmgi) Unset ¶

func (v *NullableTmgi) Unset()

type NullableTmgiRange ¶

type NullableTmgiRange struct {
	// contains filtered or unexported fields
}

func NewNullableTmgiRange ¶

func NewNullableTmgiRange(val *TmgiRange) *NullableTmgiRange

func (NullableTmgiRange) Get ¶

func (v NullableTmgiRange) Get() *TmgiRange

func (NullableTmgiRange) IsSet ¶

func (v NullableTmgiRange) IsSet() bool

func (NullableTmgiRange) MarshalJSON ¶

func (v NullableTmgiRange) MarshalJSON() ([]byte, error)

func (*NullableTmgiRange) Set ¶

func (v *NullableTmgiRange) Set(val *TmgiRange)

func (*NullableTmgiRange) UnmarshalJSON ¶

func (v *NullableTmgiRange) UnmarshalJSON(src []byte) error

func (*NullableTmgiRange) Unset ¶

func (v *NullableTmgiRange) Unset()

type NullableTnapId ¶

type NullableTnapId struct {
	// contains filtered or unexported fields
}

func NewNullableTnapId ¶

func NewNullableTnapId(val *TnapId) *NullableTnapId

func (NullableTnapId) Get ¶

func (v NullableTnapId) Get() *TnapId

func (NullableTnapId) IsSet ¶

func (v NullableTnapId) IsSet() bool

func (NullableTnapId) MarshalJSON ¶

func (v NullableTnapId) MarshalJSON() ([]byte, error)

func (*NullableTnapId) Set ¶

func (v *NullableTnapId) Set(val *TnapId)

func (*NullableTnapId) UnmarshalJSON ¶

func (v *NullableTnapId) UnmarshalJSON(src []byte) error

func (*NullableTnapId) Unset ¶

func (v *NullableTnapId) Unset()

type NullableTngfInfo ¶

type NullableTngfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableTngfInfo ¶

func NewNullableTngfInfo(val *TngfInfo) *NullableTngfInfo

func (NullableTngfInfo) Get ¶

func (v NullableTngfInfo) Get() *TngfInfo

func (NullableTngfInfo) IsSet ¶

func (v NullableTngfInfo) IsSet() bool

func (NullableTngfInfo) MarshalJSON ¶

func (v NullableTngfInfo) MarshalJSON() ([]byte, error)

func (*NullableTngfInfo) Set ¶

func (v *NullableTngfInfo) Set(val *TngfInfo)

func (*NullableTngfInfo) UnmarshalJSON ¶

func (v *NullableTngfInfo) UnmarshalJSON(src []byte) error

func (*NullableTngfInfo) Unset ¶

func (v *NullableTngfInfo) Unset()

type NullableTopApplication ¶

type NullableTopApplication struct {
	// contains filtered or unexported fields
}

func NewNullableTopApplication ¶

func NewNullableTopApplication(val *TopApplication) *NullableTopApplication

func (NullableTopApplication) Get ¶

func (NullableTopApplication) IsSet ¶

func (v NullableTopApplication) IsSet() bool

func (NullableTopApplication) MarshalJSON ¶

func (v NullableTopApplication) MarshalJSON() ([]byte, error)

func (*NullableTopApplication) Set ¶

func (*NullableTopApplication) UnmarshalJSON ¶

func (v *NullableTopApplication) UnmarshalJSON(src []byte) error

func (*NullableTopApplication) Unset ¶

func (v *NullableTopApplication) Unset()

type NullableTrafficCharacterization ¶

type NullableTrafficCharacterization struct {
	// contains filtered or unexported fields
}

func (NullableTrafficCharacterization) Get ¶

func (NullableTrafficCharacterization) IsSet ¶

func (NullableTrafficCharacterization) MarshalJSON ¶

func (v NullableTrafficCharacterization) MarshalJSON() ([]byte, error)

func (*NullableTrafficCharacterization) Set ¶

func (*NullableTrafficCharacterization) UnmarshalJSON ¶

func (v *NullableTrafficCharacterization) UnmarshalJSON(src []byte) error

func (*NullableTrafficCharacterization) Unset ¶

type NullableTrafficDescriptor ¶

type NullableTrafficDescriptor struct {
	// contains filtered or unexported fields
}

func NewNullableTrafficDescriptor ¶

func NewNullableTrafficDescriptor(val *TrafficDescriptor) *NullableTrafficDescriptor

func (NullableTrafficDescriptor) Get ¶

func (NullableTrafficDescriptor) IsSet ¶

func (v NullableTrafficDescriptor) IsSet() bool

func (NullableTrafficDescriptor) MarshalJSON ¶

func (v NullableTrafficDescriptor) MarshalJSON() ([]byte, error)

func (*NullableTrafficDescriptor) Set ¶

func (*NullableTrafficDescriptor) UnmarshalJSON ¶

func (v *NullableTrafficDescriptor) UnmarshalJSON(src []byte) error

func (*NullableTrafficDescriptor) Unset ¶

func (v *NullableTrafficDescriptor) Unset()

type NullableTrafficInformation ¶

type NullableTrafficInformation struct {
	// contains filtered or unexported fields
}

func NewNullableTrafficInformation ¶

func NewNullableTrafficInformation(val *TrafficInformation) *NullableTrafficInformation

func (NullableTrafficInformation) Get ¶

func (NullableTrafficInformation) IsSet ¶

func (v NullableTrafficInformation) IsSet() bool

func (NullableTrafficInformation) MarshalJSON ¶

func (v NullableTrafficInformation) MarshalJSON() ([]byte, error)

func (*NullableTrafficInformation) Set ¶

func (*NullableTrafficInformation) UnmarshalJSON ¶

func (v *NullableTrafficInformation) UnmarshalJSON(src []byte) error

func (*NullableTrafficInformation) Unset ¶

func (v *NullableTrafficInformation) Unset()

type NullableTrafficProfile ¶

type NullableTrafficProfile struct {
	// contains filtered or unexported fields
}

func NewNullableTrafficProfile ¶

func NewNullableTrafficProfile(val *TrafficProfile) *NullableTrafficProfile

func (NullableTrafficProfile) Get ¶

func (NullableTrafficProfile) IsSet ¶

func (v NullableTrafficProfile) IsSet() bool

func (NullableTrafficProfile) MarshalJSON ¶

func (v NullableTrafficProfile) MarshalJSON() ([]byte, error)

func (*NullableTrafficProfile) Set ¶

func (*NullableTrafficProfile) UnmarshalJSON ¶

func (v *NullableTrafficProfile) UnmarshalJSON(src []byte) error

func (*NullableTrafficProfile) Unset ¶

func (v *NullableTrafficProfile) Unset()

type NullableTransactionInfo ¶

type NullableTransactionInfo struct {
	// contains filtered or unexported fields
}

func NewNullableTransactionInfo ¶

func NewNullableTransactionInfo(val *TransactionInfo) *NullableTransactionInfo

func (NullableTransactionInfo) Get ¶

func (NullableTransactionInfo) IsSet ¶

func (v NullableTransactionInfo) IsSet() bool

func (NullableTransactionInfo) MarshalJSON ¶

func (v NullableTransactionInfo) MarshalJSON() ([]byte, error)

func (*NullableTransactionInfo) Set ¶

func (*NullableTransactionInfo) UnmarshalJSON ¶

func (v *NullableTransactionInfo) UnmarshalJSON(src []byte) error

func (*NullableTransactionInfo) Unset ¶

func (v *NullableTransactionInfo) Unset()

type NullableTransactionMetric ¶

type NullableTransactionMetric struct {
	// contains filtered or unexported fields
}

func NewNullableTransactionMetric ¶

func NewNullableTransactionMetric(val *TransactionMetric) *NullableTransactionMetric

func (NullableTransactionMetric) Get ¶

func (NullableTransactionMetric) IsSet ¶

func (v NullableTransactionMetric) IsSet() bool

func (NullableTransactionMetric) MarshalJSON ¶

func (v NullableTransactionMetric) MarshalJSON() ([]byte, error)

func (*NullableTransactionMetric) Set ¶

func (*NullableTransactionMetric) UnmarshalJSON ¶

func (v *NullableTransactionMetric) UnmarshalJSON(src []byte) error

func (*NullableTransactionMetric) Unset ¶

func (v *NullableTransactionMetric) Unset()

type NullableTransportProtocol ¶

type NullableTransportProtocol struct {
	// contains filtered or unexported fields
}

func NewNullableTransportProtocol ¶

func NewNullableTransportProtocol(val *TransportProtocol) *NullableTransportProtocol

func (NullableTransportProtocol) Get ¶

func (NullableTransportProtocol) IsSet ¶

func (v NullableTransportProtocol) IsSet() bool

func (NullableTransportProtocol) MarshalJSON ¶

func (v NullableTransportProtocol) MarshalJSON() ([]byte, error)

func (*NullableTransportProtocol) Set ¶

func (*NullableTransportProtocol) UnmarshalJSON ¶

func (v *NullableTransportProtocol) UnmarshalJSON(src []byte) error

func (*NullableTransportProtocol) Unset ¶

func (v *NullableTransportProtocol) Unset()

type NullableTransportProtocol1 ¶

type NullableTransportProtocol1 struct {
	// contains filtered or unexported fields
}

func NewNullableTransportProtocol1 ¶

func NewNullableTransportProtocol1(val *TransportProtocol1) *NullableTransportProtocol1

func (NullableTransportProtocol1) Get ¶

func (NullableTransportProtocol1) IsSet ¶

func (v NullableTransportProtocol1) IsSet() bool

func (NullableTransportProtocol1) MarshalJSON ¶

func (v NullableTransportProtocol1) MarshalJSON() ([]byte, error)

func (*NullableTransportProtocol1) Set ¶

func (*NullableTransportProtocol1) UnmarshalJSON ¶

func (v *NullableTransportProtocol1) UnmarshalJSON(src []byte) error

func (*NullableTransportProtocol1) Unset ¶

func (v *NullableTransportProtocol1) Unset()

type NullableTrustAfInfo ¶

type NullableTrustAfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableTrustAfInfo ¶

func NewNullableTrustAfInfo(val *TrustAfInfo) *NullableTrustAfInfo

func (NullableTrustAfInfo) Get ¶

func (NullableTrustAfInfo) IsSet ¶

func (v NullableTrustAfInfo) IsSet() bool

func (NullableTrustAfInfo) MarshalJSON ¶

func (v NullableTrustAfInfo) MarshalJSON() ([]byte, error)

func (*NullableTrustAfInfo) Set ¶

func (v *NullableTrustAfInfo) Set(val *TrustAfInfo)

func (*NullableTrustAfInfo) UnmarshalJSON ¶

func (v *NullableTrustAfInfo) UnmarshalJSON(src []byte) error

func (*NullableTrustAfInfo) Unset ¶

func (v *NullableTrustAfInfo) Unset()

type NullableTsctsfInfo ¶

type NullableTsctsfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableTsctsfInfo ¶

func NewNullableTsctsfInfo(val *TsctsfInfo) *NullableTsctsfInfo

func (NullableTsctsfInfo) Get ¶

func (v NullableTsctsfInfo) Get() *TsctsfInfo

func (NullableTsctsfInfo) IsSet ¶

func (v NullableTsctsfInfo) IsSet() bool

func (NullableTsctsfInfo) MarshalJSON ¶

func (v NullableTsctsfInfo) MarshalJSON() ([]byte, error)

func (*NullableTsctsfInfo) Set ¶

func (v *NullableTsctsfInfo) Set(val *TsctsfInfo)

func (*NullableTsctsfInfo) UnmarshalJSON ¶

func (v *NullableTsctsfInfo) UnmarshalJSON(src []byte) error

func (*NullableTsctsfInfo) Unset ¶

func (v *NullableTsctsfInfo) Unset()

type NullableTwapId ¶

type NullableTwapId struct {
	// contains filtered or unexported fields
}

func NewNullableTwapId ¶

func NewNullableTwapId(val *TwapId) *NullableTwapId

func (NullableTwapId) Get ¶

func (v NullableTwapId) Get() *TwapId

func (NullableTwapId) IsSet ¶

func (v NullableTwapId) IsSet() bool

func (NullableTwapId) MarshalJSON ¶

func (v NullableTwapId) MarshalJSON() ([]byte, error)

func (*NullableTwapId) Set ¶

func (v *NullableTwapId) Set(val *TwapId)

func (*NullableTwapId) UnmarshalJSON ¶

func (v *NullableTwapId) UnmarshalJSON(src []byte) error

func (*NullableTwapId) Unset ¶

func (v *NullableTwapId) Unset()

type NullableTwifInfo ¶

type NullableTwifInfo struct {
	// contains filtered or unexported fields
}

func NewNullableTwifInfo ¶

func NewNullableTwifInfo(val *TwifInfo) *NullableTwifInfo

func (NullableTwifInfo) Get ¶

func (v NullableTwifInfo) Get() *TwifInfo

func (NullableTwifInfo) IsSet ¶

func (v NullableTwifInfo) IsSet() bool

func (NullableTwifInfo) MarshalJSON ¶

func (v NullableTwifInfo) MarshalJSON() ([]byte, error)

func (*NullableTwifInfo) Set ¶

func (v *NullableTwifInfo) Set(val *TwifInfo)

func (*NullableTwifInfo) UnmarshalJSON ¶

func (v *NullableTwifInfo) UnmarshalJSON(src []byte) error

func (*NullableTwifInfo) Unset ¶

func (v *NullableTwifInfo) Unset()

type NullableUEIdExt ¶

type NullableUEIdExt struct {
	// contains filtered or unexported fields
}

func NewNullableUEIdExt ¶

func NewNullableUEIdExt(val *UEIdExt) *NullableUEIdExt

func (NullableUEIdExt) Get ¶

func (v NullableUEIdExt) Get() *UEIdExt

func (NullableUEIdExt) IsSet ¶

func (v NullableUEIdExt) IsSet() bool

func (NullableUEIdExt) MarshalJSON ¶

func (v NullableUEIdExt) MarshalJSON() ([]byte, error)

func (*NullableUEIdExt) Set ¶

func (v *NullableUEIdExt) Set(val *UEIdExt)

func (*NullableUEIdExt) UnmarshalJSON ¶

func (v *NullableUEIdExt) UnmarshalJSON(src []byte) error

func (*NullableUEIdExt) Unset ¶

func (v *NullableUEIdExt) Unset()

type NullableUPInterfaceType ¶

type NullableUPInterfaceType struct {
	// contains filtered or unexported fields
}

func NewNullableUPInterfaceType ¶

func NewNullableUPInterfaceType(val *UPInterfaceType) *NullableUPInterfaceType

func (NullableUPInterfaceType) Get ¶

func (NullableUPInterfaceType) IsSet ¶

func (v NullableUPInterfaceType) IsSet() bool

func (NullableUPInterfaceType) MarshalJSON ¶

func (v NullableUPInterfaceType) MarshalJSON() ([]byte, error)

func (*NullableUPInterfaceType) Set ¶

func (*NullableUPInterfaceType) UnmarshalJSON ¶

func (v *NullableUPInterfaceType) UnmarshalJSON(src []byte) error

func (*NullableUPInterfaceType) Unset ¶

func (v *NullableUPInterfaceType) Unset()

type NullableUdmInfo ¶

type NullableUdmInfo struct {
	// contains filtered or unexported fields
}

func NewNullableUdmInfo ¶

func NewNullableUdmInfo(val *UdmInfo) *NullableUdmInfo

func (NullableUdmInfo) Get ¶

func (v NullableUdmInfo) Get() *UdmInfo

func (NullableUdmInfo) IsSet ¶

func (v NullableUdmInfo) IsSet() bool

func (NullableUdmInfo) MarshalJSON ¶

func (v NullableUdmInfo) MarshalJSON() ([]byte, error)

func (*NullableUdmInfo) Set ¶

func (v *NullableUdmInfo) Set(val *UdmInfo)

func (*NullableUdmInfo) UnmarshalJSON ¶

func (v *NullableUdmInfo) UnmarshalJSON(src []byte) error

func (*NullableUdmInfo) Unset ¶

func (v *NullableUdmInfo) Unset()

type NullableUdrInfo ¶

type NullableUdrInfo struct {
	// contains filtered or unexported fields
}

func NewNullableUdrInfo ¶

func NewNullableUdrInfo(val *UdrInfo) *NullableUdrInfo

func (NullableUdrInfo) Get ¶

func (v NullableUdrInfo) Get() *UdrInfo

func (NullableUdrInfo) IsSet ¶

func (v NullableUdrInfo) IsSet() bool

func (NullableUdrInfo) MarshalJSON ¶

func (v NullableUdrInfo) MarshalJSON() ([]byte, error)

func (*NullableUdrInfo) Set ¶

func (v *NullableUdrInfo) Set(val *UdrInfo)

func (*NullableUdrInfo) UnmarshalJSON ¶

func (v *NullableUdrInfo) UnmarshalJSON(src []byte) error

func (*NullableUdrInfo) Unset ¶

func (v *NullableUdrInfo) Unset()

type NullableUdsfInfo ¶

type NullableUdsfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableUdsfInfo ¶

func NewNullableUdsfInfo(val *UdsfInfo) *NullableUdsfInfo

func (NullableUdsfInfo) Get ¶

func (v NullableUdsfInfo) Get() *UdsfInfo

func (NullableUdsfInfo) IsSet ¶

func (v NullableUdsfInfo) IsSet() bool

func (NullableUdsfInfo) MarshalJSON ¶

func (v NullableUdsfInfo) MarshalJSON() ([]byte, error)

func (*NullableUdsfInfo) Set ¶

func (v *NullableUdsfInfo) Set(val *UdsfInfo)

func (*NullableUdsfInfo) UnmarshalJSON ¶

func (v *NullableUdsfInfo) UnmarshalJSON(src []byte) error

func (*NullableUdsfInfo) Unset ¶

func (v *NullableUdsfInfo) Unset()

type NullableUeAccessBehaviorReportItem ¶

type NullableUeAccessBehaviorReportItem struct {
	// contains filtered or unexported fields
}

func (NullableUeAccessBehaviorReportItem) Get ¶

func (NullableUeAccessBehaviorReportItem) IsSet ¶

func (NullableUeAccessBehaviorReportItem) MarshalJSON ¶

func (v NullableUeAccessBehaviorReportItem) MarshalJSON() ([]byte, error)

func (*NullableUeAccessBehaviorReportItem) Set ¶

func (*NullableUeAccessBehaviorReportItem) UnmarshalJSON ¶

func (v *NullableUeAccessBehaviorReportItem) UnmarshalJSON(src []byte) error

func (*NullableUeAccessBehaviorReportItem) Unset ¶

type NullableUeAnalyticsContextDescriptor ¶

type NullableUeAnalyticsContextDescriptor struct {
	// contains filtered or unexported fields
}

func (NullableUeAnalyticsContextDescriptor) Get ¶

func (NullableUeAnalyticsContextDescriptor) IsSet ¶

func (NullableUeAnalyticsContextDescriptor) MarshalJSON ¶

func (v NullableUeAnalyticsContextDescriptor) MarshalJSON() ([]byte, error)

func (*NullableUeAnalyticsContextDescriptor) Set ¶

func (*NullableUeAnalyticsContextDescriptor) UnmarshalJSON ¶

func (v *NullableUeAnalyticsContextDescriptor) UnmarshalJSON(src []byte) error

func (*NullableUeAnalyticsContextDescriptor) Unset ¶

type NullableUeCommunication ¶

type NullableUeCommunication struct {
	// contains filtered or unexported fields
}

func NewNullableUeCommunication ¶

func NewNullableUeCommunication(val *UeCommunication) *NullableUeCommunication

func (NullableUeCommunication) Get ¶

func (NullableUeCommunication) IsSet ¶

func (v NullableUeCommunication) IsSet() bool

func (NullableUeCommunication) MarshalJSON ¶

func (v NullableUeCommunication) MarshalJSON() ([]byte, error)

func (*NullableUeCommunication) Set ¶

func (*NullableUeCommunication) UnmarshalJSON ¶

func (v *NullableUeCommunication) UnmarshalJSON(src []byte) error

func (*NullableUeCommunication) Unset ¶

func (v *NullableUeCommunication) Unset()

type NullableUeCommunicationCollection ¶

type NullableUeCommunicationCollection struct {
	// contains filtered or unexported fields
}

func (NullableUeCommunicationCollection) Get ¶

func (NullableUeCommunicationCollection) IsSet ¶

func (NullableUeCommunicationCollection) MarshalJSON ¶

func (v NullableUeCommunicationCollection) MarshalJSON() ([]byte, error)

func (*NullableUeCommunicationCollection) Set ¶

func (*NullableUeCommunicationCollection) UnmarshalJSON ¶

func (v *NullableUeCommunicationCollection) UnmarshalJSON(src []byte) error

func (*NullableUeCommunicationCollection) Unset ¶

type NullableUeCommunicationInfo ¶

type NullableUeCommunicationInfo struct {
	// contains filtered or unexported fields
}

func (NullableUeCommunicationInfo) Get ¶

func (NullableUeCommunicationInfo) IsSet ¶

func (NullableUeCommunicationInfo) MarshalJSON ¶

func (v NullableUeCommunicationInfo) MarshalJSON() ([]byte, error)

func (*NullableUeCommunicationInfo) Set ¶

func (*NullableUeCommunicationInfo) UnmarshalJSON ¶

func (v *NullableUeCommunicationInfo) UnmarshalJSON(src []byte) error

func (*NullableUeCommunicationInfo) Unset ¶

func (v *NullableUeCommunicationInfo) Unset()

type NullableUeInAreaFilter ¶

type NullableUeInAreaFilter struct {
	// contains filtered or unexported fields
}

func NewNullableUeInAreaFilter ¶

func NewNullableUeInAreaFilter(val *UeInAreaFilter) *NullableUeInAreaFilter

func (NullableUeInAreaFilter) Get ¶

func (NullableUeInAreaFilter) IsSet ¶

func (v NullableUeInAreaFilter) IsSet() bool

func (NullableUeInAreaFilter) MarshalJSON ¶

func (v NullableUeInAreaFilter) MarshalJSON() ([]byte, error)

func (*NullableUeInAreaFilter) Set ¶

func (*NullableUeInAreaFilter) UnmarshalJSON ¶

func (v *NullableUeInAreaFilter) UnmarshalJSON(src []byte) error

func (*NullableUeInAreaFilter) Unset ¶

func (v *NullableUeInAreaFilter) Unset()

type NullableUeLocationTrendsReportItem ¶

type NullableUeLocationTrendsReportItem struct {
	// contains filtered or unexported fields
}

func (NullableUeLocationTrendsReportItem) Get ¶

func (NullableUeLocationTrendsReportItem) IsSet ¶

func (NullableUeLocationTrendsReportItem) MarshalJSON ¶

func (v NullableUeLocationTrendsReportItem) MarshalJSON() ([]byte, error)

func (*NullableUeLocationTrendsReportItem) Set ¶

func (*NullableUeLocationTrendsReportItem) UnmarshalJSON ¶

func (v *NullableUeLocationTrendsReportItem) UnmarshalJSON(src []byte) error

func (*NullableUeLocationTrendsReportItem) Unset ¶

type NullableUeMobility ¶

type NullableUeMobility struct {
	// contains filtered or unexported fields
}

func NewNullableUeMobility ¶

func NewNullableUeMobility(val *UeMobility) *NullableUeMobility

func (NullableUeMobility) Get ¶

func (v NullableUeMobility) Get() *UeMobility

func (NullableUeMobility) IsSet ¶

func (v NullableUeMobility) IsSet() bool

func (NullableUeMobility) MarshalJSON ¶

func (v NullableUeMobility) MarshalJSON() ([]byte, error)

func (*NullableUeMobility) Set ¶

func (v *NullableUeMobility) Set(val *UeMobility)

func (*NullableUeMobility) UnmarshalJSON ¶

func (v *NullableUeMobility) UnmarshalJSON(src []byte) error

func (*NullableUeMobility) Unset ¶

func (v *NullableUeMobility) Unset()

type NullableUeMobilityCollection ¶

type NullableUeMobilityCollection struct {
	// contains filtered or unexported fields
}

func (NullableUeMobilityCollection) Get ¶

func (NullableUeMobilityCollection) IsSet ¶

func (NullableUeMobilityCollection) MarshalJSON ¶

func (v NullableUeMobilityCollection) MarshalJSON() ([]byte, error)

func (*NullableUeMobilityCollection) Set ¶

func (*NullableUeMobilityCollection) UnmarshalJSON ¶

func (v *NullableUeMobilityCollection) UnmarshalJSON(src []byte) error

func (*NullableUeMobilityCollection) Unset ¶

func (v *NullableUeMobilityCollection) Unset()

type NullableUeMobilityInfo ¶

type NullableUeMobilityInfo struct {
	// contains filtered or unexported fields
}

func NewNullableUeMobilityInfo ¶

func NewNullableUeMobilityInfo(val *UeMobilityInfo) *NullableUeMobilityInfo

func (NullableUeMobilityInfo) Get ¶

func (NullableUeMobilityInfo) IsSet ¶

func (v NullableUeMobilityInfo) IsSet() bool

func (NullableUeMobilityInfo) MarshalJSON ¶

func (v NullableUeMobilityInfo) MarshalJSON() ([]byte, error)

func (*NullableUeMobilityInfo) Set ¶

func (*NullableUeMobilityInfo) UnmarshalJSON ¶

func (v *NullableUeMobilityInfo) UnmarshalJSON(src []byte) error

func (*NullableUeMobilityInfo) Unset ¶

func (v *NullableUeMobilityInfo) Unset()

type NullableUeReachability ¶

type NullableUeReachability struct {
	// contains filtered or unexported fields
}

func NewNullableUeReachability ¶

func NewNullableUeReachability(val *UeReachability) *NullableUeReachability

func (NullableUeReachability) Get ¶

func (NullableUeReachability) IsSet ¶

func (v NullableUeReachability) IsSet() bool

func (NullableUeReachability) MarshalJSON ¶

func (v NullableUeReachability) MarshalJSON() ([]byte, error)

func (*NullableUeReachability) Set ¶

func (*NullableUeReachability) UnmarshalJSON ¶

func (v *NullableUeReachability) UnmarshalJSON(src []byte) error

func (*NullableUeReachability) Unset ¶

func (v *NullableUeReachability) Unset()

type NullableUeTrajectoryCollection ¶

type NullableUeTrajectoryCollection struct {
	// contains filtered or unexported fields
}

func (NullableUeTrajectoryCollection) Get ¶

func (NullableUeTrajectoryCollection) IsSet ¶

func (NullableUeTrajectoryCollection) MarshalJSON ¶

func (v NullableUeTrajectoryCollection) MarshalJSON() ([]byte, error)

func (*NullableUeTrajectoryCollection) Set ¶

func (*NullableUeTrajectoryCollection) UnmarshalJSON ¶

func (v *NullableUeTrajectoryCollection) UnmarshalJSON(src []byte) error

func (*NullableUeTrajectoryCollection) Unset ¶

func (v *NullableUeTrajectoryCollection) Unset()

type NullableUeTrajectoryInfo ¶

type NullableUeTrajectoryInfo struct {
	// contains filtered or unexported fields
}

func NewNullableUeTrajectoryInfo ¶

func NewNullableUeTrajectoryInfo(val *UeTrajectoryInfo) *NullableUeTrajectoryInfo

func (NullableUeTrajectoryInfo) Get ¶

func (NullableUeTrajectoryInfo) IsSet ¶

func (v NullableUeTrajectoryInfo) IsSet() bool

func (NullableUeTrajectoryInfo) MarshalJSON ¶

func (v NullableUeTrajectoryInfo) MarshalJSON() ([]byte, error)

func (*NullableUeTrajectoryInfo) Set ¶

func (*NullableUeTrajectoryInfo) UnmarshalJSON ¶

func (v *NullableUeTrajectoryInfo) UnmarshalJSON(src []byte) error

func (*NullableUeTrajectoryInfo) Unset ¶

func (v *NullableUeTrajectoryInfo) Unset()

type NullableUeType ¶

type NullableUeType struct {
	// contains filtered or unexported fields
}

func NewNullableUeType ¶

func NewNullableUeType(val *UeType) *NullableUeType

func (NullableUeType) Get ¶

func (v NullableUeType) Get() *UeType

func (NullableUeType) IsSet ¶

func (v NullableUeType) IsSet() bool

func (NullableUeType) MarshalJSON ¶

func (v NullableUeType) MarshalJSON() ([]byte, error)

func (*NullableUeType) Set ¶

func (v *NullableUeType) Set(val *UeType)

func (*NullableUeType) UnmarshalJSON ¶

func (v *NullableUeType) UnmarshalJSON(src []byte) error

func (*NullableUeType) Unset ¶

func (v *NullableUeType) Unset()

type NullableUmtTime ¶

type NullableUmtTime struct {
	// contains filtered or unexported fields
}

func NewNullableUmtTime ¶

func NewNullableUmtTime(val *UmtTime) *NullableUmtTime

func (NullableUmtTime) Get ¶

func (v NullableUmtTime) Get() *UmtTime

func (NullableUmtTime) IsSet ¶

func (v NullableUmtTime) IsSet() bool

func (NullableUmtTime) MarshalJSON ¶

func (v NullableUmtTime) MarshalJSON() ([]byte, error)

func (*NullableUmtTime) Set ¶

func (v *NullableUmtTime) Set(val *UmtTime)

func (*NullableUmtTime) UnmarshalJSON ¶

func (v *NullableUmtTime) UnmarshalJSON(src []byte) error

func (*NullableUmtTime) Unset ¶

func (v *NullableUmtTime) Unset()

type NullableUnTrustAfInfo ¶

type NullableUnTrustAfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableUnTrustAfInfo ¶

func NewNullableUnTrustAfInfo(val *UnTrustAfInfo) *NullableUnTrustAfInfo

func (NullableUnTrustAfInfo) Get ¶

func (NullableUnTrustAfInfo) IsSet ¶

func (v NullableUnTrustAfInfo) IsSet() bool

func (NullableUnTrustAfInfo) MarshalJSON ¶

func (v NullableUnTrustAfInfo) MarshalJSON() ([]byte, error)

func (*NullableUnTrustAfInfo) Set ¶

func (v *NullableUnTrustAfInfo) Set(val *UnTrustAfInfo)

func (*NullableUnTrustAfInfo) UnmarshalJSON ¶

func (v *NullableUnTrustAfInfo) UnmarshalJSON(src []byte) error

func (*NullableUnTrustAfInfo) Unset ¶

func (v *NullableUnTrustAfInfo) Unset()

type NullableUncertaintyEllipse ¶

type NullableUncertaintyEllipse struct {
	// contains filtered or unexported fields
}

func NewNullableUncertaintyEllipse ¶

func NewNullableUncertaintyEllipse(val *UncertaintyEllipse) *NullableUncertaintyEllipse

func (NullableUncertaintyEllipse) Get ¶

func (NullableUncertaintyEllipse) IsSet ¶

func (v NullableUncertaintyEllipse) IsSet() bool

func (NullableUncertaintyEllipse) MarshalJSON ¶

func (v NullableUncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*NullableUncertaintyEllipse) Set ¶

func (*NullableUncertaintyEllipse) UnmarshalJSON ¶

func (v *NullableUncertaintyEllipse) UnmarshalJSON(src []byte) error

func (*NullableUncertaintyEllipse) Unset ¶

func (v *NullableUncertaintyEllipse) Unset()

type NullableUncertaintyEllipsoid ¶

type NullableUncertaintyEllipsoid struct {
	// contains filtered or unexported fields
}

func (NullableUncertaintyEllipsoid) Get ¶

func (NullableUncertaintyEllipsoid) IsSet ¶

func (NullableUncertaintyEllipsoid) MarshalJSON ¶

func (v NullableUncertaintyEllipsoid) MarshalJSON() ([]byte, error)

func (*NullableUncertaintyEllipsoid) Set ¶

func (*NullableUncertaintyEllipsoid) UnmarshalJSON ¶

func (v *NullableUncertaintyEllipsoid) UnmarshalJSON(src []byte) error

func (*NullableUncertaintyEllipsoid) Unset ¶

func (v *NullableUncertaintyEllipsoid) Unset()

type NullableUpfCond ¶

type NullableUpfCond struct {
	// contains filtered or unexported fields
}

func NewNullableUpfCond ¶

func NewNullableUpfCond(val *UpfCond) *NullableUpfCond

func (NullableUpfCond) Get ¶

func (v NullableUpfCond) Get() *UpfCond

func (NullableUpfCond) IsSet ¶

func (v NullableUpfCond) IsSet() bool

func (NullableUpfCond) MarshalJSON ¶

func (v NullableUpfCond) MarshalJSON() ([]byte, error)

func (*NullableUpfCond) Set ¶

func (v *NullableUpfCond) Set(val *UpfCond)

func (*NullableUpfCond) UnmarshalJSON ¶

func (v *NullableUpfCond) UnmarshalJSON(src []byte) error

func (*NullableUpfCond) Unset ¶

func (v *NullableUpfCond) Unset()

type NullableUpfInfo ¶

type NullableUpfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableUpfInfo ¶

func NewNullableUpfInfo(val *UpfInfo) *NullableUpfInfo

func (NullableUpfInfo) Get ¶

func (v NullableUpfInfo) Get() *UpfInfo

func (NullableUpfInfo) IsSet ¶

func (v NullableUpfInfo) IsSet() bool

func (NullableUpfInfo) MarshalJSON ¶

func (v NullableUpfInfo) MarshalJSON() ([]byte, error)

func (*NullableUpfInfo) Set ¶

func (v *NullableUpfInfo) Set(val *UpfInfo)

func (*NullableUpfInfo) UnmarshalJSON ¶

func (v *NullableUpfInfo) UnmarshalJSON(src []byte) error

func (*NullableUpfInfo) Unset ¶

func (v *NullableUpfInfo) Unset()

type NullableUpfInformation ¶

type NullableUpfInformation struct {
	// contains filtered or unexported fields
}

func NewNullableUpfInformation ¶

func NewNullableUpfInformation(val *UpfInformation) *NullableUpfInformation

func (NullableUpfInformation) Get ¶

func (NullableUpfInformation) IsSet ¶

func (v NullableUpfInformation) IsSet() bool

func (NullableUpfInformation) MarshalJSON ¶

func (v NullableUpfInformation) MarshalJSON() ([]byte, error)

func (*NullableUpfInformation) Set ¶

func (*NullableUpfInformation) UnmarshalJSON ¶

func (v *NullableUpfInformation) UnmarshalJSON(src []byte) error

func (*NullableUpfInformation) Unset ¶

func (v *NullableUpfInformation) Unset()

type NullableUriScheme ¶

type NullableUriScheme struct {
	// contains filtered or unexported fields
}

func NewNullableUriScheme ¶

func NewNullableUriScheme(val *UriScheme) *NullableUriScheme

func (NullableUriScheme) Get ¶

func (v NullableUriScheme) Get() *UriScheme

func (NullableUriScheme) IsSet ¶

func (v NullableUriScheme) IsSet() bool

func (NullableUriScheme) MarshalJSON ¶

func (v NullableUriScheme) MarshalJSON() ([]byte, error)

func (*NullableUriScheme) Set ¶

func (v *NullableUriScheme) Set(val *UriScheme)

func (*NullableUriScheme) UnmarshalJSON ¶

func (v *NullableUriScheme) UnmarshalJSON(src []byte) error

func (*NullableUriScheme) Unset ¶

func (v *NullableUriScheme) Unset()

type NullableUsageThreshold ¶

type NullableUsageThreshold struct {
	// contains filtered or unexported fields
}

func NewNullableUsageThreshold ¶

func NewNullableUsageThreshold(val *UsageThreshold) *NullableUsageThreshold

func (NullableUsageThreshold) Get ¶

func (NullableUsageThreshold) IsSet ¶

func (v NullableUsageThreshold) IsSet() bool

func (NullableUsageThreshold) MarshalJSON ¶

func (v NullableUsageThreshold) MarshalJSON() ([]byte, error)

func (*NullableUsageThreshold) Set ¶

func (*NullableUsageThreshold) UnmarshalJSON ¶

func (v *NullableUsageThreshold) UnmarshalJSON(src []byte) error

func (*NullableUsageThreshold) Unset ¶

func (v *NullableUsageThreshold) Unset()

type NullableUserDataCongestionCollection ¶

type NullableUserDataCongestionCollection struct {
	// contains filtered or unexported fields
}

func (NullableUserDataCongestionCollection) Get ¶

func (NullableUserDataCongestionCollection) IsSet ¶

func (NullableUserDataCongestionCollection) MarshalJSON ¶

func (v NullableUserDataCongestionCollection) MarshalJSON() ([]byte, error)

func (*NullableUserDataCongestionCollection) Set ¶

func (*NullableUserDataCongestionCollection) UnmarshalJSON ¶

func (v *NullableUserDataCongestionCollection) UnmarshalJSON(src []byte) error

func (*NullableUserDataCongestionCollection) Unset ¶

type NullableUserDataCongestionInfo ¶

type NullableUserDataCongestionInfo struct {
	// contains filtered or unexported fields
}

func (NullableUserDataCongestionInfo) Get ¶

func (NullableUserDataCongestionInfo) IsSet ¶

func (NullableUserDataCongestionInfo) MarshalJSON ¶

func (v NullableUserDataCongestionInfo) MarshalJSON() ([]byte, error)

func (*NullableUserDataCongestionInfo) Set ¶

func (*NullableUserDataCongestionInfo) UnmarshalJSON ¶

func (v *NullableUserDataCongestionInfo) UnmarshalJSON(src []byte) error

func (*NullableUserDataCongestionInfo) Unset ¶

func (v *NullableUserDataCongestionInfo) Unset()

type NullableUserLocation ¶

type NullableUserLocation struct {
	// contains filtered or unexported fields
}

func NewNullableUserLocation ¶

func NewNullableUserLocation(val *UserLocation) *NullableUserLocation

func (NullableUserLocation) Get ¶

func (NullableUserLocation) IsSet ¶

func (v NullableUserLocation) IsSet() bool

func (NullableUserLocation) MarshalJSON ¶

func (v NullableUserLocation) MarshalJSON() ([]byte, error)

func (*NullableUserLocation) Set ¶

func (v *NullableUserLocation) Set(val *UserLocation)

func (*NullableUserLocation) UnmarshalJSON ¶

func (v *NullableUserLocation) UnmarshalJSON(src []byte) error

func (*NullableUserLocation) Unset ¶

func (v *NullableUserLocation) Unset()

type NullableUtraLocation ¶

type NullableUtraLocation struct {
	// contains filtered or unexported fields
}

func NewNullableUtraLocation ¶

func NewNullableUtraLocation(val *UtraLocation) *NullableUtraLocation

func (NullableUtraLocation) Get ¶

func (NullableUtraLocation) IsSet ¶

func (v NullableUtraLocation) IsSet() bool

func (NullableUtraLocation) MarshalJSON ¶

func (v NullableUtraLocation) MarshalJSON() ([]byte, error)

func (*NullableUtraLocation) Set ¶

func (v *NullableUtraLocation) Set(val *UtraLocation)

func (*NullableUtraLocation) UnmarshalJSON ¶

func (v *NullableUtraLocation) UnmarshalJSON(src []byte) error

func (*NullableUtraLocation) Unset ¶

func (v *NullableUtraLocation) Unset()

type NullableV2xCapability ¶

type NullableV2xCapability struct {
	// contains filtered or unexported fields
}

func NewNullableV2xCapability ¶

func NewNullableV2xCapability(val *V2xCapability) *NullableV2xCapability

func (NullableV2xCapability) Get ¶

func (NullableV2xCapability) IsSet ¶

func (v NullableV2xCapability) IsSet() bool

func (NullableV2xCapability) MarshalJSON ¶

func (v NullableV2xCapability) MarshalJSON() ([]byte, error)

func (*NullableV2xCapability) Set ¶

func (v *NullableV2xCapability) Set(val *V2xCapability)

func (*NullableV2xCapability) UnmarshalJSON ¶

func (v *NullableV2xCapability) UnmarshalJSON(src []byte) error

func (*NullableV2xCapability) Unset ¶

func (v *NullableV2xCapability) Unset()

type NullableVendorSpecificFeature ¶

type NullableVendorSpecificFeature struct {
	// contains filtered or unexported fields
}

func (NullableVendorSpecificFeature) Get ¶

func (NullableVendorSpecificFeature) IsSet ¶

func (NullableVendorSpecificFeature) MarshalJSON ¶

func (v NullableVendorSpecificFeature) MarshalJSON() ([]byte, error)

func (*NullableVendorSpecificFeature) Set ¶

func (*NullableVendorSpecificFeature) UnmarshalJSON ¶

func (v *NullableVendorSpecificFeature) UnmarshalJSON(src []byte) error

func (*NullableVendorSpecificFeature) Unset ¶

func (v *NullableVendorSpecificFeature) Unset()

type NullableWAgfInfo ¶

type NullableWAgfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableWAgfInfo ¶

func NewNullableWAgfInfo(val *WAgfInfo) *NullableWAgfInfo

func (NullableWAgfInfo) Get ¶

func (v NullableWAgfInfo) Get() *WAgfInfo

func (NullableWAgfInfo) IsSet ¶

func (v NullableWAgfInfo) IsSet() bool

func (NullableWAgfInfo) MarshalJSON ¶

func (v NullableWAgfInfo) MarshalJSON() ([]byte, error)

func (*NullableWAgfInfo) Set ¶

func (v *NullableWAgfInfo) Set(val *WAgfInfo)

func (*NullableWAgfInfo) UnmarshalJSON ¶

func (v *NullableWAgfInfo) UnmarshalJSON(src []byte) error

func (*NullableWAgfInfo) Unset ¶

func (v *NullableWAgfInfo) Unset()

type NullableWlanOrderingCriterion ¶

type NullableWlanOrderingCriterion struct {
	// contains filtered or unexported fields
}

func (NullableWlanOrderingCriterion) Get ¶

func (NullableWlanOrderingCriterion) IsSet ¶

func (NullableWlanOrderingCriterion) MarshalJSON ¶

func (v NullableWlanOrderingCriterion) MarshalJSON() ([]byte, error)

func (*NullableWlanOrderingCriterion) Set ¶

func (*NullableWlanOrderingCriterion) UnmarshalJSON ¶

func (v *NullableWlanOrderingCriterion) UnmarshalJSON(src []byte) error

func (*NullableWlanOrderingCriterion) Unset ¶

func (v *NullableWlanOrderingCriterion) Unset()

type NullableWlanPerSsIdPerformanceInfo ¶

type NullableWlanPerSsIdPerformanceInfo struct {
	// contains filtered or unexported fields
}

func (NullableWlanPerSsIdPerformanceInfo) Get ¶

func (NullableWlanPerSsIdPerformanceInfo) IsSet ¶

func (NullableWlanPerSsIdPerformanceInfo) MarshalJSON ¶

func (v NullableWlanPerSsIdPerformanceInfo) MarshalJSON() ([]byte, error)

func (*NullableWlanPerSsIdPerformanceInfo) Set ¶

func (*NullableWlanPerSsIdPerformanceInfo) UnmarshalJSON ¶

func (v *NullableWlanPerSsIdPerformanceInfo) UnmarshalJSON(src []byte) error

func (*NullableWlanPerSsIdPerformanceInfo) Unset ¶

type NullableWlanPerTsPerformanceInfo ¶

type NullableWlanPerTsPerformanceInfo struct {
	// contains filtered or unexported fields
}

func (NullableWlanPerTsPerformanceInfo) Get ¶

func (NullableWlanPerTsPerformanceInfo) IsSet ¶

func (NullableWlanPerTsPerformanceInfo) MarshalJSON ¶

func (v NullableWlanPerTsPerformanceInfo) MarshalJSON() ([]byte, error)

func (*NullableWlanPerTsPerformanceInfo) Set ¶

func (*NullableWlanPerTsPerformanceInfo) UnmarshalJSON ¶

func (v *NullableWlanPerTsPerformanceInfo) UnmarshalJSON(src []byte) error

func (*NullableWlanPerTsPerformanceInfo) Unset ¶

type NullableWlanPerformanceInfo ¶

type NullableWlanPerformanceInfo struct {
	// contains filtered or unexported fields
}

func (NullableWlanPerformanceInfo) Get ¶

func (NullableWlanPerformanceInfo) IsSet ¶

func (NullableWlanPerformanceInfo) MarshalJSON ¶

func (v NullableWlanPerformanceInfo) MarshalJSON() ([]byte, error)

func (*NullableWlanPerformanceInfo) Set ¶

func (*NullableWlanPerformanceInfo) UnmarshalJSON ¶

func (v *NullableWlanPerformanceInfo) UnmarshalJSON(src []byte) error

func (*NullableWlanPerformanceInfo) Unset ¶

func (v *NullableWlanPerformanceInfo) Unset()

type NullableWlanPerformanceReq ¶

type NullableWlanPerformanceReq struct {
	// contains filtered or unexported fields
}

func NewNullableWlanPerformanceReq ¶

func NewNullableWlanPerformanceReq(val *WlanPerformanceReq) *NullableWlanPerformanceReq

func (NullableWlanPerformanceReq) Get ¶

func (NullableWlanPerformanceReq) IsSet ¶

func (v NullableWlanPerformanceReq) IsSet() bool

func (NullableWlanPerformanceReq) MarshalJSON ¶

func (v NullableWlanPerformanceReq) MarshalJSON() ([]byte, error)

func (*NullableWlanPerformanceReq) Set ¶

func (*NullableWlanPerformanceReq) UnmarshalJSON ¶

func (v *NullableWlanPerformanceReq) UnmarshalJSON(src []byte) error

func (*NullableWlanPerformanceReq) Unset ¶

func (v *NullableWlanPerformanceReq) Unset()

type NumberAverage ¶

type NumberAverage struct {
	// string with format 'float' as defined in OpenAPI.
	Number float32 `json:"number"`
	// string with format 'float' as defined in OpenAPI.
	Variance float32 `json:"variance"`
	// string with format 'float' as defined in OpenAPI.
	Skewness *float32 `json:"skewness,omitempty"`
}

NumberAverage Represents average and variance information.

func NewNumberAverage ¶

func NewNumberAverage(number float32, variance float32) *NumberAverage

NewNumberAverage instantiates a new NumberAverage 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 NewNumberAverageWithDefaults ¶

func NewNumberAverageWithDefaults() *NumberAverage

NewNumberAverageWithDefaults instantiates a new NumberAverage 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 (*NumberAverage) GetNumber ¶

func (o *NumberAverage) GetNumber() float32

GetNumber returns the Number field value

func (*NumberAverage) GetNumberOk ¶

func (o *NumberAverage) GetNumberOk() (*float32, bool)

GetNumberOk returns a tuple with the Number field value and a boolean to check if the value has been set.

func (*NumberAverage) GetSkewness ¶

func (o *NumberAverage) GetSkewness() float32

GetSkewness returns the Skewness field value if set, zero value otherwise.

func (*NumberAverage) GetSkewnessOk ¶

func (o *NumberAverage) GetSkewnessOk() (*float32, bool)

GetSkewnessOk returns a tuple with the Skewness field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NumberAverage) GetVariance ¶

func (o *NumberAverage) GetVariance() float32

GetVariance returns the Variance field value

func (*NumberAverage) GetVarianceOk ¶

func (o *NumberAverage) GetVarianceOk() (*float32, bool)

GetVarianceOk returns a tuple with the Variance field value and a boolean to check if the value has been set.

func (*NumberAverage) HasSkewness ¶

func (o *NumberAverage) HasSkewness() bool

HasSkewness returns a boolean if a field has been set.

func (NumberAverage) MarshalJSON ¶

func (o NumberAverage) MarshalJSON() ([]byte, error)

func (*NumberAverage) SetNumber ¶

func (o *NumberAverage) SetNumber(v float32)

SetNumber sets field value

func (*NumberAverage) SetSkewness ¶

func (o *NumberAverage) SetSkewness(v float32)

SetSkewness gets a reference to the given float32 and assigns it to the Skewness field.

func (*NumberAverage) SetVariance ¶

func (o *NumberAverage) SetVariance(v float32)

SetVariance sets field value

func (NumberAverage) ToMap ¶

func (o NumberAverage) ToMap() (map[string]interface{}, error)

type NwdafCapability ¶

type NwdafCapability struct {
	AnalyticsAggregation          *bool `json:"analyticsAggregation,omitempty"`
	AnalyticsMetadataProvisioning *bool `json:"analyticsMetadataProvisioning,omitempty"`
}

NwdafCapability Indicates the capability supported by the NWDAF

func NewNwdafCapability ¶

func NewNwdafCapability() *NwdafCapability

NewNwdafCapability instantiates a new NwdafCapability 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 NewNwdafCapabilityWithDefaults ¶

func NewNwdafCapabilityWithDefaults() *NwdafCapability

NewNwdafCapabilityWithDefaults instantiates a new NwdafCapability 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 (*NwdafCapability) GetAnalyticsAggregation ¶

func (o *NwdafCapability) GetAnalyticsAggregation() bool

GetAnalyticsAggregation returns the AnalyticsAggregation field value if set, zero value otherwise.

func (*NwdafCapability) GetAnalyticsAggregationOk ¶

func (o *NwdafCapability) GetAnalyticsAggregationOk() (*bool, bool)

GetAnalyticsAggregationOk returns a tuple with the AnalyticsAggregation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafCapability) GetAnalyticsMetadataProvisioning ¶

func (o *NwdafCapability) GetAnalyticsMetadataProvisioning() bool

GetAnalyticsMetadataProvisioning returns the AnalyticsMetadataProvisioning field value if set, zero value otherwise.

func (*NwdafCapability) GetAnalyticsMetadataProvisioningOk ¶

func (o *NwdafCapability) GetAnalyticsMetadataProvisioningOk() (*bool, bool)

GetAnalyticsMetadataProvisioningOk returns a tuple with the AnalyticsMetadataProvisioning field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafCapability) HasAnalyticsAggregation ¶

func (o *NwdafCapability) HasAnalyticsAggregation() bool

HasAnalyticsAggregation returns a boolean if a field has been set.

func (*NwdafCapability) HasAnalyticsMetadataProvisioning ¶

func (o *NwdafCapability) HasAnalyticsMetadataProvisioning() bool

HasAnalyticsMetadataProvisioning returns a boolean if a field has been set.

func (NwdafCapability) MarshalJSON ¶

func (o NwdafCapability) MarshalJSON() ([]byte, error)

func (*NwdafCapability) SetAnalyticsAggregation ¶

func (o *NwdafCapability) SetAnalyticsAggregation(v bool)

SetAnalyticsAggregation gets a reference to the given bool and assigns it to the AnalyticsAggregation field.

func (*NwdafCapability) SetAnalyticsMetadataProvisioning ¶

func (o *NwdafCapability) SetAnalyticsMetadataProvisioning(v bool)

SetAnalyticsMetadataProvisioning gets a reference to the given bool and assigns it to the AnalyticsMetadataProvisioning field.

func (NwdafCapability) ToMap ¶

func (o NwdafCapability) ToMap() (map[string]interface{}, error)

type NwdafCond ¶

type NwdafCond struct {
	ConditionType      string            `json:"conditionType"`
	AnalyticsIds       []string          `json:"analyticsIds,omitempty"`
	SnssaiList         []Snssai          `json:"snssaiList,omitempty"`
	TaiList            []Tai             `json:"taiList,omitempty"`
	TaiRangeList       []TaiRange        `json:"taiRangeList,omitempty"`
	ServingNfTypeList  []NFType          `json:"servingNfTypeList,omitempty"`
	ServingNfSetIdList []string          `json:"servingNfSetIdList,omitempty"`
	MlAnalyticsList    []MlAnalyticsInfo `json:"mlAnalyticsList,omitempty"`
}

NwdafCond Subscription to a set of NF Instances (NWDAFs), identified by Analytics ID(s), S-NSSAI(s) or NWDAF Serving Area information, i.e. list of TAIs for which the NWDAF can provide analytics.

func NewNwdafCond ¶

func NewNwdafCond(conditionType string) *NwdafCond

NewNwdafCond instantiates a new NwdafCond 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 NewNwdafCondWithDefaults ¶

func NewNwdafCondWithDefaults() *NwdafCond

NewNwdafCondWithDefaults instantiates a new NwdafCond 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 (*NwdafCond) GetAnalyticsIds ¶

func (o *NwdafCond) GetAnalyticsIds() []string

GetAnalyticsIds returns the AnalyticsIds field value if set, zero value otherwise.

func (*NwdafCond) GetAnalyticsIdsOk ¶

func (o *NwdafCond) GetAnalyticsIdsOk() ([]string, bool)

GetAnalyticsIdsOk returns a tuple with the AnalyticsIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafCond) GetConditionType ¶

func (o *NwdafCond) GetConditionType() string

GetConditionType returns the ConditionType field value

func (*NwdafCond) GetConditionTypeOk ¶

func (o *NwdafCond) GetConditionTypeOk() (*string, bool)

GetConditionTypeOk returns a tuple with the ConditionType field value and a boolean to check if the value has been set.

func (*NwdafCond) GetMlAnalyticsList ¶

func (o *NwdafCond) GetMlAnalyticsList() []MlAnalyticsInfo

GetMlAnalyticsList returns the MlAnalyticsList field value if set, zero value otherwise.

func (*NwdafCond) GetMlAnalyticsListOk ¶

func (o *NwdafCond) GetMlAnalyticsListOk() ([]MlAnalyticsInfo, bool)

GetMlAnalyticsListOk returns a tuple with the MlAnalyticsList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafCond) GetServingNfSetIdList ¶

func (o *NwdafCond) GetServingNfSetIdList() []string

GetServingNfSetIdList returns the ServingNfSetIdList field value if set, zero value otherwise.

func (*NwdafCond) GetServingNfSetIdListOk ¶

func (o *NwdafCond) GetServingNfSetIdListOk() ([]string, bool)

GetServingNfSetIdListOk returns a tuple with the ServingNfSetIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafCond) GetServingNfTypeList ¶

func (o *NwdafCond) GetServingNfTypeList() []NFType

GetServingNfTypeList returns the ServingNfTypeList field value if set, zero value otherwise.

func (*NwdafCond) GetServingNfTypeListOk ¶

func (o *NwdafCond) GetServingNfTypeListOk() ([]NFType, bool)

GetServingNfTypeListOk returns a tuple with the ServingNfTypeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafCond) GetSnssaiList ¶

func (o *NwdafCond) GetSnssaiList() []Snssai

GetSnssaiList returns the SnssaiList field value if set, zero value otherwise.

func (*NwdafCond) GetSnssaiListOk ¶

func (o *NwdafCond) GetSnssaiListOk() ([]Snssai, bool)

GetSnssaiListOk returns a tuple with the SnssaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafCond) GetTaiList ¶

func (o *NwdafCond) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*NwdafCond) GetTaiListOk ¶

func (o *NwdafCond) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafCond) GetTaiRangeList ¶

func (o *NwdafCond) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*NwdafCond) GetTaiRangeListOk ¶

func (o *NwdafCond) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafCond) HasAnalyticsIds ¶

func (o *NwdafCond) HasAnalyticsIds() bool

HasAnalyticsIds returns a boolean if a field has been set.

func (*NwdafCond) HasMlAnalyticsList ¶

func (o *NwdafCond) HasMlAnalyticsList() bool

HasMlAnalyticsList returns a boolean if a field has been set.

func (*NwdafCond) HasServingNfSetIdList ¶

func (o *NwdafCond) HasServingNfSetIdList() bool

HasServingNfSetIdList returns a boolean if a field has been set.

func (*NwdafCond) HasServingNfTypeList ¶

func (o *NwdafCond) HasServingNfTypeList() bool

HasServingNfTypeList returns a boolean if a field has been set.

func (*NwdafCond) HasSnssaiList ¶

func (o *NwdafCond) HasSnssaiList() bool

HasSnssaiList returns a boolean if a field has been set.

func (*NwdafCond) HasTaiList ¶

func (o *NwdafCond) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (*NwdafCond) HasTaiRangeList ¶

func (o *NwdafCond) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (NwdafCond) MarshalJSON ¶

func (o NwdafCond) MarshalJSON() ([]byte, error)

func (*NwdafCond) SetAnalyticsIds ¶

func (o *NwdafCond) SetAnalyticsIds(v []string)

SetAnalyticsIds gets a reference to the given []string and assigns it to the AnalyticsIds field.

func (*NwdafCond) SetConditionType ¶

func (o *NwdafCond) SetConditionType(v string)

SetConditionType sets field value

func (*NwdafCond) SetMlAnalyticsList ¶

func (o *NwdafCond) SetMlAnalyticsList(v []MlAnalyticsInfo)

SetMlAnalyticsList gets a reference to the given []MlAnalyticsInfo and assigns it to the MlAnalyticsList field.

func (*NwdafCond) SetServingNfSetIdList ¶

func (o *NwdafCond) SetServingNfSetIdList(v []string)

SetServingNfSetIdList gets a reference to the given []string and assigns it to the ServingNfSetIdList field.

func (*NwdafCond) SetServingNfTypeList ¶

func (o *NwdafCond) SetServingNfTypeList(v []NFType)

SetServingNfTypeList gets a reference to the given []NFType and assigns it to the ServingNfTypeList field.

func (*NwdafCond) SetSnssaiList ¶

func (o *NwdafCond) SetSnssaiList(v []Snssai)

SetSnssaiList gets a reference to the given []Snssai and assigns it to the SnssaiList field.

func (*NwdafCond) SetTaiList ¶

func (o *NwdafCond) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (*NwdafCond) SetTaiRangeList ¶

func (o *NwdafCond) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (NwdafCond) ToMap ¶

func (o NwdafCond) ToMap() (map[string]interface{}, error)

type NwdafEvent ¶

type NwdafEvent struct {
	String *string
}

NwdafEvent Possible values are: - SLICE_LOAD_LEVEL: Indicates that the event subscribed is load level information of Network Slice - NETWORK_PERFORMANCE: Indicates that the event subscribed is network performance information. - NF_LOAD: Indicates that the event subscribed is load level and status of one or several Network Functions. - SERVICE_EXPERIENCE: Indicates that the event subscribed is service experience. - UE_MOBILITY: Indicates that the event subscribed is UE mobility information. - UE_COMMUNICATION: Indicates that the event subscribed is UE communication information. - QOS_SUSTAINABILITY: Indicates that the event subscribed is QoS sustainability. - ABNORMAL_BEHAVIOUR: Indicates that the event subscribed is abnormal behaviour. - USER_DATA_CONGESTION: Indicates that the event subscribed is user data congestion information. - NSI_LOAD_LEVEL: Indicates that the event subscribed is load level information of Network Slice and the optionally associated Network Slice Instance - DN_PERFORMANCE: Indicates that the event subscribed is DN performance information. - DISPERSION: Indicates that the event subscribed is dispersion information. - RED_TRANS_EXP: Indicates that the event subscribed is redundant transmission experience. - WLAN_PERFORMANCE: Indicates that the event subscribed is WLAN performance. - SM_CONGESTION: Indicates the Session Management Congestion Control Experience information for specific DNN and/or S-NSSAI.

func (*NwdafEvent) MarshalJSON ¶

func (src *NwdafEvent) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NwdafEvent) UnmarshalJSON ¶

func (dst *NwdafEvent) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NwdafFailureCode ¶

type NwdafFailureCode struct {
	String *string
}

NwdafFailureCode Possible values are: - UNAVAILABLE_DATA: Indicates the requested statistics information for the event is rejected since necessary data to perform the service is unavailable. - BOTH_STAT_PRED_NOT_ALLOWED: Indicates the requested analysis information for the event is rejected since the start time is in the past and the end time is in the future, which means the NF service consumer requested both statistics and prediction for the analytics. - UNSATISFIED_REQUESTED_ANALYTICS_TIME: Indicates that the requested event is rejected since the analytics information is not ready when the time indicated by the \"timeAnaNeeded\" attribute (as provided during the creation or modification of subscription) is reached. - OTHER: Indicates the requested analysis information for the event is rejected due to other reasons.

func (*NwdafFailureCode) MarshalJSON ¶

func (src *NwdafFailureCode) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NwdafFailureCode) UnmarshalJSON ¶

func (dst *NwdafFailureCode) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type NwdafInfo ¶

type NwdafInfo struct {
	EventIds        []EventId        `json:"eventIds,omitempty"`
	NwdafEvents     []NwdafEvent     `json:"nwdafEvents,omitempty"`
	TaiList         []Tai            `json:"taiList,omitempty"`
	TaiRangeList    []TaiRange       `json:"taiRangeList,omitempty"`
	NwdafCapability *NwdafCapability `json:"nwdafCapability,omitempty"`
	// indicating a time in seconds.
	AnalyticsDelay     *int32            `json:"analyticsDelay,omitempty"`
	ServingNfSetIdList []string          `json:"servingNfSetIdList,omitempty"`
	ServingNfTypeList  []NFType          `json:"servingNfTypeList,omitempty"`
	MlAnalyticsList    []MlAnalyticsInfo `json:"mlAnalyticsList,omitempty"`
}

NwdafInfo Information of a NWDAF NF Instance

func NewNwdafInfo ¶

func NewNwdafInfo() *NwdafInfo

NewNwdafInfo instantiates a new NwdafInfo 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 NewNwdafInfoWithDefaults ¶

func NewNwdafInfoWithDefaults() *NwdafInfo

NewNwdafInfoWithDefaults instantiates a new NwdafInfo 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 (*NwdafInfo) GetAnalyticsDelay ¶

func (o *NwdafInfo) GetAnalyticsDelay() int32

GetAnalyticsDelay returns the AnalyticsDelay field value if set, zero value otherwise.

func (*NwdafInfo) GetAnalyticsDelayOk ¶

func (o *NwdafInfo) GetAnalyticsDelayOk() (*int32, bool)

GetAnalyticsDelayOk returns a tuple with the AnalyticsDelay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafInfo) GetEventIds ¶

func (o *NwdafInfo) GetEventIds() []EventId

GetEventIds returns the EventIds field value if set, zero value otherwise.

func (*NwdafInfo) GetEventIdsOk ¶

func (o *NwdafInfo) GetEventIdsOk() ([]EventId, bool)

GetEventIdsOk returns a tuple with the EventIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafInfo) GetMlAnalyticsList ¶

func (o *NwdafInfo) GetMlAnalyticsList() []MlAnalyticsInfo

GetMlAnalyticsList returns the MlAnalyticsList field value if set, zero value otherwise.

func (*NwdafInfo) GetMlAnalyticsListOk ¶

func (o *NwdafInfo) GetMlAnalyticsListOk() ([]MlAnalyticsInfo, bool)

GetMlAnalyticsListOk returns a tuple with the MlAnalyticsList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafInfo) GetNwdafCapability ¶

func (o *NwdafInfo) GetNwdafCapability() NwdafCapability

GetNwdafCapability returns the NwdafCapability field value if set, zero value otherwise.

func (*NwdafInfo) GetNwdafCapabilityOk ¶

func (o *NwdafInfo) GetNwdafCapabilityOk() (*NwdafCapability, bool)

GetNwdafCapabilityOk returns a tuple with the NwdafCapability field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafInfo) GetNwdafEvents ¶

func (o *NwdafInfo) GetNwdafEvents() []NwdafEvent

GetNwdafEvents returns the NwdafEvents field value if set, zero value otherwise.

func (*NwdafInfo) GetNwdafEventsOk ¶

func (o *NwdafInfo) GetNwdafEventsOk() ([]NwdafEvent, bool)

GetNwdafEventsOk returns a tuple with the NwdafEvents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafInfo) GetServingNfSetIdList ¶

func (o *NwdafInfo) GetServingNfSetIdList() []string

GetServingNfSetIdList returns the ServingNfSetIdList field value if set, zero value otherwise.

func (*NwdafInfo) GetServingNfSetIdListOk ¶

func (o *NwdafInfo) GetServingNfSetIdListOk() ([]string, bool)

GetServingNfSetIdListOk returns a tuple with the ServingNfSetIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafInfo) GetServingNfTypeList ¶

func (o *NwdafInfo) GetServingNfTypeList() []NFType

GetServingNfTypeList returns the ServingNfTypeList field value if set, zero value otherwise.

func (*NwdafInfo) GetServingNfTypeListOk ¶

func (o *NwdafInfo) GetServingNfTypeListOk() ([]NFType, bool)

GetServingNfTypeListOk returns a tuple with the ServingNfTypeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafInfo) GetTaiList ¶

func (o *NwdafInfo) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*NwdafInfo) GetTaiListOk ¶

func (o *NwdafInfo) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafInfo) GetTaiRangeList ¶

func (o *NwdafInfo) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*NwdafInfo) GetTaiRangeListOk ¶

func (o *NwdafInfo) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NwdafInfo) HasAnalyticsDelay ¶

func (o *NwdafInfo) HasAnalyticsDelay() bool

HasAnalyticsDelay returns a boolean if a field has been set.

func (*NwdafInfo) HasEventIds ¶

func (o *NwdafInfo) HasEventIds() bool

HasEventIds returns a boolean if a field has been set.

func (*NwdafInfo) HasMlAnalyticsList ¶

func (o *NwdafInfo) HasMlAnalyticsList() bool

HasMlAnalyticsList returns a boolean if a field has been set.

func (*NwdafInfo) HasNwdafCapability ¶

func (o *NwdafInfo) HasNwdafCapability() bool

HasNwdafCapability returns a boolean if a field has been set.

func (*NwdafInfo) HasNwdafEvents ¶

func (o *NwdafInfo) HasNwdafEvents() bool

HasNwdafEvents returns a boolean if a field has been set.

func (*NwdafInfo) HasServingNfSetIdList ¶

func (o *NwdafInfo) HasServingNfSetIdList() bool

HasServingNfSetIdList returns a boolean if a field has been set.

func (*NwdafInfo) HasServingNfTypeList ¶

func (o *NwdafInfo) HasServingNfTypeList() bool

HasServingNfTypeList returns a boolean if a field has been set.

func (*NwdafInfo) HasTaiList ¶

func (o *NwdafInfo) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (*NwdafInfo) HasTaiRangeList ¶

func (o *NwdafInfo) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (NwdafInfo) MarshalJSON ¶

func (o NwdafInfo) MarshalJSON() ([]byte, error)

func (*NwdafInfo) SetAnalyticsDelay ¶

func (o *NwdafInfo) SetAnalyticsDelay(v int32)

SetAnalyticsDelay gets a reference to the given int32 and assigns it to the AnalyticsDelay field.

func (*NwdafInfo) SetEventIds ¶

func (o *NwdafInfo) SetEventIds(v []EventId)

SetEventIds gets a reference to the given []EventId and assigns it to the EventIds field.

func (*NwdafInfo) SetMlAnalyticsList ¶

func (o *NwdafInfo) SetMlAnalyticsList(v []MlAnalyticsInfo)

SetMlAnalyticsList gets a reference to the given []MlAnalyticsInfo and assigns it to the MlAnalyticsList field.

func (*NwdafInfo) SetNwdafCapability ¶

func (o *NwdafInfo) SetNwdafCapability(v NwdafCapability)

SetNwdafCapability gets a reference to the given NwdafCapability and assigns it to the NwdafCapability field.

func (*NwdafInfo) SetNwdafEvents ¶

func (o *NwdafInfo) SetNwdafEvents(v []NwdafEvent)

SetNwdafEvents gets a reference to the given []NwdafEvent and assigns it to the NwdafEvents field.

func (*NwdafInfo) SetServingNfSetIdList ¶

func (o *NwdafInfo) SetServingNfSetIdList(v []string)

SetServingNfSetIdList gets a reference to the given []string and assigns it to the ServingNfSetIdList field.

func (*NwdafInfo) SetServingNfTypeList ¶

func (o *NwdafInfo) SetServingNfTypeList(v []NFType)

SetServingNfTypeList gets a reference to the given []NFType and assigns it to the ServingNfTypeList field.

func (*NwdafInfo) SetTaiList ¶

func (o *NwdafInfo) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (*NwdafInfo) SetTaiRangeList ¶

func (o *NwdafInfo) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (NwdafInfo) ToMap ¶

func (o NwdafInfo) ToMap() (map[string]interface{}, error)

type ObservedRedundantTransExp ¶

type ObservedRedundantTransExp struct {
	// Unsigned integer indicating Packet Loss Rate (see clauses 5.7.2.8 and 5.7.4 of 3GPP TS 23.501), expressed in tenth of percent.
	AvgPktDropRateUl *int32 `json:"avgPktDropRateUl,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	VarPktDropRateUl *float32 `json:"varPktDropRateUl,omitempty"`
	// Unsigned integer indicating Packet Loss Rate (see clauses 5.7.2.8 and 5.7.4 of 3GPP TS 23.501), expressed in tenth of percent.
	AvgPktDropRateDl *int32 `json:"avgPktDropRateDl,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	VarPktDropRateDl *float32 `json:"varPktDropRateDl,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	AvgPktDelayUl *int32 `json:"avgPktDelayUl,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	VarPktDelayUl *float32 `json:"varPktDelayUl,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	AvgPktDelayDl *int32 `json:"avgPktDelayDl,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	VarPktDelayDl *float32 `json:"varPktDelayDl,omitempty"`
}

ObservedRedundantTransExp Represents the observed redundant transmission experience related information.

func NewObservedRedundantTransExp ¶

func NewObservedRedundantTransExp() *ObservedRedundantTransExp

NewObservedRedundantTransExp instantiates a new ObservedRedundantTransExp 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 NewObservedRedundantTransExpWithDefaults ¶

func NewObservedRedundantTransExpWithDefaults() *ObservedRedundantTransExp

NewObservedRedundantTransExpWithDefaults instantiates a new ObservedRedundantTransExp 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 (*ObservedRedundantTransExp) GetAvgPktDelayDl ¶

func (o *ObservedRedundantTransExp) GetAvgPktDelayDl() int32

GetAvgPktDelayDl returns the AvgPktDelayDl field value if set, zero value otherwise.

func (*ObservedRedundantTransExp) GetAvgPktDelayDlOk ¶

func (o *ObservedRedundantTransExp) GetAvgPktDelayDlOk() (*int32, bool)

GetAvgPktDelayDlOk returns a tuple with the AvgPktDelayDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObservedRedundantTransExp) GetAvgPktDelayUl ¶

func (o *ObservedRedundantTransExp) GetAvgPktDelayUl() int32

GetAvgPktDelayUl returns the AvgPktDelayUl field value if set, zero value otherwise.

func (*ObservedRedundantTransExp) GetAvgPktDelayUlOk ¶

func (o *ObservedRedundantTransExp) GetAvgPktDelayUlOk() (*int32, bool)

GetAvgPktDelayUlOk returns a tuple with the AvgPktDelayUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObservedRedundantTransExp) GetAvgPktDropRateDl ¶

func (o *ObservedRedundantTransExp) GetAvgPktDropRateDl() int32

GetAvgPktDropRateDl returns the AvgPktDropRateDl field value if set, zero value otherwise.

func (*ObservedRedundantTransExp) GetAvgPktDropRateDlOk ¶

func (o *ObservedRedundantTransExp) GetAvgPktDropRateDlOk() (*int32, bool)

GetAvgPktDropRateDlOk returns a tuple with the AvgPktDropRateDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObservedRedundantTransExp) GetAvgPktDropRateUl ¶

func (o *ObservedRedundantTransExp) GetAvgPktDropRateUl() int32

GetAvgPktDropRateUl returns the AvgPktDropRateUl field value if set, zero value otherwise.

func (*ObservedRedundantTransExp) GetAvgPktDropRateUlOk ¶

func (o *ObservedRedundantTransExp) GetAvgPktDropRateUlOk() (*int32, bool)

GetAvgPktDropRateUlOk returns a tuple with the AvgPktDropRateUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObservedRedundantTransExp) GetVarPktDelayDl ¶

func (o *ObservedRedundantTransExp) GetVarPktDelayDl() float32

GetVarPktDelayDl returns the VarPktDelayDl field value if set, zero value otherwise.

func (*ObservedRedundantTransExp) GetVarPktDelayDlOk ¶

func (o *ObservedRedundantTransExp) GetVarPktDelayDlOk() (*float32, bool)

GetVarPktDelayDlOk returns a tuple with the VarPktDelayDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObservedRedundantTransExp) GetVarPktDelayUl ¶

func (o *ObservedRedundantTransExp) GetVarPktDelayUl() float32

GetVarPktDelayUl returns the VarPktDelayUl field value if set, zero value otherwise.

func (*ObservedRedundantTransExp) GetVarPktDelayUlOk ¶

func (o *ObservedRedundantTransExp) GetVarPktDelayUlOk() (*float32, bool)

GetVarPktDelayUlOk returns a tuple with the VarPktDelayUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObservedRedundantTransExp) GetVarPktDropRateDl ¶

func (o *ObservedRedundantTransExp) GetVarPktDropRateDl() float32

GetVarPktDropRateDl returns the VarPktDropRateDl field value if set, zero value otherwise.

func (*ObservedRedundantTransExp) GetVarPktDropRateDlOk ¶

func (o *ObservedRedundantTransExp) GetVarPktDropRateDlOk() (*float32, bool)

GetVarPktDropRateDlOk returns a tuple with the VarPktDropRateDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObservedRedundantTransExp) GetVarPktDropRateUl ¶

func (o *ObservedRedundantTransExp) GetVarPktDropRateUl() float32

GetVarPktDropRateUl returns the VarPktDropRateUl field value if set, zero value otherwise.

func (*ObservedRedundantTransExp) GetVarPktDropRateUlOk ¶

func (o *ObservedRedundantTransExp) GetVarPktDropRateUlOk() (*float32, bool)

GetVarPktDropRateUlOk returns a tuple with the VarPktDropRateUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObservedRedundantTransExp) HasAvgPktDelayDl ¶

func (o *ObservedRedundantTransExp) HasAvgPktDelayDl() bool

HasAvgPktDelayDl returns a boolean if a field has been set.

func (*ObservedRedundantTransExp) HasAvgPktDelayUl ¶

func (o *ObservedRedundantTransExp) HasAvgPktDelayUl() bool

HasAvgPktDelayUl returns a boolean if a field has been set.

func (*ObservedRedundantTransExp) HasAvgPktDropRateDl ¶

func (o *ObservedRedundantTransExp) HasAvgPktDropRateDl() bool

HasAvgPktDropRateDl returns a boolean if a field has been set.

func (*ObservedRedundantTransExp) HasAvgPktDropRateUl ¶

func (o *ObservedRedundantTransExp) HasAvgPktDropRateUl() bool

HasAvgPktDropRateUl returns a boolean if a field has been set.

func (*ObservedRedundantTransExp) HasVarPktDelayDl ¶

func (o *ObservedRedundantTransExp) HasVarPktDelayDl() bool

HasVarPktDelayDl returns a boolean if a field has been set.

func (*ObservedRedundantTransExp) HasVarPktDelayUl ¶

func (o *ObservedRedundantTransExp) HasVarPktDelayUl() bool

HasVarPktDelayUl returns a boolean if a field has been set.

func (*ObservedRedundantTransExp) HasVarPktDropRateDl ¶

func (o *ObservedRedundantTransExp) HasVarPktDropRateDl() bool

HasVarPktDropRateDl returns a boolean if a field has been set.

func (*ObservedRedundantTransExp) HasVarPktDropRateUl ¶

func (o *ObservedRedundantTransExp) HasVarPktDropRateUl() bool

HasVarPktDropRateUl returns a boolean if a field has been set.

func (ObservedRedundantTransExp) MarshalJSON ¶

func (o ObservedRedundantTransExp) MarshalJSON() ([]byte, error)

func (*ObservedRedundantTransExp) SetAvgPktDelayDl ¶

func (o *ObservedRedundantTransExp) SetAvgPktDelayDl(v int32)

SetAvgPktDelayDl gets a reference to the given int32 and assigns it to the AvgPktDelayDl field.

func (*ObservedRedundantTransExp) SetAvgPktDelayUl ¶

func (o *ObservedRedundantTransExp) SetAvgPktDelayUl(v int32)

SetAvgPktDelayUl gets a reference to the given int32 and assigns it to the AvgPktDelayUl field.

func (*ObservedRedundantTransExp) SetAvgPktDropRateDl ¶

func (o *ObservedRedundantTransExp) SetAvgPktDropRateDl(v int32)

SetAvgPktDropRateDl gets a reference to the given int32 and assigns it to the AvgPktDropRateDl field.

func (*ObservedRedundantTransExp) SetAvgPktDropRateUl ¶

func (o *ObservedRedundantTransExp) SetAvgPktDropRateUl(v int32)

SetAvgPktDropRateUl gets a reference to the given int32 and assigns it to the AvgPktDropRateUl field.

func (*ObservedRedundantTransExp) SetVarPktDelayDl ¶

func (o *ObservedRedundantTransExp) SetVarPktDelayDl(v float32)

SetVarPktDelayDl gets a reference to the given float32 and assigns it to the VarPktDelayDl field.

func (*ObservedRedundantTransExp) SetVarPktDelayUl ¶

func (o *ObservedRedundantTransExp) SetVarPktDelayUl(v float32)

SetVarPktDelayUl gets a reference to the given float32 and assigns it to the VarPktDelayUl field.

func (*ObservedRedundantTransExp) SetVarPktDropRateDl ¶

func (o *ObservedRedundantTransExp) SetVarPktDropRateDl(v float32)

SetVarPktDropRateDl gets a reference to the given float32 and assigns it to the VarPktDropRateDl field.

func (*ObservedRedundantTransExp) SetVarPktDropRateUl ¶

func (o *ObservedRedundantTransExp) SetVarPktDropRateUl(v float32)

SetVarPktDropRateUl gets a reference to the given float32 and assigns it to the VarPktDropRateUl field.

func (ObservedRedundantTransExp) ToMap ¶

func (o ObservedRedundantTransExp) ToMap() (map[string]interface{}, error)

type OutputStrategy ¶

type OutputStrategy struct {
	String *string
}

OutputStrategy Possible values are: - BINARY: Indicates that the analytics shall only be reported when the requested level of accuracy is reached within a cycle of periodic notification. - GRADIENT: Indicates that the analytics shall be reported according with the periodicity irrespective of whether the requested level of accuracy has been reached or not.

func (*OutputStrategy) MarshalJSON ¶

func (src *OutputStrategy) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*OutputStrategy) UnmarshalJSON ¶

func (dst *OutputStrategy) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ParameterProcessingInstruction ¶

type ParameterProcessingInstruction struct {
	// A JSON pointer value that references an attribute within the notification object to which the processing instruction is applied.
	Name string `json:"name"`
	// A list of values for the attribute identified by the name attribute.
	Values []interface{} `json:"values"`
	// Attributes requested to be used in the summarized reports.
	SumAttrs  []SummarizationAttribute `json:"sumAttrs"`
	AggrLevel *AggregationLevel        `json:"aggrLevel,omitempty"`
	// Indicates the UEs for which processed reports are requested.
	Supis []string `json:"supis,omitempty"`
	// Indicates the Areas of Interest for which processed reports are requested.
	Areas []NetworkAreaInfo `json:"areas,omitempty"`
}

ParameterProcessingInstruction Contains an event parameter name and the respective event parameter values and sets of attributes to be used in summarized reports.

func NewParameterProcessingInstruction ¶

func NewParameterProcessingInstruction(name string, values []interface{}, sumAttrs []SummarizationAttribute) *ParameterProcessingInstruction

NewParameterProcessingInstruction instantiates a new ParameterProcessingInstruction 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 NewParameterProcessingInstructionWithDefaults ¶

func NewParameterProcessingInstructionWithDefaults() *ParameterProcessingInstruction

NewParameterProcessingInstructionWithDefaults instantiates a new ParameterProcessingInstruction 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 (*ParameterProcessingInstruction) GetAggrLevel ¶

GetAggrLevel returns the AggrLevel field value if set, zero value otherwise.

func (*ParameterProcessingInstruction) GetAggrLevelOk ¶

func (o *ParameterProcessingInstruction) GetAggrLevelOk() (*AggregationLevel, bool)

GetAggrLevelOk returns a tuple with the AggrLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ParameterProcessingInstruction) GetAreas ¶

GetAreas returns the Areas field value if set, zero value otherwise.

func (*ParameterProcessingInstruction) GetAreasOk ¶

GetAreasOk returns a tuple with the Areas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ParameterProcessingInstruction) GetName ¶

GetName returns the Name field value

func (*ParameterProcessingInstruction) GetNameOk ¶

func (o *ParameterProcessingInstruction) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ParameterProcessingInstruction) GetSumAttrs ¶

GetSumAttrs returns the SumAttrs field value

func (*ParameterProcessingInstruction) GetSumAttrsOk ¶

GetSumAttrsOk returns a tuple with the SumAttrs field value and a boolean to check if the value has been set.

func (*ParameterProcessingInstruction) GetSupis ¶

func (o *ParameterProcessingInstruction) GetSupis() []string

GetSupis returns the Supis field value if set, zero value otherwise.

func (*ParameterProcessingInstruction) GetSupisOk ¶

func (o *ParameterProcessingInstruction) GetSupisOk() ([]string, bool)

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 (*ParameterProcessingInstruction) GetValues ¶

func (o *ParameterProcessingInstruction) GetValues() []interface{}

GetValues returns the Values field value

func (*ParameterProcessingInstruction) GetValuesOk ¶

func (o *ParameterProcessingInstruction) GetValuesOk() ([]interface{}, bool)

GetValuesOk returns a tuple with the Values field value and a boolean to check if the value has been set.

func (*ParameterProcessingInstruction) HasAggrLevel ¶

func (o *ParameterProcessingInstruction) HasAggrLevel() bool

HasAggrLevel returns a boolean if a field has been set.

func (*ParameterProcessingInstruction) HasAreas ¶

func (o *ParameterProcessingInstruction) HasAreas() bool

HasAreas returns a boolean if a field has been set.

func (*ParameterProcessingInstruction) HasSupis ¶

func (o *ParameterProcessingInstruction) HasSupis() bool

HasSupis returns a boolean if a field has been set.

func (ParameterProcessingInstruction) MarshalJSON ¶

func (o ParameterProcessingInstruction) MarshalJSON() ([]byte, error)

func (*ParameterProcessingInstruction) SetAggrLevel ¶

SetAggrLevel gets a reference to the given AggregationLevel and assigns it to the AggrLevel field.

func (*ParameterProcessingInstruction) SetAreas ¶

SetAreas gets a reference to the given []NetworkAreaInfo and assigns it to the Areas field.

func (*ParameterProcessingInstruction) SetName ¶

func (o *ParameterProcessingInstruction) SetName(v string)

SetName sets field value

func (*ParameterProcessingInstruction) SetSumAttrs ¶

SetSumAttrs sets field value

func (*ParameterProcessingInstruction) SetSupis ¶

func (o *ParameterProcessingInstruction) SetSupis(v []string)

SetSupis gets a reference to the given []string and assigns it to the Supis field.

func (*ParameterProcessingInstruction) SetValues ¶

func (o *ParameterProcessingInstruction) SetValues(v []interface{})

SetValues sets field value

func (ParameterProcessingInstruction) ToMap ¶

func (o ParameterProcessingInstruction) ToMap() (map[string]interface{}, error)

type PartitioningCriteria ¶

type PartitioningCriteria struct {
	String *string
}

PartitioningCriteria Possible values are: - \"TAC\": Type Allocation Code - \"SUBPLMN\": Subscriber PLMN ID - \"GEOAREA\": Geographical area, i.e. list(s) of TAI(s) - \"SNSSAI\": S-NSSAI - \"DNN\": DNN

func (*PartitioningCriteria) MarshalJSON ¶

func (src *PartitioningCriteria) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PartitioningCriteria) UnmarshalJSON ¶

func (dst *PartitioningCriteria) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PcfInfo ¶

type PcfInfo struct {
	// Identifier of a group of NFs.
	GroupId    *string         `json:"groupId,omitempty"`
	DnnList    []string        `json:"dnnList,omitempty"`
	SupiRanges []SupiRange     `json:"supiRanges,omitempty"`
	GpsiRanges []IdentityRange `json:"gpsiRanges,omitempty"`
	// Fully Qualified Domain Name
	RxDiamHost *string `json:"rxDiamHost,omitempty"`
	// Fully Qualified Domain Name
	RxDiamRealm     *string          `json:"rxDiamRealm,omitempty"`
	V2xSupportInd   *bool            `json:"v2xSupportInd,omitempty"`
	ProseSupportInd *bool            `json:"proseSupportInd,omitempty"`
	ProseCapability *ProSeCapability `json:"proseCapability,omitempty"`
	V2xCapability   *V2xCapability   `json:"v2xCapability,omitempty"`
}

PcfInfo Information of a PCF NF Instance

func NewPcfInfo ¶

func NewPcfInfo() *PcfInfo

NewPcfInfo instantiates a new PcfInfo 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 NewPcfInfoWithDefaults ¶

func NewPcfInfoWithDefaults() *PcfInfo

NewPcfInfoWithDefaults instantiates a new PcfInfo 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 (*PcfInfo) GetDnnList ¶

func (o *PcfInfo) GetDnnList() []string

GetDnnList returns the DnnList field value if set, zero value otherwise.

func (*PcfInfo) GetDnnListOk ¶

func (o *PcfInfo) GetDnnListOk() ([]string, bool)

GetDnnListOk returns a tuple with the DnnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfInfo) GetGpsiRanges ¶

func (o *PcfInfo) GetGpsiRanges() []IdentityRange

GetGpsiRanges returns the GpsiRanges field value if set, zero value otherwise.

func (*PcfInfo) GetGpsiRangesOk ¶

func (o *PcfInfo) GetGpsiRangesOk() ([]IdentityRange, bool)

GetGpsiRangesOk returns a tuple with the GpsiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfInfo) GetGroupId ¶

func (o *PcfInfo) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*PcfInfo) GetGroupIdOk ¶

func (o *PcfInfo) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfInfo) GetProseCapability ¶

func (o *PcfInfo) GetProseCapability() ProSeCapability

GetProseCapability returns the ProseCapability field value if set, zero value otherwise.

func (*PcfInfo) GetProseCapabilityOk ¶

func (o *PcfInfo) GetProseCapabilityOk() (*ProSeCapability, bool)

GetProseCapabilityOk returns a tuple with the ProseCapability field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfInfo) GetProseSupportInd ¶

func (o *PcfInfo) GetProseSupportInd() bool

GetProseSupportInd returns the ProseSupportInd field value if set, zero value otherwise.

func (*PcfInfo) GetProseSupportIndOk ¶

func (o *PcfInfo) GetProseSupportIndOk() (*bool, bool)

GetProseSupportIndOk returns a tuple with the ProseSupportInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfInfo) GetRxDiamHost ¶

func (o *PcfInfo) GetRxDiamHost() string

GetRxDiamHost returns the RxDiamHost field value if set, zero value otherwise.

func (*PcfInfo) GetRxDiamHostOk ¶

func (o *PcfInfo) GetRxDiamHostOk() (*string, bool)

GetRxDiamHostOk returns a tuple with the RxDiamHost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfInfo) GetRxDiamRealm ¶

func (o *PcfInfo) GetRxDiamRealm() string

GetRxDiamRealm returns the RxDiamRealm field value if set, zero value otherwise.

func (*PcfInfo) GetRxDiamRealmOk ¶

func (o *PcfInfo) GetRxDiamRealmOk() (*string, bool)

GetRxDiamRealmOk returns a tuple with the RxDiamRealm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfInfo) GetSupiRanges ¶

func (o *PcfInfo) GetSupiRanges() []SupiRange

GetSupiRanges returns the SupiRanges field value if set, zero value otherwise.

func (*PcfInfo) GetSupiRangesOk ¶

func (o *PcfInfo) GetSupiRangesOk() ([]SupiRange, bool)

GetSupiRangesOk returns a tuple with the SupiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfInfo) GetV2xCapability ¶

func (o *PcfInfo) GetV2xCapability() V2xCapability

GetV2xCapability returns the V2xCapability field value if set, zero value otherwise.

func (*PcfInfo) GetV2xCapabilityOk ¶

func (o *PcfInfo) GetV2xCapabilityOk() (*V2xCapability, bool)

GetV2xCapabilityOk returns a tuple with the V2xCapability field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfInfo) GetV2xSupportInd ¶

func (o *PcfInfo) GetV2xSupportInd() bool

GetV2xSupportInd returns the V2xSupportInd field value if set, zero value otherwise.

func (*PcfInfo) GetV2xSupportIndOk ¶

func (o *PcfInfo) GetV2xSupportIndOk() (*bool, bool)

GetV2xSupportIndOk returns a tuple with the V2xSupportInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfInfo) HasDnnList ¶

func (o *PcfInfo) HasDnnList() bool

HasDnnList returns a boolean if a field has been set.

func (*PcfInfo) HasGpsiRanges ¶

func (o *PcfInfo) HasGpsiRanges() bool

HasGpsiRanges returns a boolean if a field has been set.

func (*PcfInfo) HasGroupId ¶

func (o *PcfInfo) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*PcfInfo) HasProseCapability ¶

func (o *PcfInfo) HasProseCapability() bool

HasProseCapability returns a boolean if a field has been set.

func (*PcfInfo) HasProseSupportInd ¶

func (o *PcfInfo) HasProseSupportInd() bool

HasProseSupportInd returns a boolean if a field has been set.

func (*PcfInfo) HasRxDiamHost ¶

func (o *PcfInfo) HasRxDiamHost() bool

HasRxDiamHost returns a boolean if a field has been set.

func (*PcfInfo) HasRxDiamRealm ¶

func (o *PcfInfo) HasRxDiamRealm() bool

HasRxDiamRealm returns a boolean if a field has been set.

func (*PcfInfo) HasSupiRanges ¶

func (o *PcfInfo) HasSupiRanges() bool

HasSupiRanges returns a boolean if a field has been set.

func (*PcfInfo) HasV2xCapability ¶

func (o *PcfInfo) HasV2xCapability() bool

HasV2xCapability returns a boolean if a field has been set.

func (*PcfInfo) HasV2xSupportInd ¶

func (o *PcfInfo) HasV2xSupportInd() bool

HasV2xSupportInd returns a boolean if a field has been set.

func (PcfInfo) MarshalJSON ¶

func (o PcfInfo) MarshalJSON() ([]byte, error)

func (*PcfInfo) SetDnnList ¶

func (o *PcfInfo) SetDnnList(v []string)

SetDnnList gets a reference to the given []string and assigns it to the DnnList field.

func (*PcfInfo) SetGpsiRanges ¶

func (o *PcfInfo) SetGpsiRanges(v []IdentityRange)

SetGpsiRanges gets a reference to the given []IdentityRange and assigns it to the GpsiRanges field.

func (*PcfInfo) SetGroupId ¶

func (o *PcfInfo) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*PcfInfo) SetProseCapability ¶

func (o *PcfInfo) SetProseCapability(v ProSeCapability)

SetProseCapability gets a reference to the given ProSeCapability and assigns it to the ProseCapability field.

func (*PcfInfo) SetProseSupportInd ¶

func (o *PcfInfo) SetProseSupportInd(v bool)

SetProseSupportInd gets a reference to the given bool and assigns it to the ProseSupportInd field.

func (*PcfInfo) SetRxDiamHost ¶

func (o *PcfInfo) SetRxDiamHost(v string)

SetRxDiamHost gets a reference to the given string and assigns it to the RxDiamHost field.

func (*PcfInfo) SetRxDiamRealm ¶

func (o *PcfInfo) SetRxDiamRealm(v string)

SetRxDiamRealm gets a reference to the given string and assigns it to the RxDiamRealm field.

func (*PcfInfo) SetSupiRanges ¶

func (o *PcfInfo) SetSupiRanges(v []SupiRange)

SetSupiRanges gets a reference to the given []SupiRange and assigns it to the SupiRanges field.

func (*PcfInfo) SetV2xCapability ¶

func (o *PcfInfo) SetV2xCapability(v V2xCapability)

SetV2xCapability gets a reference to the given V2xCapability and assigns it to the V2xCapability field.

func (*PcfInfo) SetV2xSupportInd ¶

func (o *PcfInfo) SetV2xSupportInd(v bool)

SetV2xSupportInd gets a reference to the given bool and assigns it to the V2xSupportInd field.

func (PcfInfo) ToMap ¶

func (o PcfInfo) ToMap() (map[string]interface{}, error)

type PcscfInfo ¶

type PcscfInfo struct {
	AccessType []AccessType `json:"accessType,omitempty"`
	DnnList    []string     `json:"dnnList,omitempty"`
	// Fully Qualified Domain Name
	GmFqdn          *string    `json:"gmFqdn,omitempty"`
	GmIpv4Addresses []string   `json:"gmIpv4Addresses,omitempty"`
	GmIpv6Addresses []Ipv6Addr `json:"gmIpv6Addresses,omitempty"`
	// Fully Qualified Domain Name
	MwFqdn                  *string            `json:"mwFqdn,omitempty"`
	MwIpv4Addresses         []string           `json:"mwIpv4Addresses,omitempty"`
	MwIpv6Addresses         []Ipv6Addr         `json:"mwIpv6Addresses,omitempty"`
	ServedIpv4AddressRanges []Ipv4AddressRange `json:"servedIpv4AddressRanges,omitempty"`
	ServedIpv6PrefixRanges  []Ipv6PrefixRange  `json:"servedIpv6PrefixRanges,omitempty"`
}

PcscfInfo Information of a P-CSCF NF Instance

func NewPcscfInfo ¶

func NewPcscfInfo() *PcscfInfo

NewPcscfInfo instantiates a new PcscfInfo 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 NewPcscfInfoWithDefaults ¶

func NewPcscfInfoWithDefaults() *PcscfInfo

NewPcscfInfoWithDefaults instantiates a new PcscfInfo 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 (*PcscfInfo) GetAccessType ¶

func (o *PcscfInfo) GetAccessType() []AccessType

GetAccessType returns the AccessType field value if set, zero value otherwise.

func (*PcscfInfo) GetAccessTypeOk ¶

func (o *PcscfInfo) GetAccessTypeOk() ([]AccessType, bool)

GetAccessTypeOk returns a tuple with the AccessType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcscfInfo) GetDnnList ¶

func (o *PcscfInfo) GetDnnList() []string

GetDnnList returns the DnnList field value if set, zero value otherwise.

func (*PcscfInfo) GetDnnListOk ¶

func (o *PcscfInfo) GetDnnListOk() ([]string, bool)

GetDnnListOk returns a tuple with the DnnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcscfInfo) GetGmFqdn ¶

func (o *PcscfInfo) GetGmFqdn() string

GetGmFqdn returns the GmFqdn field value if set, zero value otherwise.

func (*PcscfInfo) GetGmFqdnOk ¶

func (o *PcscfInfo) GetGmFqdnOk() (*string, bool)

GetGmFqdnOk returns a tuple with the GmFqdn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcscfInfo) GetGmIpv4Addresses ¶

func (o *PcscfInfo) GetGmIpv4Addresses() []string

GetGmIpv4Addresses returns the GmIpv4Addresses field value if set, zero value otherwise.

func (*PcscfInfo) GetGmIpv4AddressesOk ¶

func (o *PcscfInfo) GetGmIpv4AddressesOk() ([]string, bool)

GetGmIpv4AddressesOk returns a tuple with the GmIpv4Addresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcscfInfo) GetGmIpv6Addresses ¶

func (o *PcscfInfo) GetGmIpv6Addresses() []Ipv6Addr

GetGmIpv6Addresses returns the GmIpv6Addresses field value if set, zero value otherwise.

func (*PcscfInfo) GetGmIpv6AddressesOk ¶

func (o *PcscfInfo) GetGmIpv6AddressesOk() ([]Ipv6Addr, bool)

GetGmIpv6AddressesOk returns a tuple with the GmIpv6Addresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcscfInfo) GetMwFqdn ¶

func (o *PcscfInfo) GetMwFqdn() string

GetMwFqdn returns the MwFqdn field value if set, zero value otherwise.

func (*PcscfInfo) GetMwFqdnOk ¶

func (o *PcscfInfo) GetMwFqdnOk() (*string, bool)

GetMwFqdnOk returns a tuple with the MwFqdn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcscfInfo) GetMwIpv4Addresses ¶

func (o *PcscfInfo) GetMwIpv4Addresses() []string

GetMwIpv4Addresses returns the MwIpv4Addresses field value if set, zero value otherwise.

func (*PcscfInfo) GetMwIpv4AddressesOk ¶

func (o *PcscfInfo) GetMwIpv4AddressesOk() ([]string, bool)

GetMwIpv4AddressesOk returns a tuple with the MwIpv4Addresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcscfInfo) GetMwIpv6Addresses ¶

func (o *PcscfInfo) GetMwIpv6Addresses() []Ipv6Addr

GetMwIpv6Addresses returns the MwIpv6Addresses field value if set, zero value otherwise.

func (*PcscfInfo) GetMwIpv6AddressesOk ¶

func (o *PcscfInfo) GetMwIpv6AddressesOk() ([]Ipv6Addr, bool)

GetMwIpv6AddressesOk returns a tuple with the MwIpv6Addresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcscfInfo) GetServedIpv4AddressRanges ¶

func (o *PcscfInfo) GetServedIpv4AddressRanges() []Ipv4AddressRange

GetServedIpv4AddressRanges returns the ServedIpv4AddressRanges field value if set, zero value otherwise.

func (*PcscfInfo) GetServedIpv4AddressRangesOk ¶

func (o *PcscfInfo) GetServedIpv4AddressRangesOk() ([]Ipv4AddressRange, bool)

GetServedIpv4AddressRangesOk returns a tuple with the ServedIpv4AddressRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcscfInfo) GetServedIpv6PrefixRanges ¶

func (o *PcscfInfo) GetServedIpv6PrefixRanges() []Ipv6PrefixRange

GetServedIpv6PrefixRanges returns the ServedIpv6PrefixRanges field value if set, zero value otherwise.

func (*PcscfInfo) GetServedIpv6PrefixRangesOk ¶

func (o *PcscfInfo) GetServedIpv6PrefixRangesOk() ([]Ipv6PrefixRange, bool)

GetServedIpv6PrefixRangesOk returns a tuple with the ServedIpv6PrefixRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcscfInfo) HasAccessType ¶

func (o *PcscfInfo) HasAccessType() bool

HasAccessType returns a boolean if a field has been set.

func (*PcscfInfo) HasDnnList ¶

func (o *PcscfInfo) HasDnnList() bool

HasDnnList returns a boolean if a field has been set.

func (*PcscfInfo) HasGmFqdn ¶

func (o *PcscfInfo) HasGmFqdn() bool

HasGmFqdn returns a boolean if a field has been set.

func (*PcscfInfo) HasGmIpv4Addresses ¶

func (o *PcscfInfo) HasGmIpv4Addresses() bool

HasGmIpv4Addresses returns a boolean if a field has been set.

func (*PcscfInfo) HasGmIpv6Addresses ¶

func (o *PcscfInfo) HasGmIpv6Addresses() bool

HasGmIpv6Addresses returns a boolean if a field has been set.

func (*PcscfInfo) HasMwFqdn ¶

func (o *PcscfInfo) HasMwFqdn() bool

HasMwFqdn returns a boolean if a field has been set.

func (*PcscfInfo) HasMwIpv4Addresses ¶

func (o *PcscfInfo) HasMwIpv4Addresses() bool

HasMwIpv4Addresses returns a boolean if a field has been set.

func (*PcscfInfo) HasMwIpv6Addresses ¶

func (o *PcscfInfo) HasMwIpv6Addresses() bool

HasMwIpv6Addresses returns a boolean if a field has been set.

func (*PcscfInfo) HasServedIpv4AddressRanges ¶

func (o *PcscfInfo) HasServedIpv4AddressRanges() bool

HasServedIpv4AddressRanges returns a boolean if a field has been set.

func (*PcscfInfo) HasServedIpv6PrefixRanges ¶

func (o *PcscfInfo) HasServedIpv6PrefixRanges() bool

HasServedIpv6PrefixRanges returns a boolean if a field has been set.

func (PcscfInfo) MarshalJSON ¶

func (o PcscfInfo) MarshalJSON() ([]byte, error)

func (*PcscfInfo) SetAccessType ¶

func (o *PcscfInfo) SetAccessType(v []AccessType)

SetAccessType gets a reference to the given []AccessType and assigns it to the AccessType field.

func (*PcscfInfo) SetDnnList ¶

func (o *PcscfInfo) SetDnnList(v []string)

SetDnnList gets a reference to the given []string and assigns it to the DnnList field.

func (*PcscfInfo) SetGmFqdn ¶

func (o *PcscfInfo) SetGmFqdn(v string)

SetGmFqdn gets a reference to the given string and assigns it to the GmFqdn field.

func (*PcscfInfo) SetGmIpv4Addresses ¶

func (o *PcscfInfo) SetGmIpv4Addresses(v []string)

SetGmIpv4Addresses gets a reference to the given []string and assigns it to the GmIpv4Addresses field.

func (*PcscfInfo) SetGmIpv6Addresses ¶

func (o *PcscfInfo) SetGmIpv6Addresses(v []Ipv6Addr)

SetGmIpv6Addresses gets a reference to the given []Ipv6Addr and assigns it to the GmIpv6Addresses field.

func (*PcscfInfo) SetMwFqdn ¶

func (o *PcscfInfo) SetMwFqdn(v string)

SetMwFqdn gets a reference to the given string and assigns it to the MwFqdn field.

func (*PcscfInfo) SetMwIpv4Addresses ¶

func (o *PcscfInfo) SetMwIpv4Addresses(v []string)

SetMwIpv4Addresses gets a reference to the given []string and assigns it to the MwIpv4Addresses field.

func (*PcscfInfo) SetMwIpv6Addresses ¶

func (o *PcscfInfo) SetMwIpv6Addresses(v []Ipv6Addr)

SetMwIpv6Addresses gets a reference to the given []Ipv6Addr and assigns it to the MwIpv6Addresses field.

func (*PcscfInfo) SetServedIpv4AddressRanges ¶

func (o *PcscfInfo) SetServedIpv4AddressRanges(v []Ipv4AddressRange)

SetServedIpv4AddressRanges gets a reference to the given []Ipv4AddressRange and assigns it to the ServedIpv4AddressRanges field.

func (*PcscfInfo) SetServedIpv6PrefixRanges ¶

func (o *PcscfInfo) SetServedIpv6PrefixRanges(v []Ipv6PrefixRange)

SetServedIpv6PrefixRanges gets a reference to the given []Ipv6PrefixRange and assigns it to the ServedIpv6PrefixRanges field.

func (PcscfInfo) ToMap ¶

func (o PcscfInfo) ToMap() (map[string]interface{}, error)

type PdnConnectivityStatReport ¶

type PdnConnectivityStatReport struct {
	PdnConnStat PdnConnectivityStatus `json:"pdnConnStat"`
	// 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"`
	// Unsigned integer identifying a PDU session, within the range 0 to 255, as specified in  clause 11.2.3.1b, bits 1 to 8, of 3GPP TS 24.007. If the PDU Session ID is allocated by the  Core Network for UEs not supporting N1 mode, reserved range 64 to 95 is used. PDU Session ID  within the reserved range is only visible in the Core Network.
	PduSeId *int32 `json:"pduSeId,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr     *string         `json:"ipv4Addr,omitempty"`
	Ipv6Prefixes []Ipv6Prefix    `json:"ipv6Prefixes,omitempty"`
	Ipv6Addrs    []Ipv6Addr      `json:"ipv6Addrs,omitempty"`
	PduSessType  *PduSessionType `json:"pduSessType,omitempty"`
}

PdnConnectivityStatReport struct for PdnConnectivityStatReport

func NewPdnConnectivityStatReport ¶

func NewPdnConnectivityStatReport(pdnConnStat PdnConnectivityStatus) *PdnConnectivityStatReport

NewPdnConnectivityStatReport instantiates a new PdnConnectivityStatReport 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 NewPdnConnectivityStatReportWithDefaults ¶

func NewPdnConnectivityStatReportWithDefaults() *PdnConnectivityStatReport

NewPdnConnectivityStatReportWithDefaults instantiates a new PdnConnectivityStatReport 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 (*PdnConnectivityStatReport) GetDnn ¶

func (o *PdnConnectivityStatReport) GetDnn() string

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*PdnConnectivityStatReport) GetDnnOk ¶

func (o *PdnConnectivityStatReport) GetDnnOk() (*string, bool)

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 (*PdnConnectivityStatReport) GetIpv4Addr ¶

func (o *PdnConnectivityStatReport) GetIpv4Addr() string

GetIpv4Addr returns the Ipv4Addr field value if set, zero value otherwise.

func (*PdnConnectivityStatReport) GetIpv4AddrOk ¶

func (o *PdnConnectivityStatReport) GetIpv4AddrOk() (*string, bool)

GetIpv4AddrOk returns a tuple with the Ipv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PdnConnectivityStatReport) GetIpv6Addrs ¶

func (o *PdnConnectivityStatReport) GetIpv6Addrs() []Ipv6Addr

GetIpv6Addrs returns the Ipv6Addrs field value if set, zero value otherwise.

func (*PdnConnectivityStatReport) GetIpv6AddrsOk ¶

func (o *PdnConnectivityStatReport) GetIpv6AddrsOk() ([]Ipv6Addr, bool)

GetIpv6AddrsOk returns a tuple with the Ipv6Addrs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PdnConnectivityStatReport) GetIpv6Prefixes ¶

func (o *PdnConnectivityStatReport) GetIpv6Prefixes() []Ipv6Prefix

GetIpv6Prefixes returns the Ipv6Prefixes field value if set, zero value otherwise.

func (*PdnConnectivityStatReport) GetIpv6PrefixesOk ¶

func (o *PdnConnectivityStatReport) GetIpv6PrefixesOk() ([]Ipv6Prefix, bool)

GetIpv6PrefixesOk returns a tuple with the Ipv6Prefixes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PdnConnectivityStatReport) GetPdnConnStat ¶

GetPdnConnStat returns the PdnConnStat field value

func (*PdnConnectivityStatReport) GetPdnConnStatOk ¶

func (o *PdnConnectivityStatReport) GetPdnConnStatOk() (*PdnConnectivityStatus, bool)

GetPdnConnStatOk returns a tuple with the PdnConnStat field value and a boolean to check if the value has been set.

func (*PdnConnectivityStatReport) GetPduSeId ¶

func (o *PdnConnectivityStatReport) GetPduSeId() int32

GetPduSeId returns the PduSeId field value if set, zero value otherwise.

func (*PdnConnectivityStatReport) GetPduSeIdOk ¶

func (o *PdnConnectivityStatReport) GetPduSeIdOk() (*int32, bool)

GetPduSeIdOk returns a tuple with the PduSeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PdnConnectivityStatReport) GetPduSessType ¶

func (o *PdnConnectivityStatReport) GetPduSessType() PduSessionType

GetPduSessType returns the PduSessType field value if set, zero value otherwise.

func (*PdnConnectivityStatReport) GetPduSessTypeOk ¶

func (o *PdnConnectivityStatReport) GetPduSessTypeOk() (*PduSessionType, bool)

GetPduSessTypeOk returns a tuple with the PduSessType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PdnConnectivityStatReport) HasDnn ¶

func (o *PdnConnectivityStatReport) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*PdnConnectivityStatReport) HasIpv4Addr ¶

func (o *PdnConnectivityStatReport) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*PdnConnectivityStatReport) HasIpv6Addrs ¶

func (o *PdnConnectivityStatReport) HasIpv6Addrs() bool

HasIpv6Addrs returns a boolean if a field has been set.

func (*PdnConnectivityStatReport) HasIpv6Prefixes ¶

func (o *PdnConnectivityStatReport) HasIpv6Prefixes() bool

HasIpv6Prefixes returns a boolean if a field has been set.

func (*PdnConnectivityStatReport) HasPduSeId ¶

func (o *PdnConnectivityStatReport) HasPduSeId() bool

HasPduSeId returns a boolean if a field has been set.

func (*PdnConnectivityStatReport) HasPduSessType ¶

func (o *PdnConnectivityStatReport) HasPduSessType() bool

HasPduSessType returns a boolean if a field has been set.

func (PdnConnectivityStatReport) MarshalJSON ¶

func (o PdnConnectivityStatReport) MarshalJSON() ([]byte, error)

func (*PdnConnectivityStatReport) SetDnn ¶

func (o *PdnConnectivityStatReport) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*PdnConnectivityStatReport) SetIpv4Addr ¶

func (o *PdnConnectivityStatReport) SetIpv4Addr(v string)

SetIpv4Addr gets a reference to the given string and assigns it to the Ipv4Addr field.

func (*PdnConnectivityStatReport) SetIpv6Addrs ¶

func (o *PdnConnectivityStatReport) SetIpv6Addrs(v []Ipv6Addr)

SetIpv6Addrs gets a reference to the given []Ipv6Addr and assigns it to the Ipv6Addrs field.

func (*PdnConnectivityStatReport) SetIpv6Prefixes ¶

func (o *PdnConnectivityStatReport) SetIpv6Prefixes(v []Ipv6Prefix)

SetIpv6Prefixes gets a reference to the given []Ipv6Prefix and assigns it to the Ipv6Prefixes field.

func (*PdnConnectivityStatReport) SetPdnConnStat ¶

func (o *PdnConnectivityStatReport) SetPdnConnStat(v PdnConnectivityStatus)

SetPdnConnStat sets field value

func (*PdnConnectivityStatReport) SetPduSeId ¶

func (o *PdnConnectivityStatReport) SetPduSeId(v int32)

SetPduSeId gets a reference to the given int32 and assigns it to the PduSeId field.

func (*PdnConnectivityStatReport) SetPduSessType ¶

func (o *PdnConnectivityStatReport) SetPduSessType(v PduSessionType)

SetPduSessType gets a reference to the given PduSessionType and assigns it to the PduSessType field.

func (PdnConnectivityStatReport) ToMap ¶

func (o PdnConnectivityStatReport) ToMap() (map[string]interface{}, error)

type PdnConnectivityStatus ¶

type PdnConnectivityStatus struct {
	String *string
}

PdnConnectivityStatus struct for PdnConnectivityStatus

func (*PdnConnectivityStatus) MarshalJSON ¶

func (src *PdnConnectivityStatus) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PdnConnectivityStatus) UnmarshalJSON ¶

func (dst *PdnConnectivityStatus) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PduSessionInfo ¶

type PduSessionInfo struct {
	// The identifier of the N4 session for the reported PDU Session.
	N4SessId *string `json:"n4SessId,omitempty"`
	// indicating a time in seconds.
	SessInactiveTimer *int32            `json:"sessInactiveTimer,omitempty"`
	PduSessStatus     *PduSessionStatus `json:"pduSessStatus,omitempty"`
}

PduSessionInfo Represents session information.

func NewPduSessionInfo ¶

func NewPduSessionInfo() *PduSessionInfo

NewPduSessionInfo instantiates a new PduSessionInfo 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 NewPduSessionInfoWithDefaults ¶

func NewPduSessionInfoWithDefaults() *PduSessionInfo

NewPduSessionInfoWithDefaults instantiates a new PduSessionInfo 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 (*PduSessionInfo) GetN4SessId ¶

func (o *PduSessionInfo) GetN4SessId() string

GetN4SessId returns the N4SessId field value if set, zero value otherwise.

func (*PduSessionInfo) GetN4SessIdOk ¶

func (o *PduSessionInfo) GetN4SessIdOk() (*string, bool)

GetN4SessIdOk returns a tuple with the N4SessId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionInfo) GetPduSessStatus ¶

func (o *PduSessionInfo) GetPduSessStatus() PduSessionStatus

GetPduSessStatus returns the PduSessStatus field value if set, zero value otherwise.

func (*PduSessionInfo) GetPduSessStatusOk ¶

func (o *PduSessionInfo) GetPduSessStatusOk() (*PduSessionStatus, bool)

GetPduSessStatusOk returns a tuple with the PduSessStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionInfo) GetSessInactiveTimer ¶

func (o *PduSessionInfo) GetSessInactiveTimer() int32

GetSessInactiveTimer returns the SessInactiveTimer field value if set, zero value otherwise.

func (*PduSessionInfo) GetSessInactiveTimerOk ¶

func (o *PduSessionInfo) GetSessInactiveTimerOk() (*int32, bool)

GetSessInactiveTimerOk returns a tuple with the SessInactiveTimer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionInfo) HasN4SessId ¶

func (o *PduSessionInfo) HasN4SessId() bool

HasN4SessId returns a boolean if a field has been set.

func (*PduSessionInfo) HasPduSessStatus ¶

func (o *PduSessionInfo) HasPduSessStatus() bool

HasPduSessStatus returns a boolean if a field has been set.

func (*PduSessionInfo) HasSessInactiveTimer ¶

func (o *PduSessionInfo) HasSessInactiveTimer() bool

HasSessInactiveTimer returns a boolean if a field has been set.

func (PduSessionInfo) MarshalJSON ¶

func (o PduSessionInfo) MarshalJSON() ([]byte, error)

func (*PduSessionInfo) SetN4SessId ¶

func (o *PduSessionInfo) SetN4SessId(v string)

SetN4SessId gets a reference to the given string and assigns it to the N4SessId field.

func (*PduSessionInfo) SetPduSessStatus ¶

func (o *PduSessionInfo) SetPduSessStatus(v PduSessionStatus)

SetPduSessStatus gets a reference to the given PduSessionStatus and assigns it to the PduSessStatus field.

func (*PduSessionInfo) SetSessInactiveTimer ¶

func (o *PduSessionInfo) SetSessInactiveTimer(v int32)

SetSessInactiveTimer gets a reference to the given int32 and assigns it to the SessInactiveTimer field.

func (PduSessionInfo) ToMap ¶

func (o PduSessionInfo) ToMap() (map[string]interface{}, error)

type PduSessionInformation ¶

type PduSessionInformation struct {
	// Unsigned integer identifying a PDU session, within the range 0 to 255, as specified in  clause 11.2.3.1b, bits 1 to 8, of 3GPP TS 24.007. If the PDU Session ID is allocated by the  Core Network for UEs not supporting N1 mode, reserved range 64 to 95 is used. PDU Session ID  within the reserved range is only visible in the Core Network.
	PduSessId *int32          `json:"pduSessId,omitempty"`
	SessInfo  *PduSessionInfo `json:"sessInfo,omitempty"`
}

PduSessionInformation Represents the PDU session related information.

func NewPduSessionInformation ¶

func NewPduSessionInformation() *PduSessionInformation

NewPduSessionInformation instantiates a new PduSessionInformation 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 NewPduSessionInformationWithDefaults ¶

func NewPduSessionInformationWithDefaults() *PduSessionInformation

NewPduSessionInformationWithDefaults instantiates a new PduSessionInformation 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 (*PduSessionInformation) GetPduSessId ¶

func (o *PduSessionInformation) GetPduSessId() int32

GetPduSessId returns the PduSessId field value if set, zero value otherwise.

func (*PduSessionInformation) GetPduSessIdOk ¶

func (o *PduSessionInformation) GetPduSessIdOk() (*int32, bool)

GetPduSessIdOk returns a tuple with the PduSessId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionInformation) GetSessInfo ¶

func (o *PduSessionInformation) GetSessInfo() PduSessionInfo

GetSessInfo returns the SessInfo field value if set, zero value otherwise.

func (*PduSessionInformation) GetSessInfoOk ¶

func (o *PduSessionInformation) GetSessInfoOk() (*PduSessionInfo, bool)

GetSessInfoOk returns a tuple with the SessInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionInformation) HasPduSessId ¶

func (o *PduSessionInformation) HasPduSessId() bool

HasPduSessId returns a boolean if a field has been set.

func (*PduSessionInformation) HasSessInfo ¶

func (o *PduSessionInformation) HasSessInfo() bool

HasSessInfo returns a boolean if a field has been set.

func (PduSessionInformation) MarshalJSON ¶

func (o PduSessionInformation) MarshalJSON() ([]byte, error)

func (*PduSessionInformation) SetPduSessId ¶

func (o *PduSessionInformation) SetPduSessId(v int32)

SetPduSessId gets a reference to the given int32 and assigns it to the PduSessId field.

func (*PduSessionInformation) SetSessInfo ¶

func (o *PduSessionInformation) SetSessInfo(v PduSessionInfo)

SetSessInfo gets a reference to the given PduSessionInfo and assigns it to the SessInfo field.

func (PduSessionInformation) ToMap ¶

func (o PduSessionInformation) ToMap() (map[string]interface{}, error)

type PduSessionStatus ¶

type PduSessionStatus struct {
	String *string
}

PduSessionStatus Possible values are: - ACTIVATED: PDU Session status is activated. - DEACTIVATED: PDU Session status is deactivated.

func (*PduSessionStatus) MarshalJSON ¶

func (src *PduSessionStatus) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PduSessionStatus) UnmarshalJSON ¶

func (dst *PduSessionStatus) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PduSessionStatusCfg ¶

type PduSessionStatusCfg struct {
	// 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"`
}

PduSessionStatusCfg struct for PduSessionStatusCfg

func NewPduSessionStatusCfg ¶

func NewPduSessionStatusCfg() *PduSessionStatusCfg

NewPduSessionStatusCfg instantiates a new PduSessionStatusCfg 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 NewPduSessionStatusCfgWithDefaults ¶

func NewPduSessionStatusCfgWithDefaults() *PduSessionStatusCfg

NewPduSessionStatusCfgWithDefaults instantiates a new PduSessionStatusCfg 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 (*PduSessionStatusCfg) GetDnn ¶

func (o *PduSessionStatusCfg) GetDnn() string

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*PduSessionStatusCfg) GetDnnOk ¶

func (o *PduSessionStatusCfg) GetDnnOk() (*string, bool)

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 (*PduSessionStatusCfg) HasDnn ¶

func (o *PduSessionStatusCfg) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (PduSessionStatusCfg) MarshalJSON ¶

func (o PduSessionStatusCfg) MarshalJSON() ([]byte, error)

func (*PduSessionStatusCfg) SetDnn ¶

func (o *PduSessionStatusCfg) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (PduSessionStatusCfg) ToMap ¶

func (o PduSessionStatusCfg) ToMap() (map[string]interface{}, error)

type PduSessionType ¶

type PduSessionType struct {
	String *string
}

PduSessionType PduSessionType indicates the type of a PDU session. It shall comply with the provisions defined in table 5.4.3.3-1.

func (*PduSessionType) MarshalJSON ¶

func (src *PduSessionType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PduSessionType) UnmarshalJSON ¶

func (dst *PduSessionType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PerUeAttribute ¶

type PerUeAttribute struct {
	UeDest *LocationArea5G `json:"ueDest,omitempty"`
	Route  *string         `json:"route,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	AvgSpeed *string `json:"avgSpeed,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeOfArrival *time.Time `json:"timeOfArrival,omitempty"`
}

PerUeAttribute UE application data collected per UE.

func NewPerUeAttribute ¶

func NewPerUeAttribute() *PerUeAttribute

NewPerUeAttribute instantiates a new PerUeAttribute 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 NewPerUeAttributeWithDefaults ¶

func NewPerUeAttributeWithDefaults() *PerUeAttribute

NewPerUeAttributeWithDefaults instantiates a new PerUeAttribute 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 (*PerUeAttribute) GetAvgSpeed ¶

func (o *PerUeAttribute) GetAvgSpeed() string

GetAvgSpeed returns the AvgSpeed field value if set, zero value otherwise.

func (*PerUeAttribute) GetAvgSpeedOk ¶

func (o *PerUeAttribute) GetAvgSpeedOk() (*string, bool)

GetAvgSpeedOk returns a tuple with the AvgSpeed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerUeAttribute) GetRoute ¶

func (o *PerUeAttribute) GetRoute() string

GetRoute returns the Route field value if set, zero value otherwise.

func (*PerUeAttribute) GetRouteOk ¶

func (o *PerUeAttribute) GetRouteOk() (*string, bool)

GetRouteOk returns a tuple with the Route field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerUeAttribute) GetTimeOfArrival ¶

func (o *PerUeAttribute) GetTimeOfArrival() time.Time

GetTimeOfArrival returns the TimeOfArrival field value if set, zero value otherwise.

func (*PerUeAttribute) GetTimeOfArrivalOk ¶

func (o *PerUeAttribute) GetTimeOfArrivalOk() (*time.Time, bool)

GetTimeOfArrivalOk returns a tuple with the TimeOfArrival field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerUeAttribute) GetUeDest ¶

func (o *PerUeAttribute) GetUeDest() LocationArea5G

GetUeDest returns the UeDest field value if set, zero value otherwise.

func (*PerUeAttribute) GetUeDestOk ¶

func (o *PerUeAttribute) GetUeDestOk() (*LocationArea5G, bool)

GetUeDestOk returns a tuple with the UeDest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerUeAttribute) HasAvgSpeed ¶

func (o *PerUeAttribute) HasAvgSpeed() bool

HasAvgSpeed returns a boolean if a field has been set.

func (*PerUeAttribute) HasRoute ¶

func (o *PerUeAttribute) HasRoute() bool

HasRoute returns a boolean if a field has been set.

func (*PerUeAttribute) HasTimeOfArrival ¶

func (o *PerUeAttribute) HasTimeOfArrival() bool

HasTimeOfArrival returns a boolean if a field has been set.

func (*PerUeAttribute) HasUeDest ¶

func (o *PerUeAttribute) HasUeDest() bool

HasUeDest returns a boolean if a field has been set.

func (PerUeAttribute) MarshalJSON ¶

func (o PerUeAttribute) MarshalJSON() ([]byte, error)

func (*PerUeAttribute) SetAvgSpeed ¶

func (o *PerUeAttribute) SetAvgSpeed(v string)

SetAvgSpeed gets a reference to the given string and assigns it to the AvgSpeed field.

func (*PerUeAttribute) SetRoute ¶

func (o *PerUeAttribute) SetRoute(v string)

SetRoute gets a reference to the given string and assigns it to the Route field.

func (*PerUeAttribute) SetTimeOfArrival ¶

func (o *PerUeAttribute) SetTimeOfArrival(v time.Time)

SetTimeOfArrival gets a reference to the given time.Time and assigns it to the TimeOfArrival field.

func (*PerUeAttribute) SetUeDest ¶

func (o *PerUeAttribute) SetUeDest(v LocationArea5G)

SetUeDest gets a reference to the given LocationArea5G and assigns it to the UeDest field.

func (PerUeAttribute) ToMap ¶

func (o PerUeAttribute) ToMap() (map[string]interface{}, error)

type PerfData ¶

type PerfData struct {
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	AvgTrafficRate *string `json:"avgTrafficRate,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MaxTrafficRate *string `json:"maxTrafficRate,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	AvePacketDelay *int32 `json:"avePacketDelay,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	MaxPacketDelay *int32 `json:"maxPacketDelay,omitempty"`
	// Unsigned integer indicating Packet Loss Rate (see clauses 5.7.2.8 and 5.7.4 of 3GPP TS 23.501), expressed in tenth of percent.
	AvgPacketLossRate *int32 `json:"avgPacketLossRate,omitempty"`
}

PerfData Represents DN performance data.

func NewPerfData ¶

func NewPerfData() *PerfData

NewPerfData instantiates a new PerfData 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 NewPerfDataWithDefaults ¶

func NewPerfDataWithDefaults() *PerfData

NewPerfDataWithDefaults instantiates a new PerfData 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 (*PerfData) GetAvePacketDelay ¶

func (o *PerfData) GetAvePacketDelay() int32

GetAvePacketDelay returns the AvePacketDelay field value if set, zero value otherwise.

func (*PerfData) GetAvePacketDelayOk ¶

func (o *PerfData) GetAvePacketDelayOk() (*int32, bool)

GetAvePacketDelayOk returns a tuple with the AvePacketDelay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerfData) GetAvgPacketLossRate ¶

func (o *PerfData) GetAvgPacketLossRate() int32

GetAvgPacketLossRate returns the AvgPacketLossRate field value if set, zero value otherwise.

func (*PerfData) GetAvgPacketLossRateOk ¶

func (o *PerfData) GetAvgPacketLossRateOk() (*int32, bool)

GetAvgPacketLossRateOk returns a tuple with the AvgPacketLossRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerfData) GetAvgTrafficRate ¶

func (o *PerfData) GetAvgTrafficRate() string

GetAvgTrafficRate returns the AvgTrafficRate field value if set, zero value otherwise.

func (*PerfData) GetAvgTrafficRateOk ¶

func (o *PerfData) GetAvgTrafficRateOk() (*string, bool)

GetAvgTrafficRateOk returns a tuple with the AvgTrafficRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerfData) GetMaxPacketDelay ¶

func (o *PerfData) GetMaxPacketDelay() int32

GetMaxPacketDelay returns the MaxPacketDelay field value if set, zero value otherwise.

func (*PerfData) GetMaxPacketDelayOk ¶

func (o *PerfData) GetMaxPacketDelayOk() (*int32, bool)

GetMaxPacketDelayOk returns a tuple with the MaxPacketDelay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerfData) GetMaxTrafficRate ¶

func (o *PerfData) GetMaxTrafficRate() string

GetMaxTrafficRate returns the MaxTrafficRate field value if set, zero value otherwise.

func (*PerfData) GetMaxTrafficRateOk ¶

func (o *PerfData) GetMaxTrafficRateOk() (*string, bool)

GetMaxTrafficRateOk returns a tuple with the MaxTrafficRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerfData) HasAvePacketDelay ¶

func (o *PerfData) HasAvePacketDelay() bool

HasAvePacketDelay returns a boolean if a field has been set.

func (*PerfData) HasAvgPacketLossRate ¶

func (o *PerfData) HasAvgPacketLossRate() bool

HasAvgPacketLossRate returns a boolean if a field has been set.

func (*PerfData) HasAvgTrafficRate ¶

func (o *PerfData) HasAvgTrafficRate() bool

HasAvgTrafficRate returns a boolean if a field has been set.

func (*PerfData) HasMaxPacketDelay ¶

func (o *PerfData) HasMaxPacketDelay() bool

HasMaxPacketDelay returns a boolean if a field has been set.

func (*PerfData) HasMaxTrafficRate ¶

func (o *PerfData) HasMaxTrafficRate() bool

HasMaxTrafficRate returns a boolean if a field has been set.

func (PerfData) MarshalJSON ¶

func (o PerfData) MarshalJSON() ([]byte, error)

func (*PerfData) SetAvePacketDelay ¶

func (o *PerfData) SetAvePacketDelay(v int32)

SetAvePacketDelay gets a reference to the given int32 and assigns it to the AvePacketDelay field.

func (*PerfData) SetAvgPacketLossRate ¶

func (o *PerfData) SetAvgPacketLossRate(v int32)

SetAvgPacketLossRate gets a reference to the given int32 and assigns it to the AvgPacketLossRate field.

func (*PerfData) SetAvgTrafficRate ¶

func (o *PerfData) SetAvgTrafficRate(v string)

SetAvgTrafficRate gets a reference to the given string and assigns it to the AvgTrafficRate field.

func (*PerfData) SetMaxPacketDelay ¶

func (o *PerfData) SetMaxPacketDelay(v int32)

SetMaxPacketDelay gets a reference to the given int32 and assigns it to the MaxPacketDelay field.

func (*PerfData) SetMaxTrafficRate ¶

func (o *PerfData) SetMaxTrafficRate(v string)

SetMaxTrafficRate gets a reference to the given string and assigns it to the MaxTrafficRate field.

func (PerfData) ToMap ¶

func (o PerfData) ToMap() (map[string]interface{}, error)

type PerformanceData ¶

type PerformanceData struct {
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	Pdb *int32 `json:"pdb,omitempty"`
	// Unsigned integer indicating Packet Loss Rate (see clauses 5.7.2.8 and 5.7.4 of 3GPP TS 23.501), expressed in tenth of percent.
	Plr *int32 `json:"plr,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	ThrputUl *string `json:"thrputUl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	ThrputDl *string `json:"thrputDl,omitempty"`
}

PerformanceData Contains Performance Data.

func NewPerformanceData ¶

func NewPerformanceData() *PerformanceData

NewPerformanceData instantiates a new PerformanceData 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 NewPerformanceDataWithDefaults ¶

func NewPerformanceDataWithDefaults() *PerformanceData

NewPerformanceDataWithDefaults instantiates a new PerformanceData 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 (*PerformanceData) GetPdb ¶

func (o *PerformanceData) GetPdb() int32

GetPdb returns the Pdb field value if set, zero value otherwise.

func (*PerformanceData) GetPdbOk ¶

func (o *PerformanceData) GetPdbOk() (*int32, bool)

GetPdbOk returns a tuple with the Pdb field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceData) GetPlr ¶

func (o *PerformanceData) GetPlr() int32

GetPlr returns the Plr field value if set, zero value otherwise.

func (*PerformanceData) GetPlrOk ¶

func (o *PerformanceData) GetPlrOk() (*int32, bool)

GetPlrOk returns a tuple with the Plr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceData) GetThrputDl ¶

func (o *PerformanceData) GetThrputDl() string

GetThrputDl returns the ThrputDl field value if set, zero value otherwise.

func (*PerformanceData) GetThrputDlOk ¶

func (o *PerformanceData) GetThrputDlOk() (*string, bool)

GetThrputDlOk returns a tuple with the ThrputDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceData) GetThrputUl ¶

func (o *PerformanceData) GetThrputUl() string

GetThrputUl returns the ThrputUl field value if set, zero value otherwise.

func (*PerformanceData) GetThrputUlOk ¶

func (o *PerformanceData) GetThrputUlOk() (*string, bool)

GetThrputUlOk returns a tuple with the ThrputUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceData) HasPdb ¶

func (o *PerformanceData) HasPdb() bool

HasPdb returns a boolean if a field has been set.

func (*PerformanceData) HasPlr ¶

func (o *PerformanceData) HasPlr() bool

HasPlr returns a boolean if a field has been set.

func (*PerformanceData) HasThrputDl ¶

func (o *PerformanceData) HasThrputDl() bool

HasThrputDl returns a boolean if a field has been set.

func (*PerformanceData) HasThrputUl ¶

func (o *PerformanceData) HasThrputUl() bool

HasThrputUl returns a boolean if a field has been set.

func (PerformanceData) MarshalJSON ¶

func (o PerformanceData) MarshalJSON() ([]byte, error)

func (*PerformanceData) SetPdb ¶

func (o *PerformanceData) SetPdb(v int32)

SetPdb gets a reference to the given int32 and assigns it to the Pdb field.

func (*PerformanceData) SetPlr ¶

func (o *PerformanceData) SetPlr(v int32)

SetPlr gets a reference to the given int32 and assigns it to the Plr field.

func (*PerformanceData) SetThrputDl ¶

func (o *PerformanceData) SetThrputDl(v string)

SetThrputDl gets a reference to the given string and assigns it to the ThrputDl field.

func (*PerformanceData) SetThrputUl ¶

func (o *PerformanceData) SetThrputUl(v string)

SetThrputUl gets a reference to the given string and assigns it to the ThrputUl field.

func (PerformanceData) ToMap ¶

func (o PerformanceData) ToMap() (map[string]interface{}, error)

type PerformanceDataCollection ¶

type PerformanceDataCollection struct {
	// String providing an application identifier.
	AppId           *string         `json:"appId,omitempty"`
	UeIpAddr        *IpAddr         `json:"ueIpAddr,omitempty"`
	IpTrafficFilter *FlowInfo       `json:"ipTrafficFilter,omitempty"`
	UeLoc           *LocationArea5G `json:"ueLoc,omitempty"`
	AppLocs         []string        `json:"appLocs,omitempty"`
	AsAddr          *AddrFqdn       `json:"asAddr,omitempty"`
	PerfData        PerformanceData `json:"perfData"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp time.Time `json:"timeStamp"`
}

PerformanceDataCollection Contains Performance Data Analytics related information collection.

func NewPerformanceDataCollection ¶

func NewPerformanceDataCollection(perfData PerformanceData, timeStamp time.Time) *PerformanceDataCollection

NewPerformanceDataCollection instantiates a new PerformanceDataCollection 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 NewPerformanceDataCollectionWithDefaults ¶

func NewPerformanceDataCollectionWithDefaults() *PerformanceDataCollection

NewPerformanceDataCollectionWithDefaults instantiates a new PerformanceDataCollection 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 (*PerformanceDataCollection) GetAppId ¶

func (o *PerformanceDataCollection) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*PerformanceDataCollection) GetAppIdOk ¶

func (o *PerformanceDataCollection) GetAppIdOk() (*string, bool)

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 (*PerformanceDataCollection) GetAppLocs ¶

func (o *PerformanceDataCollection) GetAppLocs() []string

GetAppLocs returns the AppLocs field value if set, zero value otherwise.

func (*PerformanceDataCollection) GetAppLocsOk ¶

func (o *PerformanceDataCollection) GetAppLocsOk() ([]string, bool)

GetAppLocsOk returns a tuple with the AppLocs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataCollection) GetAsAddr ¶

func (o *PerformanceDataCollection) GetAsAddr() AddrFqdn

GetAsAddr returns the AsAddr field value if set, zero value otherwise.

func (*PerformanceDataCollection) GetAsAddrOk ¶

func (o *PerformanceDataCollection) GetAsAddrOk() (*AddrFqdn, bool)

GetAsAddrOk returns a tuple with the AsAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataCollection) GetIpTrafficFilter ¶

func (o *PerformanceDataCollection) GetIpTrafficFilter() FlowInfo

GetIpTrafficFilter returns the IpTrafficFilter field value if set, zero value otherwise.

func (*PerformanceDataCollection) GetIpTrafficFilterOk ¶

func (o *PerformanceDataCollection) GetIpTrafficFilterOk() (*FlowInfo, bool)

GetIpTrafficFilterOk returns a tuple with the IpTrafficFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataCollection) GetPerfData ¶

func (o *PerformanceDataCollection) GetPerfData() PerformanceData

GetPerfData returns the PerfData field value

func (*PerformanceDataCollection) GetPerfDataOk ¶

func (o *PerformanceDataCollection) GetPerfDataOk() (*PerformanceData, bool)

GetPerfDataOk returns a tuple with the PerfData field value and a boolean to check if the value has been set.

func (*PerformanceDataCollection) GetTimeStamp ¶

func (o *PerformanceDataCollection) GetTimeStamp() time.Time

GetTimeStamp returns the TimeStamp field value

func (*PerformanceDataCollection) GetTimeStampOk ¶

func (o *PerformanceDataCollection) GetTimeStampOk() (*time.Time, bool)

GetTimeStampOk returns a tuple with the TimeStamp field value and a boolean to check if the value has been set.

func (*PerformanceDataCollection) GetUeIpAddr ¶

func (o *PerformanceDataCollection) GetUeIpAddr() IpAddr

GetUeIpAddr returns the UeIpAddr field value if set, zero value otherwise.

func (*PerformanceDataCollection) GetUeIpAddrOk ¶

func (o *PerformanceDataCollection) GetUeIpAddrOk() (*IpAddr, bool)

GetUeIpAddrOk returns a tuple with the UeIpAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataCollection) GetUeLoc ¶

GetUeLoc returns the UeLoc field value if set, zero value otherwise.

func (*PerformanceDataCollection) GetUeLocOk ¶

func (o *PerformanceDataCollection) GetUeLocOk() (*LocationArea5G, bool)

GetUeLocOk returns a tuple with the UeLoc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataCollection) HasAppId ¶

func (o *PerformanceDataCollection) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*PerformanceDataCollection) HasAppLocs ¶

func (o *PerformanceDataCollection) HasAppLocs() bool

HasAppLocs returns a boolean if a field has been set.

func (*PerformanceDataCollection) HasAsAddr ¶

func (o *PerformanceDataCollection) HasAsAddr() bool

HasAsAddr returns a boolean if a field has been set.

func (*PerformanceDataCollection) HasIpTrafficFilter ¶

func (o *PerformanceDataCollection) HasIpTrafficFilter() bool

HasIpTrafficFilter returns a boolean if a field has been set.

func (*PerformanceDataCollection) HasUeIpAddr ¶

func (o *PerformanceDataCollection) HasUeIpAddr() bool

HasUeIpAddr returns a boolean if a field has been set.

func (*PerformanceDataCollection) HasUeLoc ¶

func (o *PerformanceDataCollection) HasUeLoc() bool

HasUeLoc returns a boolean if a field has been set.

func (PerformanceDataCollection) MarshalJSON ¶

func (o PerformanceDataCollection) MarshalJSON() ([]byte, error)

func (*PerformanceDataCollection) SetAppId ¶

func (o *PerformanceDataCollection) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*PerformanceDataCollection) SetAppLocs ¶

func (o *PerformanceDataCollection) SetAppLocs(v []string)

SetAppLocs gets a reference to the given []string and assigns it to the AppLocs field.

func (*PerformanceDataCollection) SetAsAddr ¶

func (o *PerformanceDataCollection) SetAsAddr(v AddrFqdn)

SetAsAddr gets a reference to the given AddrFqdn and assigns it to the AsAddr field.

func (*PerformanceDataCollection) SetIpTrafficFilter ¶

func (o *PerformanceDataCollection) SetIpTrafficFilter(v FlowInfo)

SetIpTrafficFilter gets a reference to the given FlowInfo and assigns it to the IpTrafficFilter field.

func (*PerformanceDataCollection) SetPerfData ¶

func (o *PerformanceDataCollection) SetPerfData(v PerformanceData)

SetPerfData sets field value

func (*PerformanceDataCollection) SetTimeStamp ¶

func (o *PerformanceDataCollection) SetTimeStamp(v time.Time)

SetTimeStamp sets field value

func (*PerformanceDataCollection) SetUeIpAddr ¶

func (o *PerformanceDataCollection) SetUeIpAddr(v IpAddr)

SetUeIpAddr gets a reference to the given IpAddr and assigns it to the UeIpAddr field.

func (*PerformanceDataCollection) SetUeLoc ¶

SetUeLoc gets a reference to the given LocationArea5G and assigns it to the UeLoc field.

func (PerformanceDataCollection) ToMap ¶

func (o PerformanceDataCollection) ToMap() (map[string]interface{}, error)

type PerformanceDataInfo ¶

type PerformanceDataInfo struct {
	// String providing an application identifier.
	AppId           *string         `json:"appId,omitempty"`
	UeIpAddr        *IpAddr         `json:"ueIpAddr,omitempty"`
	IpTrafficFilter *FlowInfo       `json:"ipTrafficFilter,omitempty"`
	UserLoc         *UserLocation   `json:"userLoc,omitempty"`
	AppLocs         []string        `json:"appLocs,omitempty"`
	AsAddr          *AddrFqdn       `json:"asAddr,omitempty"`
	PerfData        PerformanceData `json:"perfData"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp time.Time `json:"timeStamp"`
}

PerformanceDataInfo Contains Performance Data Analytics related information collection.

func NewPerformanceDataInfo ¶

func NewPerformanceDataInfo(perfData PerformanceData, timeStamp time.Time) *PerformanceDataInfo

NewPerformanceDataInfo instantiates a new PerformanceDataInfo 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 NewPerformanceDataInfoWithDefaults ¶

func NewPerformanceDataInfoWithDefaults() *PerformanceDataInfo

NewPerformanceDataInfoWithDefaults instantiates a new PerformanceDataInfo 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 (*PerformanceDataInfo) GetAppId ¶

func (o *PerformanceDataInfo) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*PerformanceDataInfo) GetAppIdOk ¶

func (o *PerformanceDataInfo) GetAppIdOk() (*string, bool)

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 (*PerformanceDataInfo) GetAppLocs ¶

func (o *PerformanceDataInfo) GetAppLocs() []string

GetAppLocs returns the AppLocs field value if set, zero value otherwise.

func (*PerformanceDataInfo) GetAppLocsOk ¶

func (o *PerformanceDataInfo) GetAppLocsOk() ([]string, bool)

GetAppLocsOk returns a tuple with the AppLocs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataInfo) GetAsAddr ¶

func (o *PerformanceDataInfo) GetAsAddr() AddrFqdn

GetAsAddr returns the AsAddr field value if set, zero value otherwise.

func (*PerformanceDataInfo) GetAsAddrOk ¶

func (o *PerformanceDataInfo) GetAsAddrOk() (*AddrFqdn, bool)

GetAsAddrOk returns a tuple with the AsAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataInfo) GetIpTrafficFilter ¶

func (o *PerformanceDataInfo) GetIpTrafficFilter() FlowInfo

GetIpTrafficFilter returns the IpTrafficFilter field value if set, zero value otherwise.

func (*PerformanceDataInfo) GetIpTrafficFilterOk ¶

func (o *PerformanceDataInfo) GetIpTrafficFilterOk() (*FlowInfo, bool)

GetIpTrafficFilterOk returns a tuple with the IpTrafficFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataInfo) GetPerfData ¶

func (o *PerformanceDataInfo) GetPerfData() PerformanceData

GetPerfData returns the PerfData field value

func (*PerformanceDataInfo) GetPerfDataOk ¶

func (o *PerformanceDataInfo) GetPerfDataOk() (*PerformanceData, bool)

GetPerfDataOk returns a tuple with the PerfData field value and a boolean to check if the value has been set.

func (*PerformanceDataInfo) GetTimeStamp ¶

func (o *PerformanceDataInfo) GetTimeStamp() time.Time

GetTimeStamp returns the TimeStamp field value

func (*PerformanceDataInfo) GetTimeStampOk ¶

func (o *PerformanceDataInfo) GetTimeStampOk() (*time.Time, bool)

GetTimeStampOk returns a tuple with the TimeStamp field value and a boolean to check if the value has been set.

func (*PerformanceDataInfo) GetUeIpAddr ¶

func (o *PerformanceDataInfo) GetUeIpAddr() IpAddr

GetUeIpAddr returns the UeIpAddr field value if set, zero value otherwise.

func (*PerformanceDataInfo) GetUeIpAddrOk ¶

func (o *PerformanceDataInfo) GetUeIpAddrOk() (*IpAddr, bool)

GetUeIpAddrOk returns a tuple with the UeIpAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataInfo) GetUserLoc ¶

func (o *PerformanceDataInfo) GetUserLoc() UserLocation

GetUserLoc returns the UserLoc field value if set, zero value otherwise.

func (*PerformanceDataInfo) GetUserLocOk ¶

func (o *PerformanceDataInfo) GetUserLocOk() (*UserLocation, bool)

GetUserLocOk returns a tuple with the UserLoc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerformanceDataInfo) HasAppId ¶

func (o *PerformanceDataInfo) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*PerformanceDataInfo) HasAppLocs ¶

func (o *PerformanceDataInfo) HasAppLocs() bool

HasAppLocs returns a boolean if a field has been set.

func (*PerformanceDataInfo) HasAsAddr ¶

func (o *PerformanceDataInfo) HasAsAddr() bool

HasAsAddr returns a boolean if a field has been set.

func (*PerformanceDataInfo) HasIpTrafficFilter ¶

func (o *PerformanceDataInfo) HasIpTrafficFilter() bool

HasIpTrafficFilter returns a boolean if a field has been set.

func (*PerformanceDataInfo) HasUeIpAddr ¶

func (o *PerformanceDataInfo) HasUeIpAddr() bool

HasUeIpAddr returns a boolean if a field has been set.

func (*PerformanceDataInfo) HasUserLoc ¶

func (o *PerformanceDataInfo) HasUserLoc() bool

HasUserLoc returns a boolean if a field has been set.

func (PerformanceDataInfo) MarshalJSON ¶

func (o PerformanceDataInfo) MarshalJSON() ([]byte, error)

func (*PerformanceDataInfo) SetAppId ¶

func (o *PerformanceDataInfo) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*PerformanceDataInfo) SetAppLocs ¶

func (o *PerformanceDataInfo) SetAppLocs(v []string)

SetAppLocs gets a reference to the given []string and assigns it to the AppLocs field.

func (*PerformanceDataInfo) SetAsAddr ¶

func (o *PerformanceDataInfo) SetAsAddr(v AddrFqdn)

SetAsAddr gets a reference to the given AddrFqdn and assigns it to the AsAddr field.

func (*PerformanceDataInfo) SetIpTrafficFilter ¶

func (o *PerformanceDataInfo) SetIpTrafficFilter(v FlowInfo)

SetIpTrafficFilter gets a reference to the given FlowInfo and assigns it to the IpTrafficFilter field.

func (*PerformanceDataInfo) SetPerfData ¶

func (o *PerformanceDataInfo) SetPerfData(v PerformanceData)

SetPerfData sets field value

func (*PerformanceDataInfo) SetTimeStamp ¶

func (o *PerformanceDataInfo) SetTimeStamp(v time.Time)

SetTimeStamp sets field value

func (*PerformanceDataInfo) SetUeIpAddr ¶

func (o *PerformanceDataInfo) SetUeIpAddr(v IpAddr)

SetUeIpAddr gets a reference to the given IpAddr and assigns it to the UeIpAddr field.

func (*PerformanceDataInfo) SetUserLoc ¶

func (o *PerformanceDataInfo) SetUserLoc(v UserLocation)

SetUserLoc gets a reference to the given UserLocation and assigns it to the UserLoc field.

func (PerformanceDataInfo) ToMap ¶

func (o PerformanceDataInfo) ToMap() (map[string]interface{}, error)

type PfdData ¶

type PfdData struct {
	AppIds []string `json:"appIds,omitempty"`
	AfIds  []string `json:"afIds,omitempty"`
}

PfdData List of Application IDs and/or AF IDs managed by a given NEF Instance

func NewPfdData ¶

func NewPfdData() *PfdData

NewPfdData instantiates a new PfdData 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 NewPfdDataWithDefaults ¶

func NewPfdDataWithDefaults() *PfdData

NewPfdDataWithDefaults instantiates a new PfdData 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 (*PfdData) GetAfIds ¶

func (o *PfdData) GetAfIds() []string

GetAfIds returns the AfIds field value if set, zero value otherwise.

func (*PfdData) GetAfIdsOk ¶

func (o *PfdData) GetAfIdsOk() ([]string, bool)

GetAfIdsOk returns a tuple with the AfIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PfdData) GetAppIds ¶

func (o *PfdData) GetAppIds() []string

GetAppIds returns the AppIds field value if set, zero value otherwise.

func (*PfdData) GetAppIdsOk ¶

func (o *PfdData) GetAppIdsOk() ([]string, bool)

GetAppIdsOk returns a tuple with the AppIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PfdData) HasAfIds ¶

func (o *PfdData) HasAfIds() bool

HasAfIds returns a boolean if a field has been set.

func (*PfdData) HasAppIds ¶

func (o *PfdData) HasAppIds() bool

HasAppIds returns a boolean if a field has been set.

func (PfdData) MarshalJSON ¶

func (o PfdData) MarshalJSON() ([]byte, error)

func (*PfdData) SetAfIds ¶

func (o *PfdData) SetAfIds(v []string)

SetAfIds gets a reference to the given []string and assigns it to the AfIds field.

func (*PfdData) SetAppIds ¶

func (o *PfdData) SetAppIds(v []string)

SetAppIds gets a reference to the given []string and assigns it to the AppIds field.

func (PfdData) ToMap ¶

func (o PfdData) ToMap() (map[string]interface{}, error)

type PlmnId ¶

type PlmnId struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
}

PlmnId When PlmnId needs to be converted to string (e.g. when used in maps as key), the string shall be composed of three digits \"mcc\" followed by \"-\" and two or three digits \"mnc\".

func NewPlmnId ¶

func NewPlmnId(mcc string, mnc string) *PlmnId

NewPlmnId instantiates a new PlmnId 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 NewPlmnIdWithDefaults ¶

func NewPlmnIdWithDefaults() *PlmnId

NewPlmnIdWithDefaults instantiates a new PlmnId 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 (*PlmnId) GetMcc ¶

func (o *PlmnId) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnId) GetMccOk ¶

func (o *PlmnId) GetMccOk() (*string, bool)

GetMccOk returns a tuple with the Mcc field value and a boolean to check if the value has been set.

func (*PlmnId) GetMnc ¶

func (o *PlmnId) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnId) GetMncOk ¶

func (o *PlmnId) GetMncOk() (*string, bool)

GetMncOk returns a tuple with the Mnc field value and a boolean to check if the value has been set.

func (PlmnId) MarshalJSON ¶

func (o PlmnId) MarshalJSON() ([]byte, error)

func (*PlmnId) SetMcc ¶

func (o *PlmnId) SetMcc(v string)

SetMcc sets field value

func (*PlmnId) SetMnc ¶

func (o *PlmnId) SetMnc(v string)

SetMnc sets field value

func (PlmnId) ToMap ¶

func (o PlmnId) ToMap() (map[string]interface{}, error)

type PlmnIdNid ¶

type PlmnIdNid struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

PlmnIdNid Contains the serving core network operator PLMN ID and, for an SNPN, the NID that together with the PLMN ID identifies the SNPN.

func NewPlmnIdNid ¶

func NewPlmnIdNid(mcc string, mnc string) *PlmnIdNid

NewPlmnIdNid instantiates a new PlmnIdNid 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 NewPlmnIdNidWithDefaults ¶

func NewPlmnIdNidWithDefaults() *PlmnIdNid

NewPlmnIdNidWithDefaults instantiates a new PlmnIdNid 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 (*PlmnIdNid) GetMcc ¶

func (o *PlmnIdNid) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnIdNid) GetMccOk ¶

func (o *PlmnIdNid) GetMccOk() (*string, bool)

GetMccOk returns a tuple with the Mcc field value and a boolean to check if the value has been set.

func (*PlmnIdNid) GetMnc ¶

func (o *PlmnIdNid) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnIdNid) GetMncOk ¶

func (o *PlmnIdNid) GetMncOk() (*string, bool)

GetMncOk returns a tuple with the Mnc field value and a boolean to check if the value has been set.

func (*PlmnIdNid) GetNid ¶

func (o *PlmnIdNid) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*PlmnIdNid) GetNidOk ¶

func (o *PlmnIdNid) GetNidOk() (*string, bool)

GetNidOk returns a tuple with the Nid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PlmnIdNid) HasNid ¶

func (o *PlmnIdNid) HasNid() bool

HasNid returns a boolean if a field has been set.

func (PlmnIdNid) MarshalJSON ¶

func (o PlmnIdNid) MarshalJSON() ([]byte, error)

func (*PlmnIdNid) SetMcc ¶

func (o *PlmnIdNid) SetMcc(v string)

SetMcc sets field value

func (*PlmnIdNid) SetMnc ¶

func (o *PlmnIdNid) SetMnc(v string)

SetMnc sets field value

func (*PlmnIdNid) SetNid ¶

func (o *PlmnIdNid) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (PlmnIdNid) ToMap ¶

func (o PlmnIdNid) ToMap() (map[string]interface{}, error)

type PlmnOauth2 ¶

type PlmnOauth2 struct {
	Oauth2RequiredPlmnIdList    []PlmnId `json:"oauth2RequiredPlmnIdList,omitempty"`
	Oauth2NotRequiredPlmnIdList []PlmnId `json:"oauth2NotRequiredPlmnIdList,omitempty"`
}

PlmnOauth2 Oauth2.0 required indication for a given PLMN ID

func NewPlmnOauth2 ¶

func NewPlmnOauth2() *PlmnOauth2

NewPlmnOauth2 instantiates a new PlmnOauth2 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 NewPlmnOauth2WithDefaults ¶

func NewPlmnOauth2WithDefaults() *PlmnOauth2

NewPlmnOauth2WithDefaults instantiates a new PlmnOauth2 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 (*PlmnOauth2) GetOauth2NotRequiredPlmnIdList ¶

func (o *PlmnOauth2) GetOauth2NotRequiredPlmnIdList() []PlmnId

GetOauth2NotRequiredPlmnIdList returns the Oauth2NotRequiredPlmnIdList field value if set, zero value otherwise.

func (*PlmnOauth2) GetOauth2NotRequiredPlmnIdListOk ¶

func (o *PlmnOauth2) GetOauth2NotRequiredPlmnIdListOk() ([]PlmnId, bool)

GetOauth2NotRequiredPlmnIdListOk returns a tuple with the Oauth2NotRequiredPlmnIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PlmnOauth2) GetOauth2RequiredPlmnIdList ¶

func (o *PlmnOauth2) GetOauth2RequiredPlmnIdList() []PlmnId

GetOauth2RequiredPlmnIdList returns the Oauth2RequiredPlmnIdList field value if set, zero value otherwise.

func (*PlmnOauth2) GetOauth2RequiredPlmnIdListOk ¶

func (o *PlmnOauth2) GetOauth2RequiredPlmnIdListOk() ([]PlmnId, bool)

GetOauth2RequiredPlmnIdListOk returns a tuple with the Oauth2RequiredPlmnIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PlmnOauth2) HasOauth2NotRequiredPlmnIdList ¶

func (o *PlmnOauth2) HasOauth2NotRequiredPlmnIdList() bool

HasOauth2NotRequiredPlmnIdList returns a boolean if a field has been set.

func (*PlmnOauth2) HasOauth2RequiredPlmnIdList ¶

func (o *PlmnOauth2) HasOauth2RequiredPlmnIdList() bool

HasOauth2RequiredPlmnIdList returns a boolean if a field has been set.

func (PlmnOauth2) MarshalJSON ¶

func (o PlmnOauth2) MarshalJSON() ([]byte, error)

func (*PlmnOauth2) SetOauth2NotRequiredPlmnIdList ¶

func (o *PlmnOauth2) SetOauth2NotRequiredPlmnIdList(v []PlmnId)

SetOauth2NotRequiredPlmnIdList gets a reference to the given []PlmnId and assigns it to the Oauth2NotRequiredPlmnIdList field.

func (*PlmnOauth2) SetOauth2RequiredPlmnIdList ¶

func (o *PlmnOauth2) SetOauth2RequiredPlmnIdList(v []PlmnId)

SetOauth2RequiredPlmnIdList gets a reference to the given []PlmnId and assigns it to the Oauth2RequiredPlmnIdList field.

func (PlmnOauth2) ToMap ¶

func (o PlmnOauth2) ToMap() (map[string]interface{}, error)

type PlmnRange ¶

type PlmnRange struct {
	Interface *interface{}
}

PlmnRange - Range of PLMN IDs

func InterfaceAsPlmnRange ¶

func InterfaceAsPlmnRange(v *interface{}) PlmnRange

interface{}AsPlmnRange is a convenience function that returns interface{} wrapped in PlmnRange

func (*PlmnRange) GetActualInstance ¶

func (obj *PlmnRange) GetActualInstance() interface{}

Get the actual instance

func (PlmnRange) MarshalJSON ¶

func (src PlmnRange) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PlmnRange) UnmarshalJSON ¶

func (dst *PlmnRange) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PlmnSnssai ¶

type PlmnSnssai struct {
	PlmnId     PlmnId      `json:"plmnId"`
	SNssaiList []ExtSnssai `json:"sNssaiList"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

PlmnSnssai List of network slices (S-NSSAIs) for a given PLMN ID

func NewPlmnSnssai ¶

func NewPlmnSnssai(plmnId PlmnId, sNssaiList []ExtSnssai) *PlmnSnssai

NewPlmnSnssai instantiates a new PlmnSnssai 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 NewPlmnSnssaiWithDefaults ¶

func NewPlmnSnssaiWithDefaults() *PlmnSnssai

NewPlmnSnssaiWithDefaults instantiates a new PlmnSnssai 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 (*PlmnSnssai) GetNid ¶

func (o *PlmnSnssai) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*PlmnSnssai) GetNidOk ¶

func (o *PlmnSnssai) GetNidOk() (*string, bool)

GetNidOk returns a tuple with the Nid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PlmnSnssai) GetPlmnId ¶

func (o *PlmnSnssai) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*PlmnSnssai) GetPlmnIdOk ¶

func (o *PlmnSnssai) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*PlmnSnssai) GetSNssaiList ¶

func (o *PlmnSnssai) GetSNssaiList() []ExtSnssai

GetSNssaiList returns the SNssaiList field value

func (*PlmnSnssai) GetSNssaiListOk ¶

func (o *PlmnSnssai) GetSNssaiListOk() ([]ExtSnssai, bool)

GetSNssaiListOk returns a tuple with the SNssaiList field value and a boolean to check if the value has been set.

func (*PlmnSnssai) HasNid ¶

func (o *PlmnSnssai) HasNid() bool

HasNid returns a boolean if a field has been set.

func (PlmnSnssai) MarshalJSON ¶

func (o PlmnSnssai) MarshalJSON() ([]byte, error)

func (*PlmnSnssai) SetNid ¶

func (o *PlmnSnssai) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (*PlmnSnssai) SetPlmnId ¶

func (o *PlmnSnssai) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*PlmnSnssai) SetSNssaiList ¶

func (o *PlmnSnssai) SetSNssaiList(v []ExtSnssai)

SetSNssaiList sets field value

func (PlmnSnssai) ToMap ¶

func (o PlmnSnssai) ToMap() (map[string]interface{}, error)

type Point ¶

type Point struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
}

Point Ellipsoid Point.

func NewPoint ¶

func NewPoint(point GeographicalCoordinates, shape SupportedGADShapes) *Point

NewPoint instantiates a new Point 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 NewPointWithDefaults ¶

func NewPointWithDefaults() *Point

NewPointWithDefaults instantiates a new Point 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 (*Point) GetPoint ¶

func (o *Point) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*Point) GetPointOk ¶

func (o *Point) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (Point) MarshalJSON ¶

func (o Point) MarshalJSON() ([]byte, error)

func (*Point) SetPoint ¶

func (o *Point) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (Point) ToMap ¶

func (o Point) ToMap() (map[string]interface{}, error)

type PointAllOf ¶

type PointAllOf struct {
	Point GeographicalCoordinates `json:"point"`
}

PointAllOf struct for PointAllOf

func NewPointAllOf ¶

func NewPointAllOf(point GeographicalCoordinates) *PointAllOf

NewPointAllOf instantiates a new PointAllOf 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 NewPointAllOfWithDefaults ¶

func NewPointAllOfWithDefaults() *PointAllOf

NewPointAllOfWithDefaults instantiates a new PointAllOf 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 (*PointAllOf) GetPoint ¶

func (o *PointAllOf) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*PointAllOf) GetPointOk ¶

func (o *PointAllOf) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (PointAllOf) MarshalJSON ¶

func (o PointAllOf) MarshalJSON() ([]byte, error)

func (*PointAllOf) SetPoint ¶

func (o *PointAllOf) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (PointAllOf) ToMap ¶

func (o PointAllOf) ToMap() (map[string]interface{}, error)

type PointAltitude ¶

type PointAltitude struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude float64 `json:"altitude"`
}

PointAltitude Ellipsoid point with altitude.

func NewPointAltitude ¶

func NewPointAltitude(point GeographicalCoordinates, altitude float64, shape SupportedGADShapes) *PointAltitude

NewPointAltitude instantiates a new PointAltitude 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 NewPointAltitudeWithDefaults ¶

func NewPointAltitudeWithDefaults() *PointAltitude

NewPointAltitudeWithDefaults instantiates a new PointAltitude 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 (*PointAltitude) GetAltitude ¶

func (o *PointAltitude) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitude) GetAltitudeOk ¶

func (o *PointAltitude) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitude) GetPoint ¶

func (o *PointAltitude) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*PointAltitude) GetPointOk ¶

func (o *PointAltitude) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (PointAltitude) MarshalJSON ¶

func (o PointAltitude) MarshalJSON() ([]byte, error)

func (*PointAltitude) SetAltitude ¶

func (o *PointAltitude) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitude) SetPoint ¶

func (o *PointAltitude) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (PointAltitude) ToMap ¶

func (o PointAltitude) ToMap() (map[string]interface{}, error)

type PointAltitudeAllOf ¶

type PointAltitudeAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude float64 `json:"altitude"`
}

PointAltitudeAllOf struct for PointAltitudeAllOf

func NewPointAltitudeAllOf ¶

func NewPointAltitudeAllOf(point GeographicalCoordinates, altitude float64) *PointAltitudeAllOf

NewPointAltitudeAllOf instantiates a new PointAltitudeAllOf 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 NewPointAltitudeAllOfWithDefaults ¶

func NewPointAltitudeAllOfWithDefaults() *PointAltitudeAllOf

NewPointAltitudeAllOfWithDefaults instantiates a new PointAltitudeAllOf 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 (*PointAltitudeAllOf) GetAltitude ¶

func (o *PointAltitudeAllOf) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitudeAllOf) GetAltitudeOk ¶

func (o *PointAltitudeAllOf) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitudeAllOf) GetPoint ¶

GetPoint returns the Point field value

func (*PointAltitudeAllOf) GetPointOk ¶

func (o *PointAltitudeAllOf) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (PointAltitudeAllOf) MarshalJSON ¶

func (o PointAltitudeAllOf) MarshalJSON() ([]byte, error)

func (*PointAltitudeAllOf) SetAltitude ¶

func (o *PointAltitudeAllOf) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitudeAllOf) SetPoint ¶

SetPoint sets field value

func (PointAltitudeAllOf) ToMap ¶

func (o PointAltitudeAllOf) ToMap() (map[string]interface{}, error)

type PointAltitudeUncertainty ¶

type PointAltitudeUncertainty struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude           float64            `json:"altitude"`
	UncertaintyEllipse UncertaintyEllipse `json:"uncertaintyEllipse"`
	// Indicates value of uncertainty.
	UncertaintyAltitude float32 `json:"uncertaintyAltitude"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointAltitudeUncertainty Ellipsoid point with altitude and uncertainty ellipsoid.

func NewPointAltitudeUncertainty ¶

func NewPointAltitudeUncertainty(point GeographicalCoordinates, altitude float64, uncertaintyEllipse UncertaintyEllipse, uncertaintyAltitude float32, confidence int32, shape SupportedGADShapes) *PointAltitudeUncertainty

NewPointAltitudeUncertainty instantiates a new PointAltitudeUncertainty 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 NewPointAltitudeUncertaintyWithDefaults ¶

func NewPointAltitudeUncertaintyWithDefaults() *PointAltitudeUncertainty

NewPointAltitudeUncertaintyWithDefaults instantiates a new PointAltitudeUncertainty 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 (*PointAltitudeUncertainty) GetAltitude ¶

func (o *PointAltitudeUncertainty) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitudeUncertainty) GetAltitudeOk ¶

func (o *PointAltitudeUncertainty) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetConfidence ¶

func (o *PointAltitudeUncertainty) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointAltitudeUncertainty) GetConfidenceOk ¶

func (o *PointAltitudeUncertainty) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetPoint ¶

GetPoint returns the Point field value

func (*PointAltitudeUncertainty) GetPointOk ¶

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetUncertaintyAltitude ¶

func (o *PointAltitudeUncertainty) GetUncertaintyAltitude() float32

GetUncertaintyAltitude returns the UncertaintyAltitude field value

func (*PointAltitudeUncertainty) GetUncertaintyAltitudeOk ¶

func (o *PointAltitudeUncertainty) GetUncertaintyAltitudeOk() (*float32, bool)

GetUncertaintyAltitudeOk returns a tuple with the UncertaintyAltitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetUncertaintyEllipse ¶

func (o *PointAltitudeUncertainty) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointAltitudeUncertainty) GetUncertaintyEllipseOk ¶

func (o *PointAltitudeUncertainty) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointAltitudeUncertainty) MarshalJSON ¶

func (o PointAltitudeUncertainty) MarshalJSON() ([]byte, error)

func (*PointAltitudeUncertainty) SetAltitude ¶

func (o *PointAltitudeUncertainty) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitudeUncertainty) SetConfidence ¶

func (o *PointAltitudeUncertainty) SetConfidence(v int32)

SetConfidence sets field value

func (*PointAltitudeUncertainty) SetPoint ¶

SetPoint sets field value

func (*PointAltitudeUncertainty) SetUncertaintyAltitude ¶

func (o *PointAltitudeUncertainty) SetUncertaintyAltitude(v float32)

SetUncertaintyAltitude sets field value

func (*PointAltitudeUncertainty) SetUncertaintyEllipse ¶

func (o *PointAltitudeUncertainty) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointAltitudeUncertainty) ToMap ¶

func (o PointAltitudeUncertainty) ToMap() (map[string]interface{}, error)

type PointAltitudeUncertaintyAllOf ¶

type PointAltitudeUncertaintyAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude           float64            `json:"altitude"`
	UncertaintyEllipse UncertaintyEllipse `json:"uncertaintyEllipse"`
	// Indicates value of uncertainty.
	UncertaintyAltitude float32 `json:"uncertaintyAltitude"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointAltitudeUncertaintyAllOf struct for PointAltitudeUncertaintyAllOf

func NewPointAltitudeUncertaintyAllOf ¶

func NewPointAltitudeUncertaintyAllOf(point GeographicalCoordinates, altitude float64, uncertaintyEllipse UncertaintyEllipse, uncertaintyAltitude float32, confidence int32) *PointAltitudeUncertaintyAllOf

NewPointAltitudeUncertaintyAllOf instantiates a new PointAltitudeUncertaintyAllOf 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 NewPointAltitudeUncertaintyAllOfWithDefaults ¶

func NewPointAltitudeUncertaintyAllOfWithDefaults() *PointAltitudeUncertaintyAllOf

NewPointAltitudeUncertaintyAllOfWithDefaults instantiates a new PointAltitudeUncertaintyAllOf 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 (*PointAltitudeUncertaintyAllOf) GetAltitude ¶

func (o *PointAltitudeUncertaintyAllOf) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitudeUncertaintyAllOf) GetAltitudeOk ¶

func (o *PointAltitudeUncertaintyAllOf) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertaintyAllOf) GetConfidence ¶

func (o *PointAltitudeUncertaintyAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointAltitudeUncertaintyAllOf) GetConfidenceOk ¶

func (o *PointAltitudeUncertaintyAllOf) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertaintyAllOf) GetPoint ¶

GetPoint returns the Point field value

func (*PointAltitudeUncertaintyAllOf) GetPointOk ¶

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyAltitude ¶

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyAltitude() float32

GetUncertaintyAltitude returns the UncertaintyAltitude field value

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyAltitudeOk ¶

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyAltitudeOk() (*float32, bool)

GetUncertaintyAltitudeOk returns a tuple with the UncertaintyAltitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyEllipse ¶

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyEllipseOk ¶

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointAltitudeUncertaintyAllOf) MarshalJSON ¶

func (o PointAltitudeUncertaintyAllOf) MarshalJSON() ([]byte, error)

func (*PointAltitudeUncertaintyAllOf) SetAltitude ¶

func (o *PointAltitudeUncertaintyAllOf) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitudeUncertaintyAllOf) SetConfidence ¶

func (o *PointAltitudeUncertaintyAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*PointAltitudeUncertaintyAllOf) SetPoint ¶

SetPoint sets field value

func (*PointAltitudeUncertaintyAllOf) SetUncertaintyAltitude ¶

func (o *PointAltitudeUncertaintyAllOf) SetUncertaintyAltitude(v float32)

SetUncertaintyAltitude sets field value

func (*PointAltitudeUncertaintyAllOf) SetUncertaintyEllipse ¶

func (o *PointAltitudeUncertaintyAllOf) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointAltitudeUncertaintyAllOf) ToMap ¶

func (o PointAltitudeUncertaintyAllOf) ToMap() (map[string]interface{}, error)

type PointUncertaintyCircle ¶

type PointUncertaintyCircle struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of uncertainty.
	Uncertainty float32 `json:"uncertainty"`
}

PointUncertaintyCircle Ellipsoid point with uncertainty circle.

func NewPointUncertaintyCircle ¶

func NewPointUncertaintyCircle(point GeographicalCoordinates, uncertainty float32, shape SupportedGADShapes) *PointUncertaintyCircle

NewPointUncertaintyCircle instantiates a new PointUncertaintyCircle 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 NewPointUncertaintyCircleWithDefaults ¶

func NewPointUncertaintyCircleWithDefaults() *PointUncertaintyCircle

NewPointUncertaintyCircleWithDefaults instantiates a new PointUncertaintyCircle 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 (*PointUncertaintyCircle) GetPoint ¶

GetPoint returns the Point field value

func (*PointUncertaintyCircle) GetPointOk ¶

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyCircle) GetUncertainty ¶

func (o *PointUncertaintyCircle) GetUncertainty() float32

GetUncertainty returns the Uncertainty field value

func (*PointUncertaintyCircle) GetUncertaintyOk ¶

func (o *PointUncertaintyCircle) GetUncertaintyOk() (*float32, bool)

GetUncertaintyOk returns a tuple with the Uncertainty field value and a boolean to check if the value has been set.

func (PointUncertaintyCircle) MarshalJSON ¶

func (o PointUncertaintyCircle) MarshalJSON() ([]byte, error)

func (*PointUncertaintyCircle) SetPoint ¶

SetPoint sets field value

func (*PointUncertaintyCircle) SetUncertainty ¶

func (o *PointUncertaintyCircle) SetUncertainty(v float32)

SetUncertainty sets field value

func (PointUncertaintyCircle) ToMap ¶

func (o PointUncertaintyCircle) ToMap() (map[string]interface{}, error)

type PointUncertaintyCircleAllOf ¶

type PointUncertaintyCircleAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of uncertainty.
	Uncertainty float32 `json:"uncertainty"`
}

PointUncertaintyCircleAllOf struct for PointUncertaintyCircleAllOf

func NewPointUncertaintyCircleAllOf ¶

func NewPointUncertaintyCircleAllOf(point GeographicalCoordinates, uncertainty float32) *PointUncertaintyCircleAllOf

NewPointUncertaintyCircleAllOf instantiates a new PointUncertaintyCircleAllOf 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 NewPointUncertaintyCircleAllOfWithDefaults ¶

func NewPointUncertaintyCircleAllOfWithDefaults() *PointUncertaintyCircleAllOf

NewPointUncertaintyCircleAllOfWithDefaults instantiates a new PointUncertaintyCircleAllOf 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 (*PointUncertaintyCircleAllOf) GetPoint ¶

GetPoint returns the Point field value

func (*PointUncertaintyCircleAllOf) GetPointOk ¶

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyCircleAllOf) GetUncertainty ¶

func (o *PointUncertaintyCircleAllOf) GetUncertainty() float32

GetUncertainty returns the Uncertainty field value

func (*PointUncertaintyCircleAllOf) GetUncertaintyOk ¶

func (o *PointUncertaintyCircleAllOf) GetUncertaintyOk() (*float32, bool)

GetUncertaintyOk returns a tuple with the Uncertainty field value and a boolean to check if the value has been set.

func (PointUncertaintyCircleAllOf) MarshalJSON ¶

func (o PointUncertaintyCircleAllOf) MarshalJSON() ([]byte, error)

func (*PointUncertaintyCircleAllOf) SetPoint ¶

SetPoint sets field value

func (*PointUncertaintyCircleAllOf) SetUncertainty ¶

func (o *PointUncertaintyCircleAllOf) SetUncertainty(v float32)

SetUncertainty sets field value

func (PointUncertaintyCircleAllOf) ToMap ¶

func (o PointUncertaintyCircleAllOf) ToMap() (map[string]interface{}, error)

type PointUncertaintyEllipse ¶

type PointUncertaintyEllipse struct {
	GADShape
	Point              GeographicalCoordinates `json:"point"`
	UncertaintyEllipse UncertaintyEllipse      `json:"uncertaintyEllipse"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointUncertaintyEllipse Ellipsoid point with uncertainty ellipse.

func NewPointUncertaintyEllipse ¶

func NewPointUncertaintyEllipse(point GeographicalCoordinates, uncertaintyEllipse UncertaintyEllipse, confidence int32, shape SupportedGADShapes) *PointUncertaintyEllipse

NewPointUncertaintyEllipse instantiates a new PointUncertaintyEllipse 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 NewPointUncertaintyEllipseWithDefaults ¶

func NewPointUncertaintyEllipseWithDefaults() *PointUncertaintyEllipse

NewPointUncertaintyEllipseWithDefaults instantiates a new PointUncertaintyEllipse 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 (*PointUncertaintyEllipse) GetConfidence ¶

func (o *PointUncertaintyEllipse) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointUncertaintyEllipse) GetConfidenceOk ¶

func (o *PointUncertaintyEllipse) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipse) GetPoint ¶

GetPoint returns the Point field value

func (*PointUncertaintyEllipse) GetPointOk ¶

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipse) GetUncertaintyEllipse ¶

func (o *PointUncertaintyEllipse) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointUncertaintyEllipse) GetUncertaintyEllipseOk ¶

func (o *PointUncertaintyEllipse) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointUncertaintyEllipse) MarshalJSON ¶

func (o PointUncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*PointUncertaintyEllipse) SetConfidence ¶

func (o *PointUncertaintyEllipse) SetConfidence(v int32)

SetConfidence sets field value

func (*PointUncertaintyEllipse) SetPoint ¶

SetPoint sets field value

func (*PointUncertaintyEllipse) SetUncertaintyEllipse ¶

func (o *PointUncertaintyEllipse) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointUncertaintyEllipse) ToMap ¶

func (o PointUncertaintyEllipse) ToMap() (map[string]interface{}, error)

type PointUncertaintyEllipseAllOf ¶

type PointUncertaintyEllipseAllOf struct {
	Point              GeographicalCoordinates `json:"point"`
	UncertaintyEllipse UncertaintyEllipse      `json:"uncertaintyEllipse"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointUncertaintyEllipseAllOf struct for PointUncertaintyEllipseAllOf

func NewPointUncertaintyEllipseAllOf ¶

func NewPointUncertaintyEllipseAllOf(point GeographicalCoordinates, uncertaintyEllipse UncertaintyEllipse, confidence int32) *PointUncertaintyEllipseAllOf

NewPointUncertaintyEllipseAllOf instantiates a new PointUncertaintyEllipseAllOf 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 NewPointUncertaintyEllipseAllOfWithDefaults ¶

func NewPointUncertaintyEllipseAllOfWithDefaults() *PointUncertaintyEllipseAllOf

NewPointUncertaintyEllipseAllOfWithDefaults instantiates a new PointUncertaintyEllipseAllOf 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 (*PointUncertaintyEllipseAllOf) GetConfidence ¶

func (o *PointUncertaintyEllipseAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointUncertaintyEllipseAllOf) GetConfidenceOk ¶

func (o *PointUncertaintyEllipseAllOf) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipseAllOf) GetPoint ¶

GetPoint returns the Point field value

func (*PointUncertaintyEllipseAllOf) GetPointOk ¶

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipseAllOf) GetUncertaintyEllipse ¶

func (o *PointUncertaintyEllipseAllOf) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointUncertaintyEllipseAllOf) GetUncertaintyEllipseOk ¶

func (o *PointUncertaintyEllipseAllOf) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointUncertaintyEllipseAllOf) MarshalJSON ¶

func (o PointUncertaintyEllipseAllOf) MarshalJSON() ([]byte, error)

func (*PointUncertaintyEllipseAllOf) SetConfidence ¶

func (o *PointUncertaintyEllipseAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*PointUncertaintyEllipseAllOf) SetPoint ¶

SetPoint sets field value

func (*PointUncertaintyEllipseAllOf) SetUncertaintyEllipse ¶

func (o *PointUncertaintyEllipseAllOf) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointUncertaintyEllipseAllOf) ToMap ¶

func (o PointUncertaintyEllipseAllOf) ToMap() (map[string]interface{}, error)

type Polygon ¶

type Polygon struct {
	GADShape
	// List of points.
	PointList []GeographicalCoordinates `json:"pointList"`
}

Polygon Polygon.

func NewPolygon ¶

func NewPolygon(pointList []GeographicalCoordinates, shape SupportedGADShapes) *Polygon

NewPolygon instantiates a new Polygon 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 NewPolygonWithDefaults ¶

func NewPolygonWithDefaults() *Polygon

NewPolygonWithDefaults instantiates a new Polygon 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 (*Polygon) GetPointList ¶

func (o *Polygon) GetPointList() []GeographicalCoordinates

GetPointList returns the PointList field value

func (*Polygon) GetPointListOk ¶

func (o *Polygon) GetPointListOk() ([]GeographicalCoordinates, bool)

GetPointListOk returns a tuple with the PointList field value and a boolean to check if the value has been set.

func (Polygon) MarshalJSON ¶

func (o Polygon) MarshalJSON() ([]byte, error)

func (*Polygon) SetPointList ¶

func (o *Polygon) SetPointList(v []GeographicalCoordinates)

SetPointList sets field value

func (Polygon) ToMap ¶

func (o Polygon) ToMap() (map[string]interface{}, error)

type PolygonAllOf ¶

type PolygonAllOf struct {
	// List of points.
	PointList []GeographicalCoordinates `json:"pointList"`
}

PolygonAllOf struct for PolygonAllOf

func NewPolygonAllOf ¶

func NewPolygonAllOf(pointList []GeographicalCoordinates) *PolygonAllOf

NewPolygonAllOf instantiates a new PolygonAllOf 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 NewPolygonAllOfWithDefaults ¶

func NewPolygonAllOfWithDefaults() *PolygonAllOf

NewPolygonAllOfWithDefaults instantiates a new PolygonAllOf 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 (*PolygonAllOf) GetPointList ¶

func (o *PolygonAllOf) GetPointList() []GeographicalCoordinates

GetPointList returns the PointList field value

func (*PolygonAllOf) GetPointListOk ¶

func (o *PolygonAllOf) GetPointListOk() ([]GeographicalCoordinates, bool)

GetPointListOk returns a tuple with the PointList field value and a boolean to check if the value has been set.

func (PolygonAllOf) MarshalJSON ¶

func (o PolygonAllOf) MarshalJSON() ([]byte, error)

func (*PolygonAllOf) SetPointList ¶

func (o *PolygonAllOf) SetPointList(v []GeographicalCoordinates)

SetPointList sets field value

func (PolygonAllOf) ToMap ¶

func (o PolygonAllOf) ToMap() (map[string]interface{}, error)

type PresenceInfo ¶

type PresenceInfo struct {
	// Represents an identifier of the Presence Reporting Area (see clause 28.10 of 3GPP  TS 23.003.  This IE shall be present  if the Area of Interest subscribed or reported is a Presence Reporting Area or a Set of Core Network predefined Presence Reporting Areas. When present, it shall be encoded as a string representing an integer in the following ranges: 0 to 8 388 607 for UE-dedicated PRA 8 388 608 to 16 777 215 for Core Network predefined PRA Examples: PRA ID 123 is encoded as \"123\" PRA ID 11 238 660 is encoded as \"11238660\"
	PraId *string `json:"praId,omitempty"`
	// This IE may be present if the praId IE is present and if it contains a PRA identifier referring to a set of Core Network predefined Presence Reporting Areas. When present, this IE shall contain a PRA Identifier of an individual PRA within the Set of Core Network predefined Presence Reporting Areas indicated by the praId IE.
	AdditionalPraId *string        `json:"additionalPraId,omitempty"`
	PresenceState   *PresenceState `json:"presenceState,omitempty"`
	// Represents the list of tracking areas that constitutes the area. This IE shall be present if the subscription or  the event report is for tracking UE presence in the tracking areas. For non 3GPP access the TAI shall be the N3GPP TAI.
	TrackingAreaList []Tai `json:"trackingAreaList,omitempty"`
	// Represents the list of EUTRAN cell Ids that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of EUTRAN cell Ids.
	EcgiList []Ecgi `json:"ecgiList,omitempty"`
	// Represents the list of NR cell Ids that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of NR cell Ids.
	NcgiList []Ncgi `json:"ncgiList,omitempty"`
	// Represents the list of NG RAN node identifiers that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of NG RAN node identifiers.
	GlobalRanNodeIdList []GlobalRanNodeId `json:"globalRanNodeIdList,omitempty"`
	// Represents the list of eNodeB identifiers that constitutes the area. This IE shall be  present if the Area of Interest subscribed is a list of eNodeB identifiers.
	GlobaleNbIdList []GlobalRanNodeId `json:"globaleNbIdList,omitempty"`
}

PresenceInfo If the additionalPraId IE is present, this IE shall state the presence information of the UE for the individual PRA identified by the additionalPraId IE; If the additionalPraId IE is not present, this IE shall state the presence information of the UE for the PRA identified by the praId IE.

func NewPresenceInfo ¶

func NewPresenceInfo() *PresenceInfo

NewPresenceInfo instantiates a new PresenceInfo 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 NewPresenceInfoWithDefaults ¶

func NewPresenceInfoWithDefaults() *PresenceInfo

NewPresenceInfoWithDefaults instantiates a new PresenceInfo 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 (*PresenceInfo) GetAdditionalPraId ¶

func (o *PresenceInfo) GetAdditionalPraId() string

GetAdditionalPraId returns the AdditionalPraId field value if set, zero value otherwise.

func (*PresenceInfo) GetAdditionalPraIdOk ¶

func (o *PresenceInfo) GetAdditionalPraIdOk() (*string, bool)

GetAdditionalPraIdOk returns a tuple with the AdditionalPraId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetEcgiList ¶

func (o *PresenceInfo) GetEcgiList() []Ecgi

GetEcgiList returns the EcgiList field value if set, zero value otherwise.

func (*PresenceInfo) GetEcgiListOk ¶

func (o *PresenceInfo) GetEcgiListOk() ([]Ecgi, bool)

GetEcgiListOk returns a tuple with the EcgiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetGlobalRanNodeIdList ¶

func (o *PresenceInfo) GetGlobalRanNodeIdList() []GlobalRanNodeId

GetGlobalRanNodeIdList returns the GlobalRanNodeIdList field value if set, zero value otherwise.

func (*PresenceInfo) GetGlobalRanNodeIdListOk ¶

func (o *PresenceInfo) GetGlobalRanNodeIdListOk() ([]GlobalRanNodeId, bool)

GetGlobalRanNodeIdListOk returns a tuple with the GlobalRanNodeIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetGlobaleNbIdList ¶

func (o *PresenceInfo) GetGlobaleNbIdList() []GlobalRanNodeId

GetGlobaleNbIdList returns the GlobaleNbIdList field value if set, zero value otherwise.

func (*PresenceInfo) GetGlobaleNbIdListOk ¶

func (o *PresenceInfo) GetGlobaleNbIdListOk() ([]GlobalRanNodeId, bool)

GetGlobaleNbIdListOk returns a tuple with the GlobaleNbIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetNcgiList ¶

func (o *PresenceInfo) GetNcgiList() []Ncgi

GetNcgiList returns the NcgiList field value if set, zero value otherwise.

func (*PresenceInfo) GetNcgiListOk ¶

func (o *PresenceInfo) GetNcgiListOk() ([]Ncgi, bool)

GetNcgiListOk returns a tuple with the NcgiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetPraId ¶

func (o *PresenceInfo) GetPraId() string

GetPraId returns the PraId field value if set, zero value otherwise.

func (*PresenceInfo) GetPraIdOk ¶

func (o *PresenceInfo) GetPraIdOk() (*string, bool)

GetPraIdOk returns a tuple with the PraId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetPresenceState ¶

func (o *PresenceInfo) GetPresenceState() PresenceState

GetPresenceState returns the PresenceState field value if set, zero value otherwise.

func (*PresenceInfo) GetPresenceStateOk ¶

func (o *PresenceInfo) GetPresenceStateOk() (*PresenceState, bool)

GetPresenceStateOk returns a tuple with the PresenceState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetTrackingAreaList ¶

func (o *PresenceInfo) GetTrackingAreaList() []Tai

GetTrackingAreaList returns the TrackingAreaList field value if set, zero value otherwise.

func (*PresenceInfo) GetTrackingAreaListOk ¶

func (o *PresenceInfo) GetTrackingAreaListOk() ([]Tai, bool)

GetTrackingAreaListOk returns a tuple with the TrackingAreaList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) HasAdditionalPraId ¶

func (o *PresenceInfo) HasAdditionalPraId() bool

HasAdditionalPraId returns a boolean if a field has been set.

func (*PresenceInfo) HasEcgiList ¶

func (o *PresenceInfo) HasEcgiList() bool

HasEcgiList returns a boolean if a field has been set.

func (*PresenceInfo) HasGlobalRanNodeIdList ¶

func (o *PresenceInfo) HasGlobalRanNodeIdList() bool

HasGlobalRanNodeIdList returns a boolean if a field has been set.

func (*PresenceInfo) HasGlobaleNbIdList ¶

func (o *PresenceInfo) HasGlobaleNbIdList() bool

HasGlobaleNbIdList returns a boolean if a field has been set.

func (*PresenceInfo) HasNcgiList ¶

func (o *PresenceInfo) HasNcgiList() bool

HasNcgiList returns a boolean if a field has been set.

func (*PresenceInfo) HasPraId ¶

func (o *PresenceInfo) HasPraId() bool

HasPraId returns a boolean if a field has been set.

func (*PresenceInfo) HasPresenceState ¶

func (o *PresenceInfo) HasPresenceState() bool

HasPresenceState returns a boolean if a field has been set.

func (*PresenceInfo) HasTrackingAreaList ¶

func (o *PresenceInfo) HasTrackingAreaList() bool

HasTrackingAreaList returns a boolean if a field has been set.

func (PresenceInfo) MarshalJSON ¶

func (o PresenceInfo) MarshalJSON() ([]byte, error)

func (*PresenceInfo) SetAdditionalPraId ¶

func (o *PresenceInfo) SetAdditionalPraId(v string)

SetAdditionalPraId gets a reference to the given string and assigns it to the AdditionalPraId field.

func (*PresenceInfo) SetEcgiList ¶

func (o *PresenceInfo) SetEcgiList(v []Ecgi)

SetEcgiList gets a reference to the given []Ecgi and assigns it to the EcgiList field.

func (*PresenceInfo) SetGlobalRanNodeIdList ¶

func (o *PresenceInfo) SetGlobalRanNodeIdList(v []GlobalRanNodeId)

SetGlobalRanNodeIdList gets a reference to the given []GlobalRanNodeId and assigns it to the GlobalRanNodeIdList field.

func (*PresenceInfo) SetGlobaleNbIdList ¶

func (o *PresenceInfo) SetGlobaleNbIdList(v []GlobalRanNodeId)

SetGlobaleNbIdList gets a reference to the given []GlobalRanNodeId and assigns it to the GlobaleNbIdList field.

func (*PresenceInfo) SetNcgiList ¶

func (o *PresenceInfo) SetNcgiList(v []Ncgi)

SetNcgiList gets a reference to the given []Ncgi and assigns it to the NcgiList field.

func (*PresenceInfo) SetPraId ¶

func (o *PresenceInfo) SetPraId(v string)

SetPraId gets a reference to the given string and assigns it to the PraId field.

func (*PresenceInfo) SetPresenceState ¶

func (o *PresenceInfo) SetPresenceState(v PresenceState)

SetPresenceState gets a reference to the given PresenceState and assigns it to the PresenceState field.

func (*PresenceInfo) SetTrackingAreaList ¶

func (o *PresenceInfo) SetTrackingAreaList(v []Tai)

SetTrackingAreaList gets a reference to the given []Tai and assigns it to the TrackingAreaList field.

func (PresenceInfo) ToMap ¶

func (o PresenceInfo) ToMap() (map[string]interface{}, error)

type PresenceState ¶

type PresenceState struct {
	String *string
}

PresenceState Possible values are: -IN_AREA: Indicates that the UE is inside or enters the presence reporting area. -OUT_OF_AREA: Indicates that the UE is outside or leaves the presence reporting area -UNKNOW: Indicates it is unknown whether the UE is in the presence reporting area or not -INACTIVE: Indicates that the presence reporting area is inactive in the serving node.

func (*PresenceState) MarshalJSON ¶

func (src *PresenceState) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PresenceState) UnmarshalJSON ¶

func (dst *PresenceState) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PrevSubInfo ¶

type PrevSubInfo struct {
	Interface *interface{}
}

PrevSubInfo - Information of the previous subscription.

func InterfaceAsPrevSubInfo ¶

func InterfaceAsPrevSubInfo(v *interface{}) PrevSubInfo

interface{}AsPrevSubInfo is a convenience function that returns interface{} wrapped in PrevSubInfo

func (*PrevSubInfo) GetActualInstance ¶

func (obj *PrevSubInfo) GetActualInstance() interface{}

Get the actual instance

func (PrevSubInfo) MarshalJSON ¶

func (src PrevSubInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PrevSubInfo) UnmarshalJSON ¶

func (dst *PrevSubInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ProSeCapability ¶

type ProSeCapability struct {
	ProseDirectDiscovey      *bool `json:"proseDirectDiscovey,omitempty"`
	ProseDirectCommunication *bool `json:"proseDirectCommunication,omitempty"`
	ProseL2UetoNetworkRelay  *bool `json:"proseL2UetoNetworkRelay,omitempty"`
	ProseL3UetoNetworkRelay  *bool `json:"proseL3UetoNetworkRelay,omitempty"`
	ProseL2RemoteUe          *bool `json:"proseL2RemoteUe,omitempty"`
	ProseL3RemoteUe          *bool `json:"proseL3RemoteUe,omitempty"`
}

ProSeCapability Indicate the supported ProSe Capability by the PCF.

func NewProSeCapability ¶

func NewProSeCapability() *ProSeCapability

NewProSeCapability instantiates a new ProSeCapability 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 NewProSeCapabilityWithDefaults ¶

func NewProSeCapabilityWithDefaults() *ProSeCapability

NewProSeCapabilityWithDefaults instantiates a new ProSeCapability 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 (*ProSeCapability) GetProseDirectCommunication ¶

func (o *ProSeCapability) GetProseDirectCommunication() bool

GetProseDirectCommunication returns the ProseDirectCommunication field value if set, zero value otherwise.

func (*ProSeCapability) GetProseDirectCommunicationOk ¶

func (o *ProSeCapability) GetProseDirectCommunicationOk() (*bool, bool)

GetProseDirectCommunicationOk returns a tuple with the ProseDirectCommunication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProSeCapability) GetProseDirectDiscovey ¶

func (o *ProSeCapability) GetProseDirectDiscovey() bool

GetProseDirectDiscovey returns the ProseDirectDiscovey field value if set, zero value otherwise.

func (*ProSeCapability) GetProseDirectDiscoveyOk ¶

func (o *ProSeCapability) GetProseDirectDiscoveyOk() (*bool, bool)

GetProseDirectDiscoveyOk returns a tuple with the ProseDirectDiscovey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProSeCapability) GetProseL2RemoteUe ¶

func (o *ProSeCapability) GetProseL2RemoteUe() bool

GetProseL2RemoteUe returns the ProseL2RemoteUe field value if set, zero value otherwise.

func (*ProSeCapability) GetProseL2RemoteUeOk ¶

func (o *ProSeCapability) GetProseL2RemoteUeOk() (*bool, bool)

GetProseL2RemoteUeOk returns a tuple with the ProseL2RemoteUe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProSeCapability) GetProseL2UetoNetworkRelay ¶

func (o *ProSeCapability) GetProseL2UetoNetworkRelay() bool

GetProseL2UetoNetworkRelay returns the ProseL2UetoNetworkRelay field value if set, zero value otherwise.

func (*ProSeCapability) GetProseL2UetoNetworkRelayOk ¶

func (o *ProSeCapability) GetProseL2UetoNetworkRelayOk() (*bool, bool)

GetProseL2UetoNetworkRelayOk returns a tuple with the ProseL2UetoNetworkRelay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProSeCapability) GetProseL3RemoteUe ¶

func (o *ProSeCapability) GetProseL3RemoteUe() bool

GetProseL3RemoteUe returns the ProseL3RemoteUe field value if set, zero value otherwise.

func (*ProSeCapability) GetProseL3RemoteUeOk ¶

func (o *ProSeCapability) GetProseL3RemoteUeOk() (*bool, bool)

GetProseL3RemoteUeOk returns a tuple with the ProseL3RemoteUe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProSeCapability) GetProseL3UetoNetworkRelay ¶

func (o *ProSeCapability) GetProseL3UetoNetworkRelay() bool

GetProseL3UetoNetworkRelay returns the ProseL3UetoNetworkRelay field value if set, zero value otherwise.

func (*ProSeCapability) GetProseL3UetoNetworkRelayOk ¶

func (o *ProSeCapability) GetProseL3UetoNetworkRelayOk() (*bool, bool)

GetProseL3UetoNetworkRelayOk returns a tuple with the ProseL3UetoNetworkRelay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProSeCapability) HasProseDirectCommunication ¶

func (o *ProSeCapability) HasProseDirectCommunication() bool

HasProseDirectCommunication returns a boolean if a field has been set.

func (*ProSeCapability) HasProseDirectDiscovey ¶

func (o *ProSeCapability) HasProseDirectDiscovey() bool

HasProseDirectDiscovey returns a boolean if a field has been set.

func (*ProSeCapability) HasProseL2RemoteUe ¶

func (o *ProSeCapability) HasProseL2RemoteUe() bool

HasProseL2RemoteUe returns a boolean if a field has been set.

func (*ProSeCapability) HasProseL2UetoNetworkRelay ¶

func (o *ProSeCapability) HasProseL2UetoNetworkRelay() bool

HasProseL2UetoNetworkRelay returns a boolean if a field has been set.

func (*ProSeCapability) HasProseL3RemoteUe ¶

func (o *ProSeCapability) HasProseL3RemoteUe() bool

HasProseL3RemoteUe returns a boolean if a field has been set.

func (*ProSeCapability) HasProseL3UetoNetworkRelay ¶

func (o *ProSeCapability) HasProseL3UetoNetworkRelay() bool

HasProseL3UetoNetworkRelay returns a boolean if a field has been set.

func (ProSeCapability) MarshalJSON ¶

func (o ProSeCapability) MarshalJSON() ([]byte, error)

func (*ProSeCapability) SetProseDirectCommunication ¶

func (o *ProSeCapability) SetProseDirectCommunication(v bool)

SetProseDirectCommunication gets a reference to the given bool and assigns it to the ProseDirectCommunication field.

func (*ProSeCapability) SetProseDirectDiscovey ¶

func (o *ProSeCapability) SetProseDirectDiscovey(v bool)

SetProseDirectDiscovey gets a reference to the given bool and assigns it to the ProseDirectDiscovey field.

func (*ProSeCapability) SetProseL2RemoteUe ¶

func (o *ProSeCapability) SetProseL2RemoteUe(v bool)

SetProseL2RemoteUe gets a reference to the given bool and assigns it to the ProseL2RemoteUe field.

func (*ProSeCapability) SetProseL2UetoNetworkRelay ¶

func (o *ProSeCapability) SetProseL2UetoNetworkRelay(v bool)

SetProseL2UetoNetworkRelay gets a reference to the given bool and assigns it to the ProseL2UetoNetworkRelay field.

func (*ProSeCapability) SetProseL3RemoteUe ¶

func (o *ProSeCapability) SetProseL3RemoteUe(v bool)

SetProseL3RemoteUe gets a reference to the given bool and assigns it to the ProseL3RemoteUe field.

func (*ProSeCapability) SetProseL3UetoNetworkRelay ¶

func (o *ProSeCapability) SetProseL3UetoNetworkRelay(v bool)

SetProseL3UetoNetworkRelay gets a reference to the given bool and assigns it to the ProseL3UetoNetworkRelay field.

func (ProSeCapability) ToMap ¶

func (o ProSeCapability) ToMap() (map[string]interface{}, error)

type ProblemDetails ¶

type ProblemDetails struct {
	// String providing an URI formatted according to RFC 3986.
	Type   *string `json:"type,omitempty"`
	Title  *string `json:"title,omitempty"`
	Status *int32  `json:"status,omitempty"`
	// A human-readable explanation specific to this occurrence of the problem.
	Detail *string `json:"detail,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	Instance *string `json:"instance,omitempty"`
	// A machine-readable application error cause specific to this occurrence of the problem.  This IE should be present and provide application-related error information, if available.
	Cause         *string        `json:"cause,omitempty"`
	InvalidParams []InvalidParam `json:"invalidParams,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures  *string         `json:"supportedFeatures,omitempty"`
	AccessTokenError   *AccessTokenErr `json:"accessTokenError,omitempty"`
	AccessTokenRequest *AccessTokenReq `json:"accessTokenRequest,omitempty"`
	// Fully Qualified Domain Name
	NrfId                *string  `json:"nrfId,omitempty"`
	SupportedApiVersions []string `json:"supportedApiVersions,omitempty"`
}

ProblemDetails Provides additional information in an error response.

func NewProblemDetails ¶

func NewProblemDetails() *ProblemDetails

NewProblemDetails instantiates a new ProblemDetails 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 NewProblemDetailsWithDefaults ¶

func NewProblemDetailsWithDefaults() *ProblemDetails

NewProblemDetailsWithDefaults instantiates a new ProblemDetails 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 (*ProblemDetails) GetAccessTokenError ¶

func (o *ProblemDetails) GetAccessTokenError() AccessTokenErr

GetAccessTokenError returns the AccessTokenError field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenErrorOk ¶

func (o *ProblemDetails) GetAccessTokenErrorOk() (*AccessTokenErr, bool)

GetAccessTokenErrorOk returns a tuple with the AccessTokenError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetAccessTokenRequest ¶

func (o *ProblemDetails) GetAccessTokenRequest() AccessTokenReq

GetAccessTokenRequest returns the AccessTokenRequest field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenRequestOk ¶

func (o *ProblemDetails) GetAccessTokenRequestOk() (*AccessTokenReq, bool)

GetAccessTokenRequestOk returns a tuple with the AccessTokenRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetCause ¶

func (o *ProblemDetails) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*ProblemDetails) GetCauseOk ¶

func (o *ProblemDetails) GetCauseOk() (*string, bool)

GetCauseOk returns a tuple with the Cause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetDetail ¶

func (o *ProblemDetails) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ProblemDetails) GetDetailOk ¶

func (o *ProblemDetails) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetInstance ¶

func (o *ProblemDetails) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise.

func (*ProblemDetails) GetInstanceOk ¶

func (o *ProblemDetails) GetInstanceOk() (*string, bool)

GetInstanceOk returns a tuple with the Instance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetInvalidParams ¶

func (o *ProblemDetails) GetInvalidParams() []InvalidParam

GetInvalidParams returns the InvalidParams field value if set, zero value otherwise.

func (*ProblemDetails) GetInvalidParamsOk ¶

func (o *ProblemDetails) GetInvalidParamsOk() ([]InvalidParam, bool)

GetInvalidParamsOk returns a tuple with the InvalidParams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetNrfId ¶

func (o *ProblemDetails) GetNrfId() string

GetNrfId returns the NrfId field value if set, zero value otherwise.

func (*ProblemDetails) GetNrfIdOk ¶

func (o *ProblemDetails) GetNrfIdOk() (*string, bool)

GetNrfIdOk returns a tuple with the NrfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetStatus ¶

func (o *ProblemDetails) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ProblemDetails) GetStatusOk ¶

func (o *ProblemDetails) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetSupportedApiVersions ¶

func (o *ProblemDetails) GetSupportedApiVersions() []string

GetSupportedApiVersions returns the SupportedApiVersions field value if set, zero value otherwise.

func (*ProblemDetails) GetSupportedApiVersionsOk ¶

func (o *ProblemDetails) GetSupportedApiVersionsOk() ([]string, bool)

GetSupportedApiVersionsOk returns a tuple with the SupportedApiVersions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetSupportedFeatures ¶

func (o *ProblemDetails) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*ProblemDetails) GetSupportedFeaturesOk ¶

func (o *ProblemDetails) GetSupportedFeaturesOk() (*string, bool)

GetSupportedFeaturesOk returns a tuple with the SupportedFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetTitle ¶

func (o *ProblemDetails) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ProblemDetails) GetTitleOk ¶

func (o *ProblemDetails) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetType ¶

func (o *ProblemDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProblemDetails) GetTypeOk ¶

func (o *ProblemDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) HasAccessTokenError ¶

func (o *ProblemDetails) HasAccessTokenError() bool

HasAccessTokenError returns a boolean if a field has been set.

func (*ProblemDetails) HasAccessTokenRequest ¶

func (o *ProblemDetails) HasAccessTokenRequest() bool

HasAccessTokenRequest returns a boolean if a field has been set.

func (*ProblemDetails) HasCause ¶

func (o *ProblemDetails) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ProblemDetails) HasDetail ¶

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance ¶

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasInvalidParams ¶

func (o *ProblemDetails) HasInvalidParams() bool

HasInvalidParams returns a boolean if a field has been set.

func (*ProblemDetails) HasNrfId ¶

func (o *ProblemDetails) HasNrfId() bool

HasNrfId returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus ¶

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedApiVersions ¶

func (o *ProblemDetails) HasSupportedApiVersions() bool

HasSupportedApiVersions returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures ¶

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle ¶

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType ¶

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON ¶

func (o ProblemDetails) MarshalJSON() ([]byte, error)

func (*ProblemDetails) SetAccessTokenError ¶

func (o *ProblemDetails) SetAccessTokenError(v AccessTokenErr)

SetAccessTokenError gets a reference to the given AccessTokenErr and assigns it to the AccessTokenError field.

func (*ProblemDetails) SetAccessTokenRequest ¶

func (o *ProblemDetails) SetAccessTokenRequest(v AccessTokenReq)

SetAccessTokenRequest gets a reference to the given AccessTokenReq and assigns it to the AccessTokenRequest field.

func (*ProblemDetails) SetCause ¶

func (o *ProblemDetails) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*ProblemDetails) SetDetail ¶

func (o *ProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ProblemDetails) SetInstance ¶

func (o *ProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given string and assigns it to the Instance field.

func (*ProblemDetails) SetInvalidParams ¶

func (o *ProblemDetails) SetInvalidParams(v []InvalidParam)

SetInvalidParams gets a reference to the given []InvalidParam and assigns it to the InvalidParams field.

func (*ProblemDetails) SetNrfId ¶

func (o *ProblemDetails) SetNrfId(v string)

SetNrfId gets a reference to the given string and assigns it to the NrfId field.

func (*ProblemDetails) SetStatus ¶

func (o *ProblemDetails) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*ProblemDetails) SetSupportedApiVersions ¶

func (o *ProblemDetails) SetSupportedApiVersions(v []string)

SetSupportedApiVersions gets a reference to the given []string and assigns it to the SupportedApiVersions field.

func (*ProblemDetails) SetSupportedFeatures ¶

func (o *ProblemDetails) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*ProblemDetails) SetTitle ¶

func (o *ProblemDetails) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ProblemDetails) SetType ¶

func (o *ProblemDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ProblemDetails) ToMap ¶

func (o ProblemDetails) ToMap() (map[string]interface{}, error)

type ProcessingInstruction ¶

type ProcessingInstruction struct {
	EventId DccfEvent `json:"eventId"`
	// indicating a time in seconds.
	ProcInterval int32 `json:"procInterval"`
	// List of event parameter names, and for each event parameter name, respective event parameter values and sets of the attributes to be used in the summarized reports.
	ParamProcInstructs []ParameterProcessingInstruction `json:"paramProcInstructs,omitempty"`
}

ProcessingInstruction Contains instructions related to the processing of notifications.

func NewProcessingInstruction ¶

func NewProcessingInstruction(eventId DccfEvent, procInterval int32) *ProcessingInstruction

NewProcessingInstruction instantiates a new ProcessingInstruction 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 NewProcessingInstructionWithDefaults ¶

func NewProcessingInstructionWithDefaults() *ProcessingInstruction

NewProcessingInstructionWithDefaults instantiates a new ProcessingInstruction 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 (*ProcessingInstruction) GetEventId ¶

func (o *ProcessingInstruction) GetEventId() DccfEvent

GetEventId returns the EventId field value

func (*ProcessingInstruction) GetEventIdOk ¶

func (o *ProcessingInstruction) GetEventIdOk() (*DccfEvent, bool)

GetEventIdOk returns a tuple with the EventId field value and a boolean to check if the value has been set.

func (*ProcessingInstruction) GetParamProcInstructs ¶

func (o *ProcessingInstruction) GetParamProcInstructs() []ParameterProcessingInstruction

GetParamProcInstructs returns the ParamProcInstructs field value if set, zero value otherwise.

func (*ProcessingInstruction) GetParamProcInstructsOk ¶

func (o *ProcessingInstruction) GetParamProcInstructsOk() ([]ParameterProcessingInstruction, bool)

GetParamProcInstructsOk returns a tuple with the ParamProcInstructs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProcessingInstruction) GetProcInterval ¶

func (o *ProcessingInstruction) GetProcInterval() int32

GetProcInterval returns the ProcInterval field value

func (*ProcessingInstruction) GetProcIntervalOk ¶

func (o *ProcessingInstruction) GetProcIntervalOk() (*int32, bool)

GetProcIntervalOk returns a tuple with the ProcInterval field value and a boolean to check if the value has been set.

func (*ProcessingInstruction) HasParamProcInstructs ¶

func (o *ProcessingInstruction) HasParamProcInstructs() bool

HasParamProcInstructs returns a boolean if a field has been set.

func (ProcessingInstruction) MarshalJSON ¶

func (o ProcessingInstruction) MarshalJSON() ([]byte, error)

func (*ProcessingInstruction) SetEventId ¶

func (o *ProcessingInstruction) SetEventId(v DccfEvent)

SetEventId sets field value

func (*ProcessingInstruction) SetParamProcInstructs ¶

func (o *ProcessingInstruction) SetParamProcInstructs(v []ParameterProcessingInstruction)

SetParamProcInstructs gets a reference to the given []ParameterProcessingInstruction and assigns it to the ParamProcInstructs field.

func (*ProcessingInstruction) SetProcInterval ¶

func (o *ProcessingInstruction) SetProcInterval(v int32)

SetProcInterval sets field value

func (ProcessingInstruction) ToMap ¶

func (o ProcessingInstruction) ToMap() (map[string]interface{}, error)

type QosRequirement ¶

type QosRequirement struct {
	Interface *interface{}
}

QosRequirement - Represents the QoS requirements.

func InterfaceAsQosRequirement ¶

func InterfaceAsQosRequirement(v *interface{}) QosRequirement

interface{}AsQosRequirement is a convenience function that returns interface{} wrapped in QosRequirement

func (*QosRequirement) GetActualInstance ¶

func (obj *QosRequirement) GetActualInstance() interface{}

Get the actual instance

func (QosRequirement) MarshalJSON ¶

func (src QosRequirement) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*QosRequirement) UnmarshalJSON ¶

func (dst *QosRequirement) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type QosResourceType ¶

type QosResourceType struct {
	String *string
}

QosResourceType The enumeration QosResourceType indicates whether a QoS Flow is non-GBR, delay critical GBR, or non-delay critical GBR (see clauses 5.7.3.4 and 5.7.3.5 of 3GPP TS 23.501). It shall comply with the provisions defined in table 5.5.3.6-1.

func (*QosResourceType) MarshalJSON ¶

func (src *QosResourceType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*QosResourceType) UnmarshalJSON ¶

func (dst *QosResourceType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type QosSustainabilityInfo ¶

type QosSustainabilityInfo struct {
	Interface *interface{}
}

QosSustainabilityInfo - Represents the QoS Sustainability information.

func InterfaceAsQosSustainabilityInfo ¶

func InterfaceAsQosSustainabilityInfo(v *interface{}) QosSustainabilityInfo

interface{}AsQosSustainabilityInfo is a convenience function that returns interface{} wrapped in QosSustainabilityInfo

func (*QosSustainabilityInfo) GetActualInstance ¶

func (obj *QosSustainabilityInfo) GetActualInstance() interface{}

Get the actual instance

func (QosSustainabilityInfo) MarshalJSON ¶

func (src QosSustainabilityInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*QosSustainabilityInfo) UnmarshalJSON ¶

func (dst *QosSustainabilityInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type RankingCriterion ¶

type RankingCriterion struct {
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	HighBase int32 `json:"highBase"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	LowBase int32 `json:"lowBase"`
}

RankingCriterion Indicates the usage ranking criterion between the high, medium and low usage UE.

func NewRankingCriterion ¶

func NewRankingCriterion(highBase int32, lowBase int32) *RankingCriterion

NewRankingCriterion instantiates a new RankingCriterion 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 NewRankingCriterionWithDefaults ¶

func NewRankingCriterionWithDefaults() *RankingCriterion

NewRankingCriterionWithDefaults instantiates a new RankingCriterion 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 (*RankingCriterion) GetHighBase ¶

func (o *RankingCriterion) GetHighBase() int32

GetHighBase returns the HighBase field value

func (*RankingCriterion) GetHighBaseOk ¶

func (o *RankingCriterion) GetHighBaseOk() (*int32, bool)

GetHighBaseOk returns a tuple with the HighBase field value and a boolean to check if the value has been set.

func (*RankingCriterion) GetLowBase ¶

func (o *RankingCriterion) GetLowBase() int32

GetLowBase returns the LowBase field value

func (*RankingCriterion) GetLowBaseOk ¶

func (o *RankingCriterion) GetLowBaseOk() (*int32, bool)

GetLowBaseOk returns a tuple with the LowBase field value and a boolean to check if the value has been set.

func (RankingCriterion) MarshalJSON ¶

func (o RankingCriterion) MarshalJSON() ([]byte, error)

func (*RankingCriterion) SetHighBase ¶

func (o *RankingCriterion) SetHighBase(v int32)

SetHighBase sets field value

func (*RankingCriterion) SetLowBase ¶

func (o *RankingCriterion) SetLowBase(v int32)

SetLowBase sets field value

func (RankingCriterion) ToMap ¶

func (o RankingCriterion) ToMap() (map[string]interface{}, error)

type RatFreqInformation ¶

type RatFreqInformation struct {
	// Set to \"true\" to indicate to handle all the frequencies the NWDAF received, otherwise  set to \"false\" or omit. The \"allFreq\" attribute and the \"freq\" attribute are mutually  exclusive.
	AllFreq *bool `json:"allFreq,omitempty"`
	// Set to \"true\" to indicate to handle all the RAT Types the NWDAF received, otherwise  set to \"false\" or omit. The \"allRat\" attribute and the \"ratType\" attribute are mutually  exclusive.
	AllRat *bool `json:"allRat,omitempty"`
	// Integer value indicating the ARFCN applicable for a downlink, uplink or bi-directional (TDD) NR global frequency raster, as definition of \"ARFCN-ValueNR\" IE in clause 6.3.2 of 3GPP TS 38.331.
	Freq            *int32             `json:"freq,omitempty"`
	RatType         *RatType           `json:"ratType,omitempty"`
	SvcExpThreshold *ThresholdLevel    `json:"svcExpThreshold,omitempty"`
	MatchingDir     *MatchingDirection `json:"matchingDir,omitempty"`
}

RatFreqInformation Represents the RAT type and/or Frequency information.

func NewRatFreqInformation ¶

func NewRatFreqInformation() *RatFreqInformation

NewRatFreqInformation instantiates a new RatFreqInformation 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 NewRatFreqInformationWithDefaults ¶

func NewRatFreqInformationWithDefaults() *RatFreqInformation

NewRatFreqInformationWithDefaults instantiates a new RatFreqInformation 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 (*RatFreqInformation) GetAllFreq ¶

func (o *RatFreqInformation) GetAllFreq() bool

GetAllFreq returns the AllFreq field value if set, zero value otherwise.

func (*RatFreqInformation) GetAllFreqOk ¶

func (o *RatFreqInformation) GetAllFreqOk() (*bool, bool)

GetAllFreqOk returns a tuple with the AllFreq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RatFreqInformation) GetAllRat ¶

func (o *RatFreqInformation) GetAllRat() bool

GetAllRat returns the AllRat field value if set, zero value otherwise.

func (*RatFreqInformation) GetAllRatOk ¶

func (o *RatFreqInformation) GetAllRatOk() (*bool, bool)

GetAllRatOk returns a tuple with the AllRat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RatFreqInformation) GetFreq ¶

func (o *RatFreqInformation) GetFreq() int32

GetFreq returns the Freq field value if set, zero value otherwise.

func (*RatFreqInformation) GetFreqOk ¶

func (o *RatFreqInformation) GetFreqOk() (*int32, bool)

GetFreqOk returns a tuple with the Freq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RatFreqInformation) GetMatchingDir ¶

func (o *RatFreqInformation) GetMatchingDir() MatchingDirection

GetMatchingDir returns the MatchingDir field value if set, zero value otherwise.

func (*RatFreqInformation) GetMatchingDirOk ¶

func (o *RatFreqInformation) GetMatchingDirOk() (*MatchingDirection, bool)

GetMatchingDirOk returns a tuple with the MatchingDir field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RatFreqInformation) GetRatType ¶

func (o *RatFreqInformation) GetRatType() RatType

GetRatType returns the RatType field value if set, zero value otherwise.

func (*RatFreqInformation) GetRatTypeOk ¶

func (o *RatFreqInformation) GetRatTypeOk() (*RatType, bool)

GetRatTypeOk returns a tuple with the RatType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RatFreqInformation) GetSvcExpThreshold ¶

func (o *RatFreqInformation) GetSvcExpThreshold() ThresholdLevel

GetSvcExpThreshold returns the SvcExpThreshold field value if set, zero value otherwise.

func (*RatFreqInformation) GetSvcExpThresholdOk ¶

func (o *RatFreqInformation) GetSvcExpThresholdOk() (*ThresholdLevel, bool)

GetSvcExpThresholdOk returns a tuple with the SvcExpThreshold field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RatFreqInformation) HasAllFreq ¶

func (o *RatFreqInformation) HasAllFreq() bool

HasAllFreq returns a boolean if a field has been set.

func (*RatFreqInformation) HasAllRat ¶

func (o *RatFreqInformation) HasAllRat() bool

HasAllRat returns a boolean if a field has been set.

func (*RatFreqInformation) HasFreq ¶

func (o *RatFreqInformation) HasFreq() bool

HasFreq returns a boolean if a field has been set.

func (*RatFreqInformation) HasMatchingDir ¶

func (o *RatFreqInformation) HasMatchingDir() bool

HasMatchingDir returns a boolean if a field has been set.

func (*RatFreqInformation) HasRatType ¶

func (o *RatFreqInformation) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (*RatFreqInformation) HasSvcExpThreshold ¶

func (o *RatFreqInformation) HasSvcExpThreshold() bool

HasSvcExpThreshold returns a boolean if a field has been set.

func (RatFreqInformation) MarshalJSON ¶

func (o RatFreqInformation) MarshalJSON() ([]byte, error)

func (*RatFreqInformation) SetAllFreq ¶

func (o *RatFreqInformation) SetAllFreq(v bool)

SetAllFreq gets a reference to the given bool and assigns it to the AllFreq field.

func (*RatFreqInformation) SetAllRat ¶

func (o *RatFreqInformation) SetAllRat(v bool)

SetAllRat gets a reference to the given bool and assigns it to the AllRat field.

func (*RatFreqInformation) SetFreq ¶

func (o *RatFreqInformation) SetFreq(v int32)

SetFreq gets a reference to the given int32 and assigns it to the Freq field.

func (*RatFreqInformation) SetMatchingDir ¶

func (o *RatFreqInformation) SetMatchingDir(v MatchingDirection)

SetMatchingDir gets a reference to the given MatchingDirection and assigns it to the MatchingDir field.

func (*RatFreqInformation) SetRatType ¶

func (o *RatFreqInformation) SetRatType(v RatType)

SetRatType gets a reference to the given RatType and assigns it to the RatType field.

func (*RatFreqInformation) SetSvcExpThreshold ¶

func (o *RatFreqInformation) SetSvcExpThreshold(v ThresholdLevel)

SetSvcExpThreshold gets a reference to the given ThresholdLevel and assigns it to the SvcExpThreshold field.

func (RatFreqInformation) ToMap ¶

func (o RatFreqInformation) ToMap() (map[string]interface{}, error)

type RatType ¶

type RatType struct {
	String *string
}

RatType Indicates the radio access used.

func (*RatType) MarshalJSON ¶

func (src *RatType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RatType) UnmarshalJSON ¶

func (dst *RatType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ReachabilityFilter ¶

type ReachabilityFilter struct {
	String *string
}

ReachabilityFilter Event filter for REACHABILITY_REPORT event type

func (*ReachabilityFilter) MarshalJSON ¶

func (src *ReachabilityFilter) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ReachabilityFilter) UnmarshalJSON ¶

func (dst *ReachabilityFilter) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ReachabilityForDataConfiguration ¶

type ReachabilityForDataConfiguration struct {
	ReportCfg ReachabilityForDataReportConfig `json:"reportCfg"`
	// indicating a time in seconds.
	MinInterval *int32 `json:"minInterval,omitempty"`
}

ReachabilityForDataConfiguration struct for ReachabilityForDataConfiguration

func NewReachabilityForDataConfiguration ¶

func NewReachabilityForDataConfiguration(reportCfg ReachabilityForDataReportConfig) *ReachabilityForDataConfiguration

NewReachabilityForDataConfiguration instantiates a new ReachabilityForDataConfiguration 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 NewReachabilityForDataConfigurationWithDefaults ¶

func NewReachabilityForDataConfigurationWithDefaults() *ReachabilityForDataConfiguration

NewReachabilityForDataConfigurationWithDefaults instantiates a new ReachabilityForDataConfiguration 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 (*ReachabilityForDataConfiguration) GetMinInterval ¶

func (o *ReachabilityForDataConfiguration) GetMinInterval() int32

GetMinInterval returns the MinInterval field value if set, zero value otherwise.

func (*ReachabilityForDataConfiguration) GetMinIntervalOk ¶

func (o *ReachabilityForDataConfiguration) GetMinIntervalOk() (*int32, bool)

GetMinIntervalOk returns a tuple with the MinInterval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReachabilityForDataConfiguration) GetReportCfg ¶

GetReportCfg returns the ReportCfg field value

func (*ReachabilityForDataConfiguration) GetReportCfgOk ¶

GetReportCfgOk returns a tuple with the ReportCfg field value and a boolean to check if the value has been set.

func (*ReachabilityForDataConfiguration) HasMinInterval ¶

func (o *ReachabilityForDataConfiguration) HasMinInterval() bool

HasMinInterval returns a boolean if a field has been set.

func (ReachabilityForDataConfiguration) MarshalJSON ¶

func (o ReachabilityForDataConfiguration) MarshalJSON() ([]byte, error)

func (*ReachabilityForDataConfiguration) SetMinInterval ¶

func (o *ReachabilityForDataConfiguration) SetMinInterval(v int32)

SetMinInterval gets a reference to the given int32 and assigns it to the MinInterval field.

func (*ReachabilityForDataConfiguration) SetReportCfg ¶

SetReportCfg sets field value

func (ReachabilityForDataConfiguration) ToMap ¶

func (o ReachabilityForDataConfiguration) ToMap() (map[string]interface{}, error)

type ReachabilityForDataReportConfig ¶

type ReachabilityForDataReportConfig struct {
	String *string
}

ReachabilityForDataReportConfig struct for ReachabilityForDataReportConfig

func (*ReachabilityForDataReportConfig) MarshalJSON ¶

func (src *ReachabilityForDataReportConfig) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ReachabilityForDataReportConfig) UnmarshalJSON ¶

func (dst *ReachabilityForDataReportConfig) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ReachabilityForSmsConfiguration ¶

type ReachabilityForSmsConfiguration struct {
	String *string
}

ReachabilityForSmsConfiguration struct for ReachabilityForSmsConfiguration

func (*ReachabilityForSmsConfiguration) MarshalJSON ¶

func (src *ReachabilityForSmsConfiguration) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ReachabilityForSmsConfiguration) UnmarshalJSON ¶

func (dst *ReachabilityForSmsConfiguration) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ReachabilityForSmsReport ¶

type ReachabilityForSmsReport struct {
	SmsfAccessType AccessType `json:"smsfAccessType"`
	// string with format 'date-time' as defined in OpenAPI.
	MaxAvailabilityTime *time.Time `json:"maxAvailabilityTime,omitempty"`
}

ReachabilityForSmsReport struct for ReachabilityForSmsReport

func NewReachabilityForSmsReport ¶

func NewReachabilityForSmsReport(smsfAccessType AccessType) *ReachabilityForSmsReport

NewReachabilityForSmsReport instantiates a new ReachabilityForSmsReport 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 NewReachabilityForSmsReportWithDefaults ¶

func NewReachabilityForSmsReportWithDefaults() *ReachabilityForSmsReport

NewReachabilityForSmsReportWithDefaults instantiates a new ReachabilityForSmsReport 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 (*ReachabilityForSmsReport) GetMaxAvailabilityTime ¶

func (o *ReachabilityForSmsReport) GetMaxAvailabilityTime() time.Time

GetMaxAvailabilityTime returns the MaxAvailabilityTime field value if set, zero value otherwise.

func (*ReachabilityForSmsReport) GetMaxAvailabilityTimeOk ¶

func (o *ReachabilityForSmsReport) GetMaxAvailabilityTimeOk() (*time.Time, bool)

GetMaxAvailabilityTimeOk returns a tuple with the MaxAvailabilityTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReachabilityForSmsReport) GetSmsfAccessType ¶

func (o *ReachabilityForSmsReport) GetSmsfAccessType() AccessType

GetSmsfAccessType returns the SmsfAccessType field value

func (*ReachabilityForSmsReport) GetSmsfAccessTypeOk ¶

func (o *ReachabilityForSmsReport) GetSmsfAccessTypeOk() (*AccessType, bool)

GetSmsfAccessTypeOk returns a tuple with the SmsfAccessType field value and a boolean to check if the value has been set.

func (*ReachabilityForSmsReport) HasMaxAvailabilityTime ¶

func (o *ReachabilityForSmsReport) HasMaxAvailabilityTime() bool

HasMaxAvailabilityTime returns a boolean if a field has been set.

func (ReachabilityForSmsReport) MarshalJSON ¶

func (o ReachabilityForSmsReport) MarshalJSON() ([]byte, error)

func (*ReachabilityForSmsReport) SetMaxAvailabilityTime ¶

func (o *ReachabilityForSmsReport) SetMaxAvailabilityTime(v time.Time)

SetMaxAvailabilityTime gets a reference to the given time.Time and assigns it to the MaxAvailabilityTime field.

func (*ReachabilityForSmsReport) SetSmsfAccessType ¶

func (o *ReachabilityForSmsReport) SetSmsfAccessType(v AccessType)

SetSmsfAccessType sets field value

func (ReachabilityForSmsReport) ToMap ¶

func (o ReachabilityForSmsReport) ToMap() (map[string]interface{}, error)

type ReachabilityReport ¶

type ReachabilityReport struct {
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	AmfInstanceId  *string         `json:"amfInstanceId,omitempty"`
	AccessTypeList []AccessType    `json:"accessTypeList,omitempty"`
	Reachability   *UeReachability `json:"reachability,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	MaxAvailabilityTime  *time.Time            `json:"maxAvailabilityTime,omitempty"`
	IdleStatusIndication *IdleStatusIndication `json:"idleStatusIndication,omitempty"`
}

ReachabilityReport struct for ReachabilityReport

func NewReachabilityReport ¶

func NewReachabilityReport() *ReachabilityReport

NewReachabilityReport instantiates a new ReachabilityReport 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 NewReachabilityReportWithDefaults ¶

func NewReachabilityReportWithDefaults() *ReachabilityReport

NewReachabilityReportWithDefaults instantiates a new ReachabilityReport 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 (*ReachabilityReport) GetAccessTypeList ¶

func (o *ReachabilityReport) GetAccessTypeList() []AccessType

GetAccessTypeList returns the AccessTypeList field value if set, zero value otherwise.

func (*ReachabilityReport) GetAccessTypeListOk ¶

func (o *ReachabilityReport) GetAccessTypeListOk() ([]AccessType, bool)

GetAccessTypeListOk returns a tuple with the AccessTypeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReachabilityReport) GetAmfInstanceId ¶

func (o *ReachabilityReport) GetAmfInstanceId() string

GetAmfInstanceId returns the AmfInstanceId field value if set, zero value otherwise.

func (*ReachabilityReport) GetAmfInstanceIdOk ¶

func (o *ReachabilityReport) GetAmfInstanceIdOk() (*string, bool)

GetAmfInstanceIdOk returns a tuple with the AmfInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReachabilityReport) GetIdleStatusIndication ¶

func (o *ReachabilityReport) GetIdleStatusIndication() IdleStatusIndication

GetIdleStatusIndication returns the IdleStatusIndication field value if set, zero value otherwise.

func (*ReachabilityReport) GetIdleStatusIndicationOk ¶

func (o *ReachabilityReport) GetIdleStatusIndicationOk() (*IdleStatusIndication, bool)

GetIdleStatusIndicationOk returns a tuple with the IdleStatusIndication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReachabilityReport) GetMaxAvailabilityTime ¶

func (o *ReachabilityReport) GetMaxAvailabilityTime() time.Time

GetMaxAvailabilityTime returns the MaxAvailabilityTime field value if set, zero value otherwise.

func (*ReachabilityReport) GetMaxAvailabilityTimeOk ¶

func (o *ReachabilityReport) GetMaxAvailabilityTimeOk() (*time.Time, bool)

GetMaxAvailabilityTimeOk returns a tuple with the MaxAvailabilityTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReachabilityReport) GetReachability ¶

func (o *ReachabilityReport) GetReachability() UeReachability

GetReachability returns the Reachability field value if set, zero value otherwise.

func (*ReachabilityReport) GetReachabilityOk ¶

func (o *ReachabilityReport) GetReachabilityOk() (*UeReachability, bool)

GetReachabilityOk returns a tuple with the Reachability field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReachabilityReport) HasAccessTypeList ¶

func (o *ReachabilityReport) HasAccessTypeList() bool

HasAccessTypeList returns a boolean if a field has been set.

func (*ReachabilityReport) HasAmfInstanceId ¶

func (o *ReachabilityReport) HasAmfInstanceId() bool

HasAmfInstanceId returns a boolean if a field has been set.

func (*ReachabilityReport) HasIdleStatusIndication ¶

func (o *ReachabilityReport) HasIdleStatusIndication() bool

HasIdleStatusIndication returns a boolean if a field has been set.

func (*ReachabilityReport) HasMaxAvailabilityTime ¶

func (o *ReachabilityReport) HasMaxAvailabilityTime() bool

HasMaxAvailabilityTime returns a boolean if a field has been set.

func (*ReachabilityReport) HasReachability ¶

func (o *ReachabilityReport) HasReachability() bool

HasReachability returns a boolean if a field has been set.

func (ReachabilityReport) MarshalJSON ¶

func (o ReachabilityReport) MarshalJSON() ([]byte, error)

func (*ReachabilityReport) SetAccessTypeList ¶

func (o *ReachabilityReport) SetAccessTypeList(v []AccessType)

SetAccessTypeList gets a reference to the given []AccessType and assigns it to the AccessTypeList field.

func (*ReachabilityReport) SetAmfInstanceId ¶

func (o *ReachabilityReport) SetAmfInstanceId(v string)

SetAmfInstanceId gets a reference to the given string and assigns it to the AmfInstanceId field.

func (*ReachabilityReport) SetIdleStatusIndication ¶

func (o *ReachabilityReport) SetIdleStatusIndication(v IdleStatusIndication)

SetIdleStatusIndication gets a reference to the given IdleStatusIndication and assigns it to the IdleStatusIndication field.

func (*ReachabilityReport) SetMaxAvailabilityTime ¶

func (o *ReachabilityReport) SetMaxAvailabilityTime(v time.Time)

SetMaxAvailabilityTime gets a reference to the given time.Time and assigns it to the MaxAvailabilityTime field.

func (*ReachabilityReport) SetReachability ¶

func (o *ReachabilityReport) SetReachability(v UeReachability)

SetReachability gets a reference to the given UeReachability and assigns it to the Reachability field.

func (ReachabilityReport) ToMap ¶

func (o ReachabilityReport) ToMap() (map[string]interface{}, error)

type RedTransExpOrderingCriterion ¶

type RedTransExpOrderingCriterion struct {
	String *string
}

RedTransExpOrderingCriterion Possible values are: - TIME_SLOT_START: Indicates the order of time slot start. - RED_TRANS_EXP: Indicates the order of Redundant Transmission Experience.

func (*RedTransExpOrderingCriterion) MarshalJSON ¶

func (src *RedTransExpOrderingCriterion) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RedTransExpOrderingCriterion) UnmarshalJSON ¶

func (dst *RedTransExpOrderingCriterion) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RedirectResponse ¶

type RedirectResponse struct {
	Cause *string `json:"cause,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetScp *string `json:"targetScp,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetSepp *string `json:"targetSepp,omitempty"`
}

RedirectResponse The response shall include a Location header field containing a different URI (pointing to a different URI of an other service instance), or the same URI if a request is redirected to the same target resource via a different SCP.

func NewRedirectResponse ¶

func NewRedirectResponse() *RedirectResponse

NewRedirectResponse instantiates a new RedirectResponse 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 NewRedirectResponseWithDefaults ¶

func NewRedirectResponseWithDefaults() *RedirectResponse

NewRedirectResponseWithDefaults instantiates a new RedirectResponse 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 (*RedirectResponse) GetCause ¶

func (o *RedirectResponse) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*RedirectResponse) GetCauseOk ¶

func (o *RedirectResponse) GetCauseOk() (*string, bool)

GetCauseOk returns a tuple with the Cause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectResponse) GetTargetScp ¶

func (o *RedirectResponse) GetTargetScp() string

GetTargetScp returns the TargetScp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetScpOk ¶

func (o *RedirectResponse) GetTargetScpOk() (*string, bool)

GetTargetScpOk returns a tuple with the TargetScp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectResponse) GetTargetSepp ¶

func (o *RedirectResponse) GetTargetSepp() string

GetTargetSepp returns the TargetSepp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetSeppOk ¶

func (o *RedirectResponse) GetTargetSeppOk() (*string, bool)

GetTargetSeppOk returns a tuple with the TargetSepp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectResponse) HasCause ¶

func (o *RedirectResponse) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetScp ¶

func (o *RedirectResponse) HasTargetScp() bool

HasTargetScp returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetSepp ¶

func (o *RedirectResponse) HasTargetSepp() bool

HasTargetSepp returns a boolean if a field has been set.

func (RedirectResponse) MarshalJSON ¶

func (o RedirectResponse) MarshalJSON() ([]byte, error)

func (*RedirectResponse) SetCause ¶

func (o *RedirectResponse) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*RedirectResponse) SetTargetScp ¶

func (o *RedirectResponse) SetTargetScp(v string)

SetTargetScp gets a reference to the given string and assigns it to the TargetScp field.

func (*RedirectResponse) SetTargetSepp ¶

func (o *RedirectResponse) SetTargetSepp(v string)

SetTargetSepp gets a reference to the given string and assigns it to the TargetSepp field.

func (RedirectResponse) ToMap ¶

func (o RedirectResponse) ToMap() (map[string]interface{}, error)

type RedundantTransmissionExpInfo ¶

type RedundantTransmissionExpInfo struct {
	SpatialValidCon *NetworkAreaInfo `json:"spatialValidCon,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"`
	RedTransExps []RedundantTransmissionExpPerTS `json:"redTransExps"`
}

RedundantTransmissionExpInfo The redundant transmission experience related information. When subscribed event is \"RED_TRANS_EXP\", the \"redTransInfos\" attribute shall be included.

func NewRedundantTransmissionExpInfo ¶

func NewRedundantTransmissionExpInfo(redTransExps []RedundantTransmissionExpPerTS) *RedundantTransmissionExpInfo

NewRedundantTransmissionExpInfo instantiates a new RedundantTransmissionExpInfo 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 NewRedundantTransmissionExpInfoWithDefaults ¶

func NewRedundantTransmissionExpInfoWithDefaults() *RedundantTransmissionExpInfo

NewRedundantTransmissionExpInfoWithDefaults instantiates a new RedundantTransmissionExpInfo 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 (*RedundantTransmissionExpInfo) GetDnn ¶

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*RedundantTransmissionExpInfo) GetDnnOk ¶

func (o *RedundantTransmissionExpInfo) GetDnnOk() (*string, bool)

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 (*RedundantTransmissionExpInfo) GetRedTransExps ¶

GetRedTransExps returns the RedTransExps field value

func (*RedundantTransmissionExpInfo) GetRedTransExpsOk ¶

GetRedTransExpsOk returns a tuple with the RedTransExps field value and a boolean to check if the value has been set.

func (*RedundantTransmissionExpInfo) GetSpatialValidCon ¶

func (o *RedundantTransmissionExpInfo) GetSpatialValidCon() NetworkAreaInfo

GetSpatialValidCon returns the SpatialValidCon field value if set, zero value otherwise.

func (*RedundantTransmissionExpInfo) GetSpatialValidConOk ¶

func (o *RedundantTransmissionExpInfo) GetSpatialValidConOk() (*NetworkAreaInfo, bool)

GetSpatialValidConOk returns a tuple with the SpatialValidCon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedundantTransmissionExpInfo) HasDnn ¶

func (o *RedundantTransmissionExpInfo) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*RedundantTransmissionExpInfo) HasSpatialValidCon ¶

func (o *RedundantTransmissionExpInfo) HasSpatialValidCon() bool

HasSpatialValidCon returns a boolean if a field has been set.

func (RedundantTransmissionExpInfo) MarshalJSON ¶

func (o RedundantTransmissionExpInfo) MarshalJSON() ([]byte, error)

func (*RedundantTransmissionExpInfo) SetDnn ¶

func (o *RedundantTransmissionExpInfo) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*RedundantTransmissionExpInfo) SetRedTransExps ¶

SetRedTransExps sets field value

func (*RedundantTransmissionExpInfo) SetSpatialValidCon ¶

func (o *RedundantTransmissionExpInfo) SetSpatialValidCon(v NetworkAreaInfo)

SetSpatialValidCon gets a reference to the given NetworkAreaInfo and assigns it to the SpatialValidCon field.

func (RedundantTransmissionExpInfo) ToMap ¶

func (o RedundantTransmissionExpInfo) ToMap() (map[string]interface{}, error)

type RedundantTransmissionExpPerTS ¶

type RedundantTransmissionExpPerTS struct {
	// string with format 'date-time' as defined in OpenAPI.
	TsStart time.Time `json:"tsStart"`
	// indicating a time in seconds.
	TsDuration      int32                     `json:"tsDuration"`
	ObsvRedTransExp ObservedRedundantTransExp `json:"obsvRedTransExp"`
	// Redundant Transmission Status. Set to \"true\" if redundant transmission was activated, otherwise set to \"false\". Default value is \"false\" if omitted.
	RedTransStatus *bool `json:"redTransStatus,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	UeRatio *int32 `json:"ueRatio,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Confidence *int32 `json:"confidence,omitempty"`
}

RedundantTransmissionExpPerTS The redundant transmission experience per Time Slot.

func NewRedundantTransmissionExpPerTS ¶

func NewRedundantTransmissionExpPerTS(tsStart time.Time, tsDuration int32, obsvRedTransExp ObservedRedundantTransExp) *RedundantTransmissionExpPerTS

NewRedundantTransmissionExpPerTS instantiates a new RedundantTransmissionExpPerTS 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 NewRedundantTransmissionExpPerTSWithDefaults ¶

func NewRedundantTransmissionExpPerTSWithDefaults() *RedundantTransmissionExpPerTS

NewRedundantTransmissionExpPerTSWithDefaults instantiates a new RedundantTransmissionExpPerTS 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 (*RedundantTransmissionExpPerTS) GetConfidence ¶

func (o *RedundantTransmissionExpPerTS) GetConfidence() int32

GetConfidence returns the Confidence field value if set, zero value otherwise.

func (*RedundantTransmissionExpPerTS) GetConfidenceOk ¶

func (o *RedundantTransmissionExpPerTS) GetConfidenceOk() (*int32, bool)

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 (*RedundantTransmissionExpPerTS) GetObsvRedTransExp ¶

GetObsvRedTransExp returns the ObsvRedTransExp field value

func (*RedundantTransmissionExpPerTS) GetObsvRedTransExpOk ¶

func (o *RedundantTransmissionExpPerTS) GetObsvRedTransExpOk() (*ObservedRedundantTransExp, bool)

GetObsvRedTransExpOk returns a tuple with the ObsvRedTransExp field value and a boolean to check if the value has been set.

func (*RedundantTransmissionExpPerTS) GetRedTransStatus ¶

func (o *RedundantTransmissionExpPerTS) GetRedTransStatus() bool

GetRedTransStatus returns the RedTransStatus field value if set, zero value otherwise.

func (*RedundantTransmissionExpPerTS) GetRedTransStatusOk ¶

func (o *RedundantTransmissionExpPerTS) GetRedTransStatusOk() (*bool, bool)

GetRedTransStatusOk returns a tuple with the RedTransStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedundantTransmissionExpPerTS) GetTsDuration ¶

func (o *RedundantTransmissionExpPerTS) GetTsDuration() int32

GetTsDuration returns the TsDuration field value

func (*RedundantTransmissionExpPerTS) GetTsDurationOk ¶

func (o *RedundantTransmissionExpPerTS) GetTsDurationOk() (*int32, bool)

GetTsDurationOk returns a tuple with the TsDuration field value and a boolean to check if the value has been set.

func (*RedundantTransmissionExpPerTS) GetTsStart ¶

func (o *RedundantTransmissionExpPerTS) GetTsStart() time.Time

GetTsStart returns the TsStart field value

func (*RedundantTransmissionExpPerTS) GetTsStartOk ¶

func (o *RedundantTransmissionExpPerTS) GetTsStartOk() (*time.Time, bool)

GetTsStartOk returns a tuple with the TsStart field value and a boolean to check if the value has been set.

func (*RedundantTransmissionExpPerTS) GetUeRatio ¶

func (o *RedundantTransmissionExpPerTS) GetUeRatio() int32

GetUeRatio returns the UeRatio field value if set, zero value otherwise.

func (*RedundantTransmissionExpPerTS) GetUeRatioOk ¶

func (o *RedundantTransmissionExpPerTS) GetUeRatioOk() (*int32, bool)

GetUeRatioOk returns a tuple with the UeRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedundantTransmissionExpPerTS) HasConfidence ¶

func (o *RedundantTransmissionExpPerTS) HasConfidence() bool

HasConfidence returns a boolean if a field has been set.

func (*RedundantTransmissionExpPerTS) HasRedTransStatus ¶

func (o *RedundantTransmissionExpPerTS) HasRedTransStatus() bool

HasRedTransStatus returns a boolean if a field has been set.

func (*RedundantTransmissionExpPerTS) HasUeRatio ¶

func (o *RedundantTransmissionExpPerTS) HasUeRatio() bool

HasUeRatio returns a boolean if a field has been set.

func (RedundantTransmissionExpPerTS) MarshalJSON ¶

func (o RedundantTransmissionExpPerTS) MarshalJSON() ([]byte, error)

func (*RedundantTransmissionExpPerTS) SetConfidence ¶

func (o *RedundantTransmissionExpPerTS) SetConfidence(v int32)

SetConfidence gets a reference to the given int32 and assigns it to the Confidence field.

func (*RedundantTransmissionExpPerTS) SetObsvRedTransExp ¶

SetObsvRedTransExp sets field value

func (*RedundantTransmissionExpPerTS) SetRedTransStatus ¶

func (o *RedundantTransmissionExpPerTS) SetRedTransStatus(v bool)

SetRedTransStatus gets a reference to the given bool and assigns it to the RedTransStatus field.

func (*RedundantTransmissionExpPerTS) SetTsDuration ¶

func (o *RedundantTransmissionExpPerTS) SetTsDuration(v int32)

SetTsDuration sets field value

func (*RedundantTransmissionExpPerTS) SetTsStart ¶

func (o *RedundantTransmissionExpPerTS) SetTsStart(v time.Time)

SetTsStart sets field value

func (*RedundantTransmissionExpPerTS) SetUeRatio ¶

func (o *RedundantTransmissionExpPerTS) SetUeRatio(v int32)

SetUeRatio gets a reference to the given int32 and assigns it to the UeRatio field.

func (RedundantTransmissionExpPerTS) ToMap ¶

func (o RedundantTransmissionExpPerTS) ToMap() (map[string]interface{}, error)

type RedundantTransmissionExpReq ¶

type RedundantTransmissionExpReq struct {
	RedTOrderCriter *RedTransExpOrderingCriterion `json:"redTOrderCriter,omitempty"`
	Order           *MatchingDirection            `json:"order,omitempty"`
}

RedundantTransmissionExpReq Represents other redundant transmission experience analytics requirements.

func NewRedundantTransmissionExpReq ¶

func NewRedundantTransmissionExpReq() *RedundantTransmissionExpReq

NewRedundantTransmissionExpReq instantiates a new RedundantTransmissionExpReq 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 NewRedundantTransmissionExpReqWithDefaults ¶

func NewRedundantTransmissionExpReqWithDefaults() *RedundantTransmissionExpReq

NewRedundantTransmissionExpReqWithDefaults instantiates a new RedundantTransmissionExpReq 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 (*RedundantTransmissionExpReq) GetOrder ¶

GetOrder returns the Order field value if set, zero value otherwise.

func (*RedundantTransmissionExpReq) GetOrderOk ¶

GetOrderOk returns a tuple with the Order field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedundantTransmissionExpReq) GetRedTOrderCriter ¶

GetRedTOrderCriter returns the RedTOrderCriter field value if set, zero value otherwise.

func (*RedundantTransmissionExpReq) GetRedTOrderCriterOk ¶

func (o *RedundantTransmissionExpReq) GetRedTOrderCriterOk() (*RedTransExpOrderingCriterion, bool)

GetRedTOrderCriterOk returns a tuple with the RedTOrderCriter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedundantTransmissionExpReq) HasOrder ¶

func (o *RedundantTransmissionExpReq) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (*RedundantTransmissionExpReq) HasRedTOrderCriter ¶

func (o *RedundantTransmissionExpReq) HasRedTOrderCriter() bool

HasRedTOrderCriter returns a boolean if a field has been set.

func (RedundantTransmissionExpReq) MarshalJSON ¶

func (o RedundantTransmissionExpReq) MarshalJSON() ([]byte, error)

func (*RedundantTransmissionExpReq) SetOrder ¶

SetOrder gets a reference to the given MatchingDirection and assigns it to the Order field.

func (*RedundantTransmissionExpReq) SetRedTOrderCriter ¶

SetRedTOrderCriter gets a reference to the given RedTransExpOrderingCriterion and assigns it to the RedTOrderCriter field.

func (RedundantTransmissionExpReq) ToMap ¶

func (o RedundantTransmissionExpReq) ToMap() (map[string]interface{}, error)

type RelativeCartesianLocation ¶

type RelativeCartesianLocation struct {
	// string with format 'float' as defined in OpenAPI.
	X float32 `json:"x"`
	// string with format 'float' as defined in OpenAPI.
	Y float32 `json:"y"`
	// string with format 'float' as defined in OpenAPI.
	Z *float32 `json:"z,omitempty"`
}

RelativeCartesianLocation Relative Cartesian Location

func NewRelativeCartesianLocation ¶

func NewRelativeCartesianLocation(x float32, y float32) *RelativeCartesianLocation

NewRelativeCartesianLocation instantiates a new RelativeCartesianLocation 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 NewRelativeCartesianLocationWithDefaults ¶

func NewRelativeCartesianLocationWithDefaults() *RelativeCartesianLocation

NewRelativeCartesianLocationWithDefaults instantiates a new RelativeCartesianLocation 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 (*RelativeCartesianLocation) GetX ¶

GetX returns the X field value

func (*RelativeCartesianLocation) GetXOk ¶

func (o *RelativeCartesianLocation) GetXOk() (*float32, bool)

GetXOk returns a tuple with the X field value and a boolean to check if the value has been set.

func (*RelativeCartesianLocation) GetY ¶

GetY returns the Y field value

func (*RelativeCartesianLocation) GetYOk ¶

func (o *RelativeCartesianLocation) GetYOk() (*float32, bool)

GetYOk returns a tuple with the Y field value and a boolean to check if the value has been set.

func (*RelativeCartesianLocation) GetZ ¶

GetZ returns the Z field value if set, zero value otherwise.

func (*RelativeCartesianLocation) GetZOk ¶

func (o *RelativeCartesianLocation) GetZOk() (*float32, bool)

GetZOk returns a tuple with the Z field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RelativeCartesianLocation) HasZ ¶

func (o *RelativeCartesianLocation) HasZ() bool

HasZ returns a boolean if a field has been set.

func (RelativeCartesianLocation) MarshalJSON ¶

func (o RelativeCartesianLocation) MarshalJSON() ([]byte, error)

func (*RelativeCartesianLocation) SetX ¶

SetX sets field value

func (*RelativeCartesianLocation) SetY ¶

SetY sets field value

func (*RelativeCartesianLocation) SetZ ¶

SetZ gets a reference to the given float32 and assigns it to the Z field.

func (RelativeCartesianLocation) ToMap ¶

func (o RelativeCartesianLocation) ToMap() (map[string]interface{}, error)

type Report ¶

type Report struct {
	ChangeOfSupiPeiAssociationReport *ChangeOfSupiPeiAssociationReport
	CmInfoReport                     *CmInfoReport
	CnTypeChangeReport               *CnTypeChangeReport
	LocationReport                   *LocationReport
	LossConnectivityReport           *LossConnectivityReport
	PdnConnectivityStatReport        *PdnConnectivityStatReport
	RoamingStatusReport              *RoamingStatusReport
}

Report - struct for Report

func ChangeOfSupiPeiAssociationReportAsReport ¶

func ChangeOfSupiPeiAssociationReportAsReport(v *ChangeOfSupiPeiAssociationReport) Report

ChangeOfSupiPeiAssociationReportAsReport is a convenience function that returns ChangeOfSupiPeiAssociationReport wrapped in Report

func CmInfoReportAsReport ¶

func CmInfoReportAsReport(v *CmInfoReport) Report

CmInfoReportAsReport is a convenience function that returns CmInfoReport wrapped in Report

func CnTypeChangeReportAsReport ¶

func CnTypeChangeReportAsReport(v *CnTypeChangeReport) Report

CnTypeChangeReportAsReport is a convenience function that returns CnTypeChangeReport wrapped in Report

func LocationReportAsReport ¶

func LocationReportAsReport(v *LocationReport) Report

LocationReportAsReport is a convenience function that returns LocationReport wrapped in Report

func LossConnectivityReportAsReport ¶

func LossConnectivityReportAsReport(v *LossConnectivityReport) Report

LossConnectivityReportAsReport is a convenience function that returns LossConnectivityReport wrapped in Report

func PdnConnectivityStatReportAsReport ¶

func PdnConnectivityStatReportAsReport(v *PdnConnectivityStatReport) Report

PdnConnectivityStatReportAsReport is a convenience function that returns PdnConnectivityStatReport wrapped in Report

func RoamingStatusReportAsReport ¶

func RoamingStatusReportAsReport(v *RoamingStatusReport) Report

RoamingStatusReportAsReport is a convenience function that returns RoamingStatusReport wrapped in Report

func (*Report) GetActualInstance ¶

func (obj *Report) GetActualInstance() interface{}

Get the actual instance

func (Report) MarshalJSON ¶

func (src Report) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Report) UnmarshalJSON ¶

func (dst *Report) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ReportingInformation ¶

type ReportingInformation struct {
	ImmRep      *bool                `json:"immRep,omitempty"`
	NotifMethod *NotificationMethod1 `json:"notifMethod,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	MaxReportNbr *int32 `json:"maxReportNbr,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	MonDur *time.Time `json:"monDur,omitempty"`
	// indicating a time in seconds.
	RepPeriod *int32 `json:"repPeriod,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	SampRatio *int32 `json:"sampRatio,omitempty"`
	// Criteria for partitioning the UEs before applying the sampling ratio.
	PartitionCriteria []PartitioningCriteria `json:"partitionCriteria,omitempty"`
	// indicating a time in seconds.
	GrpRepTime *int32            `json:"grpRepTime,omitempty"`
	NotifFlag  *NotificationFlag `json:"notifFlag,omitempty"`
}

ReportingInformation Represents the type of reporting that the subscription requires.

func NewReportingInformation ¶

func NewReportingInformation() *ReportingInformation

NewReportingInformation instantiates a new ReportingInformation 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 NewReportingInformationWithDefaults ¶

func NewReportingInformationWithDefaults() *ReportingInformation

NewReportingInformationWithDefaults instantiates a new ReportingInformation 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 (*ReportingInformation) GetGrpRepTime ¶

func (o *ReportingInformation) GetGrpRepTime() int32

GetGrpRepTime returns the GrpRepTime field value if set, zero value otherwise.

func (*ReportingInformation) GetGrpRepTimeOk ¶

func (o *ReportingInformation) GetGrpRepTimeOk() (*int32, bool)

GetGrpRepTimeOk returns a tuple with the GrpRepTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingInformation) GetImmRep ¶

func (o *ReportingInformation) GetImmRep() bool

GetImmRep returns the ImmRep field value if set, zero value otherwise.

func (*ReportingInformation) GetImmRepOk ¶

func (o *ReportingInformation) GetImmRepOk() (*bool, bool)

GetImmRepOk returns a tuple with the ImmRep field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingInformation) GetMaxReportNbr ¶

func (o *ReportingInformation) GetMaxReportNbr() int32

GetMaxReportNbr returns the MaxReportNbr field value if set, zero value otherwise.

func (*ReportingInformation) GetMaxReportNbrOk ¶

func (o *ReportingInformation) GetMaxReportNbrOk() (*int32, bool)

GetMaxReportNbrOk returns a tuple with the MaxReportNbr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingInformation) GetMonDur ¶

func (o *ReportingInformation) GetMonDur() time.Time

GetMonDur returns the MonDur field value if set, zero value otherwise.

func (*ReportingInformation) GetMonDurOk ¶

func (o *ReportingInformation) GetMonDurOk() (*time.Time, bool)

GetMonDurOk returns a tuple with the MonDur field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingInformation) GetNotifFlag ¶

func (o *ReportingInformation) GetNotifFlag() NotificationFlag

GetNotifFlag returns the NotifFlag field value if set, zero value otherwise.

func (*ReportingInformation) GetNotifFlagOk ¶

func (o *ReportingInformation) GetNotifFlagOk() (*NotificationFlag, bool)

GetNotifFlagOk returns a tuple with the NotifFlag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingInformation) GetNotifMethod ¶

func (o *ReportingInformation) GetNotifMethod() NotificationMethod1

GetNotifMethod returns the NotifMethod field value if set, zero value otherwise.

func (*ReportingInformation) GetNotifMethodOk ¶

func (o *ReportingInformation) GetNotifMethodOk() (*NotificationMethod1, bool)

GetNotifMethodOk returns a tuple with the NotifMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingInformation) GetPartitionCriteria ¶

func (o *ReportingInformation) GetPartitionCriteria() []PartitioningCriteria

GetPartitionCriteria returns the PartitionCriteria field value if set, zero value otherwise.

func (*ReportingInformation) GetPartitionCriteriaOk ¶

func (o *ReportingInformation) GetPartitionCriteriaOk() ([]PartitioningCriteria, bool)

GetPartitionCriteriaOk returns a tuple with the PartitionCriteria field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingInformation) GetRepPeriod ¶

func (o *ReportingInformation) GetRepPeriod() int32

GetRepPeriod returns the RepPeriod field value if set, zero value otherwise.

func (*ReportingInformation) GetRepPeriodOk ¶

func (o *ReportingInformation) GetRepPeriodOk() (*int32, bool)

GetRepPeriodOk returns a tuple with the RepPeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingInformation) GetSampRatio ¶

func (o *ReportingInformation) GetSampRatio() int32

GetSampRatio returns the SampRatio field value if set, zero value otherwise.

func (*ReportingInformation) GetSampRatioOk ¶

func (o *ReportingInformation) GetSampRatioOk() (*int32, bool)

GetSampRatioOk returns a tuple with the SampRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingInformation) HasGrpRepTime ¶

func (o *ReportingInformation) HasGrpRepTime() bool

HasGrpRepTime returns a boolean if a field has been set.

func (*ReportingInformation) HasImmRep ¶

func (o *ReportingInformation) HasImmRep() bool

HasImmRep returns a boolean if a field has been set.

func (*ReportingInformation) HasMaxReportNbr ¶

func (o *ReportingInformation) HasMaxReportNbr() bool

HasMaxReportNbr returns a boolean if a field has been set.

func (*ReportingInformation) HasMonDur ¶

func (o *ReportingInformation) HasMonDur() bool

HasMonDur returns a boolean if a field has been set.

func (*ReportingInformation) HasNotifFlag ¶

func (o *ReportingInformation) HasNotifFlag() bool

HasNotifFlag returns a boolean if a field has been set.

func (*ReportingInformation) HasNotifMethod ¶

func (o *ReportingInformation) HasNotifMethod() bool

HasNotifMethod returns a boolean if a field has been set.

func (*ReportingInformation) HasPartitionCriteria ¶

func (o *ReportingInformation) HasPartitionCriteria() bool

HasPartitionCriteria returns a boolean if a field has been set.

func (*ReportingInformation) HasRepPeriod ¶

func (o *ReportingInformation) HasRepPeriod() bool

HasRepPeriod returns a boolean if a field has been set.

func (*ReportingInformation) HasSampRatio ¶

func (o *ReportingInformation) HasSampRatio() bool

HasSampRatio returns a boolean if a field has been set.

func (ReportingInformation) MarshalJSON ¶

func (o ReportingInformation) MarshalJSON() ([]byte, error)

func (*ReportingInformation) SetGrpRepTime ¶

func (o *ReportingInformation) SetGrpRepTime(v int32)

SetGrpRepTime gets a reference to the given int32 and assigns it to the GrpRepTime field.

func (*ReportingInformation) SetImmRep ¶

func (o *ReportingInformation) SetImmRep(v bool)

SetImmRep gets a reference to the given bool and assigns it to the ImmRep field.

func (*ReportingInformation) SetMaxReportNbr ¶

func (o *ReportingInformation) SetMaxReportNbr(v int32)

SetMaxReportNbr gets a reference to the given int32 and assigns it to the MaxReportNbr field.

func (*ReportingInformation) SetMonDur ¶

func (o *ReportingInformation) SetMonDur(v time.Time)

SetMonDur gets a reference to the given time.Time and assigns it to the MonDur field.

func (*ReportingInformation) SetNotifFlag ¶

func (o *ReportingInformation) SetNotifFlag(v NotificationFlag)

SetNotifFlag gets a reference to the given NotificationFlag and assigns it to the NotifFlag field.

func (*ReportingInformation) SetNotifMethod ¶

func (o *ReportingInformation) SetNotifMethod(v NotificationMethod1)

SetNotifMethod gets a reference to the given NotificationMethod1 and assigns it to the NotifMethod field.

func (*ReportingInformation) SetPartitionCriteria ¶

func (o *ReportingInformation) SetPartitionCriteria(v []PartitioningCriteria)

SetPartitionCriteria gets a reference to the given []PartitioningCriteria and assigns it to the PartitionCriteria field.

func (*ReportingInformation) SetRepPeriod ¶

func (o *ReportingInformation) SetRepPeriod(v int32)

SetRepPeriod gets a reference to the given int32 and assigns it to the RepPeriod field.

func (*ReportingInformation) SetSampRatio ¶

func (o *ReportingInformation) SetSampRatio(v int32)

SetSampRatio gets a reference to the given int32 and assigns it to the SampRatio field.

func (ReportingInformation) ToMap ¶

func (o ReportingInformation) ToMap() (map[string]interface{}, error)

type ReportingOptions ¶

type ReportingOptions struct {
	Interface *interface{}
}

ReportingOptions - Represents reporting options for processed notifications.

func InterfaceAsReportingOptions ¶

func InterfaceAsReportingOptions(v *interface{}) ReportingOptions

interface{}AsReportingOptions is a convenience function that returns interface{} wrapped in ReportingOptions

func (*ReportingOptions) GetActualInstance ¶

func (obj *ReportingOptions) GetActualInstance() interface{}

Get the actual instance

func (ReportingOptions) MarshalJSON ¶

func (src ReportingOptions) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ReportingOptions) UnmarshalJSON ¶

func (dst *ReportingOptions) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ReportingOptions1 ¶

type ReportingOptions1 struct {
	ReportMode      *EventReportMode `json:"reportMode,omitempty"`
	MaxNumOfReports *int32           `json:"maxNumOfReports,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	Expiry *time.Time `json:"expiry,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	SamplingRatio *int32 `json:"samplingRatio,omitempty"`
	// indicating a time in seconds.
	GuardTime *int32 `json:"guardTime,omitempty"`
	// indicating a time in seconds.
	ReportPeriod *int32            `json:"reportPeriod,omitempty"`
	NotifFlag    *NotificationFlag `json:"notifFlag,omitempty"`
}

ReportingOptions1 struct for ReportingOptions1

func NewReportingOptions1 ¶

func NewReportingOptions1() *ReportingOptions1

NewReportingOptions1 instantiates a new ReportingOptions1 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 NewReportingOptions1WithDefaults ¶

func NewReportingOptions1WithDefaults() *ReportingOptions1

NewReportingOptions1WithDefaults instantiates a new ReportingOptions1 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 (*ReportingOptions1) GetExpiry ¶

func (o *ReportingOptions1) GetExpiry() time.Time

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*ReportingOptions1) GetExpiryOk ¶

func (o *ReportingOptions1) GetExpiryOk() (*time.Time, bool)

GetExpiryOk returns a tuple with the Expiry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingOptions1) GetGuardTime ¶

func (o *ReportingOptions1) GetGuardTime() int32

GetGuardTime returns the GuardTime field value if set, zero value otherwise.

func (*ReportingOptions1) GetGuardTimeOk ¶

func (o *ReportingOptions1) GetGuardTimeOk() (*int32, bool)

GetGuardTimeOk returns a tuple with the GuardTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingOptions1) GetMaxNumOfReports ¶

func (o *ReportingOptions1) GetMaxNumOfReports() int32

GetMaxNumOfReports returns the MaxNumOfReports field value if set, zero value otherwise.

func (*ReportingOptions1) GetMaxNumOfReportsOk ¶

func (o *ReportingOptions1) GetMaxNumOfReportsOk() (*int32, bool)

GetMaxNumOfReportsOk returns a tuple with the MaxNumOfReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingOptions1) GetNotifFlag ¶

func (o *ReportingOptions1) GetNotifFlag() NotificationFlag

GetNotifFlag returns the NotifFlag field value if set, zero value otherwise.

func (*ReportingOptions1) GetNotifFlagOk ¶

func (o *ReportingOptions1) GetNotifFlagOk() (*NotificationFlag, bool)

GetNotifFlagOk returns a tuple with the NotifFlag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingOptions1) GetReportMode ¶

func (o *ReportingOptions1) GetReportMode() EventReportMode

GetReportMode returns the ReportMode field value if set, zero value otherwise.

func (*ReportingOptions1) GetReportModeOk ¶

func (o *ReportingOptions1) GetReportModeOk() (*EventReportMode, bool)

GetReportModeOk returns a tuple with the ReportMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingOptions1) GetReportPeriod ¶

func (o *ReportingOptions1) GetReportPeriod() int32

GetReportPeriod returns the ReportPeriod field value if set, zero value otherwise.

func (*ReportingOptions1) GetReportPeriodOk ¶

func (o *ReportingOptions1) GetReportPeriodOk() (*int32, bool)

GetReportPeriodOk returns a tuple with the ReportPeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingOptions1) GetSamplingRatio ¶

func (o *ReportingOptions1) GetSamplingRatio() int32

GetSamplingRatio returns the SamplingRatio field value if set, zero value otherwise.

func (*ReportingOptions1) GetSamplingRatioOk ¶

func (o *ReportingOptions1) GetSamplingRatioOk() (*int32, bool)

GetSamplingRatioOk returns a tuple with the SamplingRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingOptions1) HasExpiry ¶

func (o *ReportingOptions1) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*ReportingOptions1) HasGuardTime ¶

func (o *ReportingOptions1) HasGuardTime() bool

HasGuardTime returns a boolean if a field has been set.

func (*ReportingOptions1) HasMaxNumOfReports ¶

func (o *ReportingOptions1) HasMaxNumOfReports() bool

HasMaxNumOfReports returns a boolean if a field has been set.

func (*ReportingOptions1) HasNotifFlag ¶

func (o *ReportingOptions1) HasNotifFlag() bool

HasNotifFlag returns a boolean if a field has been set.

func (*ReportingOptions1) HasReportMode ¶

func (o *ReportingOptions1) HasReportMode() bool

HasReportMode returns a boolean if a field has been set.

func (*ReportingOptions1) HasReportPeriod ¶

func (o *ReportingOptions1) HasReportPeriod() bool

HasReportPeriod returns a boolean if a field has been set.

func (*ReportingOptions1) HasSamplingRatio ¶

func (o *ReportingOptions1) HasSamplingRatio() bool

HasSamplingRatio returns a boolean if a field has been set.

func (ReportingOptions1) MarshalJSON ¶

func (o ReportingOptions1) MarshalJSON() ([]byte, error)

func (*ReportingOptions1) SetExpiry ¶

func (o *ReportingOptions1) SetExpiry(v time.Time)

SetExpiry gets a reference to the given time.Time and assigns it to the Expiry field.

func (*ReportingOptions1) SetGuardTime ¶

func (o *ReportingOptions1) SetGuardTime(v int32)

SetGuardTime gets a reference to the given int32 and assigns it to the GuardTime field.

func (*ReportingOptions1) SetMaxNumOfReports ¶

func (o *ReportingOptions1) SetMaxNumOfReports(v int32)

SetMaxNumOfReports gets a reference to the given int32 and assigns it to the MaxNumOfReports field.

func (*ReportingOptions1) SetNotifFlag ¶

func (o *ReportingOptions1) SetNotifFlag(v NotificationFlag)

SetNotifFlag gets a reference to the given NotificationFlag and assigns it to the NotifFlag field.

func (*ReportingOptions1) SetReportMode ¶

func (o *ReportingOptions1) SetReportMode(v EventReportMode)

SetReportMode gets a reference to the given EventReportMode and assigns it to the ReportMode field.

func (*ReportingOptions1) SetReportPeriod ¶

func (o *ReportingOptions1) SetReportPeriod(v int32)

SetReportPeriod gets a reference to the given int32 and assigns it to the ReportPeriod field.

func (*ReportingOptions1) SetSamplingRatio ¶

func (o *ReportingOptions1) SetSamplingRatio(v int32)

SetSamplingRatio gets a reference to the given int32 and assigns it to the SamplingRatio field.

func (ReportingOptions1) ToMap ¶

func (o ReportingOptions1) ToMap() (map[string]interface{}, error)

type ResourceUsage ¶

type ResourceUsage struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	CpuUsage *int32 `json:"cpuUsage,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	MemoryUsage *int32 `json:"memoryUsage,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	StorageUsage *int32 `json:"storageUsage,omitempty"`
}

ResourceUsage The current usage of the virtual resources assigned to the NF instances belonging to a particular network slice instance.

func NewResourceUsage ¶

func NewResourceUsage() *ResourceUsage

NewResourceUsage instantiates a new ResourceUsage 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 NewResourceUsageWithDefaults ¶

func NewResourceUsageWithDefaults() *ResourceUsage

NewResourceUsageWithDefaults instantiates a new ResourceUsage 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 (*ResourceUsage) GetCpuUsage ¶

func (o *ResourceUsage) GetCpuUsage() int32

GetCpuUsage returns the CpuUsage field value if set, zero value otherwise.

func (*ResourceUsage) GetCpuUsageOk ¶

func (o *ResourceUsage) GetCpuUsageOk() (*int32, bool)

GetCpuUsageOk returns a tuple with the CpuUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceUsage) GetMemoryUsage ¶

func (o *ResourceUsage) GetMemoryUsage() int32

GetMemoryUsage returns the MemoryUsage field value if set, zero value otherwise.

func (*ResourceUsage) GetMemoryUsageOk ¶

func (o *ResourceUsage) GetMemoryUsageOk() (*int32, bool)

GetMemoryUsageOk returns a tuple with the MemoryUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceUsage) GetStorageUsage ¶

func (o *ResourceUsage) GetStorageUsage() int32

GetStorageUsage returns the StorageUsage field value if set, zero value otherwise.

func (*ResourceUsage) GetStorageUsageOk ¶

func (o *ResourceUsage) GetStorageUsageOk() (*int32, bool)

GetStorageUsageOk returns a tuple with the StorageUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceUsage) HasCpuUsage ¶

func (o *ResourceUsage) HasCpuUsage() bool

HasCpuUsage returns a boolean if a field has been set.

func (*ResourceUsage) HasMemoryUsage ¶

func (o *ResourceUsage) HasMemoryUsage() bool

HasMemoryUsage returns a boolean if a field has been set.

func (*ResourceUsage) HasStorageUsage ¶

func (o *ResourceUsage) HasStorageUsage() bool

HasStorageUsage returns a boolean if a field has been set.

func (ResourceUsage) MarshalJSON ¶

func (o ResourceUsage) MarshalJSON() ([]byte, error)

func (*ResourceUsage) SetCpuUsage ¶

func (o *ResourceUsage) SetCpuUsage(v int32)

SetCpuUsage gets a reference to the given int32 and assigns it to the CpuUsage field.

func (*ResourceUsage) SetMemoryUsage ¶

func (o *ResourceUsage) SetMemoryUsage(v int32)

SetMemoryUsage gets a reference to the given int32 and assigns it to the MemoryUsage field.

func (*ResourceUsage) SetStorageUsage ¶

func (o *ResourceUsage) SetStorageUsage(v int32)

SetStorageUsage gets a reference to the given int32 and assigns it to the StorageUsage field.

func (ResourceUsage) ToMap ¶

func (o ResourceUsage) ToMap() (map[string]interface{}, error)

type RetainabilityThreshold ¶

type RetainabilityThreshold struct {
	Interface *interface{}
}

RetainabilityThreshold - Represents a QoS flow retainability threshold.

func InterfaceAsRetainabilityThreshold ¶

func InterfaceAsRetainabilityThreshold(v *interface{}) RetainabilityThreshold

interface{}AsRetainabilityThreshold is a convenience function that returns interface{} wrapped in RetainabilityThreshold

func (*RetainabilityThreshold) GetActualInstance ¶

func (obj *RetainabilityThreshold) GetActualInstance() interface{}

Get the actual instance

func (RetainabilityThreshold) MarshalJSON ¶

func (src RetainabilityThreshold) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RetainabilityThreshold) UnmarshalJSON ¶

func (dst *RetainabilityThreshold) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type RmInfo ¶

type RmInfo struct {
	RmState    RmState    `json:"rmState"`
	AccessType AccessType `json:"accessType"`
}

RmInfo Represents the registration state of a UE for an access type

func NewRmInfo ¶

func NewRmInfo(rmState RmState, accessType AccessType) *RmInfo

NewRmInfo instantiates a new RmInfo 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 NewRmInfoWithDefaults ¶

func NewRmInfoWithDefaults() *RmInfo

NewRmInfoWithDefaults instantiates a new RmInfo 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 (*RmInfo) GetAccessType ¶

func (o *RmInfo) GetAccessType() AccessType

GetAccessType returns the AccessType field value

func (*RmInfo) GetAccessTypeOk ¶

func (o *RmInfo) GetAccessTypeOk() (*AccessType, bool)

GetAccessTypeOk returns a tuple with the AccessType field value and a boolean to check if the value has been set.

func (*RmInfo) GetRmState ¶

func (o *RmInfo) GetRmState() RmState

GetRmState returns the RmState field value

func (*RmInfo) GetRmStateOk ¶

func (o *RmInfo) GetRmStateOk() (*RmState, bool)

GetRmStateOk returns a tuple with the RmState field value and a boolean to check if the value has been set.

func (RmInfo) MarshalJSON ¶

func (o RmInfo) MarshalJSON() ([]byte, error)

func (*RmInfo) SetAccessType ¶

func (o *RmInfo) SetAccessType(v AccessType)

SetAccessType sets field value

func (*RmInfo) SetRmState ¶

func (o *RmInfo) SetRmState(v RmState)

SetRmState sets field value

func (RmInfo) ToMap ¶

func (o RmInfo) ToMap() (map[string]interface{}, error)

type RmState ¶

type RmState struct {
	String *string
}

RmState Describes the registration management state of a UE

func (*RmState) MarshalJSON ¶

func (src *RmState) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RmState) UnmarshalJSON ¶

func (dst *RmState) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RoamingStatusReport ¶

type RoamingStatusReport struct {
	Roaming        bool        `json:"roaming"`
	NewServingPlmn PlmnId      `json:"newServingPlmn"`
	AccessType     *AccessType `json:"accessType,omitempty"`
}

RoamingStatusReport struct for RoamingStatusReport

func NewRoamingStatusReport ¶

func NewRoamingStatusReport(roaming bool, newServingPlmn PlmnId) *RoamingStatusReport

NewRoamingStatusReport instantiates a new RoamingStatusReport 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 NewRoamingStatusReportWithDefaults ¶

func NewRoamingStatusReportWithDefaults() *RoamingStatusReport

NewRoamingStatusReportWithDefaults instantiates a new RoamingStatusReport 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 (*RoamingStatusReport) GetAccessType ¶

func (o *RoamingStatusReport) GetAccessType() AccessType

GetAccessType returns the AccessType field value if set, zero value otherwise.

func (*RoamingStatusReport) GetAccessTypeOk ¶

func (o *RoamingStatusReport) GetAccessTypeOk() (*AccessType, bool)

GetAccessTypeOk returns a tuple with the AccessType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoamingStatusReport) GetNewServingPlmn ¶

func (o *RoamingStatusReport) GetNewServingPlmn() PlmnId

GetNewServingPlmn returns the NewServingPlmn field value

func (*RoamingStatusReport) GetNewServingPlmnOk ¶

func (o *RoamingStatusReport) GetNewServingPlmnOk() (*PlmnId, bool)

GetNewServingPlmnOk returns a tuple with the NewServingPlmn field value and a boolean to check if the value has been set.

func (*RoamingStatusReport) GetRoaming ¶

func (o *RoamingStatusReport) GetRoaming() bool

GetRoaming returns the Roaming field value

func (*RoamingStatusReport) GetRoamingOk ¶

func (o *RoamingStatusReport) GetRoamingOk() (*bool, bool)

GetRoamingOk returns a tuple with the Roaming field value and a boolean to check if the value has been set.

func (*RoamingStatusReport) HasAccessType ¶

func (o *RoamingStatusReport) HasAccessType() bool

HasAccessType returns a boolean if a field has been set.

func (RoamingStatusReport) MarshalJSON ¶

func (o RoamingStatusReport) MarshalJSON() ([]byte, error)

func (*RoamingStatusReport) SetAccessType ¶

func (o *RoamingStatusReport) SetAccessType(v AccessType)

SetAccessType gets a reference to the given AccessType and assigns it to the AccessType field.

func (*RoamingStatusReport) SetNewServingPlmn ¶

func (o *RoamingStatusReport) SetNewServingPlmn(v PlmnId)

SetNewServingPlmn sets field value

func (*RoamingStatusReport) SetRoaming ¶

func (o *RoamingStatusReport) SetRoaming(v bool)

SetRoaming sets field value

func (RoamingStatusReport) ToMap ¶

func (o RoamingStatusReport) ToMap() (map[string]interface{}, error)

type RouteInformation ¶

type RouteInformation struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string   `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber int32 `json:"portNumber"`
}

RouteInformation At least one of the \"ipv4Addr\" attribute and the \"ipv6Addr\" attribute shall be included in the \"RouteInformation\" data type.

func NewRouteInformation ¶

func NewRouteInformation(portNumber int32) *RouteInformation

NewRouteInformation instantiates a new RouteInformation 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 NewRouteInformationWithDefaults ¶

func NewRouteInformationWithDefaults() *RouteInformation

NewRouteInformationWithDefaults instantiates a new RouteInformation 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 (*RouteInformation) GetIpv4Addr ¶

func (o *RouteInformation) GetIpv4Addr() string

GetIpv4Addr returns the Ipv4Addr field value if set, zero value otherwise.

func (*RouteInformation) GetIpv4AddrOk ¶

func (o *RouteInformation) GetIpv4AddrOk() (*string, bool)

GetIpv4AddrOk returns a tuple with the Ipv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteInformation) GetIpv6Addr ¶

func (o *RouteInformation) GetIpv6Addr() Ipv6Addr

GetIpv6Addr returns the Ipv6Addr field value if set, zero value otherwise.

func (*RouteInformation) GetIpv6AddrOk ¶

func (o *RouteInformation) GetIpv6AddrOk() (*Ipv6Addr, bool)

GetIpv6AddrOk returns a tuple with the Ipv6Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteInformation) GetPortNumber ¶

func (o *RouteInformation) GetPortNumber() int32

GetPortNumber returns the PortNumber field value

func (*RouteInformation) GetPortNumberOk ¶

func (o *RouteInformation) GetPortNumberOk() (*int32, bool)

GetPortNumberOk returns a tuple with the PortNumber field value and a boolean to check if the value has been set.

func (*RouteInformation) HasIpv4Addr ¶

func (o *RouteInformation) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*RouteInformation) HasIpv6Addr ¶

func (o *RouteInformation) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (RouteInformation) MarshalJSON ¶

func (o RouteInformation) MarshalJSON() ([]byte, error)

func (*RouteInformation) SetIpv4Addr ¶

func (o *RouteInformation) SetIpv4Addr(v string)

SetIpv4Addr gets a reference to the given string and assigns it to the Ipv4Addr field.

func (*RouteInformation) SetIpv6Addr ¶

func (o *RouteInformation) SetIpv6Addr(v Ipv6Addr)

SetIpv6Addr gets a reference to the given Ipv6Addr and assigns it to the Ipv6Addr field.

func (*RouteInformation) SetPortNumber ¶

func (o *RouteInformation) SetPortNumber(v int32)

SetPortNumber sets field value

func (RouteInformation) ToMap ¶

func (o RouteInformation) ToMap() (map[string]interface{}, error)

type RouteToLocation ¶

type RouteToLocation struct {
	Interface *interface{}
}

RouteToLocation At least one of the \"routeInfo\" attribute and the \"routeProfId\" attribute shall be included in the \"RouteToLocation\" data type.

func (*RouteToLocation) MarshalJSON ¶

func (src *RouteToLocation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RouteToLocation) UnmarshalJSON ¶

func (dst *RouteToLocation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RoutingAreaId ¶

type RoutingAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code
	Lac string `json:"lac"`
	// Routing Area Code
	Rac string `json:"rac"`
}

RoutingAreaId Contains a Routing Area Identification as defined in 3GPP TS 23.003, clause 4.2.

func NewRoutingAreaId ¶

func NewRoutingAreaId(plmnId PlmnId, lac string, rac string) *RoutingAreaId

NewRoutingAreaId instantiates a new RoutingAreaId 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 NewRoutingAreaIdWithDefaults ¶

func NewRoutingAreaIdWithDefaults() *RoutingAreaId

NewRoutingAreaIdWithDefaults instantiates a new RoutingAreaId 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 (*RoutingAreaId) GetLac ¶

func (o *RoutingAreaId) GetLac() string

GetLac returns the Lac field value

func (*RoutingAreaId) GetLacOk ¶

func (o *RoutingAreaId) GetLacOk() (*string, bool)

GetLacOk returns a tuple with the Lac field value and a boolean to check if the value has been set.

func (*RoutingAreaId) GetPlmnId ¶

func (o *RoutingAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*RoutingAreaId) GetPlmnIdOk ¶

func (o *RoutingAreaId) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*RoutingAreaId) GetRac ¶

func (o *RoutingAreaId) GetRac() string

GetRac returns the Rac field value

func (*RoutingAreaId) GetRacOk ¶

func (o *RoutingAreaId) GetRacOk() (*string, bool)

GetRacOk returns a tuple with the Rac field value and a boolean to check if the value has been set.

func (RoutingAreaId) MarshalJSON ¶

func (o RoutingAreaId) MarshalJSON() ([]byte, error)

func (*RoutingAreaId) SetLac ¶

func (o *RoutingAreaId) SetLac(v string)

SetLac sets field value

func (*RoutingAreaId) SetPlmnId ¶

func (o *RoutingAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*RoutingAreaId) SetRac ¶

func (o *RoutingAreaId) SetRac(v string)

SetRac sets field value

func (RoutingAreaId) ToMap ¶

func (o RoutingAreaId) ToMap() (map[string]interface{}, error)

type SACEvent ¶

type SACEvent struct {
	EventType    SACEventType     `json:"eventType"`
	EventTrigger *SACEventTrigger `json:"eventTrigger,omitempty"`
	EventFilter  []Snssai         `json:"eventFilter"`
	// indicating a time in seconds.
	NotificationPeriod *int32   `json:"notificationPeriod,omitempty"`
	NotifThreshold     *SACInfo `json:"notifThreshold,omitempty"`
	ImmediateFlag      *bool    `json:"immediateFlag,omitempty"`
}

SACEvent Describes an event to be subscribed

func NewSACEvent ¶

func NewSACEvent(eventType SACEventType, eventFilter []Snssai) *SACEvent

NewSACEvent instantiates a new SACEvent 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 NewSACEventWithDefaults ¶

func NewSACEventWithDefaults() *SACEvent

NewSACEventWithDefaults instantiates a new SACEvent 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 (*SACEvent) GetEventFilter ¶

func (o *SACEvent) GetEventFilter() []Snssai

GetEventFilter returns the EventFilter field value

func (*SACEvent) GetEventFilterOk ¶

func (o *SACEvent) GetEventFilterOk() ([]Snssai, bool)

GetEventFilterOk returns a tuple with the EventFilter field value and a boolean to check if the value has been set.

func (*SACEvent) GetEventTrigger ¶

func (o *SACEvent) GetEventTrigger() SACEventTrigger

GetEventTrigger returns the EventTrigger field value if set, zero value otherwise.

func (*SACEvent) GetEventTriggerOk ¶

func (o *SACEvent) GetEventTriggerOk() (*SACEventTrigger, bool)

GetEventTriggerOk returns a tuple with the EventTrigger field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEvent) GetEventType ¶

func (o *SACEvent) GetEventType() SACEventType

GetEventType returns the EventType field value

func (*SACEvent) GetEventTypeOk ¶

func (o *SACEvent) GetEventTypeOk() (*SACEventType, bool)

GetEventTypeOk returns a tuple with the EventType field value and a boolean to check if the value has been set.

func (*SACEvent) GetImmediateFlag ¶

func (o *SACEvent) GetImmediateFlag() bool

GetImmediateFlag returns the ImmediateFlag field value if set, zero value otherwise.

func (*SACEvent) GetImmediateFlagOk ¶

func (o *SACEvent) GetImmediateFlagOk() (*bool, bool)

GetImmediateFlagOk returns a tuple with the ImmediateFlag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEvent) GetNotifThreshold ¶

func (o *SACEvent) GetNotifThreshold() SACInfo

GetNotifThreshold returns the NotifThreshold field value if set, zero value otherwise.

func (*SACEvent) GetNotifThresholdOk ¶

func (o *SACEvent) GetNotifThresholdOk() (*SACInfo, bool)

GetNotifThresholdOk returns a tuple with the NotifThreshold field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEvent) GetNotificationPeriod ¶

func (o *SACEvent) GetNotificationPeriod() int32

GetNotificationPeriod returns the NotificationPeriod field value if set, zero value otherwise.

func (*SACEvent) GetNotificationPeriodOk ¶

func (o *SACEvent) GetNotificationPeriodOk() (*int32, bool)

GetNotificationPeriodOk returns a tuple with the NotificationPeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEvent) HasEventTrigger ¶

func (o *SACEvent) HasEventTrigger() bool

HasEventTrigger returns a boolean if a field has been set.

func (*SACEvent) HasImmediateFlag ¶

func (o *SACEvent) HasImmediateFlag() bool

HasImmediateFlag returns a boolean if a field has been set.

func (*SACEvent) HasNotifThreshold ¶

func (o *SACEvent) HasNotifThreshold() bool

HasNotifThreshold returns a boolean if a field has been set.

func (*SACEvent) HasNotificationPeriod ¶

func (o *SACEvent) HasNotificationPeriod() bool

HasNotificationPeriod returns a boolean if a field has been set.

func (SACEvent) MarshalJSON ¶

func (o SACEvent) MarshalJSON() ([]byte, error)

func (*SACEvent) SetEventFilter ¶

func (o *SACEvent) SetEventFilter(v []Snssai)

SetEventFilter sets field value

func (*SACEvent) SetEventTrigger ¶

func (o *SACEvent) SetEventTrigger(v SACEventTrigger)

SetEventTrigger gets a reference to the given SACEventTrigger and assigns it to the EventTrigger field.

func (*SACEvent) SetEventType ¶

func (o *SACEvent) SetEventType(v SACEventType)

SetEventType sets field value

func (*SACEvent) SetImmediateFlag ¶

func (o *SACEvent) SetImmediateFlag(v bool)

SetImmediateFlag gets a reference to the given bool and assigns it to the ImmediateFlag field.

func (*SACEvent) SetNotifThreshold ¶

func (o *SACEvent) SetNotifThreshold(v SACInfo)

SetNotifThreshold gets a reference to the given SACInfo and assigns it to the NotifThreshold field.

func (*SACEvent) SetNotificationPeriod ¶

func (o *SACEvent) SetNotificationPeriod(v int32)

SetNotificationPeriod gets a reference to the given int32 and assigns it to the NotificationPeriod field.

func (SACEvent) ToMap ¶

func (o SACEvent) ToMap() (map[string]interface{}, error)

type SACEventReport ¶

type SACEventReport struct {
	Report              SACEventReportItem `json:"report"`
	NotifyCorrelationId *string            `json:"notifyCorrelationId,omitempty"`
}

SACEventReport Event notification

func NewSACEventReport ¶

func NewSACEventReport(report SACEventReportItem) *SACEventReport

NewSACEventReport instantiates a new SACEventReport 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 NewSACEventReportWithDefaults ¶

func NewSACEventReportWithDefaults() *SACEventReport

NewSACEventReportWithDefaults instantiates a new SACEventReport 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 (*SACEventReport) GetNotifyCorrelationId ¶

func (o *SACEventReport) GetNotifyCorrelationId() string

GetNotifyCorrelationId returns the NotifyCorrelationId field value if set, zero value otherwise.

func (*SACEventReport) GetNotifyCorrelationIdOk ¶

func (o *SACEventReport) GetNotifyCorrelationIdOk() (*string, bool)

GetNotifyCorrelationIdOk returns a tuple with the NotifyCorrelationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEventReport) GetReport ¶

func (o *SACEventReport) GetReport() SACEventReportItem

GetReport returns the Report field value

func (*SACEventReport) GetReportOk ¶

func (o *SACEventReport) GetReportOk() (*SACEventReportItem, bool)

GetReportOk returns a tuple with the Report field value and a boolean to check if the value has been set.

func (*SACEventReport) HasNotifyCorrelationId ¶

func (o *SACEventReport) HasNotifyCorrelationId() bool

HasNotifyCorrelationId returns a boolean if a field has been set.

func (SACEventReport) MarshalJSON ¶

func (o SACEventReport) MarshalJSON() ([]byte, error)

func (*SACEventReport) SetNotifyCorrelationId ¶

func (o *SACEventReport) SetNotifyCorrelationId(v string)

SetNotifyCorrelationId gets a reference to the given string and assigns it to the NotifyCorrelationId field.

func (*SACEventReport) SetReport ¶

func (o *SACEventReport) SetReport(v SACEventReportItem)

SetReport sets field value

func (SACEventReport) ToMap ¶

func (o SACEventReport) ToMap() (map[string]interface{}, error)

type SACEventReportItem ¶

type SACEventReportItem struct {
	EventType  SACEventType  `json:"eventType"`
	EventState SACEventState `json:"eventState"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp       time.Time       `json:"timeStamp"`
	EventFilter     Snssai          `json:"eventFilter"`
	SliceStautsInfo *SACEventStatus `json:"sliceStautsInfo,omitempty"`
}

SACEventReportItem Represents a report triggered by a subscribed event type

func NewSACEventReportItem ¶

func NewSACEventReportItem(eventType SACEventType, eventState SACEventState, timeStamp time.Time, eventFilter Snssai) *SACEventReportItem

NewSACEventReportItem instantiates a new SACEventReportItem 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 NewSACEventReportItemWithDefaults ¶

func NewSACEventReportItemWithDefaults() *SACEventReportItem

NewSACEventReportItemWithDefaults instantiates a new SACEventReportItem 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 (*SACEventReportItem) GetEventFilter ¶

func (o *SACEventReportItem) GetEventFilter() Snssai

GetEventFilter returns the EventFilter field value

func (*SACEventReportItem) GetEventFilterOk ¶

func (o *SACEventReportItem) GetEventFilterOk() (*Snssai, bool)

GetEventFilterOk returns a tuple with the EventFilter field value and a boolean to check if the value has been set.

func (*SACEventReportItem) GetEventState ¶

func (o *SACEventReportItem) GetEventState() SACEventState

GetEventState returns the EventState field value

func (*SACEventReportItem) GetEventStateOk ¶

func (o *SACEventReportItem) GetEventStateOk() (*SACEventState, bool)

GetEventStateOk returns a tuple with the EventState field value and a boolean to check if the value has been set.

func (*SACEventReportItem) GetEventType ¶

func (o *SACEventReportItem) GetEventType() SACEventType

GetEventType returns the EventType field value

func (*SACEventReportItem) GetEventTypeOk ¶

func (o *SACEventReportItem) GetEventTypeOk() (*SACEventType, bool)

GetEventTypeOk returns a tuple with the EventType field value and a boolean to check if the value has been set.

func (*SACEventReportItem) GetSliceStautsInfo ¶

func (o *SACEventReportItem) GetSliceStautsInfo() SACEventStatus

GetSliceStautsInfo returns the SliceStautsInfo field value if set, zero value otherwise.

func (*SACEventReportItem) GetSliceStautsInfoOk ¶

func (o *SACEventReportItem) GetSliceStautsInfoOk() (*SACEventStatus, bool)

GetSliceStautsInfoOk returns a tuple with the SliceStautsInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEventReportItem) GetTimeStamp ¶

func (o *SACEventReportItem) GetTimeStamp() time.Time

GetTimeStamp returns the TimeStamp field value

func (*SACEventReportItem) GetTimeStampOk ¶

func (o *SACEventReportItem) GetTimeStampOk() (*time.Time, bool)

GetTimeStampOk returns a tuple with the TimeStamp field value and a boolean to check if the value has been set.

func (*SACEventReportItem) HasSliceStautsInfo ¶

func (o *SACEventReportItem) HasSliceStautsInfo() bool

HasSliceStautsInfo returns a boolean if a field has been set.

func (SACEventReportItem) MarshalJSON ¶

func (o SACEventReportItem) MarshalJSON() ([]byte, error)

func (*SACEventReportItem) SetEventFilter ¶

func (o *SACEventReportItem) SetEventFilter(v Snssai)

SetEventFilter sets field value

func (*SACEventReportItem) SetEventState ¶

func (o *SACEventReportItem) SetEventState(v SACEventState)

SetEventState sets field value

func (*SACEventReportItem) SetEventType ¶

func (o *SACEventReportItem) SetEventType(v SACEventType)

SetEventType sets field value

func (*SACEventReportItem) SetSliceStautsInfo ¶

func (o *SACEventReportItem) SetSliceStautsInfo(v SACEventStatus)

SetSliceStautsInfo gets a reference to the given SACEventStatus and assigns it to the SliceStautsInfo field.

func (*SACEventReportItem) SetTimeStamp ¶

func (o *SACEventReportItem) SetTimeStamp(v time.Time)

SetTimeStamp sets field value

func (SACEventReportItem) ToMap ¶

func (o SACEventReportItem) ToMap() (map[string]interface{}, error)

type SACEventState ¶

type SACEventState struct {
	Active        bool   `json:"active"`
	RemainReports *int32 `json:"remainReports,omitempty"`
	// indicating a time in seconds.
	RemainDuration *int32 `json:"remainDuration,omitempty"`
}

SACEventState Represents the state of a subscribed event

func NewSACEventState ¶

func NewSACEventState(active bool) *SACEventState

NewSACEventState instantiates a new SACEventState 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 NewSACEventStateWithDefaults ¶

func NewSACEventStateWithDefaults() *SACEventState

NewSACEventStateWithDefaults instantiates a new SACEventState 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 (*SACEventState) GetActive ¶

func (o *SACEventState) GetActive() bool

GetActive returns the Active field value

func (*SACEventState) GetActiveOk ¶

func (o *SACEventState) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value and a boolean to check if the value has been set.

func (*SACEventState) GetRemainDuration ¶

func (o *SACEventState) GetRemainDuration() int32

GetRemainDuration returns the RemainDuration field value if set, zero value otherwise.

func (*SACEventState) GetRemainDurationOk ¶

func (o *SACEventState) GetRemainDurationOk() (*int32, bool)

GetRemainDurationOk returns a tuple with the RemainDuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEventState) GetRemainReports ¶

func (o *SACEventState) GetRemainReports() int32

GetRemainReports returns the RemainReports field value if set, zero value otherwise.

func (*SACEventState) GetRemainReportsOk ¶

func (o *SACEventState) GetRemainReportsOk() (*int32, bool)

GetRemainReportsOk returns a tuple with the RemainReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEventState) HasRemainDuration ¶

func (o *SACEventState) HasRemainDuration() bool

HasRemainDuration returns a boolean if a field has been set.

func (*SACEventState) HasRemainReports ¶

func (o *SACEventState) HasRemainReports() bool

HasRemainReports returns a boolean if a field has been set.

func (SACEventState) MarshalJSON ¶

func (o SACEventState) MarshalJSON() ([]byte, error)

func (*SACEventState) SetActive ¶

func (o *SACEventState) SetActive(v bool)

SetActive sets field value

func (*SACEventState) SetRemainDuration ¶

func (o *SACEventState) SetRemainDuration(v int32)

SetRemainDuration gets a reference to the given int32 and assigns it to the RemainDuration field.

func (*SACEventState) SetRemainReports ¶

func (o *SACEventState) SetRemainReports(v int32)

SetRemainReports gets a reference to the given int32 and assigns it to the RemainReports field.

func (SACEventState) ToMap ¶

func (o SACEventState) ToMap() (map[string]interface{}, error)

type SACEventStatus ¶

type SACEventStatus struct {
	ReachedNumUes     *SACInfo `json:"reachedNumUes,omitempty"`
	ReachedNumPduSess *SACInfo `json:"reachedNumPduSess,omitempty"`
}

SACEventStatus Contains the network slice status information in terms of the current number of UEs registered with a network slice, the current number of PDU Sessions established on a network slice or both.

func NewSACEventStatus ¶

func NewSACEventStatus() *SACEventStatus

NewSACEventStatus instantiates a new SACEventStatus 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 NewSACEventStatusWithDefaults ¶

func NewSACEventStatusWithDefaults() *SACEventStatus

NewSACEventStatusWithDefaults instantiates a new SACEventStatus 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 (*SACEventStatus) GetReachedNumPduSess ¶

func (o *SACEventStatus) GetReachedNumPduSess() SACInfo

GetReachedNumPduSess returns the ReachedNumPduSess field value if set, zero value otherwise.

func (*SACEventStatus) GetReachedNumPduSessOk ¶

func (o *SACEventStatus) GetReachedNumPduSessOk() (*SACInfo, bool)

GetReachedNumPduSessOk returns a tuple with the ReachedNumPduSess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEventStatus) GetReachedNumUes ¶

func (o *SACEventStatus) GetReachedNumUes() SACInfo

GetReachedNumUes returns the ReachedNumUes field value if set, zero value otherwise.

func (*SACEventStatus) GetReachedNumUesOk ¶

func (o *SACEventStatus) GetReachedNumUesOk() (*SACInfo, bool)

GetReachedNumUesOk returns a tuple with the ReachedNumUes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEventStatus) HasReachedNumPduSess ¶

func (o *SACEventStatus) HasReachedNumPduSess() bool

HasReachedNumPduSess returns a boolean if a field has been set.

func (*SACEventStatus) HasReachedNumUes ¶

func (o *SACEventStatus) HasReachedNumUes() bool

HasReachedNumUes returns a boolean if a field has been set.

func (SACEventStatus) MarshalJSON ¶

func (o SACEventStatus) MarshalJSON() ([]byte, error)

func (*SACEventStatus) SetReachedNumPduSess ¶

func (o *SACEventStatus) SetReachedNumPduSess(v SACInfo)

SetReachedNumPduSess gets a reference to the given SACInfo and assigns it to the ReachedNumPduSess field.

func (*SACEventStatus) SetReachedNumUes ¶

func (o *SACEventStatus) SetReachedNumUes(v SACInfo)

SetReachedNumUes gets a reference to the given SACInfo and assigns it to the ReachedNumUes field.

func (SACEventStatus) ToMap ¶

func (o SACEventStatus) ToMap() (map[string]interface{}, error)

type SACEventSubscription ¶

type SACEventSubscription struct {
	Event SACEvent `json:"event"`
	// String providing an URI formatted according to RFC 3986.
	EventNotifyUri string `json:"eventNotifyUri"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	NfId                string  `json:"nfId"`
	NotifyCorrelationId *string `json:"notifyCorrelationId,omitempty"`
	MaxReports          *int32  `json:"maxReports,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	Expiry *time.Time `json:"expiry,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures *string `json:"supportedFeatures,omitempty"`
}

SACEventSubscription Request data to create the event subscription

func NewSACEventSubscription ¶

func NewSACEventSubscription(event SACEvent, eventNotifyUri string, nfId string) *SACEventSubscription

NewSACEventSubscription instantiates a new SACEventSubscription 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 NewSACEventSubscriptionWithDefaults ¶

func NewSACEventSubscriptionWithDefaults() *SACEventSubscription

NewSACEventSubscriptionWithDefaults instantiates a new SACEventSubscription 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 (*SACEventSubscription) GetEvent ¶

func (o *SACEventSubscription) GetEvent() SACEvent

GetEvent returns the Event field value

func (*SACEventSubscription) GetEventNotifyUri ¶

func (o *SACEventSubscription) GetEventNotifyUri() string

GetEventNotifyUri returns the EventNotifyUri field value

func (*SACEventSubscription) GetEventNotifyUriOk ¶

func (o *SACEventSubscription) GetEventNotifyUriOk() (*string, bool)

GetEventNotifyUriOk returns a tuple with the EventNotifyUri field value and a boolean to check if the value has been set.

func (*SACEventSubscription) GetEventOk ¶

func (o *SACEventSubscription) GetEventOk() (*SACEvent, bool)

GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.

func (*SACEventSubscription) GetExpiry ¶

func (o *SACEventSubscription) GetExpiry() time.Time

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*SACEventSubscription) GetExpiryOk ¶

func (o *SACEventSubscription) GetExpiryOk() (*time.Time, bool)

GetExpiryOk returns a tuple with the Expiry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEventSubscription) GetMaxReports ¶

func (o *SACEventSubscription) GetMaxReports() int32

GetMaxReports returns the MaxReports field value if set, zero value otherwise.

func (*SACEventSubscription) GetMaxReportsOk ¶

func (o *SACEventSubscription) GetMaxReportsOk() (*int32, bool)

GetMaxReportsOk returns a tuple with the MaxReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEventSubscription) GetNfId ¶

func (o *SACEventSubscription) GetNfId() string

GetNfId returns the NfId field value

func (*SACEventSubscription) GetNfIdOk ¶

func (o *SACEventSubscription) GetNfIdOk() (*string, bool)

GetNfIdOk returns a tuple with the NfId field value and a boolean to check if the value has been set.

func (*SACEventSubscription) GetNotifyCorrelationId ¶

func (o *SACEventSubscription) GetNotifyCorrelationId() string

GetNotifyCorrelationId returns the NotifyCorrelationId field value if set, zero value otherwise.

func (*SACEventSubscription) GetNotifyCorrelationIdOk ¶

func (o *SACEventSubscription) GetNotifyCorrelationIdOk() (*string, bool)

GetNotifyCorrelationIdOk returns a tuple with the NotifyCorrelationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEventSubscription) GetSupportedFeatures ¶

func (o *SACEventSubscription) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*SACEventSubscription) GetSupportedFeaturesOk ¶

func (o *SACEventSubscription) GetSupportedFeaturesOk() (*string, bool)

GetSupportedFeaturesOk returns a tuple with the SupportedFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACEventSubscription) HasExpiry ¶

func (o *SACEventSubscription) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*SACEventSubscription) HasMaxReports ¶

func (o *SACEventSubscription) HasMaxReports() bool

HasMaxReports returns a boolean if a field has been set.

func (*SACEventSubscription) HasNotifyCorrelationId ¶

func (o *SACEventSubscription) HasNotifyCorrelationId() bool

HasNotifyCorrelationId returns a boolean if a field has been set.

func (*SACEventSubscription) HasSupportedFeatures ¶

func (o *SACEventSubscription) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (SACEventSubscription) MarshalJSON ¶

func (o SACEventSubscription) MarshalJSON() ([]byte, error)

func (*SACEventSubscription) SetEvent ¶

func (o *SACEventSubscription) SetEvent(v SACEvent)

SetEvent sets field value

func (*SACEventSubscription) SetEventNotifyUri ¶

func (o *SACEventSubscription) SetEventNotifyUri(v string)

SetEventNotifyUri sets field value

func (*SACEventSubscription) SetExpiry ¶

func (o *SACEventSubscription) SetExpiry(v time.Time)

SetExpiry gets a reference to the given time.Time and assigns it to the Expiry field.

func (*SACEventSubscription) SetMaxReports ¶

func (o *SACEventSubscription) SetMaxReports(v int32)

SetMaxReports gets a reference to the given int32 and assigns it to the MaxReports field.

func (*SACEventSubscription) SetNfId ¶

func (o *SACEventSubscription) SetNfId(v string)

SetNfId sets field value

func (*SACEventSubscription) SetNotifyCorrelationId ¶

func (o *SACEventSubscription) SetNotifyCorrelationId(v string)

SetNotifyCorrelationId gets a reference to the given string and assigns it to the NotifyCorrelationId field.

func (*SACEventSubscription) SetSupportedFeatures ¶

func (o *SACEventSubscription) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (SACEventSubscription) ToMap ¶

func (o SACEventSubscription) ToMap() (map[string]interface{}, error)

type SACEventTrigger ¶

type SACEventTrigger struct {
	String *string
}

SACEventTrigger Describes how NSACF should generate the report for the event

func (*SACEventTrigger) MarshalJSON ¶

func (src *SACEventTrigger) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SACEventTrigger) UnmarshalJSON ¶

func (dst *SACEventTrigger) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SACEventType ¶

type SACEventType struct {
	String *string
}

SACEventType Describes the supported event types

func (*SACEventType) MarshalJSON ¶

func (src *SACEventType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SACEventType) UnmarshalJSON ¶

func (dst *SACEventType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SACInfo ¶

type SACInfo struct {
	NumericValNumUes     *int32 `json:"numericValNumUes,omitempty"`
	NumericValNumPduSess *int32 `json:"numericValNumPduSess,omitempty"`
	PercValueNumUes      *int32 `json:"percValueNumUes,omitempty"`
	PercValueNumPduSess  *int32 `json:"percValueNumPduSess,omitempty"`
}

SACInfo Represents threshold(s) to control the triggering of network slice reporting notifications or the information contained in the network slice reporting notification.

func NewSACInfo ¶

func NewSACInfo() *SACInfo

NewSACInfo instantiates a new SACInfo 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 NewSACInfoWithDefaults ¶

func NewSACInfoWithDefaults() *SACInfo

NewSACInfoWithDefaults instantiates a new SACInfo 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 (*SACInfo) GetNumericValNumPduSess ¶

func (o *SACInfo) GetNumericValNumPduSess() int32

GetNumericValNumPduSess returns the NumericValNumPduSess field value if set, zero value otherwise.

func (*SACInfo) GetNumericValNumPduSessOk ¶

func (o *SACInfo) GetNumericValNumPduSessOk() (*int32, bool)

GetNumericValNumPduSessOk returns a tuple with the NumericValNumPduSess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACInfo) GetNumericValNumUes ¶

func (o *SACInfo) GetNumericValNumUes() int32

GetNumericValNumUes returns the NumericValNumUes field value if set, zero value otherwise.

func (*SACInfo) GetNumericValNumUesOk ¶

func (o *SACInfo) GetNumericValNumUesOk() (*int32, bool)

GetNumericValNumUesOk returns a tuple with the NumericValNumUes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACInfo) GetPercValueNumPduSess ¶

func (o *SACInfo) GetPercValueNumPduSess() int32

GetPercValueNumPduSess returns the PercValueNumPduSess field value if set, zero value otherwise.

func (*SACInfo) GetPercValueNumPduSessOk ¶

func (o *SACInfo) GetPercValueNumPduSessOk() (*int32, bool)

GetPercValueNumPduSessOk returns a tuple with the PercValueNumPduSess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACInfo) GetPercValueNumUes ¶

func (o *SACInfo) GetPercValueNumUes() int32

GetPercValueNumUes returns the PercValueNumUes field value if set, zero value otherwise.

func (*SACInfo) GetPercValueNumUesOk ¶

func (o *SACInfo) GetPercValueNumUesOk() (*int32, bool)

GetPercValueNumUesOk returns a tuple with the PercValueNumUes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SACInfo) HasNumericValNumPduSess ¶

func (o *SACInfo) HasNumericValNumPduSess() bool

HasNumericValNumPduSess returns a boolean if a field has been set.

func (*SACInfo) HasNumericValNumUes ¶

func (o *SACInfo) HasNumericValNumUes() bool

HasNumericValNumUes returns a boolean if a field has been set.

func (*SACInfo) HasPercValueNumPduSess ¶

func (o *SACInfo) HasPercValueNumPduSess() bool

HasPercValueNumPduSess returns a boolean if a field has been set.

func (*SACInfo) HasPercValueNumUes ¶

func (o *SACInfo) HasPercValueNumUes() bool

HasPercValueNumUes returns a boolean if a field has been set.

func (SACInfo) MarshalJSON ¶

func (o SACInfo) MarshalJSON() ([]byte, error)

func (*SACInfo) SetNumericValNumPduSess ¶

func (o *SACInfo) SetNumericValNumPduSess(v int32)

SetNumericValNumPduSess gets a reference to the given int32 and assigns it to the NumericValNumPduSess field.

func (*SACInfo) SetNumericValNumUes ¶

func (o *SACInfo) SetNumericValNumUes(v int32)

SetNumericValNumUes gets a reference to the given int32 and assigns it to the NumericValNumUes field.

func (*SACInfo) SetPercValueNumPduSess ¶

func (o *SACInfo) SetPercValueNumPduSess(v int32)

SetPercValueNumPduSess gets a reference to the given int32 and assigns it to the PercValueNumPduSess field.

func (*SACInfo) SetPercValueNumUes ¶

func (o *SACInfo) SetPercValueNumUes(v int32)

SetPercValueNumUes gets a reference to the given int32 and assigns it to the PercValueNumUes field.

func (SACInfo) ToMap ¶

func (o SACInfo) ToMap() (map[string]interface{}, error)

type ScheduledCommunicationTime ¶

type ScheduledCommunicationTime struct {
	// Identifies the day(s) of the week. If absent, it indicates every day of the week.
	DaysOfWeek []int32 `json:"daysOfWeek,omitempty"`
	// String with format partial-time or full-time as defined in clause 5.6 of IETF RFC 3339. Examples, 20:15:00, 20:15:00-08:00 (for 8 hours behind UTC).
	TimeOfDayStart *string `json:"timeOfDayStart,omitempty"`
	// String with format partial-time or full-time as defined in clause 5.6 of IETF RFC 3339. Examples, 20:15:00, 20:15:00-08:00 (for 8 hours behind UTC).
	TimeOfDayEnd *string `json:"timeOfDayEnd,omitempty"`
}

ScheduledCommunicationTime Represents an offered scheduled communication time.

func NewScheduledCommunicationTime ¶

func NewScheduledCommunicationTime() *ScheduledCommunicationTime

NewScheduledCommunicationTime instantiates a new ScheduledCommunicationTime 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 NewScheduledCommunicationTimeWithDefaults ¶

func NewScheduledCommunicationTimeWithDefaults() *ScheduledCommunicationTime

NewScheduledCommunicationTimeWithDefaults instantiates a new ScheduledCommunicationTime 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 (*ScheduledCommunicationTime) GetDaysOfWeek ¶

func (o *ScheduledCommunicationTime) GetDaysOfWeek() []int32

GetDaysOfWeek returns the DaysOfWeek field value if set, zero value otherwise.

func (*ScheduledCommunicationTime) GetDaysOfWeekOk ¶

func (o *ScheduledCommunicationTime) GetDaysOfWeekOk() ([]int32, bool)

GetDaysOfWeekOk returns a tuple with the DaysOfWeek field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScheduledCommunicationTime) GetTimeOfDayEnd ¶

func (o *ScheduledCommunicationTime) GetTimeOfDayEnd() string

GetTimeOfDayEnd returns the TimeOfDayEnd field value if set, zero value otherwise.

func (*ScheduledCommunicationTime) GetTimeOfDayEndOk ¶

func (o *ScheduledCommunicationTime) GetTimeOfDayEndOk() (*string, bool)

GetTimeOfDayEndOk returns a tuple with the TimeOfDayEnd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScheduledCommunicationTime) GetTimeOfDayStart ¶

func (o *ScheduledCommunicationTime) GetTimeOfDayStart() string

GetTimeOfDayStart returns the TimeOfDayStart field value if set, zero value otherwise.

func (*ScheduledCommunicationTime) GetTimeOfDayStartOk ¶

func (o *ScheduledCommunicationTime) GetTimeOfDayStartOk() (*string, bool)

GetTimeOfDayStartOk returns a tuple with the TimeOfDayStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScheduledCommunicationTime) HasDaysOfWeek ¶

func (o *ScheduledCommunicationTime) HasDaysOfWeek() bool

HasDaysOfWeek returns a boolean if a field has been set.

func (*ScheduledCommunicationTime) HasTimeOfDayEnd ¶

func (o *ScheduledCommunicationTime) HasTimeOfDayEnd() bool

HasTimeOfDayEnd returns a boolean if a field has been set.

func (*ScheduledCommunicationTime) HasTimeOfDayStart ¶

func (o *ScheduledCommunicationTime) HasTimeOfDayStart() bool

HasTimeOfDayStart returns a boolean if a field has been set.

func (ScheduledCommunicationTime) MarshalJSON ¶

func (o ScheduledCommunicationTime) MarshalJSON() ([]byte, error)

func (*ScheduledCommunicationTime) SetDaysOfWeek ¶

func (o *ScheduledCommunicationTime) SetDaysOfWeek(v []int32)

SetDaysOfWeek gets a reference to the given []int32 and assigns it to the DaysOfWeek field.

func (*ScheduledCommunicationTime) SetTimeOfDayEnd ¶

func (o *ScheduledCommunicationTime) SetTimeOfDayEnd(v string)

SetTimeOfDayEnd gets a reference to the given string and assigns it to the TimeOfDayEnd field.

func (*ScheduledCommunicationTime) SetTimeOfDayStart ¶

func (o *ScheduledCommunicationTime) SetTimeOfDayStart(v string)

SetTimeOfDayStart gets a reference to the given string and assigns it to the TimeOfDayStart field.

func (ScheduledCommunicationTime) ToMap ¶

func (o ScheduledCommunicationTime) ToMap() (map[string]interface{}, error)

type ScheduledCommunicationTime1 ¶

type ScheduledCommunicationTime1 struct {
	// Identifies the day(s) of the week. If absent, it indicates every day of the week.
	DaysOfWeek []int32 `json:"daysOfWeek,omitempty"`
	// String with format partial-time or full-time as defined in clause 5.6 of IETF RFC 3339. Examples, 20:15:00, 20:15:00-08:00 (for 8 hours behind UTC).
	TimeOfDayStart *string `json:"timeOfDayStart,omitempty"`
	// String with format partial-time or full-time as defined in clause 5.6 of IETF RFC 3339. Examples, 20:15:00, 20:15:00-08:00 (for 8 hours behind UTC).
	TimeOfDayEnd *string `json:"timeOfDayEnd,omitempty"`
}

ScheduledCommunicationTime1 Identifies time and day of the week when the UE is available for communication.

func NewScheduledCommunicationTime1 ¶

func NewScheduledCommunicationTime1() *ScheduledCommunicationTime1

NewScheduledCommunicationTime1 instantiates a new ScheduledCommunicationTime1 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 NewScheduledCommunicationTime1WithDefaults ¶

func NewScheduledCommunicationTime1WithDefaults() *ScheduledCommunicationTime1

NewScheduledCommunicationTime1WithDefaults instantiates a new ScheduledCommunicationTime1 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 (*ScheduledCommunicationTime1) GetDaysOfWeek ¶

func (o *ScheduledCommunicationTime1) GetDaysOfWeek() []int32

GetDaysOfWeek returns the DaysOfWeek field value if set, zero value otherwise.

func (*ScheduledCommunicationTime1) GetDaysOfWeekOk ¶

func (o *ScheduledCommunicationTime1) GetDaysOfWeekOk() ([]int32, bool)

GetDaysOfWeekOk returns a tuple with the DaysOfWeek field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScheduledCommunicationTime1) GetTimeOfDayEnd ¶

func (o *ScheduledCommunicationTime1) GetTimeOfDayEnd() string

GetTimeOfDayEnd returns the TimeOfDayEnd field value if set, zero value otherwise.

func (*ScheduledCommunicationTime1) GetTimeOfDayEndOk ¶

func (o *ScheduledCommunicationTime1) GetTimeOfDayEndOk() (*string, bool)

GetTimeOfDayEndOk returns a tuple with the TimeOfDayEnd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScheduledCommunicationTime1) GetTimeOfDayStart ¶

func (o *ScheduledCommunicationTime1) GetTimeOfDayStart() string

GetTimeOfDayStart returns the TimeOfDayStart field value if set, zero value otherwise.

func (*ScheduledCommunicationTime1) GetTimeOfDayStartOk ¶

func (o *ScheduledCommunicationTime1) GetTimeOfDayStartOk() (*string, bool)

GetTimeOfDayStartOk returns a tuple with the TimeOfDayStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScheduledCommunicationTime1) HasDaysOfWeek ¶

func (o *ScheduledCommunicationTime1) HasDaysOfWeek() bool

HasDaysOfWeek returns a boolean if a field has been set.

func (*ScheduledCommunicationTime1) HasTimeOfDayEnd ¶

func (o *ScheduledCommunicationTime1) HasTimeOfDayEnd() bool

HasTimeOfDayEnd returns a boolean if a field has been set.

func (*ScheduledCommunicationTime1) HasTimeOfDayStart ¶

func (o *ScheduledCommunicationTime1) HasTimeOfDayStart() bool

HasTimeOfDayStart returns a boolean if a field has been set.

func (ScheduledCommunicationTime1) MarshalJSON ¶

func (o ScheduledCommunicationTime1) MarshalJSON() ([]byte, error)

func (*ScheduledCommunicationTime1) SetDaysOfWeek ¶

func (o *ScheduledCommunicationTime1) SetDaysOfWeek(v []int32)

SetDaysOfWeek gets a reference to the given []int32 and assigns it to the DaysOfWeek field.

func (*ScheduledCommunicationTime1) SetTimeOfDayEnd ¶

func (o *ScheduledCommunicationTime1) SetTimeOfDayEnd(v string)

SetTimeOfDayEnd gets a reference to the given string and assigns it to the TimeOfDayEnd field.

func (*ScheduledCommunicationTime1) SetTimeOfDayStart ¶

func (o *ScheduledCommunicationTime1) SetTimeOfDayStart(v string)

SetTimeOfDayStart gets a reference to the given string and assigns it to the TimeOfDayStart field.

func (ScheduledCommunicationTime1) ToMap ¶

func (o ScheduledCommunicationTime1) ToMap() (map[string]interface{}, error)

type ScheduledCommunicationType ¶

type ScheduledCommunicationType struct {
	String *string
}

ScheduledCommunicationType Possible values are: -DOWNLINK_ONLY: Downlink only -UPLINK_ONLY: Uplink only -BIDIRECTIONA: Bi-directional

func (*ScheduledCommunicationType) MarshalJSON ¶

func (src *ScheduledCommunicationType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ScheduledCommunicationType) UnmarshalJSON ¶

func (dst *ScheduledCommunicationType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ScpCapability ¶

type ScpCapability struct {
	String *string
}

ScpCapability Indicates the capabilities supported by an SCP

func (*ScpCapability) MarshalJSON ¶

func (src *ScpCapability) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ScpCapability) UnmarshalJSON ¶

func (dst *ScpCapability) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ScpDomainCond ¶

type ScpDomainCond struct {
	ScpDomains []string `json:"scpDomains"`
	NfTypeList []NFType `json:"nfTypeList,omitempty"`
}

ScpDomainCond Subscription to a set of NF or SCP or SEPP instances belonging to certain SCP domains

func NewScpDomainCond ¶

func NewScpDomainCond(scpDomains []string) *ScpDomainCond

NewScpDomainCond instantiates a new ScpDomainCond 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 NewScpDomainCondWithDefaults ¶

func NewScpDomainCondWithDefaults() *ScpDomainCond

NewScpDomainCondWithDefaults instantiates a new ScpDomainCond 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 (*ScpDomainCond) GetNfTypeList ¶

func (o *ScpDomainCond) GetNfTypeList() []NFType

GetNfTypeList returns the NfTypeList field value if set, zero value otherwise.

func (*ScpDomainCond) GetNfTypeListOk ¶

func (o *ScpDomainCond) GetNfTypeListOk() ([]NFType, bool)

GetNfTypeListOk returns a tuple with the NfTypeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpDomainCond) GetScpDomains ¶

func (o *ScpDomainCond) GetScpDomains() []string

GetScpDomains returns the ScpDomains field value

func (*ScpDomainCond) GetScpDomainsOk ¶

func (o *ScpDomainCond) GetScpDomainsOk() ([]string, bool)

GetScpDomainsOk returns a tuple with the ScpDomains field value and a boolean to check if the value has been set.

func (*ScpDomainCond) HasNfTypeList ¶

func (o *ScpDomainCond) HasNfTypeList() bool

HasNfTypeList returns a boolean if a field has been set.

func (ScpDomainCond) MarshalJSON ¶

func (o ScpDomainCond) MarshalJSON() ([]byte, error)

func (*ScpDomainCond) SetNfTypeList ¶

func (o *ScpDomainCond) SetNfTypeList(v []NFType)

SetNfTypeList gets a reference to the given []NFType and assigns it to the NfTypeList field.

func (*ScpDomainCond) SetScpDomains ¶

func (o *ScpDomainCond) SetScpDomains(v []string)

SetScpDomains sets field value

func (ScpDomainCond) ToMap ¶

func (o ScpDomainCond) ToMap() (map[string]interface{}, error)

type ScpDomainInfo ¶

type ScpDomainInfo struct {
	// Fully Qualified Domain Name
	ScpFqdn        *string      `json:"scpFqdn,omitempty"`
	ScpIpEndPoints []IpEndPoint `json:"scpIpEndPoints,omitempty"`
	ScpPrefix      *string      `json:"scpPrefix,omitempty"`
	// Port numbers for HTTP and HTTPS. The key of the map shall be \"http\" or \"https\".
	ScpPorts *map[string]int32 `json:"scpPorts,omitempty"`
}

ScpDomainInfo SCP Domain specific information

func NewScpDomainInfo ¶

func NewScpDomainInfo() *ScpDomainInfo

NewScpDomainInfo instantiates a new ScpDomainInfo 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 NewScpDomainInfoWithDefaults ¶

func NewScpDomainInfoWithDefaults() *ScpDomainInfo

NewScpDomainInfoWithDefaults instantiates a new ScpDomainInfo 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 (*ScpDomainInfo) GetScpFqdn ¶

func (o *ScpDomainInfo) GetScpFqdn() string

GetScpFqdn returns the ScpFqdn field value if set, zero value otherwise.

func (*ScpDomainInfo) GetScpFqdnOk ¶

func (o *ScpDomainInfo) GetScpFqdnOk() (*string, bool)

GetScpFqdnOk returns a tuple with the ScpFqdn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpDomainInfo) GetScpIpEndPoints ¶

func (o *ScpDomainInfo) GetScpIpEndPoints() []IpEndPoint

GetScpIpEndPoints returns the ScpIpEndPoints field value if set, zero value otherwise.

func (*ScpDomainInfo) GetScpIpEndPointsOk ¶

func (o *ScpDomainInfo) GetScpIpEndPointsOk() ([]IpEndPoint, bool)

GetScpIpEndPointsOk returns a tuple with the ScpIpEndPoints field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpDomainInfo) GetScpPorts ¶

func (o *ScpDomainInfo) GetScpPorts() map[string]int32

GetScpPorts returns the ScpPorts field value if set, zero value otherwise.

func (*ScpDomainInfo) GetScpPortsOk ¶

func (o *ScpDomainInfo) GetScpPortsOk() (*map[string]int32, bool)

GetScpPortsOk returns a tuple with the ScpPorts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpDomainInfo) GetScpPrefix ¶

func (o *ScpDomainInfo) GetScpPrefix() string

GetScpPrefix returns the ScpPrefix field value if set, zero value otherwise.

func (*ScpDomainInfo) GetScpPrefixOk ¶

func (o *ScpDomainInfo) GetScpPrefixOk() (*string, bool)

GetScpPrefixOk returns a tuple with the ScpPrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpDomainInfo) HasScpFqdn ¶

func (o *ScpDomainInfo) HasScpFqdn() bool

HasScpFqdn returns a boolean if a field has been set.

func (*ScpDomainInfo) HasScpIpEndPoints ¶

func (o *ScpDomainInfo) HasScpIpEndPoints() bool

HasScpIpEndPoints returns a boolean if a field has been set.

func (*ScpDomainInfo) HasScpPorts ¶

func (o *ScpDomainInfo) HasScpPorts() bool

HasScpPorts returns a boolean if a field has been set.

func (*ScpDomainInfo) HasScpPrefix ¶

func (o *ScpDomainInfo) HasScpPrefix() bool

HasScpPrefix returns a boolean if a field has been set.

func (ScpDomainInfo) MarshalJSON ¶

func (o ScpDomainInfo) MarshalJSON() ([]byte, error)

func (*ScpDomainInfo) SetScpFqdn ¶

func (o *ScpDomainInfo) SetScpFqdn(v string)

SetScpFqdn gets a reference to the given string and assigns it to the ScpFqdn field.

func (*ScpDomainInfo) SetScpIpEndPoints ¶

func (o *ScpDomainInfo) SetScpIpEndPoints(v []IpEndPoint)

SetScpIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the ScpIpEndPoints field.

func (*ScpDomainInfo) SetScpPorts ¶

func (o *ScpDomainInfo) SetScpPorts(v map[string]int32)

SetScpPorts gets a reference to the given map[string]int32 and assigns it to the ScpPorts field.

func (*ScpDomainInfo) SetScpPrefix ¶

func (o *ScpDomainInfo) SetScpPrefix(v string)

SetScpPrefix gets a reference to the given string and assigns it to the ScpPrefix field.

func (ScpDomainInfo) ToMap ¶

func (o ScpDomainInfo) ToMap() (map[string]interface{}, error)

type ScpInfo ¶

type ScpInfo struct {
	// A map (list of key-value pairs) where the key of the map shall be the string identifying an SCP domain
	ScpDomainInfoList *map[string]ScpDomainInfo `json:"scpDomainInfoList,omitempty"`
	ScpPrefix         *string                   `json:"scpPrefix,omitempty"`
	// Port numbers for HTTP and HTTPS. The key of the map shall be \"http\" or \"https\".
	ScpPorts          *map[string]int32  `json:"scpPorts,omitempty"`
	AddressDomains    []string           `json:"addressDomains,omitempty"`
	Ipv4Addresses     []string           `json:"ipv4Addresses,omitempty"`
	Ipv6Prefixes      []Ipv6Prefix       `json:"ipv6Prefixes,omitempty"`
	Ipv4AddrRanges    []Ipv4AddressRange `json:"ipv4AddrRanges,omitempty"`
	Ipv6PrefixRanges  []Ipv6PrefixRange  `json:"ipv6PrefixRanges,omitempty"`
	ServedNfSetIdList []string           `json:"servedNfSetIdList,omitempty"`
	RemotePlmnList    []PlmnId           `json:"remotePlmnList,omitempty"`
	RemoteSnpnList    []PlmnIdNid        `json:"remoteSnpnList,omitempty"`
	IpReachability    *IpReachability    `json:"ipReachability,omitempty"`
	ScpCapabilities   []ScpCapability    `json:"scpCapabilities,omitempty"`
}

ScpInfo Information of an SCP Instance

func NewScpInfo ¶

func NewScpInfo() *ScpInfo

NewScpInfo instantiates a new ScpInfo 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 NewScpInfoWithDefaults ¶

func NewScpInfoWithDefaults() *ScpInfo

NewScpInfoWithDefaults instantiates a new ScpInfo 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 (*ScpInfo) GetAddressDomains ¶

func (o *ScpInfo) GetAddressDomains() []string

GetAddressDomains returns the AddressDomains field value if set, zero value otherwise.

func (*ScpInfo) GetAddressDomainsOk ¶

func (o *ScpInfo) GetAddressDomainsOk() ([]string, bool)

GetAddressDomainsOk returns a tuple with the AddressDomains field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpInfo) GetIpReachability ¶

func (o *ScpInfo) GetIpReachability() IpReachability

GetIpReachability returns the IpReachability field value if set, zero value otherwise.

func (*ScpInfo) GetIpReachabilityOk ¶

func (o *ScpInfo) GetIpReachabilityOk() (*IpReachability, bool)

GetIpReachabilityOk returns a tuple with the IpReachability field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpInfo) GetIpv4AddrRanges ¶

func (o *ScpInfo) GetIpv4AddrRanges() []Ipv4AddressRange

GetIpv4AddrRanges returns the Ipv4AddrRanges field value if set, zero value otherwise.

func (*ScpInfo) GetIpv4AddrRangesOk ¶

func (o *ScpInfo) GetIpv4AddrRangesOk() ([]Ipv4AddressRange, bool)

GetIpv4AddrRangesOk returns a tuple with the Ipv4AddrRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpInfo) GetIpv4Addresses ¶

func (o *ScpInfo) GetIpv4Addresses() []string

GetIpv4Addresses returns the Ipv4Addresses field value if set, zero value otherwise.

func (*ScpInfo) GetIpv4AddressesOk ¶

func (o *ScpInfo) GetIpv4AddressesOk() ([]string, bool)

GetIpv4AddressesOk returns a tuple with the Ipv4Addresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpInfo) GetIpv6PrefixRanges ¶

func (o *ScpInfo) GetIpv6PrefixRanges() []Ipv6PrefixRange

GetIpv6PrefixRanges returns the Ipv6PrefixRanges field value if set, zero value otherwise.

func (*ScpInfo) GetIpv6PrefixRangesOk ¶

func (o *ScpInfo) GetIpv6PrefixRangesOk() ([]Ipv6PrefixRange, bool)

GetIpv6PrefixRangesOk returns a tuple with the Ipv6PrefixRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpInfo) GetIpv6Prefixes ¶

func (o *ScpInfo) GetIpv6Prefixes() []Ipv6Prefix

GetIpv6Prefixes returns the Ipv6Prefixes field value if set, zero value otherwise.

func (*ScpInfo) GetIpv6PrefixesOk ¶

func (o *ScpInfo) GetIpv6PrefixesOk() ([]Ipv6Prefix, bool)

GetIpv6PrefixesOk returns a tuple with the Ipv6Prefixes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpInfo) GetRemotePlmnList ¶

func (o *ScpInfo) GetRemotePlmnList() []PlmnId

GetRemotePlmnList returns the RemotePlmnList field value if set, zero value otherwise.

func (*ScpInfo) GetRemotePlmnListOk ¶

func (o *ScpInfo) GetRemotePlmnListOk() ([]PlmnId, bool)

GetRemotePlmnListOk returns a tuple with the RemotePlmnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpInfo) GetRemoteSnpnList ¶

func (o *ScpInfo) GetRemoteSnpnList() []PlmnIdNid

GetRemoteSnpnList returns the RemoteSnpnList field value if set, zero value otherwise.

func (*ScpInfo) GetRemoteSnpnListOk ¶

func (o *ScpInfo) GetRemoteSnpnListOk() ([]PlmnIdNid, bool)

GetRemoteSnpnListOk returns a tuple with the RemoteSnpnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpInfo) GetScpCapabilities ¶

func (o *ScpInfo) GetScpCapabilities() []ScpCapability

GetScpCapabilities returns the ScpCapabilities field value if set, zero value otherwise.

func (*ScpInfo) GetScpCapabilitiesOk ¶

func (o *ScpInfo) GetScpCapabilitiesOk() ([]ScpCapability, bool)

GetScpCapabilitiesOk returns a tuple with the ScpCapabilities field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpInfo) GetScpDomainInfoList ¶

func (o *ScpInfo) GetScpDomainInfoList() map[string]ScpDomainInfo

GetScpDomainInfoList returns the ScpDomainInfoList field value if set, zero value otherwise.

func (*ScpInfo) GetScpDomainInfoListOk ¶

func (o *ScpInfo) GetScpDomainInfoListOk() (*map[string]ScpDomainInfo, bool)

GetScpDomainInfoListOk returns a tuple with the ScpDomainInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpInfo) GetScpPorts ¶

func (o *ScpInfo) GetScpPorts() map[string]int32

GetScpPorts returns the ScpPorts field value if set, zero value otherwise.

func (*ScpInfo) GetScpPortsOk ¶

func (o *ScpInfo) GetScpPortsOk() (*map[string]int32, bool)

GetScpPortsOk returns a tuple with the ScpPorts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpInfo) GetScpPrefix ¶

func (o *ScpInfo) GetScpPrefix() string

GetScpPrefix returns the ScpPrefix field value if set, zero value otherwise.

func (*ScpInfo) GetScpPrefixOk ¶

func (o *ScpInfo) GetScpPrefixOk() (*string, bool)

GetScpPrefixOk returns a tuple with the ScpPrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpInfo) GetServedNfSetIdList ¶

func (o *ScpInfo) GetServedNfSetIdList() []string

GetServedNfSetIdList returns the ServedNfSetIdList field value if set, zero value otherwise.

func (*ScpInfo) GetServedNfSetIdListOk ¶

func (o *ScpInfo) GetServedNfSetIdListOk() ([]string, bool)

GetServedNfSetIdListOk returns a tuple with the ServedNfSetIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScpInfo) HasAddressDomains ¶

func (o *ScpInfo) HasAddressDomains() bool

HasAddressDomains returns a boolean if a field has been set.

func (*ScpInfo) HasIpReachability ¶

func (o *ScpInfo) HasIpReachability() bool

HasIpReachability returns a boolean if a field has been set.

func (*ScpInfo) HasIpv4AddrRanges ¶

func (o *ScpInfo) HasIpv4AddrRanges() bool

HasIpv4AddrRanges returns a boolean if a field has been set.

func (*ScpInfo) HasIpv4Addresses ¶

func (o *ScpInfo) HasIpv4Addresses() bool

HasIpv4Addresses returns a boolean if a field has been set.

func (*ScpInfo) HasIpv6PrefixRanges ¶

func (o *ScpInfo) HasIpv6PrefixRanges() bool

HasIpv6PrefixRanges returns a boolean if a field has been set.

func (*ScpInfo) HasIpv6Prefixes ¶

func (o *ScpInfo) HasIpv6Prefixes() bool

HasIpv6Prefixes returns a boolean if a field has been set.

func (*ScpInfo) HasRemotePlmnList ¶

func (o *ScpInfo) HasRemotePlmnList() bool

HasRemotePlmnList returns a boolean if a field has been set.

func (*ScpInfo) HasRemoteSnpnList ¶

func (o *ScpInfo) HasRemoteSnpnList() bool

HasRemoteSnpnList returns a boolean if a field has been set.

func (*ScpInfo) HasScpCapabilities ¶

func (o *ScpInfo) HasScpCapabilities() bool

HasScpCapabilities returns a boolean if a field has been set.

func (*ScpInfo) HasScpDomainInfoList ¶

func (o *ScpInfo) HasScpDomainInfoList() bool

HasScpDomainInfoList returns a boolean if a field has been set.

func (*ScpInfo) HasScpPorts ¶

func (o *ScpInfo) HasScpPorts() bool

HasScpPorts returns a boolean if a field has been set.

func (*ScpInfo) HasScpPrefix ¶

func (o *ScpInfo) HasScpPrefix() bool

HasScpPrefix returns a boolean if a field has been set.

func (*ScpInfo) HasServedNfSetIdList ¶

func (o *ScpInfo) HasServedNfSetIdList() bool

HasServedNfSetIdList returns a boolean if a field has been set.

func (ScpInfo) MarshalJSON ¶

func (o ScpInfo) MarshalJSON() ([]byte, error)

func (*ScpInfo) SetAddressDomains ¶

func (o *ScpInfo) SetAddressDomains(v []string)

SetAddressDomains gets a reference to the given []string and assigns it to the AddressDomains field.

func (*ScpInfo) SetIpReachability ¶

func (o *ScpInfo) SetIpReachability(v IpReachability)

SetIpReachability gets a reference to the given IpReachability and assigns it to the IpReachability field.

func (*ScpInfo) SetIpv4AddrRanges ¶

func (o *ScpInfo) SetIpv4AddrRanges(v []Ipv4AddressRange)

SetIpv4AddrRanges gets a reference to the given []Ipv4AddressRange and assigns it to the Ipv4AddrRanges field.

func (*ScpInfo) SetIpv4Addresses ¶

func (o *ScpInfo) SetIpv4Addresses(v []string)

SetIpv4Addresses gets a reference to the given []string and assigns it to the Ipv4Addresses field.

func (*ScpInfo) SetIpv6PrefixRanges ¶

func (o *ScpInfo) SetIpv6PrefixRanges(v []Ipv6PrefixRange)

SetIpv6PrefixRanges gets a reference to the given []Ipv6PrefixRange and assigns it to the Ipv6PrefixRanges field.

func (*ScpInfo) SetIpv6Prefixes ¶

func (o *ScpInfo) SetIpv6Prefixes(v []Ipv6Prefix)

SetIpv6Prefixes gets a reference to the given []Ipv6Prefix and assigns it to the Ipv6Prefixes field.

func (*ScpInfo) SetRemotePlmnList ¶

func (o *ScpInfo) SetRemotePlmnList(v []PlmnId)

SetRemotePlmnList gets a reference to the given []PlmnId and assigns it to the RemotePlmnList field.

func (*ScpInfo) SetRemoteSnpnList ¶

func (o *ScpInfo) SetRemoteSnpnList(v []PlmnIdNid)

SetRemoteSnpnList gets a reference to the given []PlmnIdNid and assigns it to the RemoteSnpnList field.

func (*ScpInfo) SetScpCapabilities ¶

func (o *ScpInfo) SetScpCapabilities(v []ScpCapability)

SetScpCapabilities gets a reference to the given []ScpCapability and assigns it to the ScpCapabilities field.

func (*ScpInfo) SetScpDomainInfoList ¶

func (o *ScpInfo) SetScpDomainInfoList(v map[string]ScpDomainInfo)

SetScpDomainInfoList gets a reference to the given map[string]ScpDomainInfo and assigns it to the ScpDomainInfoList field.

func (*ScpInfo) SetScpPorts ¶

func (o *ScpInfo) SetScpPorts(v map[string]int32)

SetScpPorts gets a reference to the given map[string]int32 and assigns it to the ScpPorts field.

func (*ScpInfo) SetScpPrefix ¶

func (o *ScpInfo) SetScpPrefix(v string)

SetScpPrefix gets a reference to the given string and assigns it to the ScpPrefix field.

func (*ScpInfo) SetServedNfSetIdList ¶

func (o *ScpInfo) SetServedNfSetIdList(v []string)

SetServedNfSetIdList gets a reference to the given []string and assigns it to the ServedNfSetIdList field.

func (ScpInfo) ToMap ¶

func (o ScpInfo) ToMap() (map[string]interface{}, error)

type SdRange ¶

type SdRange struct {
	// First value identifying the start of an SD range. This string shall be formatted as specified for the sd attribute of the Snssai data type in clause 5.4.4.2.
	Start *string `json:"start,omitempty"`
	// Last value identifying the end of an SD range. This string shall be formatted as specified for the sd attribute of the Snssai data type in clause 5.4.4.2.
	End *string `json:"end,omitempty"`
}

SdRange A range of SDs (Slice Differentiators)

func NewSdRange ¶

func NewSdRange() *SdRange

NewSdRange instantiates a new SdRange 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 NewSdRangeWithDefaults ¶

func NewSdRangeWithDefaults() *SdRange

NewSdRangeWithDefaults instantiates a new SdRange 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 (*SdRange) GetEnd ¶

func (o *SdRange) GetEnd() string

GetEnd returns the End field value if set, zero value otherwise.

func (*SdRange) GetEndOk ¶

func (o *SdRange) GetEndOk() (*string, bool)

GetEndOk returns a tuple with the End field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SdRange) GetStart ¶

func (o *SdRange) GetStart() string

GetStart returns the Start field value if set, zero value otherwise.

func (*SdRange) GetStartOk ¶

func (o *SdRange) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SdRange) HasEnd ¶

func (o *SdRange) HasEnd() bool

HasEnd returns a boolean if a field has been set.

func (*SdRange) HasStart ¶

func (o *SdRange) HasStart() bool

HasStart returns a boolean if a field has been set.

func (SdRange) MarshalJSON ¶

func (o SdRange) MarshalJSON() ([]byte, error)

func (*SdRange) SetEnd ¶

func (o *SdRange) SetEnd(v string)

SetEnd gets a reference to the given string and assigns it to the End field.

func (*SdRange) SetStart ¶

func (o *SdRange) SetStart(v string)

SetStart gets a reference to the given string and assigns it to the Start field.

func (SdRange) ToMap ¶

func (o SdRange) ToMap() (map[string]interface{}, error)

type SeppInfo ¶

type SeppInfo struct {
	SeppPrefix *string `json:"seppPrefix,omitempty"`
	// Port numbers for HTTP and HTTPS. The key of the map shall be \"http\" or \"https\".
	SeppPorts      *map[string]int32 `json:"seppPorts,omitempty"`
	RemotePlmnList []PlmnId          `json:"remotePlmnList,omitempty"`
	RemoteSnpnList []PlmnIdNid       `json:"remoteSnpnList,omitempty"`
	// N32 purposes supported by the SEPP
	N32Purposes []N32Purpose `json:"n32Purposes,omitempty"`
}

SeppInfo Information of a SEPP Instance

func NewSeppInfo ¶

func NewSeppInfo() *SeppInfo

NewSeppInfo instantiates a new SeppInfo 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 NewSeppInfoWithDefaults ¶

func NewSeppInfoWithDefaults() *SeppInfo

NewSeppInfoWithDefaults instantiates a new SeppInfo 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 (*SeppInfo) GetN32Purposes ¶

func (o *SeppInfo) GetN32Purposes() []N32Purpose

GetN32Purposes returns the N32Purposes field value if set, zero value otherwise.

func (*SeppInfo) GetN32PurposesOk ¶

func (o *SeppInfo) GetN32PurposesOk() ([]N32Purpose, bool)

GetN32PurposesOk returns a tuple with the N32Purposes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeppInfo) GetRemotePlmnList ¶

func (o *SeppInfo) GetRemotePlmnList() []PlmnId

GetRemotePlmnList returns the RemotePlmnList field value if set, zero value otherwise.

func (*SeppInfo) GetRemotePlmnListOk ¶

func (o *SeppInfo) GetRemotePlmnListOk() ([]PlmnId, bool)

GetRemotePlmnListOk returns a tuple with the RemotePlmnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeppInfo) GetRemoteSnpnList ¶

func (o *SeppInfo) GetRemoteSnpnList() []PlmnIdNid

GetRemoteSnpnList returns the RemoteSnpnList field value if set, zero value otherwise.

func (*SeppInfo) GetRemoteSnpnListOk ¶

func (o *SeppInfo) GetRemoteSnpnListOk() ([]PlmnIdNid, bool)

GetRemoteSnpnListOk returns a tuple with the RemoteSnpnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeppInfo) GetSeppPorts ¶

func (o *SeppInfo) GetSeppPorts() map[string]int32

GetSeppPorts returns the SeppPorts field value if set, zero value otherwise.

func (*SeppInfo) GetSeppPortsOk ¶

func (o *SeppInfo) GetSeppPortsOk() (*map[string]int32, bool)

GetSeppPortsOk returns a tuple with the SeppPorts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeppInfo) GetSeppPrefix ¶

func (o *SeppInfo) GetSeppPrefix() string

GetSeppPrefix returns the SeppPrefix field value if set, zero value otherwise.

func (*SeppInfo) GetSeppPrefixOk ¶

func (o *SeppInfo) GetSeppPrefixOk() (*string, bool)

GetSeppPrefixOk returns a tuple with the SeppPrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SeppInfo) HasN32Purposes ¶

func (o *SeppInfo) HasN32Purposes() bool

HasN32Purposes returns a boolean if a field has been set.

func (*SeppInfo) HasRemotePlmnList ¶

func (o *SeppInfo) HasRemotePlmnList() bool

HasRemotePlmnList returns a boolean if a field has been set.

func (*SeppInfo) HasRemoteSnpnList ¶

func (o *SeppInfo) HasRemoteSnpnList() bool

HasRemoteSnpnList returns a boolean if a field has been set.

func (*SeppInfo) HasSeppPorts ¶

func (o *SeppInfo) HasSeppPorts() bool

HasSeppPorts returns a boolean if a field has been set.

func (*SeppInfo) HasSeppPrefix ¶

func (o *SeppInfo) HasSeppPrefix() bool

HasSeppPrefix returns a boolean if a field has been set.

func (SeppInfo) MarshalJSON ¶

func (o SeppInfo) MarshalJSON() ([]byte, error)

func (*SeppInfo) SetN32Purposes ¶

func (o *SeppInfo) SetN32Purposes(v []N32Purpose)

SetN32Purposes gets a reference to the given []N32Purpose and assigns it to the N32Purposes field.

func (*SeppInfo) SetRemotePlmnList ¶

func (o *SeppInfo) SetRemotePlmnList(v []PlmnId)

SetRemotePlmnList gets a reference to the given []PlmnId and assigns it to the RemotePlmnList field.

func (*SeppInfo) SetRemoteSnpnList ¶

func (o *SeppInfo) SetRemoteSnpnList(v []PlmnIdNid)

SetRemoteSnpnList gets a reference to the given []PlmnIdNid and assigns it to the RemoteSnpnList field.

func (*SeppInfo) SetSeppPorts ¶

func (o *SeppInfo) SetSeppPorts(v map[string]int32)

SetSeppPorts gets a reference to the given map[string]int32 and assigns it to the SeppPorts field.

func (*SeppInfo) SetSeppPrefix ¶

func (o *SeppInfo) SetSeppPrefix(v string)

SetSeppPrefix gets a reference to the given string and assigns it to the SeppPrefix field.

func (SeppInfo) ToMap ¶

func (o SeppInfo) ToMap() (map[string]interface{}, error)

type ServerConfiguration ¶

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations ¶

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL ¶

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable ¶

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type ServiceAreaId ¶

type ServiceAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code.
	Lac string `json:"lac"`
	// Service Area Code.
	Sac string `json:"sac"`
}

ServiceAreaId Contains a Service Area Identifier as defined in 3GPP TS 23.003, clause 12.5.

func NewServiceAreaId ¶

func NewServiceAreaId(plmnId PlmnId, lac string, sac string) *ServiceAreaId

NewServiceAreaId instantiates a new ServiceAreaId 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 NewServiceAreaIdWithDefaults ¶

func NewServiceAreaIdWithDefaults() *ServiceAreaId

NewServiceAreaIdWithDefaults instantiates a new ServiceAreaId 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 (*ServiceAreaId) GetLac ¶

func (o *ServiceAreaId) GetLac() string

GetLac returns the Lac field value

func (*ServiceAreaId) GetLacOk ¶

func (o *ServiceAreaId) GetLacOk() (*string, bool)

GetLacOk returns a tuple with the Lac field value and a boolean to check if the value has been set.

func (*ServiceAreaId) GetPlmnId ¶

func (o *ServiceAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*ServiceAreaId) GetPlmnIdOk ¶

func (o *ServiceAreaId) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*ServiceAreaId) GetSac ¶

func (o *ServiceAreaId) GetSac() string

GetSac returns the Sac field value

func (*ServiceAreaId) GetSacOk ¶

func (o *ServiceAreaId) GetSacOk() (*string, bool)

GetSacOk returns a tuple with the Sac field value and a boolean to check if the value has been set.

func (ServiceAreaId) MarshalJSON ¶

func (o ServiceAreaId) MarshalJSON() ([]byte, error)

func (*ServiceAreaId) SetLac ¶

func (o *ServiceAreaId) SetLac(v string)

SetLac sets field value

func (*ServiceAreaId) SetPlmnId ¶

func (o *ServiceAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*ServiceAreaId) SetSac ¶

func (o *ServiceAreaId) SetSac(v string)

SetSac sets field value

func (ServiceAreaId) ToMap ¶

func (o ServiceAreaId) ToMap() (map[string]interface{}, error)

type ServiceDataFlowDescription ¶

type ServiceDataFlowDescription struct {
	FlowDescription *IpPacketFilterSet `json:"flowDescription,omitempty"`
	DomainName      *string            `json:"domainName,omitempty"`
}

ServiceDataFlowDescription struct for ServiceDataFlowDescription

func NewServiceDataFlowDescription ¶

func NewServiceDataFlowDescription() *ServiceDataFlowDescription

NewServiceDataFlowDescription instantiates a new ServiceDataFlowDescription 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 NewServiceDataFlowDescriptionWithDefaults ¶

func NewServiceDataFlowDescriptionWithDefaults() *ServiceDataFlowDescription

NewServiceDataFlowDescriptionWithDefaults instantiates a new ServiceDataFlowDescription 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 (*ServiceDataFlowDescription) GetDomainName ¶

func (o *ServiceDataFlowDescription) GetDomainName() string

GetDomainName returns the DomainName field value if set, zero value otherwise.

func (*ServiceDataFlowDescription) GetDomainNameOk ¶

func (o *ServiceDataFlowDescription) GetDomainNameOk() (*string, bool)

GetDomainNameOk returns a tuple with the DomainName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceDataFlowDescription) GetFlowDescription ¶

func (o *ServiceDataFlowDescription) GetFlowDescription() IpPacketFilterSet

GetFlowDescription returns the FlowDescription field value if set, zero value otherwise.

func (*ServiceDataFlowDescription) GetFlowDescriptionOk ¶

func (o *ServiceDataFlowDescription) GetFlowDescriptionOk() (*IpPacketFilterSet, bool)

GetFlowDescriptionOk returns a tuple with the FlowDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceDataFlowDescription) HasDomainName ¶

func (o *ServiceDataFlowDescription) HasDomainName() bool

HasDomainName returns a boolean if a field has been set.

func (*ServiceDataFlowDescription) HasFlowDescription ¶

func (o *ServiceDataFlowDescription) HasFlowDescription() bool

HasFlowDescription returns a boolean if a field has been set.

func (ServiceDataFlowDescription) MarshalJSON ¶

func (o ServiceDataFlowDescription) MarshalJSON() ([]byte, error)

func (*ServiceDataFlowDescription) SetDomainName ¶

func (o *ServiceDataFlowDescription) SetDomainName(v string)

SetDomainName gets a reference to the given string and assigns it to the DomainName field.

func (*ServiceDataFlowDescription) SetFlowDescription ¶

func (o *ServiceDataFlowDescription) SetFlowDescription(v IpPacketFilterSet)

SetFlowDescription gets a reference to the given IpPacketFilterSet and assigns it to the FlowDescription field.

func (ServiceDataFlowDescription) ToMap ¶

func (o ServiceDataFlowDescription) ToMap() (map[string]interface{}, error)

type ServiceExperienceInfo ¶

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"`
}

ServiceExperienceInfo Represents service experience information.

func NewServiceExperienceInfo ¶

func NewServiceExperienceInfo(svcExprc SvcExperience) *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 NewServiceExperienceInfoWithDefaults ¶

func NewServiceExperienceInfoWithDefaults() *ServiceExperienceInfo

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 (*ServiceExperienceInfo) GetAppId ¶

func (o *ServiceExperienceInfo) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetAppIdOk ¶

func (o *ServiceExperienceInfo) GetAppIdOk() (*string, bool)

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 (*ServiceExperienceInfo) GetAppServerInst ¶

func (o *ServiceExperienceInfo) GetAppServerInst() AddrFqdn

GetAppServerInst returns the AppServerInst field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetAppServerInstOk ¶

func (o *ServiceExperienceInfo) GetAppServerInstOk() (*AddrFqdn, bool)

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 (*ServiceExperienceInfo) GetConfidence ¶

func (o *ServiceExperienceInfo) GetConfidence() int32

GetConfidence returns the Confidence field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetConfidenceOk ¶

func (o *ServiceExperienceInfo) GetConfidenceOk() (*int32, bool)

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 (*ServiceExperienceInfo) GetDnai ¶

func (o *ServiceExperienceInfo) GetDnai() string

GetDnai returns the Dnai field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetDnaiOk ¶

func (o *ServiceExperienceInfo) GetDnaiOk() (*string, bool)

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 (*ServiceExperienceInfo) GetDnn ¶

func (o *ServiceExperienceInfo) GetDnn() string

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetDnnOk ¶

func (o *ServiceExperienceInfo) GetDnnOk() (*string, bool)

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 (*ServiceExperienceInfo) GetNetworkArea ¶

func (o *ServiceExperienceInfo) GetNetworkArea() NetworkAreaInfo

GetNetworkArea returns the NetworkArea field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetNetworkAreaOk ¶

func (o *ServiceExperienceInfo) GetNetworkAreaOk() (*NetworkAreaInfo, bool)

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 (*ServiceExperienceInfo) GetNsiId ¶

func (o *ServiceExperienceInfo) GetNsiId() string

GetNsiId returns the NsiId field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetNsiIdOk ¶

func (o *ServiceExperienceInfo) GetNsiIdOk() (*string, bool)

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 (*ServiceExperienceInfo) GetRatFreq ¶

func (o *ServiceExperienceInfo) GetRatFreq() RatFreqInformation

GetRatFreq returns the RatFreq field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetRatFreqOk ¶

func (o *ServiceExperienceInfo) GetRatFreqOk() (*RatFreqInformation, bool)

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 (*ServiceExperienceInfo) GetRatio ¶

func (o *ServiceExperienceInfo) GetRatio() int32

GetRatio returns the Ratio field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetRatioOk ¶

func (o *ServiceExperienceInfo) GetRatioOk() (*int32, bool)

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 (*ServiceExperienceInfo) GetSnssai ¶

func (o *ServiceExperienceInfo) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetSnssaiOk ¶

func (o *ServiceExperienceInfo) GetSnssaiOk() (*Snssai, bool)

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 (*ServiceExperienceInfo) GetSrvExpcType ¶

func (o *ServiceExperienceInfo) GetSrvExpcType() ServiceExperienceType

GetSrvExpcType returns the SrvExpcType field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetSrvExpcTypeOk ¶

func (o *ServiceExperienceInfo) GetSrvExpcTypeOk() (*ServiceExperienceType, bool)

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 (*ServiceExperienceInfo) GetSupis ¶

func (o *ServiceExperienceInfo) GetSupis() []string

GetSupis returns the Supis field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetSupisOk ¶

func (o *ServiceExperienceInfo) GetSupisOk() ([]string, bool)

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 (*ServiceExperienceInfo) GetSvcExprc ¶

func (o *ServiceExperienceInfo) GetSvcExprc() SvcExperience

GetSvcExprc returns the SvcExprc field value

func (*ServiceExperienceInfo) GetSvcExprcOk ¶

func (o *ServiceExperienceInfo) GetSvcExprcOk() (*SvcExperience, bool)

GetSvcExprcOk returns a tuple with the SvcExprc field value and a boolean to check if the value has been set.

func (*ServiceExperienceInfo) GetSvcExprcVariance ¶

func (o *ServiceExperienceInfo) GetSvcExprcVariance() float32

GetSvcExprcVariance returns the SvcExprcVariance field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetSvcExprcVarianceOk ¶

func (o *ServiceExperienceInfo) GetSvcExprcVarianceOk() (*float32, bool)

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 (*ServiceExperienceInfo) GetUeLocs ¶

func (o *ServiceExperienceInfo) GetUeLocs() []LocationInfo

GetUeLocs returns the UeLocs field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetUeLocsOk ¶

func (o *ServiceExperienceInfo) GetUeLocsOk() ([]LocationInfo, bool)

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 (*ServiceExperienceInfo) GetUpfInfo ¶

func (o *ServiceExperienceInfo) GetUpfInfo() UpfInformation

GetUpfInfo returns the UpfInfo field value if set, zero value otherwise.

func (*ServiceExperienceInfo) GetUpfInfoOk ¶

func (o *ServiceExperienceInfo) GetUpfInfoOk() (*UpfInformation, bool)

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 (*ServiceExperienceInfo) HasAppId ¶

func (o *ServiceExperienceInfo) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasAppServerInst ¶

func (o *ServiceExperienceInfo) HasAppServerInst() bool

HasAppServerInst returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasConfidence ¶

func (o *ServiceExperienceInfo) HasConfidence() bool

HasConfidence returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasDnai ¶

func (o *ServiceExperienceInfo) HasDnai() bool

HasDnai returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasDnn ¶

func (o *ServiceExperienceInfo) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasNetworkArea ¶

func (o *ServiceExperienceInfo) HasNetworkArea() bool

HasNetworkArea returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasNsiId ¶

func (o *ServiceExperienceInfo) HasNsiId() bool

HasNsiId returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasRatFreq ¶

func (o *ServiceExperienceInfo) HasRatFreq() bool

HasRatFreq returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasRatio ¶

func (o *ServiceExperienceInfo) HasRatio() bool

HasRatio returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasSnssai ¶

func (o *ServiceExperienceInfo) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasSrvExpcType ¶

func (o *ServiceExperienceInfo) HasSrvExpcType() bool

HasSrvExpcType returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasSupis ¶

func (o *ServiceExperienceInfo) HasSupis() bool

HasSupis returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasSvcExprcVariance ¶

func (o *ServiceExperienceInfo) HasSvcExprcVariance() bool

HasSvcExprcVariance returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasUeLocs ¶

func (o *ServiceExperienceInfo) HasUeLocs() bool

HasUeLocs returns a boolean if a field has been set.

func (*ServiceExperienceInfo) HasUpfInfo ¶

func (o *ServiceExperienceInfo) HasUpfInfo() bool

HasUpfInfo returns a boolean if a field has been set.

func (ServiceExperienceInfo) MarshalJSON ¶

func (o ServiceExperienceInfo) MarshalJSON() ([]byte, error)

func (*ServiceExperienceInfo) SetAppId ¶

func (o *ServiceExperienceInfo) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*ServiceExperienceInfo) SetAppServerInst ¶

func (o *ServiceExperienceInfo) SetAppServerInst(v AddrFqdn)

SetAppServerInst gets a reference to the given AddrFqdn and assigns it to the AppServerInst field.

func (*ServiceExperienceInfo) SetConfidence ¶

func (o *ServiceExperienceInfo) SetConfidence(v int32)

SetConfidence gets a reference to the given int32 and assigns it to the Confidence field.

func (*ServiceExperienceInfo) SetDnai ¶

func (o *ServiceExperienceInfo) SetDnai(v string)

SetDnai gets a reference to the given string and assigns it to the Dnai field.

func (*ServiceExperienceInfo) SetDnn ¶

func (o *ServiceExperienceInfo) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*ServiceExperienceInfo) SetNetworkArea ¶

func (o *ServiceExperienceInfo) SetNetworkArea(v NetworkAreaInfo)

SetNetworkArea gets a reference to the given NetworkAreaInfo and assigns it to the NetworkArea field.

func (*ServiceExperienceInfo) SetNsiId ¶

func (o *ServiceExperienceInfo) SetNsiId(v string)

SetNsiId gets a reference to the given string and assigns it to the NsiId field.

func (*ServiceExperienceInfo) SetRatFreq ¶

func (o *ServiceExperienceInfo) SetRatFreq(v RatFreqInformation)

SetRatFreq gets a reference to the given RatFreqInformation and assigns it to the RatFreq field.

func (*ServiceExperienceInfo) SetRatio ¶

func (o *ServiceExperienceInfo) SetRatio(v int32)

SetRatio gets a reference to the given int32 and assigns it to the Ratio field.

func (*ServiceExperienceInfo) SetSnssai ¶

func (o *ServiceExperienceInfo) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (*ServiceExperienceInfo) SetSrvExpcType ¶

func (o *ServiceExperienceInfo) SetSrvExpcType(v ServiceExperienceType)

SetSrvExpcType gets a reference to the given ServiceExperienceType and assigns it to the SrvExpcType field.

func (*ServiceExperienceInfo) SetSupis ¶

func (o *ServiceExperienceInfo) SetSupis(v []string)

SetSupis gets a reference to the given []string and assigns it to the Supis field.

func (*ServiceExperienceInfo) SetSvcExprc ¶

func (o *ServiceExperienceInfo) SetSvcExprc(v SvcExperience)

SetSvcExprc sets field value

func (*ServiceExperienceInfo) SetSvcExprcVariance ¶

func (o *ServiceExperienceInfo) SetSvcExprcVariance(v float32)

SetSvcExprcVariance gets a reference to the given float32 and assigns it to the SvcExprcVariance field.

func (*ServiceExperienceInfo) SetUeLocs ¶

func (o *ServiceExperienceInfo) SetUeLocs(v []LocationInfo)

SetUeLocs gets a reference to the given []LocationInfo and assigns it to the UeLocs field.

func (*ServiceExperienceInfo) SetUpfInfo ¶

func (o *ServiceExperienceInfo) SetUpfInfo(v UpfInformation)

SetUpfInfo gets a reference to the given UpfInformation and assigns it to the UpfInfo field.

func (ServiceExperienceInfo) ToMap ¶

func (o ServiceExperienceInfo) ToMap() (map[string]interface{}, error)

type ServiceExperienceInfo1 ¶

type ServiceExperienceInfo1 struct {
	// String providing an application identifier.
	AppId          *string                        `json:"appId,omitempty"`
	Supis          []string                       `json:"supis,omitempty"`
	SvcExpPerFlows []ServiceExperienceInfoPerFlow `json:"svcExpPerFlows"`
}

ServiceExperienceInfo1 Contains service experience information associated with an application.

func NewServiceExperienceInfo1 ¶

func NewServiceExperienceInfo1(svcExpPerFlows []ServiceExperienceInfoPerFlow) *ServiceExperienceInfo1

NewServiceExperienceInfo1 instantiates a new ServiceExperienceInfo1 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 NewServiceExperienceInfo1WithDefaults ¶

func NewServiceExperienceInfo1WithDefaults() *ServiceExperienceInfo1

NewServiceExperienceInfo1WithDefaults instantiates a new ServiceExperienceInfo1 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 (*ServiceExperienceInfo1) GetAppId ¶

func (o *ServiceExperienceInfo1) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*ServiceExperienceInfo1) GetAppIdOk ¶

func (o *ServiceExperienceInfo1) GetAppIdOk() (*string, bool)

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 (*ServiceExperienceInfo1) GetSupis ¶

func (o *ServiceExperienceInfo1) GetSupis() []string

GetSupis returns the Supis field value if set, zero value otherwise.

func (*ServiceExperienceInfo1) GetSupisOk ¶

func (o *ServiceExperienceInfo1) GetSupisOk() ([]string, bool)

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 (*ServiceExperienceInfo1) GetSvcExpPerFlows ¶

func (o *ServiceExperienceInfo1) GetSvcExpPerFlows() []ServiceExperienceInfoPerFlow

GetSvcExpPerFlows returns the SvcExpPerFlows field value

func (*ServiceExperienceInfo1) GetSvcExpPerFlowsOk ¶

func (o *ServiceExperienceInfo1) GetSvcExpPerFlowsOk() ([]ServiceExperienceInfoPerFlow, bool)

GetSvcExpPerFlowsOk returns a tuple with the SvcExpPerFlows field value and a boolean to check if the value has been set.

func (*ServiceExperienceInfo1) HasAppId ¶

func (o *ServiceExperienceInfo1) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*ServiceExperienceInfo1) HasSupis ¶

func (o *ServiceExperienceInfo1) HasSupis() bool

HasSupis returns a boolean if a field has been set.

func (ServiceExperienceInfo1) MarshalJSON ¶

func (o ServiceExperienceInfo1) MarshalJSON() ([]byte, error)

func (*ServiceExperienceInfo1) SetAppId ¶

func (o *ServiceExperienceInfo1) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*ServiceExperienceInfo1) SetSupis ¶

func (o *ServiceExperienceInfo1) SetSupis(v []string)

SetSupis gets a reference to the given []string and assigns it to the Supis field.

func (*ServiceExperienceInfo1) SetSvcExpPerFlows ¶

func (o *ServiceExperienceInfo1) SetSvcExpPerFlows(v []ServiceExperienceInfoPerFlow)

SetSvcExpPerFlows sets field value

func (ServiceExperienceInfo1) ToMap ¶

func (o ServiceExperienceInfo1) ToMap() (map[string]interface{}, error)

type ServiceExperienceInfoPerApp ¶

type ServiceExperienceInfoPerApp struct {
	// String providing an application identifier.
	AppId          *string                        `json:"appId,omitempty"`
	AppServerIns   *AddrFqdn                      `json:"appServerIns,omitempty"`
	SvcExpPerFlows []ServiceExperienceInfoPerFlow `json:"svcExpPerFlows"`
	Gpsis          []string                       `json:"gpsis,omitempty"`
	Supis          []string                       `json:"supis,omitempty"`
}

ServiceExperienceInfoPerApp Contains service experience information associated with an application.

func NewServiceExperienceInfoPerApp ¶

func NewServiceExperienceInfoPerApp(svcExpPerFlows []ServiceExperienceInfoPerFlow) *ServiceExperienceInfoPerApp

NewServiceExperienceInfoPerApp instantiates a new ServiceExperienceInfoPerApp 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 NewServiceExperienceInfoPerAppWithDefaults ¶

func NewServiceExperienceInfoPerAppWithDefaults() *ServiceExperienceInfoPerApp

NewServiceExperienceInfoPerAppWithDefaults instantiates a new ServiceExperienceInfoPerApp 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 (*ServiceExperienceInfoPerApp) GetAppId ¶

func (o *ServiceExperienceInfoPerApp) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*ServiceExperienceInfoPerApp) GetAppIdOk ¶

func (o *ServiceExperienceInfoPerApp) GetAppIdOk() (*string, bool)

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 (*ServiceExperienceInfoPerApp) GetAppServerIns ¶

func (o *ServiceExperienceInfoPerApp) GetAppServerIns() AddrFqdn

GetAppServerIns returns the AppServerIns field value if set, zero value otherwise.

func (*ServiceExperienceInfoPerApp) GetAppServerInsOk ¶

func (o *ServiceExperienceInfoPerApp) GetAppServerInsOk() (*AddrFqdn, bool)

GetAppServerInsOk returns a tuple with the AppServerIns field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceExperienceInfoPerApp) GetGpsis ¶

func (o *ServiceExperienceInfoPerApp) GetGpsis() []string

GetGpsis returns the Gpsis field value if set, zero value otherwise.

func (*ServiceExperienceInfoPerApp) GetGpsisOk ¶

func (o *ServiceExperienceInfoPerApp) GetGpsisOk() ([]string, bool)

GetGpsisOk returns a tuple with the Gpsis field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceExperienceInfoPerApp) GetSupis ¶

func (o *ServiceExperienceInfoPerApp) GetSupis() []string

GetSupis returns the Supis field value if set, zero value otherwise.

func (*ServiceExperienceInfoPerApp) GetSupisOk ¶

func (o *ServiceExperienceInfoPerApp) GetSupisOk() ([]string, bool)

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 (*ServiceExperienceInfoPerApp) GetSvcExpPerFlows ¶

GetSvcExpPerFlows returns the SvcExpPerFlows field value

func (*ServiceExperienceInfoPerApp) GetSvcExpPerFlowsOk ¶

func (o *ServiceExperienceInfoPerApp) GetSvcExpPerFlowsOk() ([]ServiceExperienceInfoPerFlow, bool)

GetSvcExpPerFlowsOk returns a tuple with the SvcExpPerFlows field value and a boolean to check if the value has been set.

func (*ServiceExperienceInfoPerApp) HasAppId ¶

func (o *ServiceExperienceInfoPerApp) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*ServiceExperienceInfoPerApp) HasAppServerIns ¶

func (o *ServiceExperienceInfoPerApp) HasAppServerIns() bool

HasAppServerIns returns a boolean if a field has been set.

func (*ServiceExperienceInfoPerApp) HasGpsis ¶

func (o *ServiceExperienceInfoPerApp) HasGpsis() bool

HasGpsis returns a boolean if a field has been set.

func (*ServiceExperienceInfoPerApp) HasSupis ¶

func (o *ServiceExperienceInfoPerApp) HasSupis() bool

HasSupis returns a boolean if a field has been set.

func (ServiceExperienceInfoPerApp) MarshalJSON ¶

func (o ServiceExperienceInfoPerApp) MarshalJSON() ([]byte, error)

func (*ServiceExperienceInfoPerApp) SetAppId ¶

func (o *ServiceExperienceInfoPerApp) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*ServiceExperienceInfoPerApp) SetAppServerIns ¶

func (o *ServiceExperienceInfoPerApp) SetAppServerIns(v AddrFqdn)

SetAppServerIns gets a reference to the given AddrFqdn and assigns it to the AppServerIns field.

func (*ServiceExperienceInfoPerApp) SetGpsis ¶

func (o *ServiceExperienceInfoPerApp) SetGpsis(v []string)

SetGpsis gets a reference to the given []string and assigns it to the Gpsis field.

func (*ServiceExperienceInfoPerApp) SetSupis ¶

func (o *ServiceExperienceInfoPerApp) SetSupis(v []string)

SetSupis gets a reference to the given []string and assigns it to the Supis field.

func (*ServiceExperienceInfoPerApp) SetSvcExpPerFlows ¶

SetSvcExpPerFlows sets field value

func (ServiceExperienceInfoPerApp) ToMap ¶

func (o ServiceExperienceInfoPerApp) ToMap() (map[string]interface{}, error)

type ServiceExperienceInfoPerFlow ¶

type ServiceExperienceInfoPerFlow struct {
	SvcExprc  *SvcExperience `json:"svcExprc,omitempty"`
	TimeIntev *TimeWindow    `json:"timeIntev,omitempty"`
	// DNAI (Data network access identifier), see clause 5.6.7 of 3GPP TS 23.501.
	Dnai             *string             `json:"dnai,omitempty"`
	IpTrafficFilter  *FlowInfo           `json:"ipTrafficFilter,omitempty"`
	EthTrafficFilter *EthFlowDescription `json:"ethTrafficFilter,omitempty"`
}

ServiceExperienceInfoPerFlow Contains service experience information associated with a service flow.

func NewServiceExperienceInfoPerFlow ¶

func NewServiceExperienceInfoPerFlow() *ServiceExperienceInfoPerFlow

NewServiceExperienceInfoPerFlow instantiates a new ServiceExperienceInfoPerFlow 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 NewServiceExperienceInfoPerFlowWithDefaults ¶

func NewServiceExperienceInfoPerFlowWithDefaults() *ServiceExperienceInfoPerFlow

NewServiceExperienceInfoPerFlowWithDefaults instantiates a new ServiceExperienceInfoPerFlow 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 (*ServiceExperienceInfoPerFlow) GetDnai ¶

func (o *ServiceExperienceInfoPerFlow) GetDnai() string

GetDnai returns the Dnai field value if set, zero value otherwise.

func (*ServiceExperienceInfoPerFlow) GetDnaiOk ¶

func (o *ServiceExperienceInfoPerFlow) GetDnaiOk() (*string, bool)

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 (*ServiceExperienceInfoPerFlow) GetEthTrafficFilter ¶

func (o *ServiceExperienceInfoPerFlow) GetEthTrafficFilter() EthFlowDescription

GetEthTrafficFilter returns the EthTrafficFilter field value if set, zero value otherwise.

func (*ServiceExperienceInfoPerFlow) GetEthTrafficFilterOk ¶

func (o *ServiceExperienceInfoPerFlow) GetEthTrafficFilterOk() (*EthFlowDescription, bool)

GetEthTrafficFilterOk returns a tuple with the EthTrafficFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceExperienceInfoPerFlow) GetIpTrafficFilter ¶

func (o *ServiceExperienceInfoPerFlow) GetIpTrafficFilter() FlowInfo

GetIpTrafficFilter returns the IpTrafficFilter field value if set, zero value otherwise.

func (*ServiceExperienceInfoPerFlow) GetIpTrafficFilterOk ¶

func (o *ServiceExperienceInfoPerFlow) GetIpTrafficFilterOk() (*FlowInfo, bool)

GetIpTrafficFilterOk returns a tuple with the IpTrafficFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceExperienceInfoPerFlow) GetSvcExprc ¶

GetSvcExprc returns the SvcExprc field value if set, zero value otherwise.

func (*ServiceExperienceInfoPerFlow) GetSvcExprcOk ¶

func (o *ServiceExperienceInfoPerFlow) GetSvcExprcOk() (*SvcExperience, bool)

GetSvcExprcOk returns a tuple with the SvcExprc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceExperienceInfoPerFlow) GetTimeIntev ¶

func (o *ServiceExperienceInfoPerFlow) GetTimeIntev() TimeWindow

GetTimeIntev returns the TimeIntev field value if set, zero value otherwise.

func (*ServiceExperienceInfoPerFlow) GetTimeIntevOk ¶

func (o *ServiceExperienceInfoPerFlow) GetTimeIntevOk() (*TimeWindow, bool)

GetTimeIntevOk returns a tuple with the TimeIntev field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceExperienceInfoPerFlow) HasDnai ¶

func (o *ServiceExperienceInfoPerFlow) HasDnai() bool

HasDnai returns a boolean if a field has been set.

func (*ServiceExperienceInfoPerFlow) HasEthTrafficFilter ¶

func (o *ServiceExperienceInfoPerFlow) HasEthTrafficFilter() bool

HasEthTrafficFilter returns a boolean if a field has been set.

func (*ServiceExperienceInfoPerFlow) HasIpTrafficFilter ¶

func (o *ServiceExperienceInfoPerFlow) HasIpTrafficFilter() bool

HasIpTrafficFilter returns a boolean if a field has been set.

func (*ServiceExperienceInfoPerFlow) HasSvcExprc ¶

func (o *ServiceExperienceInfoPerFlow) HasSvcExprc() bool

HasSvcExprc returns a boolean if a field has been set.

func (*ServiceExperienceInfoPerFlow) HasTimeIntev ¶

func (o *ServiceExperienceInfoPerFlow) HasTimeIntev() bool

HasTimeIntev returns a boolean if a field has been set.

func (ServiceExperienceInfoPerFlow) MarshalJSON ¶

func (o ServiceExperienceInfoPerFlow) MarshalJSON() ([]byte, error)

func (*ServiceExperienceInfoPerFlow) SetDnai ¶

func (o *ServiceExperienceInfoPerFlow) SetDnai(v string)

SetDnai gets a reference to the given string and assigns it to the Dnai field.

func (*ServiceExperienceInfoPerFlow) SetEthTrafficFilter ¶

func (o *ServiceExperienceInfoPerFlow) SetEthTrafficFilter(v EthFlowDescription)

SetEthTrafficFilter gets a reference to the given EthFlowDescription and assigns it to the EthTrafficFilter field.

func (*ServiceExperienceInfoPerFlow) SetIpTrafficFilter ¶

func (o *ServiceExperienceInfoPerFlow) SetIpTrafficFilter(v FlowInfo)

SetIpTrafficFilter gets a reference to the given FlowInfo and assigns it to the IpTrafficFilter field.

func (*ServiceExperienceInfoPerFlow) SetSvcExprc ¶

func (o *ServiceExperienceInfoPerFlow) SetSvcExprc(v SvcExperience)

SetSvcExprc gets a reference to the given SvcExperience and assigns it to the SvcExprc field.

func (*ServiceExperienceInfoPerFlow) SetTimeIntev ¶

func (o *ServiceExperienceInfoPerFlow) SetTimeIntev(v TimeWindow)

SetTimeIntev gets a reference to the given TimeWindow and assigns it to the TimeIntev field.

func (ServiceExperienceInfoPerFlow) ToMap ¶

func (o ServiceExperienceInfoPerFlow) ToMap() (map[string]interface{}, error)

type ServiceExperienceType ¶

type ServiceExperienceType struct {
	String *string
}

ServiceExperienceType Possible values are: - VOICE: Indicates that the service experience analytics is for voice service. - VIDEO: Indicates that the service experience analytics is for video service. - OTHER: Indicates that the service experience analytics is for other service.

func (*ServiceExperienceType) MarshalJSON ¶

func (src *ServiceExperienceType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ServiceExperienceType) UnmarshalJSON ¶

func (dst *ServiceExperienceType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ServiceName ¶

type ServiceName struct {
	String *string
}

ServiceName Service names known to NRF

func (*ServiceName) MarshalJSON ¶

func (src *ServiceName) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ServiceName) UnmarshalJSON ¶

func (dst *ServiceName) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ServiceNameCond ¶

type ServiceNameCond struct {
	ServiceName ServiceName `json:"serviceName"`
}

ServiceNameCond Subscription to a set of NFs based on their support for a given Service Name

func NewServiceNameCond ¶

func NewServiceNameCond(serviceName ServiceName) *ServiceNameCond

NewServiceNameCond instantiates a new ServiceNameCond 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 NewServiceNameCondWithDefaults ¶

func NewServiceNameCondWithDefaults() *ServiceNameCond

NewServiceNameCondWithDefaults instantiates a new ServiceNameCond 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 (*ServiceNameCond) GetServiceName ¶

func (o *ServiceNameCond) GetServiceName() ServiceName

GetServiceName returns the ServiceName field value

func (*ServiceNameCond) GetServiceNameOk ¶

func (o *ServiceNameCond) GetServiceNameOk() (*ServiceName, bool)

GetServiceNameOk returns a tuple with the ServiceName field value and a boolean to check if the value has been set.

func (ServiceNameCond) MarshalJSON ¶

func (o ServiceNameCond) MarshalJSON() ([]byte, error)

func (*ServiceNameCond) SetServiceName ¶

func (o *ServiceNameCond) SetServiceName(v ServiceName)

SetServiceName sets field value

func (ServiceNameCond) ToMap ¶

func (o ServiceNameCond) ToMap() (map[string]interface{}, error)

type ServiceNameListCond ¶

type ServiceNameListCond struct {
	ConditionType   string        `json:"conditionType"`
	ServiceNameList []ServiceName `json:"serviceNameList"`
}

ServiceNameListCond Subscription to a set of NFs based on their support for a Service Name in the Servic Name list

func NewServiceNameListCond ¶

func NewServiceNameListCond(conditionType string, serviceNameList []ServiceName) *ServiceNameListCond

NewServiceNameListCond instantiates a new ServiceNameListCond 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 NewServiceNameListCondWithDefaults ¶

func NewServiceNameListCondWithDefaults() *ServiceNameListCond

NewServiceNameListCondWithDefaults instantiates a new ServiceNameListCond 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 (*ServiceNameListCond) GetConditionType ¶

func (o *ServiceNameListCond) GetConditionType() string

GetConditionType returns the ConditionType field value

func (*ServiceNameListCond) GetConditionTypeOk ¶

func (o *ServiceNameListCond) GetConditionTypeOk() (*string, bool)

GetConditionTypeOk returns a tuple with the ConditionType field value and a boolean to check if the value has been set.

func (*ServiceNameListCond) GetServiceNameList ¶

func (o *ServiceNameListCond) GetServiceNameList() []ServiceName

GetServiceNameList returns the ServiceNameList field value

func (*ServiceNameListCond) GetServiceNameListOk ¶

func (o *ServiceNameListCond) GetServiceNameListOk() ([]ServiceName, bool)

GetServiceNameListOk returns a tuple with the ServiceNameList field value and a boolean to check if the value has been set.

func (ServiceNameListCond) MarshalJSON ¶

func (o ServiceNameListCond) MarshalJSON() ([]byte, error)

func (*ServiceNameListCond) SetConditionType ¶

func (o *ServiceNameListCond) SetConditionType(v string)

SetConditionType sets field value

func (*ServiceNameListCond) SetServiceNameList ¶

func (o *ServiceNameListCond) SetServiceNameList(v []ServiceName)

SetServiceNameList sets field value

func (ServiceNameListCond) ToMap ¶

func (o ServiceNameListCond) ToMap() (map[string]interface{}, error)

type SessInactTimerForUeComm ¶

type SessInactTimerForUeComm struct {
	// Unsigned integer identifying a PDU session, within the range 0 to 255, as specified in  clause 11.2.3.1b, bits 1 to 8, of 3GPP TS 24.007. If the PDU Session ID is allocated by the  Core Network for UEs not supporting N1 mode, reserved range 64 to 95 is used. PDU Session ID  within the reserved range is only visible in the Core Network.
	N4SessId int32 `json:"n4SessId"`
	// indicating a time in seconds.
	SessInactiveTimer int32 `json:"sessInactiveTimer"`
}

SessInactTimerForUeComm Represents the N4 Session inactivity timer.

func NewSessInactTimerForUeComm ¶

func NewSessInactTimerForUeComm(n4SessId int32, sessInactiveTimer int32) *SessInactTimerForUeComm

NewSessInactTimerForUeComm instantiates a new SessInactTimerForUeComm 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 NewSessInactTimerForUeCommWithDefaults ¶

func NewSessInactTimerForUeCommWithDefaults() *SessInactTimerForUeComm

NewSessInactTimerForUeCommWithDefaults instantiates a new SessInactTimerForUeComm 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 (*SessInactTimerForUeComm) GetN4SessId ¶

func (o *SessInactTimerForUeComm) GetN4SessId() int32

GetN4SessId returns the N4SessId field value

func (*SessInactTimerForUeComm) GetN4SessIdOk ¶

func (o *SessInactTimerForUeComm) GetN4SessIdOk() (*int32, bool)

GetN4SessIdOk returns a tuple with the N4SessId field value and a boolean to check if the value has been set.

func (*SessInactTimerForUeComm) GetSessInactiveTimer ¶

func (o *SessInactTimerForUeComm) GetSessInactiveTimer() int32

GetSessInactiveTimer returns the SessInactiveTimer field value

func (*SessInactTimerForUeComm) GetSessInactiveTimerOk ¶

func (o *SessInactTimerForUeComm) GetSessInactiveTimerOk() (*int32, bool)

GetSessInactiveTimerOk returns a tuple with the SessInactiveTimer field value and a boolean to check if the value has been set.

func (SessInactTimerForUeComm) MarshalJSON ¶

func (o SessInactTimerForUeComm) MarshalJSON() ([]byte, error)

func (*SessInactTimerForUeComm) SetN4SessId ¶

func (o *SessInactTimerForUeComm) SetN4SessId(v int32)

SetN4SessId sets field value

func (*SessInactTimerForUeComm) SetSessInactiveTimer ¶

func (o *SessInactTimerForUeComm) SetSessInactiveTimer(v int32)

SetSessInactiveTimer sets field value

func (SessInactTimerForUeComm) ToMap ¶

func (o SessInactTimerForUeComm) ToMap() (map[string]interface{}, error)

type SharedDataIdRange ¶

type SharedDataIdRange struct {
	Pattern *string `json:"pattern,omitempty"`
}

SharedDataIdRange A range of SharedDataIds based on regular-expression matching

func NewSharedDataIdRange ¶

func NewSharedDataIdRange() *SharedDataIdRange

NewSharedDataIdRange instantiates a new SharedDataIdRange 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 NewSharedDataIdRangeWithDefaults ¶

func NewSharedDataIdRangeWithDefaults() *SharedDataIdRange

NewSharedDataIdRangeWithDefaults instantiates a new SharedDataIdRange 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 (*SharedDataIdRange) GetPattern ¶

func (o *SharedDataIdRange) GetPattern() string

GetPattern returns the Pattern field value if set, zero value otherwise.

func (*SharedDataIdRange) GetPatternOk ¶

func (o *SharedDataIdRange) GetPatternOk() (*string, bool)

GetPatternOk returns a tuple with the Pattern field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SharedDataIdRange) HasPattern ¶

func (o *SharedDataIdRange) HasPattern() bool

HasPattern returns a boolean if a field has been set.

func (SharedDataIdRange) MarshalJSON ¶

func (o SharedDataIdRange) MarshalJSON() ([]byte, error)

func (*SharedDataIdRange) SetPattern ¶

func (o *SharedDataIdRange) SetPattern(v string)

SetPattern gets a reference to the given string and assigns it to the Pattern field.

func (SharedDataIdRange) ToMap ¶

func (o SharedDataIdRange) ToMap() (map[string]interface{}, error)

type SliceLoadLevelInformation ¶

type SliceLoadLevelInformation struct {
	// Load level information of the network slice and the optionally associated network slice  instance.
	LoadLevelInformation int32 `json:"loadLevelInformation"`
	// Identification(s) of network slice to which the subscription applies.
	Snssais []Snssai `json:"snssais"`
}

SliceLoadLevelInformation Contains load level information applicable for one or several slices.

func NewSliceLoadLevelInformation ¶

func NewSliceLoadLevelInformation(loadLevelInformation int32, snssais []Snssai) *SliceLoadLevelInformation

NewSliceLoadLevelInformation instantiates a new SliceLoadLevelInformation 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 NewSliceLoadLevelInformationWithDefaults ¶

func NewSliceLoadLevelInformationWithDefaults() *SliceLoadLevelInformation

NewSliceLoadLevelInformationWithDefaults instantiates a new SliceLoadLevelInformation 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 (*SliceLoadLevelInformation) GetLoadLevelInformation ¶

func (o *SliceLoadLevelInformation) GetLoadLevelInformation() int32

GetLoadLevelInformation returns the LoadLevelInformation field value

func (*SliceLoadLevelInformation) GetLoadLevelInformationOk ¶

func (o *SliceLoadLevelInformation) GetLoadLevelInformationOk() (*int32, bool)

GetLoadLevelInformationOk returns a tuple with the LoadLevelInformation field value and a boolean to check if the value has been set.

func (*SliceLoadLevelInformation) GetSnssais ¶

func (o *SliceLoadLevelInformation) GetSnssais() []Snssai

GetSnssais returns the Snssais field value

func (*SliceLoadLevelInformation) GetSnssaisOk ¶

func (o *SliceLoadLevelInformation) GetSnssaisOk() ([]Snssai, bool)

GetSnssaisOk returns a tuple with the Snssais field value and a boolean to check if the value has been set.

func (SliceLoadLevelInformation) MarshalJSON ¶

func (o SliceLoadLevelInformation) MarshalJSON() ([]byte, error)

func (*SliceLoadLevelInformation) SetLoadLevelInformation ¶

func (o *SliceLoadLevelInformation) SetLoadLevelInformation(v int32)

SetLoadLevelInformation sets field value

func (*SliceLoadLevelInformation) SetSnssais ¶

func (o *SliceLoadLevelInformation) SetSnssais(v []Snssai)

SetSnssais sets field value

func (SliceLoadLevelInformation) ToMap ¶

func (o SliceLoadLevelInformation) ToMap() (map[string]interface{}, error)

type SmNasFromSmf ¶

type SmNasFromSmf struct {
	SmNasType string `json:"smNasType"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp time.Time `json:"timeStamp"`
	// indicating a time in seconds.
	BackoffTimer    int32           `json:"backoffTimer"`
	AppliedSmccType AppliedSmccType `json:"appliedSmccType"`
}

SmNasFromSmf Represents information on the SM congestion control applied SM NAS messages that SMF sends to UE for PDU Session.

func NewSmNasFromSmf ¶

func NewSmNasFromSmf(smNasType string, timeStamp time.Time, backoffTimer int32, appliedSmccType AppliedSmccType) *SmNasFromSmf

NewSmNasFromSmf instantiates a new SmNasFromSmf 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 NewSmNasFromSmfWithDefaults ¶

func NewSmNasFromSmfWithDefaults() *SmNasFromSmf

NewSmNasFromSmfWithDefaults instantiates a new SmNasFromSmf 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 (*SmNasFromSmf) GetAppliedSmccType ¶

func (o *SmNasFromSmf) GetAppliedSmccType() AppliedSmccType

GetAppliedSmccType returns the AppliedSmccType field value

func (*SmNasFromSmf) GetAppliedSmccTypeOk ¶

func (o *SmNasFromSmf) GetAppliedSmccTypeOk() (*AppliedSmccType, bool)

GetAppliedSmccTypeOk returns a tuple with the AppliedSmccType field value and a boolean to check if the value has been set.

func (*SmNasFromSmf) GetBackoffTimer ¶

func (o *SmNasFromSmf) GetBackoffTimer() int32

GetBackoffTimer returns the BackoffTimer field value

func (*SmNasFromSmf) GetBackoffTimerOk ¶

func (o *SmNasFromSmf) GetBackoffTimerOk() (*int32, bool)

GetBackoffTimerOk returns a tuple with the BackoffTimer field value and a boolean to check if the value has been set.

func (*SmNasFromSmf) GetSmNasType ¶

func (o *SmNasFromSmf) GetSmNasType() string

GetSmNasType returns the SmNasType field value

func (*SmNasFromSmf) GetSmNasTypeOk ¶

func (o *SmNasFromSmf) GetSmNasTypeOk() (*string, bool)

GetSmNasTypeOk returns a tuple with the SmNasType field value and a boolean to check if the value has been set.

func (*SmNasFromSmf) GetTimeStamp ¶

func (o *SmNasFromSmf) GetTimeStamp() time.Time

GetTimeStamp returns the TimeStamp field value

func (*SmNasFromSmf) GetTimeStampOk ¶

func (o *SmNasFromSmf) GetTimeStampOk() (*time.Time, bool)

GetTimeStampOk returns a tuple with the TimeStamp field value and a boolean to check if the value has been set.

func (SmNasFromSmf) MarshalJSON ¶

func (o SmNasFromSmf) MarshalJSON() ([]byte, error)

func (*SmNasFromSmf) SetAppliedSmccType ¶

func (o *SmNasFromSmf) SetAppliedSmccType(v AppliedSmccType)

SetAppliedSmccType sets field value

func (*SmNasFromSmf) SetBackoffTimer ¶

func (o *SmNasFromSmf) SetBackoffTimer(v int32)

SetBackoffTimer sets field value

func (*SmNasFromSmf) SetSmNasType ¶

func (o *SmNasFromSmf) SetSmNasType(v string)

SetSmNasType sets field value

func (*SmNasFromSmf) SetTimeStamp ¶

func (o *SmNasFromSmf) SetTimeStamp(v time.Time)

SetTimeStamp sets field value

func (SmNasFromSmf) ToMap ¶

func (o SmNasFromSmf) ToMap() (map[string]interface{}, error)

type SmNasFromUe ¶

type SmNasFromUe struct {
	SmNasType string `json:"smNasType"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp time.Time `json:"timeStamp"`
}

SmNasFromUe Represents information on the SM NAS messages that SMF receives from UE for PDU Session.

func NewSmNasFromUe ¶

func NewSmNasFromUe(smNasType string, timeStamp time.Time) *SmNasFromUe

NewSmNasFromUe instantiates a new SmNasFromUe 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 NewSmNasFromUeWithDefaults ¶

func NewSmNasFromUeWithDefaults() *SmNasFromUe

NewSmNasFromUeWithDefaults instantiates a new SmNasFromUe 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 (*SmNasFromUe) GetSmNasType ¶

func (o *SmNasFromUe) GetSmNasType() string

GetSmNasType returns the SmNasType field value

func (*SmNasFromUe) GetSmNasTypeOk ¶

func (o *SmNasFromUe) GetSmNasTypeOk() (*string, bool)

GetSmNasTypeOk returns a tuple with the SmNasType field value and a boolean to check if the value has been set.

func (*SmNasFromUe) GetTimeStamp ¶

func (o *SmNasFromUe) GetTimeStamp() time.Time

GetTimeStamp returns the TimeStamp field value

func (*SmNasFromUe) GetTimeStampOk ¶

func (o *SmNasFromUe) GetTimeStampOk() (*time.Time, bool)

GetTimeStampOk returns a tuple with the TimeStamp field value and a boolean to check if the value has been set.

func (SmNasFromUe) MarshalJSON ¶

func (o SmNasFromUe) MarshalJSON() ([]byte, error)

func (*SmNasFromUe) SetSmNasType ¶

func (o *SmNasFromUe) SetSmNasType(v string)

SetSmNasType sets field value

func (*SmNasFromUe) SetTimeStamp ¶

func (o *SmNasFromUe) SetTimeStamp(v time.Time)

SetTimeStamp sets field value

func (SmNasFromUe) ToMap ¶

func (o SmNasFromUe) ToMap() (map[string]interface{}, error)

type SmcceInfo ¶

type SmcceInfo struct {
	// 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"`
	Snssai      *Snssai     `json:"snssai,omitempty"`
	SmcceUeList SmcceUeList `json:"smcceUeList"`
}

SmcceInfo Represents the Session Management congestion control experience information.

func NewSmcceInfo ¶

func NewSmcceInfo(smcceUeList SmcceUeList) *SmcceInfo

NewSmcceInfo instantiates a new SmcceInfo 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 NewSmcceInfoWithDefaults ¶

func NewSmcceInfoWithDefaults() *SmcceInfo

NewSmcceInfoWithDefaults instantiates a new SmcceInfo 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 (*SmcceInfo) GetDnn ¶

func (o *SmcceInfo) GetDnn() string

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*SmcceInfo) GetDnnOk ¶

func (o *SmcceInfo) GetDnnOk() (*string, bool)

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 (*SmcceInfo) GetSmcceUeList ¶

func (o *SmcceInfo) GetSmcceUeList() SmcceUeList

GetSmcceUeList returns the SmcceUeList field value

func (*SmcceInfo) GetSmcceUeListOk ¶

func (o *SmcceInfo) GetSmcceUeListOk() (*SmcceUeList, bool)

GetSmcceUeListOk returns a tuple with the SmcceUeList field value and a boolean to check if the value has been set.

func (*SmcceInfo) GetSnssai ¶

func (o *SmcceInfo) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*SmcceInfo) GetSnssaiOk ¶

func (o *SmcceInfo) GetSnssaiOk() (*Snssai, bool)

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 (*SmcceInfo) HasDnn ¶

func (o *SmcceInfo) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*SmcceInfo) HasSnssai ¶

func (o *SmcceInfo) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (SmcceInfo) MarshalJSON ¶

func (o SmcceInfo) MarshalJSON() ([]byte, error)

func (*SmcceInfo) SetDnn ¶

func (o *SmcceInfo) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*SmcceInfo) SetSmcceUeList ¶

func (o *SmcceInfo) SetSmcceUeList(v SmcceUeList)

SetSmcceUeList sets field value

func (*SmcceInfo) SetSnssai ¶

func (o *SmcceInfo) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (SmcceInfo) ToMap ¶

func (o SmcceInfo) ToMap() (map[string]interface{}, error)

type SmcceUeList ¶

type SmcceUeList struct {
	Interface *interface{}
}

SmcceUeList Represents the List of UEs classified based on experience level of Session Management congestion control.

func (*SmcceUeList) MarshalJSON ¶

func (src *SmcceUeList) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SmcceUeList) UnmarshalJSON ¶

func (dst *SmcceUeList) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SmfEvent ¶

type SmfEvent struct {
	String *string
}

SmfEvent Possible values are: - AC_TY_CH: Access Type Change - UP_PATH_CH: UP Path Change - PDU_SES_REL: PDU Session Release - PLMN_CH: PLMN Change - UE_IP_CH: UE IP address change - RAT_TY_CH: RAT Type Change - DDDS: Downlink data delivery status - COMM_FAIL: Communication Failure - PDU_SES_EST: PDU Session Establishment - QFI_ALLOC: QFI allocation - QOS_MON: QoS Monitoring - SMCC_EXP: SM congestion control experience for PDU Session - DISPERSION: Session Management transaction dispersion - RED_TRANS_EXP: Redundant transmission experience for PDU Session - WLAN_INFO: WLAN information on PDU session for which Access Type is NON_3GPP_ACCESS and RAT Type is TRUSTED_WLAN - UPF_INFO: The UPF information, including the UPF ID/address/FQDN information. - UP_STATUS_INFO: The User Plane status information.

func (*SmfEvent) MarshalJSON ¶

func (src *SmfEvent) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SmfEvent) UnmarshalJSON ¶

func (dst *SmfEvent) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SmfInfo ¶

type SmfInfo struct {
	SNssaiSmfInfoList []SnssaiSmfInfoItem `json:"sNssaiSmfInfoList"`
	TaiList           []Tai               `json:"taiList,omitempty"`
	TaiRangeList      []TaiRange          `json:"taiRangeList,omitempty"`
	// Fully Qualified Domain Name
	PgwFqdn        *string      `json:"pgwFqdn,omitempty"`
	PgwIpAddrList  []IpAddr     `json:"pgwIpAddrList,omitempty"`
	AccessType     []AccessType `json:"accessType,omitempty"`
	Priority       *int32       `json:"priority,omitempty"`
	VsmfSupportInd *bool        `json:"vsmfSupportInd,omitempty"`
	PgwFqdnList    []string     `json:"pgwFqdnList,omitempty"`
	// Deprecated
	SmfOnboardingCapability *bool `json:"smfOnboardingCapability,omitempty"`
	IsmfSupportInd          *bool `json:"ismfSupportInd,omitempty"`
	SmfUPRPCapability       *bool `json:"smfUPRPCapability,omitempty"`
}

SmfInfo Information of an SMF NF Instance

func NewSmfInfo ¶

func NewSmfInfo(sNssaiSmfInfoList []SnssaiSmfInfoItem) *SmfInfo

NewSmfInfo instantiates a new SmfInfo 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 NewSmfInfoWithDefaults ¶

func NewSmfInfoWithDefaults() *SmfInfo

NewSmfInfoWithDefaults instantiates a new SmfInfo 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 (*SmfInfo) GetAccessType ¶

func (o *SmfInfo) GetAccessType() []AccessType

GetAccessType returns the AccessType field value if set, zero value otherwise.

func (*SmfInfo) GetAccessTypeOk ¶

func (o *SmfInfo) GetAccessTypeOk() ([]AccessType, bool)

GetAccessTypeOk returns a tuple with the AccessType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmfInfo) GetIsmfSupportInd ¶

func (o *SmfInfo) GetIsmfSupportInd() bool

GetIsmfSupportInd returns the IsmfSupportInd field value if set, zero value otherwise.

func (*SmfInfo) GetIsmfSupportIndOk ¶

func (o *SmfInfo) GetIsmfSupportIndOk() (*bool, bool)

GetIsmfSupportIndOk returns a tuple with the IsmfSupportInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmfInfo) GetPgwFqdn ¶

func (o *SmfInfo) GetPgwFqdn() string

GetPgwFqdn returns the PgwFqdn field value if set, zero value otherwise.

func (*SmfInfo) GetPgwFqdnList ¶

func (o *SmfInfo) GetPgwFqdnList() []string

GetPgwFqdnList returns the PgwFqdnList field value if set, zero value otherwise.

func (*SmfInfo) GetPgwFqdnListOk ¶

func (o *SmfInfo) GetPgwFqdnListOk() ([]string, bool)

GetPgwFqdnListOk returns a tuple with the PgwFqdnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmfInfo) GetPgwFqdnOk ¶

func (o *SmfInfo) GetPgwFqdnOk() (*string, bool)

GetPgwFqdnOk returns a tuple with the PgwFqdn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmfInfo) GetPgwIpAddrList ¶

func (o *SmfInfo) GetPgwIpAddrList() []IpAddr

GetPgwIpAddrList returns the PgwIpAddrList field value if set, zero value otherwise.

func (*SmfInfo) GetPgwIpAddrListOk ¶

func (o *SmfInfo) GetPgwIpAddrListOk() ([]IpAddr, bool)

GetPgwIpAddrListOk returns a tuple with the PgwIpAddrList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmfInfo) GetPriority ¶

func (o *SmfInfo) GetPriority() int32

GetPriority returns the Priority field value if set, zero value otherwise.

func (*SmfInfo) GetPriorityOk ¶

func (o *SmfInfo) GetPriorityOk() (*int32, bool)

GetPriorityOk returns a tuple with the Priority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmfInfo) GetSNssaiSmfInfoList ¶

func (o *SmfInfo) GetSNssaiSmfInfoList() []SnssaiSmfInfoItem

GetSNssaiSmfInfoList returns the SNssaiSmfInfoList field value

func (*SmfInfo) GetSNssaiSmfInfoListOk ¶

func (o *SmfInfo) GetSNssaiSmfInfoListOk() ([]SnssaiSmfInfoItem, bool)

GetSNssaiSmfInfoListOk returns a tuple with the SNssaiSmfInfoList field value and a boolean to check if the value has been set.

func (*SmfInfo) GetSmfOnboardingCapability ¶

func (o *SmfInfo) GetSmfOnboardingCapability() bool

GetSmfOnboardingCapability returns the SmfOnboardingCapability field value if set, zero value otherwise. Deprecated

func (*SmfInfo) GetSmfOnboardingCapabilityOk ¶

func (o *SmfInfo) GetSmfOnboardingCapabilityOk() (*bool, bool)

GetSmfOnboardingCapabilityOk returns a tuple with the SmfOnboardingCapability field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*SmfInfo) GetSmfUPRPCapability ¶

func (o *SmfInfo) GetSmfUPRPCapability() bool

GetSmfUPRPCapability returns the SmfUPRPCapability field value if set, zero value otherwise.

func (*SmfInfo) GetSmfUPRPCapabilityOk ¶

func (o *SmfInfo) GetSmfUPRPCapabilityOk() (*bool, bool)

GetSmfUPRPCapabilityOk returns a tuple with the SmfUPRPCapability field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmfInfo) GetTaiList ¶

func (o *SmfInfo) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*SmfInfo) GetTaiListOk ¶

func (o *SmfInfo) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmfInfo) GetTaiRangeList ¶

func (o *SmfInfo) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*SmfInfo) GetTaiRangeListOk ¶

func (o *SmfInfo) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmfInfo) GetVsmfSupportInd ¶

func (o *SmfInfo) GetVsmfSupportInd() bool

GetVsmfSupportInd returns the VsmfSupportInd field value if set, zero value otherwise.

func (*SmfInfo) GetVsmfSupportIndOk ¶

func (o *SmfInfo) GetVsmfSupportIndOk() (*bool, bool)

GetVsmfSupportIndOk returns a tuple with the VsmfSupportInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmfInfo) HasAccessType ¶

func (o *SmfInfo) HasAccessType() bool

HasAccessType returns a boolean if a field has been set.

func (*SmfInfo) HasIsmfSupportInd ¶

func (o *SmfInfo) HasIsmfSupportInd() bool

HasIsmfSupportInd returns a boolean if a field has been set.

func (*SmfInfo) HasPgwFqdn ¶

func (o *SmfInfo) HasPgwFqdn() bool

HasPgwFqdn returns a boolean if a field has been set.

func (*SmfInfo) HasPgwFqdnList ¶

func (o *SmfInfo) HasPgwFqdnList() bool

HasPgwFqdnList returns a boolean if a field has been set.

func (*SmfInfo) HasPgwIpAddrList ¶

func (o *SmfInfo) HasPgwIpAddrList() bool

HasPgwIpAddrList returns a boolean if a field has been set.

func (*SmfInfo) HasPriority ¶

func (o *SmfInfo) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*SmfInfo) HasSmfOnboardingCapability ¶

func (o *SmfInfo) HasSmfOnboardingCapability() bool

HasSmfOnboardingCapability returns a boolean if a field has been set.

func (*SmfInfo) HasSmfUPRPCapability ¶

func (o *SmfInfo) HasSmfUPRPCapability() bool

HasSmfUPRPCapability returns a boolean if a field has been set.

func (*SmfInfo) HasTaiList ¶

func (o *SmfInfo) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (*SmfInfo) HasTaiRangeList ¶

func (o *SmfInfo) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (*SmfInfo) HasVsmfSupportInd ¶

func (o *SmfInfo) HasVsmfSupportInd() bool

HasVsmfSupportInd returns a boolean if a field has been set.

func (SmfInfo) MarshalJSON ¶

func (o SmfInfo) MarshalJSON() ([]byte, error)

func (*SmfInfo) SetAccessType ¶

func (o *SmfInfo) SetAccessType(v []AccessType)

SetAccessType gets a reference to the given []AccessType and assigns it to the AccessType field.

func (*SmfInfo) SetIsmfSupportInd ¶

func (o *SmfInfo) SetIsmfSupportInd(v bool)

SetIsmfSupportInd gets a reference to the given bool and assigns it to the IsmfSupportInd field.

func (*SmfInfo) SetPgwFqdn ¶

func (o *SmfInfo) SetPgwFqdn(v string)

SetPgwFqdn gets a reference to the given string and assigns it to the PgwFqdn field.

func (*SmfInfo) SetPgwFqdnList ¶

func (o *SmfInfo) SetPgwFqdnList(v []string)

SetPgwFqdnList gets a reference to the given []string and assigns it to the PgwFqdnList field.

func (*SmfInfo) SetPgwIpAddrList ¶

func (o *SmfInfo) SetPgwIpAddrList(v []IpAddr)

SetPgwIpAddrList gets a reference to the given []IpAddr and assigns it to the PgwIpAddrList field.

func (*SmfInfo) SetPriority ¶

func (o *SmfInfo) SetPriority(v int32)

SetPriority gets a reference to the given int32 and assigns it to the Priority field.

func (*SmfInfo) SetSNssaiSmfInfoList ¶

func (o *SmfInfo) SetSNssaiSmfInfoList(v []SnssaiSmfInfoItem)

SetSNssaiSmfInfoList sets field value

func (*SmfInfo) SetSmfOnboardingCapability ¶

func (o *SmfInfo) SetSmfOnboardingCapability(v bool)

SetSmfOnboardingCapability gets a reference to the given bool and assigns it to the SmfOnboardingCapability field. Deprecated

func (*SmfInfo) SetSmfUPRPCapability ¶

func (o *SmfInfo) SetSmfUPRPCapability(v bool)

SetSmfUPRPCapability gets a reference to the given bool and assigns it to the SmfUPRPCapability field.

func (*SmfInfo) SetTaiList ¶

func (o *SmfInfo) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (*SmfInfo) SetTaiRangeList ¶

func (o *SmfInfo) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (*SmfInfo) SetVsmfSupportInd ¶

func (o *SmfInfo) SetVsmfSupportInd(v bool)

SetVsmfSupportInd gets a reference to the given bool and assigns it to the VsmfSupportInd field.

func (SmfInfo) ToMap ¶

func (o SmfInfo) ToMap() (map[string]interface{}, error)

type SmsfInfo ¶

type SmsfInfo struct {
	RoamingUeInd        *bool       `json:"roamingUeInd,omitempty"`
	RemotePlmnRangeList []PlmnRange `json:"remotePlmnRangeList,omitempty"`
}

SmsfInfo Specific Data for SMSF

func NewSmsfInfo ¶

func NewSmsfInfo() *SmsfInfo

NewSmsfInfo instantiates a new SmsfInfo 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 NewSmsfInfoWithDefaults ¶

func NewSmsfInfoWithDefaults() *SmsfInfo

NewSmsfInfoWithDefaults instantiates a new SmsfInfo 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 (*SmsfInfo) GetRemotePlmnRangeList ¶

func (o *SmsfInfo) GetRemotePlmnRangeList() []PlmnRange

GetRemotePlmnRangeList returns the RemotePlmnRangeList field value if set, zero value otherwise.

func (*SmsfInfo) GetRemotePlmnRangeListOk ¶

func (o *SmsfInfo) GetRemotePlmnRangeListOk() ([]PlmnRange, bool)

GetRemotePlmnRangeListOk returns a tuple with the RemotePlmnRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmsfInfo) GetRoamingUeInd ¶

func (o *SmsfInfo) GetRoamingUeInd() bool

GetRoamingUeInd returns the RoamingUeInd field value if set, zero value otherwise.

func (*SmsfInfo) GetRoamingUeIndOk ¶

func (o *SmsfInfo) GetRoamingUeIndOk() (*bool, bool)

GetRoamingUeIndOk returns a tuple with the RoamingUeInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmsfInfo) HasRemotePlmnRangeList ¶

func (o *SmsfInfo) HasRemotePlmnRangeList() bool

HasRemotePlmnRangeList returns a boolean if a field has been set.

func (*SmsfInfo) HasRoamingUeInd ¶

func (o *SmsfInfo) HasRoamingUeInd() bool

HasRoamingUeInd returns a boolean if a field has been set.

func (SmsfInfo) MarshalJSON ¶

func (o SmsfInfo) MarshalJSON() ([]byte, error)

func (*SmsfInfo) SetRemotePlmnRangeList ¶

func (o *SmsfInfo) SetRemotePlmnRangeList(v []PlmnRange)

SetRemotePlmnRangeList gets a reference to the given []PlmnRange and assigns it to the RemotePlmnRangeList field.

func (*SmsfInfo) SetRoamingUeInd ¶

func (o *SmsfInfo) SetRoamingUeInd(v bool)

SetRoamingUeInd gets a reference to the given bool and assigns it to the RoamingUeInd field.

func (SmsfInfo) ToMap ¶

func (o SmsfInfo) ToMap() (map[string]interface{}, error)

type Snssai ¶

type Snssai struct {
	// Unsigned integer, within the range 0 to 255, representing the Slice/Service Type.  It indicates the expected Network Slice behaviour in terms of features and services. Values 0 to 127 correspond to the standardized SST range. Values 128 to 255 correspond  to the Operator-specific range. See clause 28.4.2 of 3GPP TS 23.003. Standardized values are defined in clause 5.15.2.2 of 3GPP TS 23.501.
	Sst int32 `json:"sst"`
	// 3-octet string, representing the Slice Differentiator, in hexadecimal representation. Each character in the string shall take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant character representing the 4 most significant bits of the SD shall appear first in the string, and the character representing the 4 least significant bit of the SD shall appear last in the string. This is an optional parameter that complements the Slice/Service type(s) to allow to  differentiate amongst multiple Network Slices of the same Slice/Service type. This IE shall be absent if no SD value is associated with the SST.
	Sd *string `json:"sd,omitempty"`
}

Snssai When Snssai needs to be converted to string (e.g. when used in maps as key), the string shall be composed of one to three digits \"sst\" optionally followed by \"-\" and 6 hexadecimal digits \"sd\".

func NewSnssai ¶

func NewSnssai(sst int32) *Snssai

NewSnssai instantiates a new Snssai 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 NewSnssaiWithDefaults ¶

func NewSnssaiWithDefaults() *Snssai

NewSnssaiWithDefaults instantiates a new Snssai 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 (*Snssai) GetSd ¶

func (o *Snssai) GetSd() string

GetSd returns the Sd field value if set, zero value otherwise.

func (*Snssai) GetSdOk ¶

func (o *Snssai) GetSdOk() (*string, bool)

GetSdOk returns a tuple with the Sd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snssai) GetSst ¶

func (o *Snssai) GetSst() int32

GetSst returns the Sst field value

func (*Snssai) GetSstOk ¶

func (o *Snssai) GetSstOk() (*int32, bool)

GetSstOk returns a tuple with the Sst field value and a boolean to check if the value has been set.

func (*Snssai) HasSd ¶

func (o *Snssai) HasSd() bool

HasSd returns a boolean if a field has been set.

func (Snssai) MarshalJSON ¶

func (o Snssai) MarshalJSON() ([]byte, error)

func (*Snssai) SetSd ¶

func (o *Snssai) SetSd(v string)

SetSd gets a reference to the given string and assigns it to the Sd field.

func (*Snssai) SetSst ¶

func (o *Snssai) SetSst(v int32)

SetSst sets field value

func (Snssai) ToMap ¶

func (o Snssai) ToMap() (map[string]interface{}, error)

type SnssaiEasdfInfoItem ¶

type SnssaiEasdfInfoItem struct {
	SNssai           ExtSnssai          `json:"sNssai"`
	DnnEasdfInfoList []DnnEasdfInfoItem `json:"dnnEasdfInfoList"`
}

SnssaiEasdfInfoItem Set of parameters supported by EASDF for a given S-NSSAI

func NewSnssaiEasdfInfoItem ¶

func NewSnssaiEasdfInfoItem(sNssai ExtSnssai, dnnEasdfInfoList []DnnEasdfInfoItem) *SnssaiEasdfInfoItem

NewSnssaiEasdfInfoItem instantiates a new SnssaiEasdfInfoItem 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 NewSnssaiEasdfInfoItemWithDefaults ¶

func NewSnssaiEasdfInfoItemWithDefaults() *SnssaiEasdfInfoItem

NewSnssaiEasdfInfoItemWithDefaults instantiates a new SnssaiEasdfInfoItem 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 (*SnssaiEasdfInfoItem) GetDnnEasdfInfoList ¶

func (o *SnssaiEasdfInfoItem) GetDnnEasdfInfoList() []DnnEasdfInfoItem

GetDnnEasdfInfoList returns the DnnEasdfInfoList field value

func (*SnssaiEasdfInfoItem) GetDnnEasdfInfoListOk ¶

func (o *SnssaiEasdfInfoItem) GetDnnEasdfInfoListOk() ([]DnnEasdfInfoItem, bool)

GetDnnEasdfInfoListOk returns a tuple with the DnnEasdfInfoList field value and a boolean to check if the value has been set.

func (*SnssaiEasdfInfoItem) GetSNssai ¶

func (o *SnssaiEasdfInfoItem) GetSNssai() ExtSnssai

GetSNssai returns the SNssai field value

func (*SnssaiEasdfInfoItem) GetSNssaiOk ¶

func (o *SnssaiEasdfInfoItem) GetSNssaiOk() (*ExtSnssai, bool)

GetSNssaiOk returns a tuple with the SNssai field value and a boolean to check if the value has been set.

func (SnssaiEasdfInfoItem) MarshalJSON ¶

func (o SnssaiEasdfInfoItem) MarshalJSON() ([]byte, error)

func (*SnssaiEasdfInfoItem) SetDnnEasdfInfoList ¶

func (o *SnssaiEasdfInfoItem) SetDnnEasdfInfoList(v []DnnEasdfInfoItem)

SetDnnEasdfInfoList sets field value

func (*SnssaiEasdfInfoItem) SetSNssai ¶

func (o *SnssaiEasdfInfoItem) SetSNssai(v ExtSnssai)

SetSNssai sets field value

func (SnssaiEasdfInfoItem) ToMap ¶

func (o SnssaiEasdfInfoItem) ToMap() (map[string]interface{}, error)

type SnssaiExtension ¶

type SnssaiExtension struct {
	// When present, it shall contain the range(s) of Slice Differentiator values supported for the Slice/Service Type value indicated in the sst attribute of the Snssai data type
	SdRanges []SdRange `json:"sdRanges,omitempty"`
	// When present, it shall be set to true, to indicate that all SD values are supported for the Slice/Service Type value indicated in the sst attribute of the Snssai data type.
	WildcardSd *bool `json:"wildcardSd,omitempty"`
}

SnssaiExtension Extensions to the Snssai data type, sdRanges and wildcardSd shall not be present simultaneously

func NewSnssaiExtension ¶

func NewSnssaiExtension() *SnssaiExtension

NewSnssaiExtension instantiates a new SnssaiExtension 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 NewSnssaiExtensionWithDefaults ¶

func NewSnssaiExtensionWithDefaults() *SnssaiExtension

NewSnssaiExtensionWithDefaults instantiates a new SnssaiExtension 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 (*SnssaiExtension) GetSdRanges ¶

func (o *SnssaiExtension) GetSdRanges() []SdRange

GetSdRanges returns the SdRanges field value if set, zero value otherwise.

func (*SnssaiExtension) GetSdRangesOk ¶

func (o *SnssaiExtension) GetSdRangesOk() ([]SdRange, bool)

GetSdRangesOk returns a tuple with the SdRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnssaiExtension) GetWildcardSd ¶

func (o *SnssaiExtension) GetWildcardSd() bool

GetWildcardSd returns the WildcardSd field value if set, zero value otherwise.

func (*SnssaiExtension) GetWildcardSdOk ¶

func (o *SnssaiExtension) GetWildcardSdOk() (*bool, bool)

GetWildcardSdOk returns a tuple with the WildcardSd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnssaiExtension) HasSdRanges ¶

func (o *SnssaiExtension) HasSdRanges() bool

HasSdRanges returns a boolean if a field has been set.

func (*SnssaiExtension) HasWildcardSd ¶

func (o *SnssaiExtension) HasWildcardSd() bool

HasWildcardSd returns a boolean if a field has been set.

func (SnssaiExtension) MarshalJSON ¶

func (o SnssaiExtension) MarshalJSON() ([]byte, error)

func (*SnssaiExtension) SetSdRanges ¶

func (o *SnssaiExtension) SetSdRanges(v []SdRange)

SetSdRanges gets a reference to the given []SdRange and assigns it to the SdRanges field.

func (*SnssaiExtension) SetWildcardSd ¶

func (o *SnssaiExtension) SetWildcardSd(v bool)

SetWildcardSd gets a reference to the given bool and assigns it to the WildcardSd field.

func (SnssaiExtension) ToMap ¶

func (o SnssaiExtension) ToMap() (map[string]interface{}, error)

type SnssaiInfoItem ¶

type SnssaiInfoItem struct {
	SNssai      ExtSnssai     `json:"sNssai"`
	DnnInfoList []DnnInfoItem `json:"dnnInfoList"`
}

SnssaiInfoItem Parameters supported by an NF for a given S-NSSAI Set of parameters supported by NF for a given S-NSSAI

func NewSnssaiInfoItem ¶

func NewSnssaiInfoItem(sNssai ExtSnssai, dnnInfoList []DnnInfoItem) *SnssaiInfoItem

NewSnssaiInfoItem instantiates a new SnssaiInfoItem 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 NewSnssaiInfoItemWithDefaults ¶

func NewSnssaiInfoItemWithDefaults() *SnssaiInfoItem

NewSnssaiInfoItemWithDefaults instantiates a new SnssaiInfoItem 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 (*SnssaiInfoItem) GetDnnInfoList ¶

func (o *SnssaiInfoItem) GetDnnInfoList() []DnnInfoItem

GetDnnInfoList returns the DnnInfoList field value

func (*SnssaiInfoItem) GetDnnInfoListOk ¶

func (o *SnssaiInfoItem) GetDnnInfoListOk() ([]DnnInfoItem, bool)

GetDnnInfoListOk returns a tuple with the DnnInfoList field value and a boolean to check if the value has been set.

func (*SnssaiInfoItem) GetSNssai ¶

func (o *SnssaiInfoItem) GetSNssai() ExtSnssai

GetSNssai returns the SNssai field value

func (*SnssaiInfoItem) GetSNssaiOk ¶

func (o *SnssaiInfoItem) GetSNssaiOk() (*ExtSnssai, bool)

GetSNssaiOk returns a tuple with the SNssai field value and a boolean to check if the value has been set.

func (SnssaiInfoItem) MarshalJSON ¶

func (o SnssaiInfoItem) MarshalJSON() ([]byte, error)

func (*SnssaiInfoItem) SetDnnInfoList ¶

func (o *SnssaiInfoItem) SetDnnInfoList(v []DnnInfoItem)

SetDnnInfoList sets field value

func (*SnssaiInfoItem) SetSNssai ¶

func (o *SnssaiInfoItem) SetSNssai(v ExtSnssai)

SetSNssai sets field value

func (SnssaiInfoItem) ToMap ¶

func (o SnssaiInfoItem) ToMap() (map[string]interface{}, error)

type SnssaiMbSmfInfoItem ¶

type SnssaiMbSmfInfoItem struct {
	SNssai      ExtSnssai          `json:"sNssai"`
	DnnInfoList []DnnMbSmfInfoItem `json:"dnnInfoList"`
}

SnssaiMbSmfInfoItem Parameters supported by an MB-SMF for a given S-NSSAI

func NewSnssaiMbSmfInfoItem ¶

func NewSnssaiMbSmfInfoItem(sNssai ExtSnssai, dnnInfoList []DnnMbSmfInfoItem) *SnssaiMbSmfInfoItem

NewSnssaiMbSmfInfoItem instantiates a new SnssaiMbSmfInfoItem 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 NewSnssaiMbSmfInfoItemWithDefaults ¶

func NewSnssaiMbSmfInfoItemWithDefaults() *SnssaiMbSmfInfoItem

NewSnssaiMbSmfInfoItemWithDefaults instantiates a new SnssaiMbSmfInfoItem 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 (*SnssaiMbSmfInfoItem) GetDnnInfoList ¶

func (o *SnssaiMbSmfInfoItem) GetDnnInfoList() []DnnMbSmfInfoItem

GetDnnInfoList returns the DnnInfoList field value

func (*SnssaiMbSmfInfoItem) GetDnnInfoListOk ¶

func (o *SnssaiMbSmfInfoItem) GetDnnInfoListOk() ([]DnnMbSmfInfoItem, bool)

GetDnnInfoListOk returns a tuple with the DnnInfoList field value and a boolean to check if the value has been set.

func (*SnssaiMbSmfInfoItem) GetSNssai ¶

func (o *SnssaiMbSmfInfoItem) GetSNssai() ExtSnssai

GetSNssai returns the SNssai field value

func (*SnssaiMbSmfInfoItem) GetSNssaiOk ¶

func (o *SnssaiMbSmfInfoItem) GetSNssaiOk() (*ExtSnssai, bool)

GetSNssaiOk returns a tuple with the SNssai field value and a boolean to check if the value has been set.

func (SnssaiMbSmfInfoItem) MarshalJSON ¶

func (o SnssaiMbSmfInfoItem) MarshalJSON() ([]byte, error)

func (*SnssaiMbSmfInfoItem) SetDnnInfoList ¶

func (o *SnssaiMbSmfInfoItem) SetDnnInfoList(v []DnnMbSmfInfoItem)

SetDnnInfoList sets field value

func (*SnssaiMbSmfInfoItem) SetSNssai ¶

func (o *SnssaiMbSmfInfoItem) SetSNssai(v ExtSnssai)

SetSNssai sets field value

func (SnssaiMbSmfInfoItem) ToMap ¶

func (o SnssaiMbSmfInfoItem) ToMap() (map[string]interface{}, error)

type SnssaiSmfInfoItem ¶

type SnssaiSmfInfoItem struct {
	SNssai         ExtSnssai        `json:"sNssai"`
	DnnSmfInfoList []DnnSmfInfoItem `json:"dnnSmfInfoList"`
}

SnssaiSmfInfoItem Set of parameters supported by SMF for a given S-NSSAI

func NewSnssaiSmfInfoItem ¶

func NewSnssaiSmfInfoItem(sNssai ExtSnssai, dnnSmfInfoList []DnnSmfInfoItem) *SnssaiSmfInfoItem

NewSnssaiSmfInfoItem instantiates a new SnssaiSmfInfoItem 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 NewSnssaiSmfInfoItemWithDefaults ¶

func NewSnssaiSmfInfoItemWithDefaults() *SnssaiSmfInfoItem

NewSnssaiSmfInfoItemWithDefaults instantiates a new SnssaiSmfInfoItem 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 (*SnssaiSmfInfoItem) GetDnnSmfInfoList ¶

func (o *SnssaiSmfInfoItem) GetDnnSmfInfoList() []DnnSmfInfoItem

GetDnnSmfInfoList returns the DnnSmfInfoList field value

func (*SnssaiSmfInfoItem) GetDnnSmfInfoListOk ¶

func (o *SnssaiSmfInfoItem) GetDnnSmfInfoListOk() ([]DnnSmfInfoItem, bool)

GetDnnSmfInfoListOk returns a tuple with the DnnSmfInfoList field value and a boolean to check if the value has been set.

func (*SnssaiSmfInfoItem) GetSNssai ¶

func (o *SnssaiSmfInfoItem) GetSNssai() ExtSnssai

GetSNssai returns the SNssai field value

func (*SnssaiSmfInfoItem) GetSNssaiOk ¶

func (o *SnssaiSmfInfoItem) GetSNssaiOk() (*ExtSnssai, bool)

GetSNssaiOk returns a tuple with the SNssai field value and a boolean to check if the value has been set.

func (SnssaiSmfInfoItem) MarshalJSON ¶

func (o SnssaiSmfInfoItem) MarshalJSON() ([]byte, error)

func (*SnssaiSmfInfoItem) SetDnnSmfInfoList ¶

func (o *SnssaiSmfInfoItem) SetDnnSmfInfoList(v []DnnSmfInfoItem)

SetDnnSmfInfoList sets field value

func (*SnssaiSmfInfoItem) SetSNssai ¶

func (o *SnssaiSmfInfoItem) SetSNssai(v ExtSnssai)

SetSNssai sets field value

func (SnssaiSmfInfoItem) ToMap ¶

func (o SnssaiSmfInfoItem) ToMap() (map[string]interface{}, error)

type SnssaiTaiMapping ¶

type SnssaiTaiMapping struct {
	ReportingArea       TargetArea        `json:"reportingArea"`
	AccessTypeList      []AccessType      `json:"accessTypeList,omitempty"`
	SupportedSnssaiList []SupportedSnssai `json:"supportedSnssaiList,omitempty"`
}

SnssaiTaiMapping List of restricted or unrestricted S-NSSAIs per TAI(s)

func NewSnssaiTaiMapping ¶

func NewSnssaiTaiMapping(reportingArea TargetArea) *SnssaiTaiMapping

NewSnssaiTaiMapping instantiates a new SnssaiTaiMapping 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 NewSnssaiTaiMappingWithDefaults ¶

func NewSnssaiTaiMappingWithDefaults() *SnssaiTaiMapping

NewSnssaiTaiMappingWithDefaults instantiates a new SnssaiTaiMapping 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 (*SnssaiTaiMapping) GetAccessTypeList ¶

func (o *SnssaiTaiMapping) GetAccessTypeList() []AccessType

GetAccessTypeList returns the AccessTypeList field value if set, zero value otherwise.

func (*SnssaiTaiMapping) GetAccessTypeListOk ¶

func (o *SnssaiTaiMapping) GetAccessTypeListOk() ([]AccessType, bool)

GetAccessTypeListOk returns a tuple with the AccessTypeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnssaiTaiMapping) GetReportingArea ¶

func (o *SnssaiTaiMapping) GetReportingArea() TargetArea

GetReportingArea returns the ReportingArea field value

func (*SnssaiTaiMapping) GetReportingAreaOk ¶

func (o *SnssaiTaiMapping) GetReportingAreaOk() (*TargetArea, bool)

GetReportingAreaOk returns a tuple with the ReportingArea field value and a boolean to check if the value has been set.

func (*SnssaiTaiMapping) GetSupportedSnssaiList ¶

func (o *SnssaiTaiMapping) GetSupportedSnssaiList() []SupportedSnssai

GetSupportedSnssaiList returns the SupportedSnssaiList field value if set, zero value otherwise.

func (*SnssaiTaiMapping) GetSupportedSnssaiListOk ¶

func (o *SnssaiTaiMapping) GetSupportedSnssaiListOk() ([]SupportedSnssai, bool)

GetSupportedSnssaiListOk returns a tuple with the SupportedSnssaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnssaiTaiMapping) HasAccessTypeList ¶

func (o *SnssaiTaiMapping) HasAccessTypeList() bool

HasAccessTypeList returns a boolean if a field has been set.

func (*SnssaiTaiMapping) HasSupportedSnssaiList ¶

func (o *SnssaiTaiMapping) HasSupportedSnssaiList() bool

HasSupportedSnssaiList returns a boolean if a field has been set.

func (SnssaiTaiMapping) MarshalJSON ¶

func (o SnssaiTaiMapping) MarshalJSON() ([]byte, error)

func (*SnssaiTaiMapping) SetAccessTypeList ¶

func (o *SnssaiTaiMapping) SetAccessTypeList(v []AccessType)

SetAccessTypeList gets a reference to the given []AccessType and assigns it to the AccessTypeList field.

func (*SnssaiTaiMapping) SetReportingArea ¶

func (o *SnssaiTaiMapping) SetReportingArea(v TargetArea)

SetReportingArea sets field value

func (*SnssaiTaiMapping) SetSupportedSnssaiList ¶

func (o *SnssaiTaiMapping) SetSupportedSnssaiList(v []SupportedSnssai)

SetSupportedSnssaiList gets a reference to the given []SupportedSnssai and assigns it to the SupportedSnssaiList field.

func (SnssaiTaiMapping) ToMap ¶

func (o SnssaiTaiMapping) ToMap() (map[string]interface{}, error)

type SnssaiTsctsfInfoItem ¶

type SnssaiTsctsfInfoItem struct {
	SNssai      ExtSnssai           `json:"sNssai"`
	DnnInfoList []DnnTsctsfInfoItem `json:"dnnInfoList"`
}

SnssaiTsctsfInfoItem Set of parameters supported by TSCTSF for a given S-NSSAI

func NewSnssaiTsctsfInfoItem ¶

func NewSnssaiTsctsfInfoItem(sNssai ExtSnssai, dnnInfoList []DnnTsctsfInfoItem) *SnssaiTsctsfInfoItem

NewSnssaiTsctsfInfoItem instantiates a new SnssaiTsctsfInfoItem 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 NewSnssaiTsctsfInfoItemWithDefaults ¶

func NewSnssaiTsctsfInfoItemWithDefaults() *SnssaiTsctsfInfoItem

NewSnssaiTsctsfInfoItemWithDefaults instantiates a new SnssaiTsctsfInfoItem 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 (*SnssaiTsctsfInfoItem) GetDnnInfoList ¶

func (o *SnssaiTsctsfInfoItem) GetDnnInfoList() []DnnTsctsfInfoItem

GetDnnInfoList returns the DnnInfoList field value

func (*SnssaiTsctsfInfoItem) GetDnnInfoListOk ¶

func (o *SnssaiTsctsfInfoItem) GetDnnInfoListOk() ([]DnnTsctsfInfoItem, bool)

GetDnnInfoListOk returns a tuple with the DnnInfoList field value and a boolean to check if the value has been set.

func (*SnssaiTsctsfInfoItem) GetSNssai ¶

func (o *SnssaiTsctsfInfoItem) GetSNssai() ExtSnssai

GetSNssai returns the SNssai field value

func (*SnssaiTsctsfInfoItem) GetSNssaiOk ¶

func (o *SnssaiTsctsfInfoItem) GetSNssaiOk() (*ExtSnssai, bool)

GetSNssaiOk returns a tuple with the SNssai field value and a boolean to check if the value has been set.

func (SnssaiTsctsfInfoItem) MarshalJSON ¶

func (o SnssaiTsctsfInfoItem) MarshalJSON() ([]byte, error)

func (*SnssaiTsctsfInfoItem) SetDnnInfoList ¶

func (o *SnssaiTsctsfInfoItem) SetDnnInfoList(v []DnnTsctsfInfoItem)

SetDnnInfoList sets field value

func (*SnssaiTsctsfInfoItem) SetSNssai ¶

func (o *SnssaiTsctsfInfoItem) SetSNssai(v ExtSnssai)

SetSNssai sets field value

func (SnssaiTsctsfInfoItem) ToMap ¶

func (o SnssaiTsctsfInfoItem) ToMap() (map[string]interface{}, error)

type SnssaiUpfInfoItem ¶

type SnssaiUpfInfoItem struct {
	SNssai             ExtSnssai        `json:"sNssai"`
	DnnUpfInfoList     []DnnUpfInfoItem `json:"dnnUpfInfoList"`
	RedundantTransport *bool            `json:"redundantTransport,omitempty"`
}

SnssaiUpfInfoItem Set of parameters supported by UPF for a given S-NSSAI

func NewSnssaiUpfInfoItem ¶

func NewSnssaiUpfInfoItem(sNssai ExtSnssai, dnnUpfInfoList []DnnUpfInfoItem) *SnssaiUpfInfoItem

NewSnssaiUpfInfoItem instantiates a new SnssaiUpfInfoItem 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 NewSnssaiUpfInfoItemWithDefaults ¶

func NewSnssaiUpfInfoItemWithDefaults() *SnssaiUpfInfoItem

NewSnssaiUpfInfoItemWithDefaults instantiates a new SnssaiUpfInfoItem 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 (*SnssaiUpfInfoItem) GetDnnUpfInfoList ¶

func (o *SnssaiUpfInfoItem) GetDnnUpfInfoList() []DnnUpfInfoItem

GetDnnUpfInfoList returns the DnnUpfInfoList field value

func (*SnssaiUpfInfoItem) GetDnnUpfInfoListOk ¶

func (o *SnssaiUpfInfoItem) GetDnnUpfInfoListOk() ([]DnnUpfInfoItem, bool)

GetDnnUpfInfoListOk returns a tuple with the DnnUpfInfoList field value and a boolean to check if the value has been set.

func (*SnssaiUpfInfoItem) GetRedundantTransport ¶

func (o *SnssaiUpfInfoItem) GetRedundantTransport() bool

GetRedundantTransport returns the RedundantTransport field value if set, zero value otherwise.

func (*SnssaiUpfInfoItem) GetRedundantTransportOk ¶

func (o *SnssaiUpfInfoItem) GetRedundantTransportOk() (*bool, bool)

GetRedundantTransportOk returns a tuple with the RedundantTransport field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnssaiUpfInfoItem) GetSNssai ¶

func (o *SnssaiUpfInfoItem) GetSNssai() ExtSnssai

GetSNssai returns the SNssai field value

func (*SnssaiUpfInfoItem) GetSNssaiOk ¶

func (o *SnssaiUpfInfoItem) GetSNssaiOk() (*ExtSnssai, bool)

GetSNssaiOk returns a tuple with the SNssai field value and a boolean to check if the value has been set.

func (*SnssaiUpfInfoItem) HasRedundantTransport ¶

func (o *SnssaiUpfInfoItem) HasRedundantTransport() bool

HasRedundantTransport returns a boolean if a field has been set.

func (SnssaiUpfInfoItem) MarshalJSON ¶

func (o SnssaiUpfInfoItem) MarshalJSON() ([]byte, error)

func (*SnssaiUpfInfoItem) SetDnnUpfInfoList ¶

func (o *SnssaiUpfInfoItem) SetDnnUpfInfoList(v []DnnUpfInfoItem)

SetDnnUpfInfoList sets field value

func (*SnssaiUpfInfoItem) SetRedundantTransport ¶

func (o *SnssaiUpfInfoItem) SetRedundantTransport(v bool)

SetRedundantTransport gets a reference to the given bool and assigns it to the RedundantTransport field.

func (*SnssaiUpfInfoItem) SetSNssai ¶

func (o *SnssaiUpfInfoItem) SetSNssai(v ExtSnssai)

SetSNssai sets field value

func (SnssaiUpfInfoItem) ToMap ¶

func (o SnssaiUpfInfoItem) ToMap() (map[string]interface{}, error)

type Ssm ¶

type Ssm struct {
	SourceIpAddr IpAddr `json:"sourceIpAddr"`
	DestIpAddr   IpAddr `json:"destIpAddr"`
}

Ssm Source specific IP multicast address

func NewSsm ¶

func NewSsm(sourceIpAddr IpAddr, destIpAddr IpAddr) *Ssm

NewSsm instantiates a new Ssm 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 NewSsmWithDefaults ¶

func NewSsmWithDefaults() *Ssm

NewSsmWithDefaults instantiates a new Ssm 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 (*Ssm) GetDestIpAddr ¶

func (o *Ssm) GetDestIpAddr() IpAddr

GetDestIpAddr returns the DestIpAddr field value

func (*Ssm) GetDestIpAddrOk ¶

func (o *Ssm) GetDestIpAddrOk() (*IpAddr, bool)

GetDestIpAddrOk returns a tuple with the DestIpAddr field value and a boolean to check if the value has been set.

func (*Ssm) GetSourceIpAddr ¶

func (o *Ssm) GetSourceIpAddr() IpAddr

GetSourceIpAddr returns the SourceIpAddr field value

func (*Ssm) GetSourceIpAddrOk ¶

func (o *Ssm) GetSourceIpAddrOk() (*IpAddr, bool)

GetSourceIpAddrOk returns a tuple with the SourceIpAddr field value and a boolean to check if the value has been set.

func (Ssm) MarshalJSON ¶

func (o Ssm) MarshalJSON() ([]byte, error)

func (*Ssm) SetDestIpAddr ¶

func (o *Ssm) SetDestIpAddr(v IpAddr)

SetDestIpAddr sets field value

func (*Ssm) SetSourceIpAddr ¶

func (o *Ssm) SetSourceIpAddr(v IpAddr)

SetSourceIpAddr sets field value

func (Ssm) ToMap ¶

func (o Ssm) ToMap() (map[string]interface{}, error)

type StationaryIndication ¶

type StationaryIndication struct {
	String *string
}

StationaryIndication Possible values are: - STATIONARY: Identifies the UE is stationary - MOBILE: Identifies the UE is mobile

func (*StationaryIndication) MarshalJSON ¶

func (src *StationaryIndication) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*StationaryIndication) UnmarshalJSON ¶

func (dst *StationaryIndication) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SubTerminationReason ¶

type SubTerminationReason struct {
	String *string
}

SubTerminationReason Subscription Termination Reason.

func (*SubTerminationReason) MarshalJSON ¶

func (src *SubTerminationReason) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SubTerminationReason) UnmarshalJSON ¶

func (dst *SubTerminationReason) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SubscrCond ¶

type SubscrCond struct {
	AmfCond              *AmfCond
	DccfCond             *DccfCond
	GuamiListCond        *GuamiListCond
	NefCond              *NefCond
	NetworkSliceCond     *NetworkSliceCond
	NfGroupCond          *NfGroupCond
	NfGroupListCond      *NfGroupListCond
	NfInstanceIdCond     *NfInstanceIdCond
	NfInstanceIdListCond *NfInstanceIdListCond
	NfServiceSetCond     *NfServiceSetCond
	NfSetCond            *NfSetCond
	NfTypeCond           *NfTypeCond
	NwdafCond            *NwdafCond
	ScpDomainCond        *ScpDomainCond
	ServiceNameCond      *ServiceNameCond
	ServiceNameListCond  *ServiceNameListCond
	UpfCond              *UpfCond
}

SubscrCond - Condition to determine the set of NFs to monitor under a certain subscription in NRF

func AmfCondAsSubscrCond ¶

func AmfCondAsSubscrCond(v *AmfCond) SubscrCond

AmfCondAsSubscrCond is a convenience function that returns AmfCond wrapped in SubscrCond

func DccfCondAsSubscrCond ¶

func DccfCondAsSubscrCond(v *DccfCond) SubscrCond

DccfCondAsSubscrCond is a convenience function that returns DccfCond wrapped in SubscrCond

func GuamiListCondAsSubscrCond ¶

func GuamiListCondAsSubscrCond(v *GuamiListCond) SubscrCond

GuamiListCondAsSubscrCond is a convenience function that returns GuamiListCond wrapped in SubscrCond

func NefCondAsSubscrCond ¶

func NefCondAsSubscrCond(v *NefCond) SubscrCond

NefCondAsSubscrCond is a convenience function that returns NefCond wrapped in SubscrCond

func NetworkSliceCondAsSubscrCond ¶

func NetworkSliceCondAsSubscrCond(v *NetworkSliceCond) SubscrCond

NetworkSliceCondAsSubscrCond is a convenience function that returns NetworkSliceCond wrapped in SubscrCond

func NfGroupCondAsSubscrCond ¶

func NfGroupCondAsSubscrCond(v *NfGroupCond) SubscrCond

NfGroupCondAsSubscrCond is a convenience function that returns NfGroupCond wrapped in SubscrCond

func NfGroupListCondAsSubscrCond ¶

func NfGroupListCondAsSubscrCond(v *NfGroupListCond) SubscrCond

NfGroupListCondAsSubscrCond is a convenience function that returns NfGroupListCond wrapped in SubscrCond

func NfInstanceIdCondAsSubscrCond ¶

func NfInstanceIdCondAsSubscrCond(v *NfInstanceIdCond) SubscrCond

NfInstanceIdCondAsSubscrCond is a convenience function that returns NfInstanceIdCond wrapped in SubscrCond

func NfInstanceIdListCondAsSubscrCond ¶

func NfInstanceIdListCondAsSubscrCond(v *NfInstanceIdListCond) SubscrCond

NfInstanceIdListCondAsSubscrCond is a convenience function that returns NfInstanceIdListCond wrapped in SubscrCond

func NfServiceSetCondAsSubscrCond ¶

func NfServiceSetCondAsSubscrCond(v *NfServiceSetCond) SubscrCond

NfServiceSetCondAsSubscrCond is a convenience function that returns NfServiceSetCond wrapped in SubscrCond

func NfSetCondAsSubscrCond ¶

func NfSetCondAsSubscrCond(v *NfSetCond) SubscrCond

NfSetCondAsSubscrCond is a convenience function that returns NfSetCond wrapped in SubscrCond

func NfTypeCondAsSubscrCond ¶

func NfTypeCondAsSubscrCond(v *NfTypeCond) SubscrCond

NfTypeCondAsSubscrCond is a convenience function that returns NfTypeCond wrapped in SubscrCond

func NwdafCondAsSubscrCond ¶

func NwdafCondAsSubscrCond(v *NwdafCond) SubscrCond

NwdafCondAsSubscrCond is a convenience function that returns NwdafCond wrapped in SubscrCond

func ScpDomainCondAsSubscrCond ¶

func ScpDomainCondAsSubscrCond(v *ScpDomainCond) SubscrCond

ScpDomainCondAsSubscrCond is a convenience function that returns ScpDomainCond wrapped in SubscrCond

func ServiceNameCondAsSubscrCond ¶

func ServiceNameCondAsSubscrCond(v *ServiceNameCond) SubscrCond

ServiceNameCondAsSubscrCond is a convenience function that returns ServiceNameCond wrapped in SubscrCond

func ServiceNameListCondAsSubscrCond ¶

func ServiceNameListCondAsSubscrCond(v *ServiceNameListCond) SubscrCond

ServiceNameListCondAsSubscrCond is a convenience function that returns ServiceNameListCond wrapped in SubscrCond

func UpfCondAsSubscrCond ¶

func UpfCondAsSubscrCond(v *UpfCond) SubscrCond

UpfCondAsSubscrCond is a convenience function that returns UpfCond wrapped in SubscrCond

func (*SubscrCond) GetActualInstance ¶

func (obj *SubscrCond) GetActualInstance() interface{}

Get the actual instance

func (SubscrCond) MarshalJSON ¶

func (src SubscrCond) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SubscrCond) UnmarshalJSON ¶

func (dst *SubscrCond) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type SubscriptionContext ¶

type SubscriptionContext struct {
	SubscriptionId string      `json:"subscriptionId"`
	SubscrCond     *SubscrCond `json:"subscrCond,omitempty"`
}

SubscriptionContext Context data related to a created subscription, to be included in notifications sent by NRF

func NewSubscriptionContext ¶

func NewSubscriptionContext(subscriptionId string) *SubscriptionContext

NewSubscriptionContext instantiates a new SubscriptionContext 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 NewSubscriptionContextWithDefaults ¶

func NewSubscriptionContextWithDefaults() *SubscriptionContext

NewSubscriptionContextWithDefaults instantiates a new SubscriptionContext 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 (*SubscriptionContext) GetSubscrCond ¶

func (o *SubscriptionContext) GetSubscrCond() SubscrCond

GetSubscrCond returns the SubscrCond field value if set, zero value otherwise.

func (*SubscriptionContext) GetSubscrCondOk ¶

func (o *SubscriptionContext) GetSubscrCondOk() (*SubscrCond, bool)

GetSubscrCondOk returns a tuple with the SubscrCond field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionContext) GetSubscriptionId ¶

func (o *SubscriptionContext) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value

func (*SubscriptionContext) GetSubscriptionIdOk ¶

func (o *SubscriptionContext) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value and a boolean to check if the value has been set.

func (*SubscriptionContext) HasSubscrCond ¶

func (o *SubscriptionContext) HasSubscrCond() bool

HasSubscrCond returns a boolean if a field has been set.

func (SubscriptionContext) MarshalJSON ¶

func (o SubscriptionContext) MarshalJSON() ([]byte, error)

func (*SubscriptionContext) SetSubscrCond ¶

func (o *SubscriptionContext) SetSubscrCond(v SubscrCond)

SetSubscrCond gets a reference to the given SubscrCond and assigns it to the SubscrCond field.

func (*SubscriptionContext) SetSubscriptionId ¶

func (o *SubscriptionContext) SetSubscriptionId(v string)

SetSubscriptionId sets field value

func (SubscriptionContext) ToMap ¶

func (o SubscriptionContext) ToMap() (map[string]interface{}, error)

type SubscriptionData ¶

type SubscriptionData struct {
	NfStatusNotificationUri string `json:"nfStatusNotificationUri"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	ReqNfInstanceId *string     `json:"reqNfInstanceId,omitempty"`
	SubscrCond      *SubscrCond `json:"subscrCond,omitempty"`
	SubscriptionId  string      `json:"subscriptionId"`
	// string with format 'date-time' as defined in OpenAPI.
	ValidityTime   *time.Time              `json:"validityTime,omitempty"`
	ReqNotifEvents []NotificationEventType `json:"reqNotifEvents,omitempty"`
	PlmnId         *PlmnId                 `json:"plmnId,omitempty"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid            *string         `json:"nid,omitempty"`
	NotifCondition *NotifCondition `json:"notifCondition,omitempty"`
	ReqNfType      *NFType         `json:"reqNfType,omitempty"`
	// Fully Qualified Domain Name
	ReqNfFqdn         *string      `json:"reqNfFqdn,omitempty"`
	ReqSnssais        []ExtSnssai  `json:"reqSnssais,omitempty"`
	ReqPerPlmnSnssais []PlmnSnssai `json:"reqPerPlmnSnssais,omitempty"`
	ReqPlmnList       []PlmnId     `json:"reqPlmnList,omitempty"`
	ReqSnpnList       []PlmnIdNid  `json:"reqSnpnList,omitempty"`
	ServingScope      []string     `json:"servingScope,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	RequesterFeatures *string `json:"requesterFeatures,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	NrfSupportedFeatures *string `json:"nrfSupportedFeatures,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	HnrfUri              *string `json:"hnrfUri,omitempty"`
	OnboardingCapability *bool   `json:"onboardingCapability,omitempty"`
	// Fully Qualified Domain Name
	TargetHni         *string `json:"targetHni,omitempty"`
	PreferredLocality *string `json:"preferredLocality,omitempty"`
	// A map (list of key-value pairs) where the key of the map represents the relative priority, for the requester, of each locality description among the list of locality descriptions in this query parameter, encoded as \"1\" (highest priority\"), \"2\", \"3\", …,  \"n\" (lowest priority)
	ExtPreferredLocality        *map[string][]LocalityDescription `json:"extPreferredLocality,omitempty"`
	CompleteProfileSubscription *bool                             `json:"completeProfileSubscription,omitempty"`
}

SubscriptionData Information of a subscription to notifications to NRF events, included in subscription requests and responses

func NewSubscriptionData ¶

func NewSubscriptionData(nfStatusNotificationUri string, subscriptionId string) *SubscriptionData

NewSubscriptionData instantiates a new SubscriptionData 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 NewSubscriptionDataWithDefaults ¶

func NewSubscriptionDataWithDefaults() *SubscriptionData

NewSubscriptionDataWithDefaults instantiates a new SubscriptionData 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 (*SubscriptionData) GetCompleteProfileSubscription ¶

func (o *SubscriptionData) GetCompleteProfileSubscription() bool

GetCompleteProfileSubscription returns the CompleteProfileSubscription field value if set, zero value otherwise.

func (*SubscriptionData) GetCompleteProfileSubscriptionOk ¶

func (o *SubscriptionData) GetCompleteProfileSubscriptionOk() (*bool, bool)

GetCompleteProfileSubscriptionOk returns a tuple with the CompleteProfileSubscription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetExtPreferredLocality ¶

func (o *SubscriptionData) GetExtPreferredLocality() map[string][]LocalityDescription

GetExtPreferredLocality returns the ExtPreferredLocality field value if set, zero value otherwise.

func (*SubscriptionData) GetExtPreferredLocalityOk ¶

func (o *SubscriptionData) GetExtPreferredLocalityOk() (*map[string][]LocalityDescription, bool)

GetExtPreferredLocalityOk returns a tuple with the ExtPreferredLocality field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetHnrfUri ¶

func (o *SubscriptionData) GetHnrfUri() string

GetHnrfUri returns the HnrfUri field value if set, zero value otherwise.

func (*SubscriptionData) GetHnrfUriOk ¶

func (o *SubscriptionData) GetHnrfUriOk() (*string, bool)

GetHnrfUriOk returns a tuple with the HnrfUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetNfStatusNotificationUri ¶

func (o *SubscriptionData) GetNfStatusNotificationUri() string

GetNfStatusNotificationUri returns the NfStatusNotificationUri field value

func (*SubscriptionData) GetNfStatusNotificationUriOk ¶

func (o *SubscriptionData) GetNfStatusNotificationUriOk() (*string, bool)

GetNfStatusNotificationUriOk returns a tuple with the NfStatusNotificationUri field value and a boolean to check if the value has been set.

func (*SubscriptionData) GetNid ¶

func (o *SubscriptionData) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*SubscriptionData) GetNidOk ¶

func (o *SubscriptionData) GetNidOk() (*string, bool)

GetNidOk returns a tuple with the Nid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetNotifCondition ¶

func (o *SubscriptionData) GetNotifCondition() NotifCondition

GetNotifCondition returns the NotifCondition field value if set, zero value otherwise.

func (*SubscriptionData) GetNotifConditionOk ¶

func (o *SubscriptionData) GetNotifConditionOk() (*NotifCondition, bool)

GetNotifConditionOk returns a tuple with the NotifCondition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetNrfSupportedFeatures ¶

func (o *SubscriptionData) GetNrfSupportedFeatures() string

GetNrfSupportedFeatures returns the NrfSupportedFeatures field value if set, zero value otherwise.

func (*SubscriptionData) GetNrfSupportedFeaturesOk ¶

func (o *SubscriptionData) GetNrfSupportedFeaturesOk() (*string, bool)

GetNrfSupportedFeaturesOk returns a tuple with the NrfSupportedFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetOnboardingCapability ¶

func (o *SubscriptionData) GetOnboardingCapability() bool

GetOnboardingCapability returns the OnboardingCapability field value if set, zero value otherwise.

func (*SubscriptionData) GetOnboardingCapabilityOk ¶

func (o *SubscriptionData) GetOnboardingCapabilityOk() (*bool, bool)

GetOnboardingCapabilityOk returns a tuple with the OnboardingCapability field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetPlmnId ¶

func (o *SubscriptionData) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value if set, zero value otherwise.

func (*SubscriptionData) GetPlmnIdOk ¶

func (o *SubscriptionData) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetPreferredLocality ¶

func (o *SubscriptionData) GetPreferredLocality() string

GetPreferredLocality returns the PreferredLocality field value if set, zero value otherwise.

func (*SubscriptionData) GetPreferredLocalityOk ¶

func (o *SubscriptionData) GetPreferredLocalityOk() (*string, bool)

GetPreferredLocalityOk returns a tuple with the PreferredLocality field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetReqNfFqdn ¶

func (o *SubscriptionData) GetReqNfFqdn() string

GetReqNfFqdn returns the ReqNfFqdn field value if set, zero value otherwise.

func (*SubscriptionData) GetReqNfFqdnOk ¶

func (o *SubscriptionData) GetReqNfFqdnOk() (*string, bool)

GetReqNfFqdnOk returns a tuple with the ReqNfFqdn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetReqNfInstanceId ¶

func (o *SubscriptionData) GetReqNfInstanceId() string

GetReqNfInstanceId returns the ReqNfInstanceId field value if set, zero value otherwise.

func (*SubscriptionData) GetReqNfInstanceIdOk ¶

func (o *SubscriptionData) GetReqNfInstanceIdOk() (*string, bool)

GetReqNfInstanceIdOk returns a tuple with the ReqNfInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetReqNfType ¶

func (o *SubscriptionData) GetReqNfType() NFType

GetReqNfType returns the ReqNfType field value if set, zero value otherwise.

func (*SubscriptionData) GetReqNfTypeOk ¶

func (o *SubscriptionData) GetReqNfTypeOk() (*NFType, bool)

GetReqNfTypeOk returns a tuple with the ReqNfType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetReqNotifEvents ¶

func (o *SubscriptionData) GetReqNotifEvents() []NotificationEventType

GetReqNotifEvents returns the ReqNotifEvents field value if set, zero value otherwise.

func (*SubscriptionData) GetReqNotifEventsOk ¶

func (o *SubscriptionData) GetReqNotifEventsOk() ([]NotificationEventType, bool)

GetReqNotifEventsOk returns a tuple with the ReqNotifEvents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetReqPerPlmnSnssais ¶

func (o *SubscriptionData) GetReqPerPlmnSnssais() []PlmnSnssai

GetReqPerPlmnSnssais returns the ReqPerPlmnSnssais field value if set, zero value otherwise.

func (*SubscriptionData) GetReqPerPlmnSnssaisOk ¶

func (o *SubscriptionData) GetReqPerPlmnSnssaisOk() ([]PlmnSnssai, bool)

GetReqPerPlmnSnssaisOk returns a tuple with the ReqPerPlmnSnssais field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetReqPlmnList ¶

func (o *SubscriptionData) GetReqPlmnList() []PlmnId

GetReqPlmnList returns the ReqPlmnList field value if set, zero value otherwise.

func (*SubscriptionData) GetReqPlmnListOk ¶

func (o *SubscriptionData) GetReqPlmnListOk() ([]PlmnId, bool)

GetReqPlmnListOk returns a tuple with the ReqPlmnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetReqSnpnList ¶

func (o *SubscriptionData) GetReqSnpnList() []PlmnIdNid

GetReqSnpnList returns the ReqSnpnList field value if set, zero value otherwise.

func (*SubscriptionData) GetReqSnpnListOk ¶

func (o *SubscriptionData) GetReqSnpnListOk() ([]PlmnIdNid, bool)

GetReqSnpnListOk returns a tuple with the ReqSnpnList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetReqSnssais ¶

func (o *SubscriptionData) GetReqSnssais() []ExtSnssai

GetReqSnssais returns the ReqSnssais field value if set, zero value otherwise.

func (*SubscriptionData) GetReqSnssaisOk ¶

func (o *SubscriptionData) GetReqSnssaisOk() ([]ExtSnssai, bool)

GetReqSnssaisOk returns a tuple with the ReqSnssais field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetRequesterFeatures ¶

func (o *SubscriptionData) GetRequesterFeatures() string

GetRequesterFeatures returns the RequesterFeatures field value if set, zero value otherwise.

func (*SubscriptionData) GetRequesterFeaturesOk ¶

func (o *SubscriptionData) GetRequesterFeaturesOk() (*string, bool)

GetRequesterFeaturesOk returns a tuple with the RequesterFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetServingScope ¶

func (o *SubscriptionData) GetServingScope() []string

GetServingScope returns the ServingScope field value if set, zero value otherwise.

func (*SubscriptionData) GetServingScopeOk ¶

func (o *SubscriptionData) GetServingScopeOk() ([]string, bool)

GetServingScopeOk returns a tuple with the ServingScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetSubscrCond ¶

func (o *SubscriptionData) GetSubscrCond() SubscrCond

GetSubscrCond returns the SubscrCond field value if set, zero value otherwise.

func (*SubscriptionData) GetSubscrCondOk ¶

func (o *SubscriptionData) GetSubscrCondOk() (*SubscrCond, bool)

GetSubscrCondOk returns a tuple with the SubscrCond field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetSubscriptionId ¶

func (o *SubscriptionData) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value

func (*SubscriptionData) GetSubscriptionIdOk ¶

func (o *SubscriptionData) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value and a boolean to check if the value has been set.

func (*SubscriptionData) GetTargetHni ¶

func (o *SubscriptionData) GetTargetHni() string

GetTargetHni returns the TargetHni field value if set, zero value otherwise.

func (*SubscriptionData) GetTargetHniOk ¶

func (o *SubscriptionData) GetTargetHniOk() (*string, bool)

GetTargetHniOk returns a tuple with the TargetHni field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) GetValidityTime ¶

func (o *SubscriptionData) GetValidityTime() time.Time

GetValidityTime returns the ValidityTime field value if set, zero value otherwise.

func (*SubscriptionData) GetValidityTimeOk ¶

func (o *SubscriptionData) GetValidityTimeOk() (*time.Time, bool)

GetValidityTimeOk returns a tuple with the ValidityTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionData) HasCompleteProfileSubscription ¶

func (o *SubscriptionData) HasCompleteProfileSubscription() bool

HasCompleteProfileSubscription returns a boolean if a field has been set.

func (*SubscriptionData) HasExtPreferredLocality ¶

func (o *SubscriptionData) HasExtPreferredLocality() bool

HasExtPreferredLocality returns a boolean if a field has been set.

func (*SubscriptionData) HasHnrfUri ¶

func (o *SubscriptionData) HasHnrfUri() bool

HasHnrfUri returns a boolean if a field has been set.

func (*SubscriptionData) HasNid ¶

func (o *SubscriptionData) HasNid() bool

HasNid returns a boolean if a field has been set.

func (*SubscriptionData) HasNotifCondition ¶

func (o *SubscriptionData) HasNotifCondition() bool

HasNotifCondition returns a boolean if a field has been set.

func (*SubscriptionData) HasNrfSupportedFeatures ¶

func (o *SubscriptionData) HasNrfSupportedFeatures() bool

HasNrfSupportedFeatures returns a boolean if a field has been set.

func (*SubscriptionData) HasOnboardingCapability ¶

func (o *SubscriptionData) HasOnboardingCapability() bool

HasOnboardingCapability returns a boolean if a field has been set.

func (*SubscriptionData) HasPlmnId ¶

func (o *SubscriptionData) HasPlmnId() bool

HasPlmnId returns a boolean if a field has been set.

func (*SubscriptionData) HasPreferredLocality ¶

func (o *SubscriptionData) HasPreferredLocality() bool

HasPreferredLocality returns a boolean if a field has been set.

func (*SubscriptionData) HasReqNfFqdn ¶

func (o *SubscriptionData) HasReqNfFqdn() bool

HasReqNfFqdn returns a boolean if a field has been set.

func (*SubscriptionData) HasReqNfInstanceId ¶

func (o *SubscriptionData) HasReqNfInstanceId() bool

HasReqNfInstanceId returns a boolean if a field has been set.

func (*SubscriptionData) HasReqNfType ¶

func (o *SubscriptionData) HasReqNfType() bool

HasReqNfType returns a boolean if a field has been set.

func (*SubscriptionData) HasReqNotifEvents ¶

func (o *SubscriptionData) HasReqNotifEvents() bool

HasReqNotifEvents returns a boolean if a field has been set.

func (*SubscriptionData) HasReqPerPlmnSnssais ¶

func (o *SubscriptionData) HasReqPerPlmnSnssais() bool

HasReqPerPlmnSnssais returns a boolean if a field has been set.

func (*SubscriptionData) HasReqPlmnList ¶

func (o *SubscriptionData) HasReqPlmnList() bool

HasReqPlmnList returns a boolean if a field has been set.

func (*SubscriptionData) HasReqSnpnList ¶

func (o *SubscriptionData) HasReqSnpnList() bool

HasReqSnpnList returns a boolean if a field has been set.

func (*SubscriptionData) HasReqSnssais ¶

func (o *SubscriptionData) HasReqSnssais() bool

HasReqSnssais returns a boolean if a field has been set.

func (*SubscriptionData) HasRequesterFeatures ¶

func (o *SubscriptionData) HasRequesterFeatures() bool

HasRequesterFeatures returns a boolean if a field has been set.

func (*SubscriptionData) HasServingScope ¶

func (o *SubscriptionData) HasServingScope() bool

HasServingScope returns a boolean if a field has been set.

func (*SubscriptionData) HasSubscrCond ¶

func (o *SubscriptionData) HasSubscrCond() bool

HasSubscrCond returns a boolean if a field has been set.

func (*SubscriptionData) HasTargetHni ¶

func (o *SubscriptionData) HasTargetHni() bool

HasTargetHni returns a boolean if a field has been set.

func (*SubscriptionData) HasValidityTime ¶

func (o *SubscriptionData) HasValidityTime() bool

HasValidityTime returns a boolean if a field has been set.

func (SubscriptionData) MarshalJSON ¶

func (o SubscriptionData) MarshalJSON() ([]byte, error)

func (*SubscriptionData) SetCompleteProfileSubscription ¶

func (o *SubscriptionData) SetCompleteProfileSubscription(v bool)

SetCompleteProfileSubscription gets a reference to the given bool and assigns it to the CompleteProfileSubscription field.

func (*SubscriptionData) SetExtPreferredLocality ¶

func (o *SubscriptionData) SetExtPreferredLocality(v map[string][]LocalityDescription)

SetExtPreferredLocality gets a reference to the given map[string][]LocalityDescription and assigns it to the ExtPreferredLocality field.

func (*SubscriptionData) SetHnrfUri ¶

func (o *SubscriptionData) SetHnrfUri(v string)

SetHnrfUri gets a reference to the given string and assigns it to the HnrfUri field.

func (*SubscriptionData) SetNfStatusNotificationUri ¶

func (o *SubscriptionData) SetNfStatusNotificationUri(v string)

SetNfStatusNotificationUri sets field value

func (*SubscriptionData) SetNid ¶

func (o *SubscriptionData) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (*SubscriptionData) SetNotifCondition ¶

func (o *SubscriptionData) SetNotifCondition(v NotifCondition)

SetNotifCondition gets a reference to the given NotifCondition and assigns it to the NotifCondition field.

func (*SubscriptionData) SetNrfSupportedFeatures ¶

func (o *SubscriptionData) SetNrfSupportedFeatures(v string)

SetNrfSupportedFeatures gets a reference to the given string and assigns it to the NrfSupportedFeatures field.

func (*SubscriptionData) SetOnboardingCapability ¶

func (o *SubscriptionData) SetOnboardingCapability(v bool)

SetOnboardingCapability gets a reference to the given bool and assigns it to the OnboardingCapability field.

func (*SubscriptionData) SetPlmnId ¶

func (o *SubscriptionData) SetPlmnId(v PlmnId)

SetPlmnId gets a reference to the given PlmnId and assigns it to the PlmnId field.

func (*SubscriptionData) SetPreferredLocality ¶

func (o *SubscriptionData) SetPreferredLocality(v string)

SetPreferredLocality gets a reference to the given string and assigns it to the PreferredLocality field.

func (*SubscriptionData) SetReqNfFqdn ¶

func (o *SubscriptionData) SetReqNfFqdn(v string)

SetReqNfFqdn gets a reference to the given string and assigns it to the ReqNfFqdn field.

func (*SubscriptionData) SetReqNfInstanceId ¶

func (o *SubscriptionData) SetReqNfInstanceId(v string)

SetReqNfInstanceId gets a reference to the given string and assigns it to the ReqNfInstanceId field.

func (*SubscriptionData) SetReqNfType ¶

func (o *SubscriptionData) SetReqNfType(v NFType)

SetReqNfType gets a reference to the given NFType and assigns it to the ReqNfType field.

func (*SubscriptionData) SetReqNotifEvents ¶

func (o *SubscriptionData) SetReqNotifEvents(v []NotificationEventType)

SetReqNotifEvents gets a reference to the given []NotificationEventType and assigns it to the ReqNotifEvents field.

func (*SubscriptionData) SetReqPerPlmnSnssais ¶

func (o *SubscriptionData) SetReqPerPlmnSnssais(v []PlmnSnssai)

SetReqPerPlmnSnssais gets a reference to the given []PlmnSnssai and assigns it to the ReqPerPlmnSnssais field.

func (*SubscriptionData) SetReqPlmnList ¶

func (o *SubscriptionData) SetReqPlmnList(v []PlmnId)

SetReqPlmnList gets a reference to the given []PlmnId and assigns it to the ReqPlmnList field.

func (*SubscriptionData) SetReqSnpnList ¶

func (o *SubscriptionData) SetReqSnpnList(v []PlmnIdNid)

SetReqSnpnList gets a reference to the given []PlmnIdNid and assigns it to the ReqSnpnList field.

func (*SubscriptionData) SetReqSnssais ¶

func (o *SubscriptionData) SetReqSnssais(v []ExtSnssai)

SetReqSnssais gets a reference to the given []ExtSnssai and assigns it to the ReqSnssais field.

func (*SubscriptionData) SetRequesterFeatures ¶

func (o *SubscriptionData) SetRequesterFeatures(v string)

SetRequesterFeatures gets a reference to the given string and assigns it to the RequesterFeatures field.

func (*SubscriptionData) SetServingScope ¶

func (o *SubscriptionData) SetServingScope(v []string)

SetServingScope gets a reference to the given []string and assigns it to the ServingScope field.

func (*SubscriptionData) SetSubscrCond ¶

func (o *SubscriptionData) SetSubscrCond(v SubscrCond)

SetSubscrCond gets a reference to the given SubscrCond and assigns it to the SubscrCond field.

func (*SubscriptionData) SetSubscriptionId ¶

func (o *SubscriptionData) SetSubscriptionId(v string)

SetSubscriptionId sets field value

func (*SubscriptionData) SetTargetHni ¶

func (o *SubscriptionData) SetTargetHni(v string)

SetTargetHni gets a reference to the given string and assigns it to the TargetHni field.

func (*SubscriptionData) SetValidityTime ¶

func (o *SubscriptionData) SetValidityTime(v time.Time)

SetValidityTime gets a reference to the given time.Time and assigns it to the ValidityTime field.

func (SubscriptionData) ToMap ¶

func (o SubscriptionData) ToMap() (map[string]interface{}, error)

type SuciInfo ¶

type SuciInfo struct {
	RoutingInds  []string `json:"routingInds,omitempty"`
	HNwPubKeyIds []int32  `json:"hNwPubKeyIds,omitempty"`
}

SuciInfo SUCI information containing Routing Indicator and Home Network Public Key ID

func NewSuciInfo ¶

func NewSuciInfo() *SuciInfo

NewSuciInfo instantiates a new SuciInfo 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 NewSuciInfoWithDefaults ¶

func NewSuciInfoWithDefaults() *SuciInfo

NewSuciInfoWithDefaults instantiates a new SuciInfo 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 (*SuciInfo) GetHNwPubKeyIds ¶

func (o *SuciInfo) GetHNwPubKeyIds() []int32

GetHNwPubKeyIds returns the HNwPubKeyIds field value if set, zero value otherwise.

func (*SuciInfo) GetHNwPubKeyIdsOk ¶

func (o *SuciInfo) GetHNwPubKeyIdsOk() ([]int32, bool)

GetHNwPubKeyIdsOk returns a tuple with the HNwPubKeyIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuciInfo) GetRoutingInds ¶

func (o *SuciInfo) GetRoutingInds() []string

GetRoutingInds returns the RoutingInds field value if set, zero value otherwise.

func (*SuciInfo) GetRoutingIndsOk ¶

func (o *SuciInfo) GetRoutingIndsOk() ([]string, bool)

GetRoutingIndsOk returns a tuple with the RoutingInds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuciInfo) HasHNwPubKeyIds ¶

func (o *SuciInfo) HasHNwPubKeyIds() bool

HasHNwPubKeyIds returns a boolean if a field has been set.

func (*SuciInfo) HasRoutingInds ¶

func (o *SuciInfo) HasRoutingInds() bool

HasRoutingInds returns a boolean if a field has been set.

func (SuciInfo) MarshalJSON ¶

func (o SuciInfo) MarshalJSON() ([]byte, error)

func (*SuciInfo) SetHNwPubKeyIds ¶

func (o *SuciInfo) SetHNwPubKeyIds(v []int32)

SetHNwPubKeyIds gets a reference to the given []int32 and assigns it to the HNwPubKeyIds field.

func (*SuciInfo) SetRoutingInds ¶

func (o *SuciInfo) SetRoutingInds(v []string)

SetRoutingInds gets a reference to the given []string and assigns it to the RoutingInds field.

func (SuciInfo) ToMap ¶

func (o SuciInfo) ToMap() (map[string]interface{}, error)

type SummarizationAttribute ¶

type SummarizationAttribute struct {
	String *string
}

SummarizationAttribute Possible values are: - SPACING: Average and variance of the time interval separating two consecutive occurrences of the same event and parameter value, or periodicity for periodic reporting. - DURATION: Average and variance of the time for which the parameter value applies. - OCCURRENCES: Number of countable occurrences for the parameter. - AVG_VAR: Average and variance of the parameter. - FREQ_VAL: Most and least frequent values. - MIN_MAX: Maximum and minimum parameter values.

func (*SummarizationAttribute) MarshalJSON ¶

func (src *SummarizationAttribute) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SummarizationAttribute) UnmarshalJSON ¶

func (dst *SummarizationAttribute) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SupiRange ¶

type SupiRange struct {
	Interface *interface{}
}

SupiRange - A range of SUPIs (subscriber identities), either based on a numeric range, or based on regular-expression matching

func InterfaceAsSupiRange ¶

func InterfaceAsSupiRange(v *interface{}) SupiRange

interface{}AsSupiRange is a convenience function that returns interface{} wrapped in SupiRange

func (*SupiRange) GetActualInstance ¶

func (obj *SupiRange) GetActualInstance() interface{}

Get the actual instance

func (SupiRange) MarshalJSON ¶

func (src SupiRange) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SupiRange) UnmarshalJSON ¶

func (dst *SupiRange) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type SupportedGADShapes ¶

type SupportedGADShapes struct {
	String *string
}

SupportedGADShapes Indicates supported GAD shapes.

func (*SupportedGADShapes) MarshalJSON ¶

func (src *SupportedGADShapes) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SupportedGADShapes) UnmarshalJSON ¶

func (dst *SupportedGADShapes) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SupportedSnssai ¶

type SupportedSnssai struct {
	SNssai         ExtSnssai `json:"sNssai"`
	RestrictionInd *bool     `json:"restrictionInd,omitempty"`
}

SupportedSnssai Supported S-NSSAIs

func NewSupportedSnssai ¶

func NewSupportedSnssai(sNssai ExtSnssai) *SupportedSnssai

NewSupportedSnssai instantiates a new SupportedSnssai 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 NewSupportedSnssaiWithDefaults ¶

func NewSupportedSnssaiWithDefaults() *SupportedSnssai

NewSupportedSnssaiWithDefaults instantiates a new SupportedSnssai 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 (*SupportedSnssai) GetRestrictionInd ¶

func (o *SupportedSnssai) GetRestrictionInd() bool

GetRestrictionInd returns the RestrictionInd field value if set, zero value otherwise.

func (*SupportedSnssai) GetRestrictionIndOk ¶

func (o *SupportedSnssai) GetRestrictionIndOk() (*bool, bool)

GetRestrictionIndOk returns a tuple with the RestrictionInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SupportedSnssai) GetSNssai ¶

func (o *SupportedSnssai) GetSNssai() ExtSnssai

GetSNssai returns the SNssai field value

func (*SupportedSnssai) GetSNssaiOk ¶

func (o *SupportedSnssai) GetSNssaiOk() (*ExtSnssai, bool)

GetSNssaiOk returns a tuple with the SNssai field value and a boolean to check if the value has been set.

func (*SupportedSnssai) HasRestrictionInd ¶

func (o *SupportedSnssai) HasRestrictionInd() bool

HasRestrictionInd returns a boolean if a field has been set.

func (SupportedSnssai) MarshalJSON ¶

func (o SupportedSnssai) MarshalJSON() ([]byte, error)

func (*SupportedSnssai) SetRestrictionInd ¶

func (o *SupportedSnssai) SetRestrictionInd(v bool)

SetRestrictionInd gets a reference to the given bool and assigns it to the RestrictionInd field.

func (*SupportedSnssai) SetSNssai ¶

func (o *SupportedSnssai) SetSNssai(v ExtSnssai)

SetSNssai sets field value

func (SupportedSnssai) ToMap ¶

func (o SupportedSnssai) ToMap() (map[string]interface{}, error)

type SvcExperience ¶

type SvcExperience struct {
	// string with format 'float' as defined in OpenAPI.
	Mos *float32 `json:"mos,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	UpperRange *float32 `json:"upperRange,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	LowerRange *float32 `json:"lowerRange,omitempty"`
}

SvcExperience Contains a mean opinion score with the customized range.

func NewSvcExperience ¶

func NewSvcExperience() *SvcExperience

NewSvcExperience instantiates a new SvcExperience 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 NewSvcExperienceWithDefaults ¶

func NewSvcExperienceWithDefaults() *SvcExperience

NewSvcExperienceWithDefaults instantiates a new SvcExperience 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 (*SvcExperience) GetLowerRange ¶

func (o *SvcExperience) GetLowerRange() float32

GetLowerRange returns the LowerRange field value if set, zero value otherwise.

func (*SvcExperience) GetLowerRangeOk ¶

func (o *SvcExperience) GetLowerRangeOk() (*float32, bool)

GetLowerRangeOk returns a tuple with the LowerRange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SvcExperience) GetMos ¶

func (o *SvcExperience) GetMos() float32

GetMos returns the Mos field value if set, zero value otherwise.

func (*SvcExperience) GetMosOk ¶

func (o *SvcExperience) GetMosOk() (*float32, bool)

GetMosOk returns a tuple with the Mos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SvcExperience) GetUpperRange ¶

func (o *SvcExperience) GetUpperRange() float32

GetUpperRange returns the UpperRange field value if set, zero value otherwise.

func (*SvcExperience) GetUpperRangeOk ¶

func (o *SvcExperience) GetUpperRangeOk() (*float32, bool)

GetUpperRangeOk returns a tuple with the UpperRange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SvcExperience) HasLowerRange ¶

func (o *SvcExperience) HasLowerRange() bool

HasLowerRange returns a boolean if a field has been set.

func (*SvcExperience) HasMos ¶

func (o *SvcExperience) HasMos() bool

HasMos returns a boolean if a field has been set.

func (*SvcExperience) HasUpperRange ¶

func (o *SvcExperience) HasUpperRange() bool

HasUpperRange returns a boolean if a field has been set.

func (SvcExperience) MarshalJSON ¶

func (o SvcExperience) MarshalJSON() ([]byte, error)

func (*SvcExperience) SetLowerRange ¶

func (o *SvcExperience) SetLowerRange(v float32)

SetLowerRange gets a reference to the given float32 and assigns it to the LowerRange field.

func (*SvcExperience) SetMos ¶

func (o *SvcExperience) SetMos(v float32)

SetMos gets a reference to the given float32 and assigns it to the Mos field.

func (*SvcExperience) SetUpperRange ¶

func (o *SvcExperience) SetUpperRange(v float32)

SetUpperRange gets a reference to the given float32 and assigns it to the UpperRange field.

func (SvcExperience) ToMap ¶

func (o SvcExperience) ToMap() (map[string]interface{}, error)

type TacRange ¶

type TacRange struct {
	Interface *interface{}
}

TacRange - Range of TACs (Tracking Area Codes)

func InterfaceAsTacRange ¶

func InterfaceAsTacRange(v *interface{}) TacRange

interface{}AsTacRange is a convenience function that returns interface{} wrapped in TacRange

func (*TacRange) GetActualInstance ¶

func (obj *TacRange) GetActualInstance() interface{}

Get the actual instance

func (TacRange) MarshalJSON ¶

func (src TacRange) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TacRange) UnmarshalJSON ¶

func (dst *TacRange) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type Tai ¶

type Tai struct {
	PlmnId PlmnId `json:"plmnId"`
	// 2 or 3-octet string identifying a tracking area code as specified in clause 9.3.3.10  of 3GPP TS 38.413, in hexadecimal representation. Each character in the string shall  take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant character representing the 4 most significant bits of the TAC shall  appear first in the string, and the character representing the 4 least significant bit  of the TAC shall appear last in the string.
	Tac string `json:"tac"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

Tai Contains the tracking area identity as described in 3GPP 23.003

func NewTai ¶

func NewTai(plmnId PlmnId, tac string) *Tai

NewTai instantiates a new Tai 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 NewTaiWithDefaults ¶

func NewTaiWithDefaults() *Tai

NewTaiWithDefaults instantiates a new Tai 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 (*Tai) GetNid ¶

func (o *Tai) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*Tai) GetNidOk ¶

func (o *Tai) GetNidOk() (*string, bool)

GetNidOk returns a tuple with the Nid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tai) GetPlmnId ¶

func (o *Tai) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Tai) GetPlmnIdOk ¶

func (o *Tai) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*Tai) GetTac ¶

func (o *Tai) GetTac() string

GetTac returns the Tac field value

func (*Tai) GetTacOk ¶

func (o *Tai) GetTacOk() (*string, bool)

GetTacOk returns a tuple with the Tac field value and a boolean to check if the value has been set.

func (*Tai) HasNid ¶

func (o *Tai) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Tai) MarshalJSON ¶

func (o Tai) MarshalJSON() ([]byte, error)

func (*Tai) SetNid ¶

func (o *Tai) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (*Tai) SetPlmnId ¶

func (o *Tai) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*Tai) SetTac ¶

func (o *Tai) SetTac(v string)

SetTac sets field value

func (Tai) ToMap ¶

func (o Tai) ToMap() (map[string]interface{}, error)

type TaiRange ¶

type TaiRange struct {
	PlmnId       PlmnId     `json:"plmnId"`
	TacRangeList []TacRange `json:"tacRangeList"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

TaiRange Range of TAIs (Tracking Area Identities)

func NewTaiRange ¶

func NewTaiRange(plmnId PlmnId, tacRangeList []TacRange) *TaiRange

NewTaiRange instantiates a new TaiRange 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 NewTaiRangeWithDefaults ¶

func NewTaiRangeWithDefaults() *TaiRange

NewTaiRangeWithDefaults instantiates a new TaiRange 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 (*TaiRange) GetNid ¶

func (o *TaiRange) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*TaiRange) GetNidOk ¶

func (o *TaiRange) GetNidOk() (*string, bool)

GetNidOk returns a tuple with the Nid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaiRange) GetPlmnId ¶

func (o *TaiRange) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*TaiRange) GetPlmnIdOk ¶

func (o *TaiRange) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*TaiRange) GetTacRangeList ¶

func (o *TaiRange) GetTacRangeList() []TacRange

GetTacRangeList returns the TacRangeList field value

func (*TaiRange) GetTacRangeListOk ¶

func (o *TaiRange) GetTacRangeListOk() ([]TacRange, bool)

GetTacRangeListOk returns a tuple with the TacRangeList field value and a boolean to check if the value has been set.

func (*TaiRange) HasNid ¶

func (o *TaiRange) HasNid() bool

HasNid returns a boolean if a field has been set.

func (TaiRange) MarshalJSON ¶

func (o TaiRange) MarshalJSON() ([]byte, error)

func (*TaiRange) SetNid ¶

func (o *TaiRange) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (*TaiRange) SetPlmnId ¶

func (o *TaiRange) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*TaiRange) SetTacRangeList ¶

func (o *TaiRange) SetTacRangeList(v []TacRange)

SetTacRangeList sets field value

func (TaiRange) ToMap ¶

func (o TaiRange) ToMap() (map[string]interface{}, error)

type TargetArea ¶

type TargetArea struct {
	TaList       []Tai      `json:"taList,omitempty"`
	TaiRangeList []TaiRange `json:"taiRangeList,omitempty"`
	AnyTa        *bool      `json:"anyTa,omitempty"`
}

TargetArea TA list or TAI range list or any TA

func NewTargetArea ¶

func NewTargetArea() *TargetArea

NewTargetArea instantiates a new TargetArea 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 NewTargetAreaWithDefaults ¶

func NewTargetAreaWithDefaults() *TargetArea

NewTargetAreaWithDefaults instantiates a new TargetArea 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 (*TargetArea) GetAnyTa ¶

func (o *TargetArea) GetAnyTa() bool

GetAnyTa returns the AnyTa field value if set, zero value otherwise.

func (*TargetArea) GetAnyTaOk ¶

func (o *TargetArea) GetAnyTaOk() (*bool, bool)

GetAnyTaOk returns a tuple with the AnyTa field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TargetArea) GetTaList ¶

func (o *TargetArea) GetTaList() []Tai

GetTaList returns the TaList field value if set, zero value otherwise.

func (*TargetArea) GetTaListOk ¶

func (o *TargetArea) GetTaListOk() ([]Tai, bool)

GetTaListOk returns a tuple with the TaList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TargetArea) GetTaiRangeList ¶

func (o *TargetArea) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*TargetArea) GetTaiRangeListOk ¶

func (o *TargetArea) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TargetArea) HasAnyTa ¶

func (o *TargetArea) HasAnyTa() bool

HasAnyTa returns a boolean if a field has been set.

func (*TargetArea) HasTaList ¶

func (o *TargetArea) HasTaList() bool

HasTaList returns a boolean if a field has been set.

func (*TargetArea) HasTaiRangeList ¶

func (o *TargetArea) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (TargetArea) MarshalJSON ¶

func (o TargetArea) MarshalJSON() ([]byte, error)

func (*TargetArea) SetAnyTa ¶

func (o *TargetArea) SetAnyTa(v bool)

SetAnyTa gets a reference to the given bool and assigns it to the AnyTa field.

func (*TargetArea) SetTaList ¶

func (o *TargetArea) SetTaList(v []Tai)

SetTaList gets a reference to the given []Tai and assigns it to the TaList field.

func (*TargetArea) SetTaiRangeList ¶

func (o *TargetArea) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (TargetArea) ToMap ¶

func (o TargetArea) ToMap() (map[string]interface{}, error)

type TargetUeIdentification ¶

type TargetUeIdentification struct {
	Supis         []string `json:"supis,omitempty"`
	InterGroupIds []string `json:"interGroupIds,omitempty"`
	AnyUeId       *bool    `json:"anyUeId,omitempty"`
}

TargetUeIdentification Identifies the UE to which the request applies.

func NewTargetUeIdentification ¶

func NewTargetUeIdentification() *TargetUeIdentification

NewTargetUeIdentification instantiates a new TargetUeIdentification 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 NewTargetUeIdentificationWithDefaults ¶

func NewTargetUeIdentificationWithDefaults() *TargetUeIdentification

NewTargetUeIdentificationWithDefaults instantiates a new TargetUeIdentification 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 (*TargetUeIdentification) GetAnyUeId ¶

func (o *TargetUeIdentification) GetAnyUeId() bool

GetAnyUeId returns the AnyUeId field value if set, zero value otherwise.

func (*TargetUeIdentification) GetAnyUeIdOk ¶

func (o *TargetUeIdentification) GetAnyUeIdOk() (*bool, bool)

GetAnyUeIdOk returns a tuple with the AnyUeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TargetUeIdentification) GetInterGroupIds ¶

func (o *TargetUeIdentification) GetInterGroupIds() []string

GetInterGroupIds returns the InterGroupIds field value if set, zero value otherwise.

func (*TargetUeIdentification) GetInterGroupIdsOk ¶

func (o *TargetUeIdentification) GetInterGroupIdsOk() ([]string, bool)

GetInterGroupIdsOk returns a tuple with the InterGroupIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TargetUeIdentification) GetSupis ¶

func (o *TargetUeIdentification) GetSupis() []string

GetSupis returns the Supis field value if set, zero value otherwise.

func (*TargetUeIdentification) GetSupisOk ¶

func (o *TargetUeIdentification) GetSupisOk() ([]string, bool)

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 (*TargetUeIdentification) HasAnyUeId ¶

func (o *TargetUeIdentification) HasAnyUeId() bool

HasAnyUeId returns a boolean if a field has been set.

func (*TargetUeIdentification) HasInterGroupIds ¶

func (o *TargetUeIdentification) HasInterGroupIds() bool

HasInterGroupIds returns a boolean if a field has been set.

func (*TargetUeIdentification) HasSupis ¶

func (o *TargetUeIdentification) HasSupis() bool

HasSupis returns a boolean if a field has been set.

func (TargetUeIdentification) MarshalJSON ¶

func (o TargetUeIdentification) MarshalJSON() ([]byte, error)

func (*TargetUeIdentification) SetAnyUeId ¶

func (o *TargetUeIdentification) SetAnyUeId(v bool)

SetAnyUeId gets a reference to the given bool and assigns it to the AnyUeId field.

func (*TargetUeIdentification) SetInterGroupIds ¶

func (o *TargetUeIdentification) SetInterGroupIds(v []string)

SetInterGroupIds gets a reference to the given []string and assigns it to the InterGroupIds field.

func (*TargetUeIdentification) SetSupis ¶

func (o *TargetUeIdentification) SetSupis(v []string)

SetSupis gets a reference to the given []string and assigns it to the Supis field.

func (TargetUeIdentification) ToMap ¶

func (o TargetUeIdentification) ToMap() (map[string]interface{}, error)

type TargetUeInformation ¶

type TargetUeInformation struct {
	AnyUe       *bool    `json:"anyUe,omitempty"`
	Supis       []string `json:"supis,omitempty"`
	Gpsis       []string `json:"gpsis,omitempty"`
	IntGroupIds []string `json:"intGroupIds,omitempty"`
}

TargetUeInformation Identifies the target UE information.

func NewTargetUeInformation ¶

func NewTargetUeInformation() *TargetUeInformation

NewTargetUeInformation instantiates a new TargetUeInformation 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 NewTargetUeInformationWithDefaults ¶

func NewTargetUeInformationWithDefaults() *TargetUeInformation

NewTargetUeInformationWithDefaults instantiates a new TargetUeInformation 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 (*TargetUeInformation) GetAnyUe ¶

func (o *TargetUeInformation) GetAnyUe() bool

GetAnyUe returns the AnyUe field value if set, zero value otherwise.

func (*TargetUeInformation) GetAnyUeOk ¶

func (o *TargetUeInformation) GetAnyUeOk() (*bool, bool)

GetAnyUeOk returns a tuple with the AnyUe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TargetUeInformation) GetGpsis ¶

func (o *TargetUeInformation) GetGpsis() []string

GetGpsis returns the Gpsis field value if set, zero value otherwise.

func (*TargetUeInformation) GetGpsisOk ¶

func (o *TargetUeInformation) GetGpsisOk() ([]string, bool)

GetGpsisOk returns a tuple with the Gpsis field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TargetUeInformation) GetIntGroupIds ¶

func (o *TargetUeInformation) GetIntGroupIds() []string

GetIntGroupIds returns the IntGroupIds field value if set, zero value otherwise.

func (*TargetUeInformation) GetIntGroupIdsOk ¶

func (o *TargetUeInformation) GetIntGroupIdsOk() ([]string, bool)

GetIntGroupIdsOk returns a tuple with the IntGroupIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TargetUeInformation) GetSupis ¶

func (o *TargetUeInformation) GetSupis() []string

GetSupis returns the Supis field value if set, zero value otherwise.

func (*TargetUeInformation) GetSupisOk ¶

func (o *TargetUeInformation) GetSupisOk() ([]string, bool)

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 (*TargetUeInformation) HasAnyUe ¶

func (o *TargetUeInformation) HasAnyUe() bool

HasAnyUe returns a boolean if a field has been set.

func (*TargetUeInformation) HasGpsis ¶

func (o *TargetUeInformation) HasGpsis() bool

HasGpsis returns a boolean if a field has been set.

func (*TargetUeInformation) HasIntGroupIds ¶

func (o *TargetUeInformation) HasIntGroupIds() bool

HasIntGroupIds returns a boolean if a field has been set.

func (*TargetUeInformation) HasSupis ¶

func (o *TargetUeInformation) HasSupis() bool

HasSupis returns a boolean if a field has been set.

func (TargetUeInformation) MarshalJSON ¶

func (o TargetUeInformation) MarshalJSON() ([]byte, error)

func (*TargetUeInformation) SetAnyUe ¶

func (o *TargetUeInformation) SetAnyUe(v bool)

SetAnyUe gets a reference to the given bool and assigns it to the AnyUe field.

func (*TargetUeInformation) SetGpsis ¶

func (o *TargetUeInformation) SetGpsis(v []string)

SetGpsis gets a reference to the given []string and assigns it to the Gpsis field.

func (*TargetUeInformation) SetIntGroupIds ¶

func (o *TargetUeInformation) SetIntGroupIds(v []string)

SetIntGroupIds gets a reference to the given []string and assigns it to the IntGroupIds field.

func (*TargetUeInformation) SetSupis ¶

func (o *TargetUeInformation) SetSupis(v []string)

SetSupis gets a reference to the given []string and assigns it to the Supis field.

func (TargetUeInformation) ToMap ¶

func (o TargetUeInformation) ToMap() (map[string]interface{}, error)

type TermCause ¶

type TermCause struct {
	String *string
}

TermCause Possible values are: - USER_CONSENT_REVOKED: The user consent has been revoked. - NWDAF_OVERLOAD: The NWDAF is overloaded. - UE_LEFT_AREA: The UE has moved out of the NWDAF serving area.

func (*TermCause) MarshalJSON ¶

func (src *TermCause) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TermCause) UnmarshalJSON ¶

func (dst *TermCause) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ThresholdLevel ¶

type ThresholdLevel struct {
	CongLevel      *int32 `json:"congLevel,omitempty"`
	NfLoadLevel    *int32 `json:"nfLoadLevel,omitempty"`
	NfCpuUsage     *int32 `json:"nfCpuUsage,omitempty"`
	NfMemoryUsage  *int32 `json:"nfMemoryUsage,omitempty"`
	NfStorageUsage *int32 `json:"nfStorageUsage,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	AvgTrafficRate *string `json:"avgTrafficRate,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MaxTrafficRate *string `json:"maxTrafficRate,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	AvgPacketDelay *int32 `json:"avgPacketDelay,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	MaxPacketDelay *int32 `json:"maxPacketDelay,omitempty"`
	// Unsigned integer indicating Packet Loss Rate (see clauses 5.7.2.8 and 5.7.4 of 3GPP TS 23.501), expressed in tenth of percent.
	AvgPacketLossRate *int32 `json:"avgPacketLossRate,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	SvcExpLevel *float32 `json:"svcExpLevel,omitempty"`
}

ThresholdLevel Represents a threshold level.

func NewThresholdLevel ¶

func NewThresholdLevel() *ThresholdLevel

NewThresholdLevel instantiates a new ThresholdLevel 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 NewThresholdLevelWithDefaults ¶

func NewThresholdLevelWithDefaults() *ThresholdLevel

NewThresholdLevelWithDefaults instantiates a new ThresholdLevel 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 (*ThresholdLevel) GetAvgPacketDelay ¶

func (o *ThresholdLevel) GetAvgPacketDelay() int32

GetAvgPacketDelay returns the AvgPacketDelay field value if set, zero value otherwise.

func (*ThresholdLevel) GetAvgPacketDelayOk ¶

func (o *ThresholdLevel) GetAvgPacketDelayOk() (*int32, bool)

GetAvgPacketDelayOk returns a tuple with the AvgPacketDelay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThresholdLevel) GetAvgPacketLossRate ¶

func (o *ThresholdLevel) GetAvgPacketLossRate() int32

GetAvgPacketLossRate returns the AvgPacketLossRate field value if set, zero value otherwise.

func (*ThresholdLevel) GetAvgPacketLossRateOk ¶

func (o *ThresholdLevel) GetAvgPacketLossRateOk() (*int32, bool)

GetAvgPacketLossRateOk returns a tuple with the AvgPacketLossRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThresholdLevel) GetAvgTrafficRate ¶

func (o *ThresholdLevel) GetAvgTrafficRate() string

GetAvgTrafficRate returns the AvgTrafficRate field value if set, zero value otherwise.

func (*ThresholdLevel) GetAvgTrafficRateOk ¶

func (o *ThresholdLevel) GetAvgTrafficRateOk() (*string, bool)

GetAvgTrafficRateOk returns a tuple with the AvgTrafficRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThresholdLevel) GetCongLevel ¶

func (o *ThresholdLevel) GetCongLevel() int32

GetCongLevel returns the CongLevel field value if set, zero value otherwise.

func (*ThresholdLevel) GetCongLevelOk ¶

func (o *ThresholdLevel) GetCongLevelOk() (*int32, bool)

GetCongLevelOk returns a tuple with the CongLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThresholdLevel) GetMaxPacketDelay ¶

func (o *ThresholdLevel) GetMaxPacketDelay() int32

GetMaxPacketDelay returns the MaxPacketDelay field value if set, zero value otherwise.

func (*ThresholdLevel) GetMaxPacketDelayOk ¶

func (o *ThresholdLevel) GetMaxPacketDelayOk() (*int32, bool)

GetMaxPacketDelayOk returns a tuple with the MaxPacketDelay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThresholdLevel) GetMaxTrafficRate ¶

func (o *ThresholdLevel) GetMaxTrafficRate() string

GetMaxTrafficRate returns the MaxTrafficRate field value if set, zero value otherwise.

func (*ThresholdLevel) GetMaxTrafficRateOk ¶

func (o *ThresholdLevel) GetMaxTrafficRateOk() (*string, bool)

GetMaxTrafficRateOk returns a tuple with the MaxTrafficRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThresholdLevel) GetNfCpuUsage ¶

func (o *ThresholdLevel) GetNfCpuUsage() int32

GetNfCpuUsage returns the NfCpuUsage field value if set, zero value otherwise.

func (*ThresholdLevel) GetNfCpuUsageOk ¶

func (o *ThresholdLevel) GetNfCpuUsageOk() (*int32, bool)

GetNfCpuUsageOk returns a tuple with the NfCpuUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThresholdLevel) GetNfLoadLevel ¶

func (o *ThresholdLevel) GetNfLoadLevel() int32

GetNfLoadLevel returns the NfLoadLevel field value if set, zero value otherwise.

func (*ThresholdLevel) GetNfLoadLevelOk ¶

func (o *ThresholdLevel) GetNfLoadLevelOk() (*int32, bool)

GetNfLoadLevelOk returns a tuple with the NfLoadLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThresholdLevel) GetNfMemoryUsage ¶

func (o *ThresholdLevel) GetNfMemoryUsage() int32

GetNfMemoryUsage returns the NfMemoryUsage field value if set, zero value otherwise.

func (*ThresholdLevel) GetNfMemoryUsageOk ¶

func (o *ThresholdLevel) GetNfMemoryUsageOk() (*int32, bool)

GetNfMemoryUsageOk returns a tuple with the NfMemoryUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThresholdLevel) GetNfStorageUsage ¶

func (o *ThresholdLevel) GetNfStorageUsage() int32

GetNfStorageUsage returns the NfStorageUsage field value if set, zero value otherwise.

func (*ThresholdLevel) GetNfStorageUsageOk ¶

func (o *ThresholdLevel) GetNfStorageUsageOk() (*int32, bool)

GetNfStorageUsageOk returns a tuple with the NfStorageUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThresholdLevel) GetSvcExpLevel ¶

func (o *ThresholdLevel) GetSvcExpLevel() float32

GetSvcExpLevel returns the SvcExpLevel field value if set, zero value otherwise.

func (*ThresholdLevel) GetSvcExpLevelOk ¶

func (o *ThresholdLevel) GetSvcExpLevelOk() (*float32, bool)

GetSvcExpLevelOk returns a tuple with the SvcExpLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ThresholdLevel) HasAvgPacketDelay ¶

func (o *ThresholdLevel) HasAvgPacketDelay() bool

HasAvgPacketDelay returns a boolean if a field has been set.

func (*ThresholdLevel) HasAvgPacketLossRate ¶

func (o *ThresholdLevel) HasAvgPacketLossRate() bool

HasAvgPacketLossRate returns a boolean if a field has been set.

func (*ThresholdLevel) HasAvgTrafficRate ¶

func (o *ThresholdLevel) HasAvgTrafficRate() bool

HasAvgTrafficRate returns a boolean if a field has been set.

func (*ThresholdLevel) HasCongLevel ¶

func (o *ThresholdLevel) HasCongLevel() bool

HasCongLevel returns a boolean if a field has been set.

func (*ThresholdLevel) HasMaxPacketDelay ¶

func (o *ThresholdLevel) HasMaxPacketDelay() bool

HasMaxPacketDelay returns a boolean if a field has been set.

func (*ThresholdLevel) HasMaxTrafficRate ¶

func (o *ThresholdLevel) HasMaxTrafficRate() bool

HasMaxTrafficRate returns a boolean if a field has been set.

func (*ThresholdLevel) HasNfCpuUsage ¶

func (o *ThresholdLevel) HasNfCpuUsage() bool

HasNfCpuUsage returns a boolean if a field has been set.

func (*ThresholdLevel) HasNfLoadLevel ¶

func (o *ThresholdLevel) HasNfLoadLevel() bool

HasNfLoadLevel returns a boolean if a field has been set.

func (*ThresholdLevel) HasNfMemoryUsage ¶

func (o *ThresholdLevel) HasNfMemoryUsage() bool

HasNfMemoryUsage returns a boolean if a field has been set.

func (*ThresholdLevel) HasNfStorageUsage ¶

func (o *ThresholdLevel) HasNfStorageUsage() bool

HasNfStorageUsage returns a boolean if a field has been set.

func (*ThresholdLevel) HasSvcExpLevel ¶

func (o *ThresholdLevel) HasSvcExpLevel() bool

HasSvcExpLevel returns a boolean if a field has been set.

func (ThresholdLevel) MarshalJSON ¶

func (o ThresholdLevel) MarshalJSON() ([]byte, error)

func (*ThresholdLevel) SetAvgPacketDelay ¶

func (o *ThresholdLevel) SetAvgPacketDelay(v int32)

SetAvgPacketDelay gets a reference to the given int32 and assigns it to the AvgPacketDelay field.

func (*ThresholdLevel) SetAvgPacketLossRate ¶

func (o *ThresholdLevel) SetAvgPacketLossRate(v int32)

SetAvgPacketLossRate gets a reference to the given int32 and assigns it to the AvgPacketLossRate field.

func (*ThresholdLevel) SetAvgTrafficRate ¶

func (o *ThresholdLevel) SetAvgTrafficRate(v string)

SetAvgTrafficRate gets a reference to the given string and assigns it to the AvgTrafficRate field.

func (*ThresholdLevel) SetCongLevel ¶

func (o *ThresholdLevel) SetCongLevel(v int32)

SetCongLevel gets a reference to the given int32 and assigns it to the CongLevel field.

func (*ThresholdLevel) SetMaxPacketDelay ¶

func (o *ThresholdLevel) SetMaxPacketDelay(v int32)

SetMaxPacketDelay gets a reference to the given int32 and assigns it to the MaxPacketDelay field.

func (*ThresholdLevel) SetMaxTrafficRate ¶

func (o *ThresholdLevel) SetMaxTrafficRate(v string)

SetMaxTrafficRate gets a reference to the given string and assigns it to the MaxTrafficRate field.

func (*ThresholdLevel) SetNfCpuUsage ¶

func (o *ThresholdLevel) SetNfCpuUsage(v int32)

SetNfCpuUsage gets a reference to the given int32 and assigns it to the NfCpuUsage field.

func (*ThresholdLevel) SetNfLoadLevel ¶

func (o *ThresholdLevel) SetNfLoadLevel(v int32)

SetNfLoadLevel gets a reference to the given int32 and assigns it to the NfLoadLevel field.

func (*ThresholdLevel) SetNfMemoryUsage ¶

func (o *ThresholdLevel) SetNfMemoryUsage(v int32)

SetNfMemoryUsage gets a reference to the given int32 and assigns it to the NfMemoryUsage field.

func (*ThresholdLevel) SetNfStorageUsage ¶

func (o *ThresholdLevel) SetNfStorageUsage(v int32)

SetNfStorageUsage gets a reference to the given int32 and assigns it to the NfStorageUsage field.

func (*ThresholdLevel) SetSvcExpLevel ¶

func (o *ThresholdLevel) SetSvcExpLevel(v float32)

SetSvcExpLevel gets a reference to the given float32 and assigns it to the SvcExpLevel field.

func (ThresholdLevel) ToMap ¶

func (o ThresholdLevel) ToMap() (map[string]interface{}, error)

type TimeUnit ¶

type TimeUnit struct {
	String *string
}

TimeUnit Possible values are: - MINUTE: Time unit is per minute. - HOUR: Time unit is per hour. - DAY: Time unit is per day.

func (*TimeUnit) MarshalJSON ¶

func (src *TimeUnit) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TimeUnit) UnmarshalJSON ¶

func (dst *TimeUnit) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TimeWindow ¶

type TimeWindow struct {
	// string with format \"date-time\" as defined in OpenAPI.
	StartTime time.Time `json:"startTime"`
	// string with format \"date-time\" as defined in OpenAPI.
	StopTime time.Time `json:"stopTime"`
}

TimeWindow Represents a time window identified by a start time and a stop time.

func NewTimeWindow ¶

func NewTimeWindow(startTime time.Time, stopTime time.Time) *TimeWindow

NewTimeWindow instantiates a new TimeWindow 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 NewTimeWindowWithDefaults ¶

func NewTimeWindowWithDefaults() *TimeWindow

NewTimeWindowWithDefaults instantiates a new TimeWindow 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 (*TimeWindow) GetStartTime ¶

func (o *TimeWindow) GetStartTime() time.Time

GetStartTime returns the StartTime field value

func (*TimeWindow) GetStartTimeOk ¶

func (o *TimeWindow) GetStartTimeOk() (*time.Time, bool)

GetStartTimeOk returns a tuple with the StartTime field value and a boolean to check if the value has been set.

func (*TimeWindow) GetStopTime ¶

func (o *TimeWindow) GetStopTime() time.Time

GetStopTime returns the StopTime field value

func (*TimeWindow) GetStopTimeOk ¶

func (o *TimeWindow) GetStopTimeOk() (*time.Time, bool)

GetStopTimeOk returns a tuple with the StopTime field value and a boolean to check if the value has been set.

func (TimeWindow) MarshalJSON ¶

func (o TimeWindow) MarshalJSON() ([]byte, error)

func (*TimeWindow) SetStartTime ¶

func (o *TimeWindow) SetStartTime(v time.Time)

SetStartTime sets field value

func (*TimeWindow) SetStopTime ¶

func (o *TimeWindow) SetStopTime(v time.Time)

SetStopTime sets field value

func (TimeWindow) ToMap ¶

func (o TimeWindow) ToMap() (map[string]interface{}, error)

type Tmgi ¶

type Tmgi struct {
	// MBS Service ID
	MbsServiceId string `json:"mbsServiceId"`
	PlmnId       PlmnId `json:"plmnId"`
}

Tmgi Temporary Mobile Group Identity

func NewTmgi ¶

func NewTmgi(mbsServiceId string, plmnId PlmnId) *Tmgi

NewTmgi instantiates a new Tmgi 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 NewTmgiWithDefaults ¶

func NewTmgiWithDefaults() *Tmgi

NewTmgiWithDefaults instantiates a new Tmgi 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 (*Tmgi) GetMbsServiceId ¶

func (o *Tmgi) GetMbsServiceId() string

GetMbsServiceId returns the MbsServiceId field value

func (*Tmgi) GetMbsServiceIdOk ¶

func (o *Tmgi) GetMbsServiceIdOk() (*string, bool)

GetMbsServiceIdOk returns a tuple with the MbsServiceId field value and a boolean to check if the value has been set.

func (*Tmgi) GetPlmnId ¶

func (o *Tmgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Tmgi) GetPlmnIdOk ¶

func (o *Tmgi) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (Tmgi) MarshalJSON ¶

func (o Tmgi) MarshalJSON() ([]byte, error)

func (*Tmgi) SetMbsServiceId ¶

func (o *Tmgi) SetMbsServiceId(v string)

SetMbsServiceId sets field value

func (*Tmgi) SetPlmnId ¶

func (o *Tmgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Tmgi) ToMap ¶

func (o Tmgi) ToMap() (map[string]interface{}, error)

type TmgiRange ¶

type TmgiRange struct {
	MbsServiceIdStart string `json:"mbsServiceIdStart"`
	MbsServiceIdEnd   string `json:"mbsServiceIdEnd"`
	PlmnId            PlmnId `json:"plmnId"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

TmgiRange Range of TMGIs

func NewTmgiRange ¶

func NewTmgiRange(mbsServiceIdStart string, mbsServiceIdEnd string, plmnId PlmnId) *TmgiRange

NewTmgiRange instantiates a new TmgiRange 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 NewTmgiRangeWithDefaults ¶

func NewTmgiRangeWithDefaults() *TmgiRange

NewTmgiRangeWithDefaults instantiates a new TmgiRange 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 (*TmgiRange) GetMbsServiceIdEnd ¶

func (o *TmgiRange) GetMbsServiceIdEnd() string

GetMbsServiceIdEnd returns the MbsServiceIdEnd field value

func (*TmgiRange) GetMbsServiceIdEndOk ¶

func (o *TmgiRange) GetMbsServiceIdEndOk() (*string, bool)

GetMbsServiceIdEndOk returns a tuple with the MbsServiceIdEnd field value and a boolean to check if the value has been set.

func (*TmgiRange) GetMbsServiceIdStart ¶

func (o *TmgiRange) GetMbsServiceIdStart() string

GetMbsServiceIdStart returns the MbsServiceIdStart field value

func (*TmgiRange) GetMbsServiceIdStartOk ¶

func (o *TmgiRange) GetMbsServiceIdStartOk() (*string, bool)

GetMbsServiceIdStartOk returns a tuple with the MbsServiceIdStart field value and a boolean to check if the value has been set.

func (*TmgiRange) GetNid ¶

func (o *TmgiRange) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*TmgiRange) GetNidOk ¶

func (o *TmgiRange) GetNidOk() (*string, bool)

GetNidOk returns a tuple with the Nid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TmgiRange) GetPlmnId ¶

func (o *TmgiRange) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*TmgiRange) GetPlmnIdOk ¶

func (o *TmgiRange) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*TmgiRange) HasNid ¶

func (o *TmgiRange) HasNid() bool

HasNid returns a boolean if a field has been set.

func (TmgiRange) MarshalJSON ¶

func (o TmgiRange) MarshalJSON() ([]byte, error)

func (*TmgiRange) SetMbsServiceIdEnd ¶

func (o *TmgiRange) SetMbsServiceIdEnd(v string)

SetMbsServiceIdEnd sets field value

func (*TmgiRange) SetMbsServiceIdStart ¶

func (o *TmgiRange) SetMbsServiceIdStart(v string)

SetMbsServiceIdStart sets field value

func (*TmgiRange) SetNid ¶

func (o *TmgiRange) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (*TmgiRange) SetPlmnId ¶

func (o *TmgiRange) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (TmgiRange) ToMap ¶

func (o TmgiRange) ToMap() (map[string]interface{}, error)

type TnapId ¶

type TnapId struct {
	// This IE shall be present if the UE is accessing the 5GC via a trusted WLAN access network.When present, it shall contain the SSID of the access point to which the UE is attached, that is received over NGAP,  see IEEE Std 802.11-2012.
	SsId *string `json:"ssId,omitempty"`
	// When present, it shall contain the BSSID of the access point to which the UE is attached, that is received over NGAP, see IEEE Std 802.11-2012.
	BssId *string `json:"bssId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	CivicAddress *string `json:"civicAddress,omitempty"`
}

TnapId Contain the TNAP Identifier see clause5.6.2 of 3GPP TS 23.501.

func NewTnapId ¶

func NewTnapId() *TnapId

NewTnapId instantiates a new TnapId 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 NewTnapIdWithDefaults ¶

func NewTnapIdWithDefaults() *TnapId

NewTnapIdWithDefaults instantiates a new TnapId 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 (*TnapId) GetBssId ¶

func (o *TnapId) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*TnapId) GetBssIdOk ¶

func (o *TnapId) GetBssIdOk() (*string, bool)

GetBssIdOk returns a tuple with the BssId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) GetCivicAddress ¶

func (o *TnapId) GetCivicAddress() string

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*TnapId) GetCivicAddressOk ¶

func (o *TnapId) GetCivicAddressOk() (*string, bool)

GetCivicAddressOk returns a tuple with the CivicAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) GetSsId ¶

func (o *TnapId) GetSsId() string

GetSsId returns the SsId field value if set, zero value otherwise.

func (*TnapId) GetSsIdOk ¶

func (o *TnapId) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) HasBssId ¶

func (o *TnapId) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*TnapId) HasCivicAddress ¶

func (o *TnapId) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (*TnapId) HasSsId ¶

func (o *TnapId) HasSsId() bool

HasSsId returns a boolean if a field has been set.

func (TnapId) MarshalJSON ¶

func (o TnapId) MarshalJSON() ([]byte, error)

func (*TnapId) SetBssId ¶

func (o *TnapId) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*TnapId) SetCivicAddress ¶

func (o *TnapId) SetCivicAddress(v string)

SetCivicAddress gets a reference to the given string and assigns it to the CivicAddress field.

func (*TnapId) SetSsId ¶

func (o *TnapId) SetSsId(v string)

SetSsId gets a reference to the given string and assigns it to the SsId field.

func (TnapId) ToMap ¶

func (o TnapId) ToMap() (map[string]interface{}, error)

type TngfInfo ¶

type TngfInfo struct {
	Interface *interface{}
}

TngfInfo Infomation of the TNGF endpoints

func (*TngfInfo) MarshalJSON ¶

func (src *TngfInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TngfInfo) UnmarshalJSON ¶

func (dst *TngfInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TopApplication ¶

type TopApplication struct {
	Interface *interface{}
}

TopApplication - Top application that contributes the most to the traffic.

func InterfaceAsTopApplication ¶

func InterfaceAsTopApplication(v *interface{}) TopApplication

interface{}AsTopApplication is a convenience function that returns interface{} wrapped in TopApplication

func (*TopApplication) GetActualInstance ¶

func (obj *TopApplication) GetActualInstance() interface{}

Get the actual instance

func (TopApplication) MarshalJSON ¶

func (src TopApplication) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TopApplication) UnmarshalJSON ¶

func (dst *TopApplication) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type TrafficCharacterization ¶

type TrafficCharacterization struct {
	Interface *interface{}
}

TrafficCharacterization Identifies the detailed traffic characterization.

func (*TrafficCharacterization) MarshalJSON ¶

func (src *TrafficCharacterization) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TrafficCharacterization) UnmarshalJSON ¶

func (dst *TrafficCharacterization) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TrafficDescriptor ¶

type TrafficDescriptor struct {
	// 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"`
	SNssai                   *Snssai                `json:"sNssai,omitempty"`
	DddTrafficDescriptorList []DddTrafficDescriptor `json:"dddTrafficDescriptorList,omitempty"`
}

TrafficDescriptor Represents the Traffic Descriptor

func NewTrafficDescriptor ¶

func NewTrafficDescriptor() *TrafficDescriptor

NewTrafficDescriptor instantiates a new TrafficDescriptor 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 NewTrafficDescriptorWithDefaults ¶

func NewTrafficDescriptorWithDefaults() *TrafficDescriptor

NewTrafficDescriptorWithDefaults instantiates a new TrafficDescriptor 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 (*TrafficDescriptor) GetDddTrafficDescriptorList ¶

func (o *TrafficDescriptor) GetDddTrafficDescriptorList() []DddTrafficDescriptor

GetDddTrafficDescriptorList returns the DddTrafficDescriptorList field value if set, zero value otherwise.

func (*TrafficDescriptor) GetDddTrafficDescriptorListOk ¶

func (o *TrafficDescriptor) GetDddTrafficDescriptorListOk() ([]DddTrafficDescriptor, bool)

GetDddTrafficDescriptorListOk returns a tuple with the DddTrafficDescriptorList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrafficDescriptor) GetDnn ¶

func (o *TrafficDescriptor) GetDnn() string

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*TrafficDescriptor) GetDnnOk ¶

func (o *TrafficDescriptor) GetDnnOk() (*string, bool)

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 (*TrafficDescriptor) GetSNssai ¶

func (o *TrafficDescriptor) GetSNssai() Snssai

GetSNssai returns the SNssai field value if set, zero value otherwise.

func (*TrafficDescriptor) GetSNssaiOk ¶

func (o *TrafficDescriptor) GetSNssaiOk() (*Snssai, bool)

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 (*TrafficDescriptor) HasDddTrafficDescriptorList ¶

func (o *TrafficDescriptor) HasDddTrafficDescriptorList() bool

HasDddTrafficDescriptorList returns a boolean if a field has been set.

func (*TrafficDescriptor) HasDnn ¶

func (o *TrafficDescriptor) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*TrafficDescriptor) HasSNssai ¶

func (o *TrafficDescriptor) HasSNssai() bool

HasSNssai returns a boolean if a field has been set.

func (TrafficDescriptor) MarshalJSON ¶

func (o TrafficDescriptor) MarshalJSON() ([]byte, error)

func (*TrafficDescriptor) SetDddTrafficDescriptorList ¶

func (o *TrafficDescriptor) SetDddTrafficDescriptorList(v []DddTrafficDescriptor)

SetDddTrafficDescriptorList gets a reference to the given []DddTrafficDescriptor and assigns it to the DddTrafficDescriptorList field.

func (*TrafficDescriptor) SetDnn ¶

func (o *TrafficDescriptor) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*TrafficDescriptor) SetSNssai ¶

func (o *TrafficDescriptor) SetSNssai(v Snssai)

SetSNssai gets a reference to the given Snssai and assigns it to the SNssai field.

func (TrafficDescriptor) ToMap ¶

func (o TrafficDescriptor) ToMap() (map[string]interface{}, error)

type TrafficInformation ¶

type TrafficInformation struct {
	Interface *interface{}
}

TrafficInformation Traffic information including UL/DL data rate and/or Traffic volume.

func (*TrafficInformation) MarshalJSON ¶

func (src *TrafficInformation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TrafficInformation) UnmarshalJSON ¶

func (dst *TrafficInformation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TrafficProfile ¶

type TrafficProfile struct {
	String *string
}

TrafficProfile Possible values are: - SINGLE_TRANS_UL: Uplink single packet transmission. - SINGLE_TRANS_DL: Downlink single packet transmission. - DUAL_TRANS_UL_FIRST: Dual packet transmission, firstly uplink packet transmission with subsequent downlink packet transmission. - DUAL_TRANS_DL_FIRST: Dual packet transmission, firstly downlink packet transmission with subsequent uplink packet transmission.

func (*TrafficProfile) MarshalJSON ¶

func (src *TrafficProfile) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TrafficProfile) UnmarshalJSON ¶

func (dst *TrafficProfile) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TransactionInfo ¶

type TransactionInfo struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Transaction    int32               `json:"transaction"`
	Snssai         *Snssai             `json:"snssai,omitempty"`
	AppIds         []string            `json:"appIds,omitempty"`
	TransacMetrics []TransactionMetric `json:"transacMetrics,omitempty"`
}

TransactionInfo Represents SMF Transaction Information.

func NewTransactionInfo ¶

func NewTransactionInfo(transaction int32) *TransactionInfo

NewTransactionInfo instantiates a new TransactionInfo 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 NewTransactionInfoWithDefaults ¶

func NewTransactionInfoWithDefaults() *TransactionInfo

NewTransactionInfoWithDefaults instantiates a new TransactionInfo 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 (*TransactionInfo) GetAppIds ¶

func (o *TransactionInfo) GetAppIds() []string

GetAppIds returns the AppIds field value if set, zero value otherwise.

func (*TransactionInfo) GetAppIdsOk ¶

func (o *TransactionInfo) GetAppIdsOk() ([]string, bool)

GetAppIdsOk returns a tuple with the AppIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionInfo) GetSnssai ¶

func (o *TransactionInfo) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*TransactionInfo) GetSnssaiOk ¶

func (o *TransactionInfo) GetSnssaiOk() (*Snssai, bool)

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 (*TransactionInfo) GetTransacMetrics ¶

func (o *TransactionInfo) GetTransacMetrics() []TransactionMetric

GetTransacMetrics returns the TransacMetrics field value if set, zero value otherwise.

func (*TransactionInfo) GetTransacMetricsOk ¶

func (o *TransactionInfo) GetTransacMetricsOk() ([]TransactionMetric, bool)

GetTransacMetricsOk returns a tuple with the TransacMetrics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionInfo) GetTransaction ¶

func (o *TransactionInfo) GetTransaction() int32

GetTransaction returns the Transaction field value

func (*TransactionInfo) GetTransactionOk ¶

func (o *TransactionInfo) GetTransactionOk() (*int32, bool)

GetTransactionOk returns a tuple with the Transaction field value and a boolean to check if the value has been set.

func (*TransactionInfo) HasAppIds ¶

func (o *TransactionInfo) HasAppIds() bool

HasAppIds returns a boolean if a field has been set.

func (*TransactionInfo) HasSnssai ¶

func (o *TransactionInfo) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*TransactionInfo) HasTransacMetrics ¶

func (o *TransactionInfo) HasTransacMetrics() bool

HasTransacMetrics returns a boolean if a field has been set.

func (TransactionInfo) MarshalJSON ¶

func (o TransactionInfo) MarshalJSON() ([]byte, error)

func (*TransactionInfo) SetAppIds ¶

func (o *TransactionInfo) SetAppIds(v []string)

SetAppIds gets a reference to the given []string and assigns it to the AppIds field.

func (*TransactionInfo) SetSnssai ¶

func (o *TransactionInfo) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (*TransactionInfo) SetTransacMetrics ¶

func (o *TransactionInfo) SetTransacMetrics(v []TransactionMetric)

SetTransacMetrics gets a reference to the given []TransactionMetric and assigns it to the TransacMetrics field.

func (*TransactionInfo) SetTransaction ¶

func (o *TransactionInfo) SetTransaction(v int32)

SetTransaction sets field value

func (TransactionInfo) ToMap ¶

func (o TransactionInfo) ToMap() (map[string]interface{}, error)

type TransactionMetric ¶

type TransactionMetric struct {
	String *string
}

TransactionMetric Possible values are: - PDU_SES_EST: PDU Session Establishment - PDU_SES_AUTH: PDU Session Authentication - PDU_SES_MODIF: PDU Session Modification - PDU_SES_REL: PDU Session Release

func (*TransactionMetric) MarshalJSON ¶

func (src *TransactionMetric) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TransactionMetric) UnmarshalJSON ¶

func (dst *TransactionMetric) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TransportProtocol ¶

type TransportProtocol struct {
	String *string
}

TransportProtocol Types of transport protocol used in a given IP endpoint of an NF Service Instance

func (*TransportProtocol) MarshalJSON ¶

func (src *TransportProtocol) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TransportProtocol) UnmarshalJSON ¶

func (dst *TransportProtocol) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TransportProtocol1 ¶

type TransportProtocol1 struct {
	String *string
}

TransportProtocol1 Possible values are: - UDP: User Datagram Protocol. - TCP: Transmission Control Protocol.

func (*TransportProtocol1) MarshalJSON ¶

func (src *TransportProtocol1) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TransportProtocol1) UnmarshalJSON ¶

func (dst *TransportProtocol1) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TrustAfInfo ¶

type TrustAfInfo struct {
	SNssaiInfoList  []SnssaiInfoItem `json:"sNssaiInfoList,omitempty"`
	AfEvents        []AfEvent        `json:"afEvents,omitempty"`
	AppIds          []string         `json:"appIds,omitempty"`
	InternalGroupId []string         `json:"internalGroupId,omitempty"`
	MappingInd      *bool            `json:"mappingInd,omitempty"`
}

TrustAfInfo Information of a trusted AF Instance

func NewTrustAfInfo ¶

func NewTrustAfInfo() *TrustAfInfo

NewTrustAfInfo instantiates a new TrustAfInfo 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 NewTrustAfInfoWithDefaults ¶

func NewTrustAfInfoWithDefaults() *TrustAfInfo

NewTrustAfInfoWithDefaults instantiates a new TrustAfInfo 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 (*TrustAfInfo) GetAfEvents ¶

func (o *TrustAfInfo) GetAfEvents() []AfEvent

GetAfEvents returns the AfEvents field value if set, zero value otherwise.

func (*TrustAfInfo) GetAfEventsOk ¶

func (o *TrustAfInfo) GetAfEventsOk() ([]AfEvent, bool)

GetAfEventsOk returns a tuple with the AfEvents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustAfInfo) GetAppIds ¶

func (o *TrustAfInfo) GetAppIds() []string

GetAppIds returns the AppIds field value if set, zero value otherwise.

func (*TrustAfInfo) GetAppIdsOk ¶

func (o *TrustAfInfo) GetAppIdsOk() ([]string, bool)

GetAppIdsOk returns a tuple with the AppIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustAfInfo) GetInternalGroupId ¶

func (o *TrustAfInfo) GetInternalGroupId() []string

GetInternalGroupId returns the InternalGroupId field value if set, zero value otherwise.

func (*TrustAfInfo) GetInternalGroupIdOk ¶

func (o *TrustAfInfo) GetInternalGroupIdOk() ([]string, bool)

GetInternalGroupIdOk returns a tuple with the InternalGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustAfInfo) GetMappingInd ¶

func (o *TrustAfInfo) GetMappingInd() bool

GetMappingInd returns the MappingInd field value if set, zero value otherwise.

func (*TrustAfInfo) GetMappingIndOk ¶

func (o *TrustAfInfo) GetMappingIndOk() (*bool, bool)

GetMappingIndOk returns a tuple with the MappingInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustAfInfo) GetSNssaiInfoList ¶

func (o *TrustAfInfo) GetSNssaiInfoList() []SnssaiInfoItem

GetSNssaiInfoList returns the SNssaiInfoList field value if set, zero value otherwise.

func (*TrustAfInfo) GetSNssaiInfoListOk ¶

func (o *TrustAfInfo) GetSNssaiInfoListOk() ([]SnssaiInfoItem, bool)

GetSNssaiInfoListOk returns a tuple with the SNssaiInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustAfInfo) HasAfEvents ¶

func (o *TrustAfInfo) HasAfEvents() bool

HasAfEvents returns a boolean if a field has been set.

func (*TrustAfInfo) HasAppIds ¶

func (o *TrustAfInfo) HasAppIds() bool

HasAppIds returns a boolean if a field has been set.

func (*TrustAfInfo) HasInternalGroupId ¶

func (o *TrustAfInfo) HasInternalGroupId() bool

HasInternalGroupId returns a boolean if a field has been set.

func (*TrustAfInfo) HasMappingInd ¶

func (o *TrustAfInfo) HasMappingInd() bool

HasMappingInd returns a boolean if a field has been set.

func (*TrustAfInfo) HasSNssaiInfoList ¶

func (o *TrustAfInfo) HasSNssaiInfoList() bool

HasSNssaiInfoList returns a boolean if a field has been set.

func (TrustAfInfo) MarshalJSON ¶

func (o TrustAfInfo) MarshalJSON() ([]byte, error)

func (*TrustAfInfo) SetAfEvents ¶

func (o *TrustAfInfo) SetAfEvents(v []AfEvent)

SetAfEvents gets a reference to the given []AfEvent and assigns it to the AfEvents field.

func (*TrustAfInfo) SetAppIds ¶

func (o *TrustAfInfo) SetAppIds(v []string)

SetAppIds gets a reference to the given []string and assigns it to the AppIds field.

func (*TrustAfInfo) SetInternalGroupId ¶

func (o *TrustAfInfo) SetInternalGroupId(v []string)

SetInternalGroupId gets a reference to the given []string and assigns it to the InternalGroupId field.

func (*TrustAfInfo) SetMappingInd ¶

func (o *TrustAfInfo) SetMappingInd(v bool)

SetMappingInd gets a reference to the given bool and assigns it to the MappingInd field.

func (*TrustAfInfo) SetSNssaiInfoList ¶

func (o *TrustAfInfo) SetSNssaiInfoList(v []SnssaiInfoItem)

SetSNssaiInfoList gets a reference to the given []SnssaiInfoItem and assigns it to the SNssaiInfoList field.

func (TrustAfInfo) ToMap ¶

func (o TrustAfInfo) ToMap() (map[string]interface{}, error)

type TsctsfInfo ¶

type TsctsfInfo struct {
	// A map (list of key-value pairs) where a valid JSON string serves as key
	SNssaiInfoList                 *map[string]SnssaiTsctsfInfoItem `json:"sNssaiInfoList,omitempty"`
	ExternalGroupIdentifiersRanges []IdentityRange                  `json:"externalGroupIdentifiersRanges,omitempty"`
	SupiRanges                     []SupiRange                      `json:"supiRanges,omitempty"`
	GpsiRanges                     []IdentityRange                  `json:"gpsiRanges,omitempty"`
	InternalGroupIdentifiersRanges []InternalGroupIdRange           `json:"internalGroupIdentifiersRanges,omitempty"`
}

TsctsfInfo Information of a TSCTSF NF Instance

func NewTsctsfInfo ¶

func NewTsctsfInfo() *TsctsfInfo

NewTsctsfInfo instantiates a new TsctsfInfo 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 NewTsctsfInfoWithDefaults ¶

func NewTsctsfInfoWithDefaults() *TsctsfInfo

NewTsctsfInfoWithDefaults instantiates a new TsctsfInfo 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 (*TsctsfInfo) GetExternalGroupIdentifiersRanges ¶

func (o *TsctsfInfo) GetExternalGroupIdentifiersRanges() []IdentityRange

GetExternalGroupIdentifiersRanges returns the ExternalGroupIdentifiersRanges field value if set, zero value otherwise.

func (*TsctsfInfo) GetExternalGroupIdentifiersRangesOk ¶

func (o *TsctsfInfo) GetExternalGroupIdentifiersRangesOk() ([]IdentityRange, bool)

GetExternalGroupIdentifiersRangesOk returns a tuple with the ExternalGroupIdentifiersRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsctsfInfo) GetGpsiRanges ¶

func (o *TsctsfInfo) GetGpsiRanges() []IdentityRange

GetGpsiRanges returns the GpsiRanges field value if set, zero value otherwise.

func (*TsctsfInfo) GetGpsiRangesOk ¶

func (o *TsctsfInfo) GetGpsiRangesOk() ([]IdentityRange, bool)

GetGpsiRangesOk returns a tuple with the GpsiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsctsfInfo) GetInternalGroupIdentifiersRanges ¶

func (o *TsctsfInfo) GetInternalGroupIdentifiersRanges() []InternalGroupIdRange

GetInternalGroupIdentifiersRanges returns the InternalGroupIdentifiersRanges field value if set, zero value otherwise.

func (*TsctsfInfo) GetInternalGroupIdentifiersRangesOk ¶

func (o *TsctsfInfo) GetInternalGroupIdentifiersRangesOk() ([]InternalGroupIdRange, bool)

GetInternalGroupIdentifiersRangesOk returns a tuple with the InternalGroupIdentifiersRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsctsfInfo) GetSNssaiInfoList ¶

func (o *TsctsfInfo) GetSNssaiInfoList() map[string]SnssaiTsctsfInfoItem

GetSNssaiInfoList returns the SNssaiInfoList field value if set, zero value otherwise.

func (*TsctsfInfo) GetSNssaiInfoListOk ¶

func (o *TsctsfInfo) GetSNssaiInfoListOk() (*map[string]SnssaiTsctsfInfoItem, bool)

GetSNssaiInfoListOk returns a tuple with the SNssaiInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsctsfInfo) GetSupiRanges ¶

func (o *TsctsfInfo) GetSupiRanges() []SupiRange

GetSupiRanges returns the SupiRanges field value if set, zero value otherwise.

func (*TsctsfInfo) GetSupiRangesOk ¶

func (o *TsctsfInfo) GetSupiRangesOk() ([]SupiRange, bool)

GetSupiRangesOk returns a tuple with the SupiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsctsfInfo) HasExternalGroupIdentifiersRanges ¶

func (o *TsctsfInfo) HasExternalGroupIdentifiersRanges() bool

HasExternalGroupIdentifiersRanges returns a boolean if a field has been set.

func (*TsctsfInfo) HasGpsiRanges ¶

func (o *TsctsfInfo) HasGpsiRanges() bool

HasGpsiRanges returns a boolean if a field has been set.

func (*TsctsfInfo) HasInternalGroupIdentifiersRanges ¶

func (o *TsctsfInfo) HasInternalGroupIdentifiersRanges() bool

HasInternalGroupIdentifiersRanges returns a boolean if a field has been set.

func (*TsctsfInfo) HasSNssaiInfoList ¶

func (o *TsctsfInfo) HasSNssaiInfoList() bool

HasSNssaiInfoList returns a boolean if a field has been set.

func (*TsctsfInfo) HasSupiRanges ¶

func (o *TsctsfInfo) HasSupiRanges() bool

HasSupiRanges returns a boolean if a field has been set.

func (TsctsfInfo) MarshalJSON ¶

func (o TsctsfInfo) MarshalJSON() ([]byte, error)

func (*TsctsfInfo) SetExternalGroupIdentifiersRanges ¶

func (o *TsctsfInfo) SetExternalGroupIdentifiersRanges(v []IdentityRange)

SetExternalGroupIdentifiersRanges gets a reference to the given []IdentityRange and assigns it to the ExternalGroupIdentifiersRanges field.

func (*TsctsfInfo) SetGpsiRanges ¶

func (o *TsctsfInfo) SetGpsiRanges(v []IdentityRange)

SetGpsiRanges gets a reference to the given []IdentityRange and assigns it to the GpsiRanges field.

func (*TsctsfInfo) SetInternalGroupIdentifiersRanges ¶

func (o *TsctsfInfo) SetInternalGroupIdentifiersRanges(v []InternalGroupIdRange)

SetInternalGroupIdentifiersRanges gets a reference to the given []InternalGroupIdRange and assigns it to the InternalGroupIdentifiersRanges field.

func (*TsctsfInfo) SetSNssaiInfoList ¶

func (o *TsctsfInfo) SetSNssaiInfoList(v map[string]SnssaiTsctsfInfoItem)

SetSNssaiInfoList gets a reference to the given map[string]SnssaiTsctsfInfoItem and assigns it to the SNssaiInfoList field.

func (*TsctsfInfo) SetSupiRanges ¶

func (o *TsctsfInfo) SetSupiRanges(v []SupiRange)

SetSupiRanges gets a reference to the given []SupiRange and assigns it to the SupiRanges field.

func (TsctsfInfo) ToMap ¶

func (o TsctsfInfo) ToMap() (map[string]interface{}, error)

type TwapId ¶

type TwapId struct {
	// This IE shall contain the SSID of the access point to which the UE is attached, that is received over NGAP, see IEEE Std 802.11-2012.
	SsId string `json:"ssId"`
	// When present, it shall contain the BSSID of the access point to which the UE is attached, for trusted WLAN access, see IEEE Std 802.11-2012.
	BssId *string `json:"bssId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	CivicAddress *string `json:"civicAddress,omitempty"`
}

TwapId Contain the TWAP Identifier as defined in clause 4.2.8.5.3 of 3GPP TS 23.501 or the WLAN location information as defined in clause 4.5.7.2.8 of 3GPP TS 23.402.

func NewTwapId ¶

func NewTwapId(ssId string) *TwapId

NewTwapId instantiates a new TwapId 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 NewTwapIdWithDefaults ¶

func NewTwapIdWithDefaults() *TwapId

NewTwapIdWithDefaults instantiates a new TwapId 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 (*TwapId) GetBssId ¶

func (o *TwapId) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*TwapId) GetBssIdOk ¶

func (o *TwapId) GetBssIdOk() (*string, bool)

GetBssIdOk returns a tuple with the BssId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwapId) GetCivicAddress ¶

func (o *TwapId) GetCivicAddress() string

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*TwapId) GetCivicAddressOk ¶

func (o *TwapId) GetCivicAddressOk() (*string, bool)

GetCivicAddressOk returns a tuple with the CivicAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwapId) GetSsId ¶

func (o *TwapId) GetSsId() string

GetSsId returns the SsId field value

func (*TwapId) GetSsIdOk ¶

func (o *TwapId) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value and a boolean to check if the value has been set.

func (*TwapId) HasBssId ¶

func (o *TwapId) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*TwapId) HasCivicAddress ¶

func (o *TwapId) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (TwapId) MarshalJSON ¶

func (o TwapId) MarshalJSON() ([]byte, error)

func (*TwapId) SetBssId ¶

func (o *TwapId) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*TwapId) SetCivicAddress ¶

func (o *TwapId) SetCivicAddress(v string)

SetCivicAddress gets a reference to the given string and assigns it to the CivicAddress field.

func (*TwapId) SetSsId ¶

func (o *TwapId) SetSsId(v string)

SetSsId sets field value

func (TwapId) ToMap ¶

func (o TwapId) ToMap() (map[string]interface{}, error)

type TwifInfo ¶

type TwifInfo struct {
	Interface *interface{}
}

TwifInfo Addressing information (IP addresses, FQDN) of the TWIF

func (*TwifInfo) MarshalJSON ¶

func (src *TwifInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TwifInfo) UnmarshalJSON ¶

func (dst *TwifInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UEIdExt ¶

type UEIdExt struct {
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,omitempty"`
	// 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.
	Gpsi *string `json:"gpsi,omitempty"`
}

UEIdExt UE Identity

func NewUEIdExt ¶

func NewUEIdExt() *UEIdExt

NewUEIdExt instantiates a new UEIdExt 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 NewUEIdExtWithDefaults ¶

func NewUEIdExtWithDefaults() *UEIdExt

NewUEIdExtWithDefaults instantiates a new UEIdExt 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 (*UEIdExt) GetGpsi ¶

func (o *UEIdExt) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*UEIdExt) GetGpsiOk ¶

func (o *UEIdExt) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UEIdExt) GetSupi ¶

func (o *UEIdExt) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*UEIdExt) GetSupiOk ¶

func (o *UEIdExt) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UEIdExt) HasGpsi ¶

func (o *UEIdExt) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*UEIdExt) HasSupi ¶

func (o *UEIdExt) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (UEIdExt) MarshalJSON ¶

func (o UEIdExt) MarshalJSON() ([]byte, error)

func (*UEIdExt) SetGpsi ¶

func (o *UEIdExt) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*UEIdExt) SetSupi ¶

func (o *UEIdExt) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (UEIdExt) ToMap ¶

func (o UEIdExt) ToMap() (map[string]interface{}, error)

type UPInterfaceType ¶

type UPInterfaceType struct {
	String *string
}

UPInterfaceType Types of User-Plane interfaces of the UPF

func (*UPInterfaceType) MarshalJSON ¶

func (src *UPInterfaceType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UPInterfaceType) UnmarshalJSON ¶

func (dst *UPInterfaceType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UdmInfo ¶

type UdmInfo struct {
	// Identifier of a group of NFs.
	GroupId                        *string                `json:"groupId,omitempty"`
	SupiRanges                     []SupiRange            `json:"supiRanges,omitempty"`
	GpsiRanges                     []IdentityRange        `json:"gpsiRanges,omitempty"`
	ExternalGroupIdentifiersRanges []IdentityRange        `json:"externalGroupIdentifiersRanges,omitempty"`
	RoutingIndicators              []string               `json:"routingIndicators,omitempty"`
	InternalGroupIdentifiersRanges []InternalGroupIdRange `json:"internalGroupIdentifiersRanges,omitempty"`
	SuciInfos                      []SuciInfo             `json:"suciInfos,omitempty"`
}

UdmInfo Information of an UDM NF Instance

func NewUdmInfo ¶

func NewUdmInfo() *UdmInfo

NewUdmInfo instantiates a new UdmInfo 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 NewUdmInfoWithDefaults ¶

func NewUdmInfoWithDefaults() *UdmInfo

NewUdmInfoWithDefaults instantiates a new UdmInfo 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 (*UdmInfo) GetExternalGroupIdentifiersRanges ¶

func (o *UdmInfo) GetExternalGroupIdentifiersRanges() []IdentityRange

GetExternalGroupIdentifiersRanges returns the ExternalGroupIdentifiersRanges field value if set, zero value otherwise.

func (*UdmInfo) GetExternalGroupIdentifiersRangesOk ¶

func (o *UdmInfo) GetExternalGroupIdentifiersRangesOk() ([]IdentityRange, bool)

GetExternalGroupIdentifiersRangesOk returns a tuple with the ExternalGroupIdentifiersRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdmInfo) GetGpsiRanges ¶

func (o *UdmInfo) GetGpsiRanges() []IdentityRange

GetGpsiRanges returns the GpsiRanges field value if set, zero value otherwise.

func (*UdmInfo) GetGpsiRangesOk ¶

func (o *UdmInfo) GetGpsiRangesOk() ([]IdentityRange, bool)

GetGpsiRangesOk returns a tuple with the GpsiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdmInfo) GetGroupId ¶

func (o *UdmInfo) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*UdmInfo) GetGroupIdOk ¶

func (o *UdmInfo) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdmInfo) GetInternalGroupIdentifiersRanges ¶

func (o *UdmInfo) GetInternalGroupIdentifiersRanges() []InternalGroupIdRange

GetInternalGroupIdentifiersRanges returns the InternalGroupIdentifiersRanges field value if set, zero value otherwise.

func (*UdmInfo) GetInternalGroupIdentifiersRangesOk ¶

func (o *UdmInfo) GetInternalGroupIdentifiersRangesOk() ([]InternalGroupIdRange, bool)

GetInternalGroupIdentifiersRangesOk returns a tuple with the InternalGroupIdentifiersRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdmInfo) GetRoutingIndicators ¶

func (o *UdmInfo) GetRoutingIndicators() []string

GetRoutingIndicators returns the RoutingIndicators field value if set, zero value otherwise.

func (*UdmInfo) GetRoutingIndicatorsOk ¶

func (o *UdmInfo) GetRoutingIndicatorsOk() ([]string, bool)

GetRoutingIndicatorsOk returns a tuple with the RoutingIndicators field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdmInfo) GetSuciInfos ¶

func (o *UdmInfo) GetSuciInfos() []SuciInfo

GetSuciInfos returns the SuciInfos field value if set, zero value otherwise.

func (*UdmInfo) GetSuciInfosOk ¶

func (o *UdmInfo) GetSuciInfosOk() ([]SuciInfo, bool)

GetSuciInfosOk returns a tuple with the SuciInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdmInfo) GetSupiRanges ¶

func (o *UdmInfo) GetSupiRanges() []SupiRange

GetSupiRanges returns the SupiRanges field value if set, zero value otherwise.

func (*UdmInfo) GetSupiRangesOk ¶

func (o *UdmInfo) GetSupiRangesOk() ([]SupiRange, bool)

GetSupiRangesOk returns a tuple with the SupiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdmInfo) HasExternalGroupIdentifiersRanges ¶

func (o *UdmInfo) HasExternalGroupIdentifiersRanges() bool

HasExternalGroupIdentifiersRanges returns a boolean if a field has been set.

func (*UdmInfo) HasGpsiRanges ¶

func (o *UdmInfo) HasGpsiRanges() bool

HasGpsiRanges returns a boolean if a field has been set.

func (*UdmInfo) HasGroupId ¶

func (o *UdmInfo) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*UdmInfo) HasInternalGroupIdentifiersRanges ¶

func (o *UdmInfo) HasInternalGroupIdentifiersRanges() bool

HasInternalGroupIdentifiersRanges returns a boolean if a field has been set.

func (*UdmInfo) HasRoutingIndicators ¶

func (o *UdmInfo) HasRoutingIndicators() bool

HasRoutingIndicators returns a boolean if a field has been set.

func (*UdmInfo) HasSuciInfos ¶

func (o *UdmInfo) HasSuciInfos() bool

HasSuciInfos returns a boolean if a field has been set.

func (*UdmInfo) HasSupiRanges ¶

func (o *UdmInfo) HasSupiRanges() bool

HasSupiRanges returns a boolean if a field has been set.

func (UdmInfo) MarshalJSON ¶

func (o UdmInfo) MarshalJSON() ([]byte, error)

func (*UdmInfo) SetExternalGroupIdentifiersRanges ¶

func (o *UdmInfo) SetExternalGroupIdentifiersRanges(v []IdentityRange)

SetExternalGroupIdentifiersRanges gets a reference to the given []IdentityRange and assigns it to the ExternalGroupIdentifiersRanges field.

func (*UdmInfo) SetGpsiRanges ¶

func (o *UdmInfo) SetGpsiRanges(v []IdentityRange)

SetGpsiRanges gets a reference to the given []IdentityRange and assigns it to the GpsiRanges field.

func (*UdmInfo) SetGroupId ¶

func (o *UdmInfo) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*UdmInfo) SetInternalGroupIdentifiersRanges ¶

func (o *UdmInfo) SetInternalGroupIdentifiersRanges(v []InternalGroupIdRange)

SetInternalGroupIdentifiersRanges gets a reference to the given []InternalGroupIdRange and assigns it to the InternalGroupIdentifiersRanges field.

func (*UdmInfo) SetRoutingIndicators ¶

func (o *UdmInfo) SetRoutingIndicators(v []string)

SetRoutingIndicators gets a reference to the given []string and assigns it to the RoutingIndicators field.

func (*UdmInfo) SetSuciInfos ¶

func (o *UdmInfo) SetSuciInfos(v []SuciInfo)

SetSuciInfos gets a reference to the given []SuciInfo and assigns it to the SuciInfos field.

func (*UdmInfo) SetSupiRanges ¶

func (o *UdmInfo) SetSupiRanges(v []SupiRange)

SetSupiRanges gets a reference to the given []SupiRange and assigns it to the SupiRanges field.

func (UdmInfo) ToMap ¶

func (o UdmInfo) ToMap() (map[string]interface{}, error)

type UdrInfo ¶

type UdrInfo struct {
	// Identifier of a group of NFs.
	GroupId                        *string             `json:"groupId,omitempty"`
	SupiRanges                     []SupiRange         `json:"supiRanges,omitempty"`
	GpsiRanges                     []IdentityRange     `json:"gpsiRanges,omitempty"`
	ExternalGroupIdentifiersRanges []IdentityRange     `json:"externalGroupIdentifiersRanges,omitempty"`
	SupportedDataSets              []DataSetId         `json:"supportedDataSets,omitempty"`
	SharedDataIdRanges             []SharedDataIdRange `json:"sharedDataIdRanges,omitempty"`
}

UdrInfo Information of an UDR NF Instance

func NewUdrInfo ¶

func NewUdrInfo() *UdrInfo

NewUdrInfo instantiates a new UdrInfo 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 NewUdrInfoWithDefaults ¶

func NewUdrInfoWithDefaults() *UdrInfo

NewUdrInfoWithDefaults instantiates a new UdrInfo 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 (*UdrInfo) GetExternalGroupIdentifiersRanges ¶

func (o *UdrInfo) GetExternalGroupIdentifiersRanges() []IdentityRange

GetExternalGroupIdentifiersRanges returns the ExternalGroupIdentifiersRanges field value if set, zero value otherwise.

func (*UdrInfo) GetExternalGroupIdentifiersRangesOk ¶

func (o *UdrInfo) GetExternalGroupIdentifiersRangesOk() ([]IdentityRange, bool)

GetExternalGroupIdentifiersRangesOk returns a tuple with the ExternalGroupIdentifiersRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdrInfo) GetGpsiRanges ¶

func (o *UdrInfo) GetGpsiRanges() []IdentityRange

GetGpsiRanges returns the GpsiRanges field value if set, zero value otherwise.

func (*UdrInfo) GetGpsiRangesOk ¶

func (o *UdrInfo) GetGpsiRangesOk() ([]IdentityRange, bool)

GetGpsiRangesOk returns a tuple with the GpsiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdrInfo) GetGroupId ¶

func (o *UdrInfo) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*UdrInfo) GetGroupIdOk ¶

func (o *UdrInfo) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdrInfo) GetSharedDataIdRanges ¶

func (o *UdrInfo) GetSharedDataIdRanges() []SharedDataIdRange

GetSharedDataIdRanges returns the SharedDataIdRanges field value if set, zero value otherwise.

func (*UdrInfo) GetSharedDataIdRangesOk ¶

func (o *UdrInfo) GetSharedDataIdRangesOk() ([]SharedDataIdRange, bool)

GetSharedDataIdRangesOk returns a tuple with the SharedDataIdRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdrInfo) GetSupiRanges ¶

func (o *UdrInfo) GetSupiRanges() []SupiRange

GetSupiRanges returns the SupiRanges field value if set, zero value otherwise.

func (*UdrInfo) GetSupiRangesOk ¶

func (o *UdrInfo) GetSupiRangesOk() ([]SupiRange, bool)

GetSupiRangesOk returns a tuple with the SupiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdrInfo) GetSupportedDataSets ¶

func (o *UdrInfo) GetSupportedDataSets() []DataSetId

GetSupportedDataSets returns the SupportedDataSets field value if set, zero value otherwise.

func (*UdrInfo) GetSupportedDataSetsOk ¶

func (o *UdrInfo) GetSupportedDataSetsOk() ([]DataSetId, bool)

GetSupportedDataSetsOk returns a tuple with the SupportedDataSets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdrInfo) HasExternalGroupIdentifiersRanges ¶

func (o *UdrInfo) HasExternalGroupIdentifiersRanges() bool

HasExternalGroupIdentifiersRanges returns a boolean if a field has been set.

func (*UdrInfo) HasGpsiRanges ¶

func (o *UdrInfo) HasGpsiRanges() bool

HasGpsiRanges returns a boolean if a field has been set.

func (*UdrInfo) HasGroupId ¶

func (o *UdrInfo) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*UdrInfo) HasSharedDataIdRanges ¶

func (o *UdrInfo) HasSharedDataIdRanges() bool

HasSharedDataIdRanges returns a boolean if a field has been set.

func (*UdrInfo) HasSupiRanges ¶

func (o *UdrInfo) HasSupiRanges() bool

HasSupiRanges returns a boolean if a field has been set.

func (*UdrInfo) HasSupportedDataSets ¶

func (o *UdrInfo) HasSupportedDataSets() bool

HasSupportedDataSets returns a boolean if a field has been set.

func (UdrInfo) MarshalJSON ¶

func (o UdrInfo) MarshalJSON() ([]byte, error)

func (*UdrInfo) SetExternalGroupIdentifiersRanges ¶

func (o *UdrInfo) SetExternalGroupIdentifiersRanges(v []IdentityRange)

SetExternalGroupIdentifiersRanges gets a reference to the given []IdentityRange and assigns it to the ExternalGroupIdentifiersRanges field.

func (*UdrInfo) SetGpsiRanges ¶

func (o *UdrInfo) SetGpsiRanges(v []IdentityRange)

SetGpsiRanges gets a reference to the given []IdentityRange and assigns it to the GpsiRanges field.

func (*UdrInfo) SetGroupId ¶

func (o *UdrInfo) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*UdrInfo) SetSharedDataIdRanges ¶

func (o *UdrInfo) SetSharedDataIdRanges(v []SharedDataIdRange)

SetSharedDataIdRanges gets a reference to the given []SharedDataIdRange and assigns it to the SharedDataIdRanges field.

func (*UdrInfo) SetSupiRanges ¶

func (o *UdrInfo) SetSupiRanges(v []SupiRange)

SetSupiRanges gets a reference to the given []SupiRange and assigns it to the SupiRanges field.

func (*UdrInfo) SetSupportedDataSets ¶

func (o *UdrInfo) SetSupportedDataSets(v []DataSetId)

SetSupportedDataSets gets a reference to the given []DataSetId and assigns it to the SupportedDataSets field.

func (UdrInfo) ToMap ¶

func (o UdrInfo) ToMap() (map[string]interface{}, error)

type UdsfInfo ¶

type UdsfInfo struct {
	// Identifier of a group of NFs.
	GroupId    *string     `json:"groupId,omitempty"`
	SupiRanges []SupiRange `json:"supiRanges,omitempty"`
	// A map (list of key-value pairs) where realmId serves as key and each value in the map is an array of IdentityRanges. Each IdentityRange is a range of storageIds.
	StorageIdRanges *map[string][]IdentityRange `json:"storageIdRanges,omitempty"`
}

UdsfInfo Information related to UDSF

func NewUdsfInfo ¶

func NewUdsfInfo() *UdsfInfo

NewUdsfInfo instantiates a new UdsfInfo 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 NewUdsfInfoWithDefaults ¶

func NewUdsfInfoWithDefaults() *UdsfInfo

NewUdsfInfoWithDefaults instantiates a new UdsfInfo 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 (*UdsfInfo) GetGroupId ¶

func (o *UdsfInfo) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*UdsfInfo) GetGroupIdOk ¶

func (o *UdsfInfo) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdsfInfo) GetStorageIdRanges ¶

func (o *UdsfInfo) GetStorageIdRanges() map[string][]IdentityRange

GetStorageIdRanges returns the StorageIdRanges field value if set, zero value otherwise.

func (*UdsfInfo) GetStorageIdRangesOk ¶

func (o *UdsfInfo) GetStorageIdRangesOk() (*map[string][]IdentityRange, bool)

GetStorageIdRangesOk returns a tuple with the StorageIdRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdsfInfo) GetSupiRanges ¶

func (o *UdsfInfo) GetSupiRanges() []SupiRange

GetSupiRanges returns the SupiRanges field value if set, zero value otherwise.

func (*UdsfInfo) GetSupiRangesOk ¶

func (o *UdsfInfo) GetSupiRangesOk() ([]SupiRange, bool)

GetSupiRangesOk returns a tuple with the SupiRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UdsfInfo) HasGroupId ¶

func (o *UdsfInfo) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*UdsfInfo) HasStorageIdRanges ¶

func (o *UdsfInfo) HasStorageIdRanges() bool

HasStorageIdRanges returns a boolean if a field has been set.

func (*UdsfInfo) HasSupiRanges ¶

func (o *UdsfInfo) HasSupiRanges() bool

HasSupiRanges returns a boolean if a field has been set.

func (UdsfInfo) MarshalJSON ¶

func (o UdsfInfo) MarshalJSON() ([]byte, error)

func (*UdsfInfo) SetGroupId ¶

func (o *UdsfInfo) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*UdsfInfo) SetStorageIdRanges ¶

func (o *UdsfInfo) SetStorageIdRanges(v map[string][]IdentityRange)

SetStorageIdRanges gets a reference to the given map[string][]IdentityRange and assigns it to the StorageIdRanges field.

func (*UdsfInfo) SetSupiRanges ¶

func (o *UdsfInfo) SetSupiRanges(v []SupiRange)

SetSupiRanges gets a reference to the given []SupiRange and assigns it to the SupiRanges field.

func (UdsfInfo) ToMap ¶

func (o UdsfInfo) ToMap() (map[string]interface{}, error)

type UeAccessBehaviorReportItem ¶

type UeAccessBehaviorReportItem struct {
	StateTransitionType AccessStateTransitionType `json:"stateTransitionType"`
	// indicating a time in seconds.
	Spacing int32 `json:"spacing"`
	// indicating a time in seconds.
	Duration int32 `json:"duration"`
}

UeAccessBehaviorReportItem Report Item for UE Access Behavior Trends event.

func NewUeAccessBehaviorReportItem ¶

func NewUeAccessBehaviorReportItem(stateTransitionType AccessStateTransitionType, spacing int32, duration int32) *UeAccessBehaviorReportItem

NewUeAccessBehaviorReportItem instantiates a new UeAccessBehaviorReportItem 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 NewUeAccessBehaviorReportItemWithDefaults ¶

func NewUeAccessBehaviorReportItemWithDefaults() *UeAccessBehaviorReportItem

NewUeAccessBehaviorReportItemWithDefaults instantiates a new UeAccessBehaviorReportItem 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 (*UeAccessBehaviorReportItem) GetDuration ¶

func (o *UeAccessBehaviorReportItem) GetDuration() int32

GetDuration returns the Duration field value

func (*UeAccessBehaviorReportItem) GetDurationOk ¶

func (o *UeAccessBehaviorReportItem) GetDurationOk() (*int32, bool)

GetDurationOk returns a tuple with the Duration field value and a boolean to check if the value has been set.

func (*UeAccessBehaviorReportItem) GetSpacing ¶

func (o *UeAccessBehaviorReportItem) GetSpacing() int32

GetSpacing returns the Spacing field value

func (*UeAccessBehaviorReportItem) GetSpacingOk ¶

func (o *UeAccessBehaviorReportItem) GetSpacingOk() (*int32, bool)

GetSpacingOk returns a tuple with the Spacing field value and a boolean to check if the value has been set.

func (*UeAccessBehaviorReportItem) GetStateTransitionType ¶

func (o *UeAccessBehaviorReportItem) GetStateTransitionType() AccessStateTransitionType

GetStateTransitionType returns the StateTransitionType field value

func (*UeAccessBehaviorReportItem) GetStateTransitionTypeOk ¶

func (o *UeAccessBehaviorReportItem) GetStateTransitionTypeOk() (*AccessStateTransitionType, bool)

GetStateTransitionTypeOk returns a tuple with the StateTransitionType field value and a boolean to check if the value has been set.

func (UeAccessBehaviorReportItem) MarshalJSON ¶

func (o UeAccessBehaviorReportItem) MarshalJSON() ([]byte, error)

func (*UeAccessBehaviorReportItem) SetDuration ¶

func (o *UeAccessBehaviorReportItem) SetDuration(v int32)

SetDuration sets field value

func (*UeAccessBehaviorReportItem) SetSpacing ¶

func (o *UeAccessBehaviorReportItem) SetSpacing(v int32)

SetSpacing sets field value

func (*UeAccessBehaviorReportItem) SetStateTransitionType ¶

func (o *UeAccessBehaviorReportItem) SetStateTransitionType(v AccessStateTransitionType)

SetStateTransitionType sets field value

func (UeAccessBehaviorReportItem) ToMap ¶

func (o UeAccessBehaviorReportItem) ToMap() (map[string]interface{}, error)

type UeAnalyticsContextDescriptor ¶

type UeAnalyticsContextDescriptor struct {
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi string `json:"supi"`
	// List of analytics types for which UE related analytics contexts can be retrieved.
	AnaTypes []NwdafEvent `json:"anaTypes"`
}

UeAnalyticsContextDescriptor Contains information about available UE related analytics contexts.

func NewUeAnalyticsContextDescriptor ¶

func NewUeAnalyticsContextDescriptor(supi string, anaTypes []NwdafEvent) *UeAnalyticsContextDescriptor

NewUeAnalyticsContextDescriptor instantiates a new UeAnalyticsContextDescriptor 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 NewUeAnalyticsContextDescriptorWithDefaults ¶

func NewUeAnalyticsContextDescriptorWithDefaults() *UeAnalyticsContextDescriptor

NewUeAnalyticsContextDescriptorWithDefaults instantiates a new UeAnalyticsContextDescriptor 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 (*UeAnalyticsContextDescriptor) GetAnaTypes ¶

func (o *UeAnalyticsContextDescriptor) GetAnaTypes() []NwdafEvent

GetAnaTypes returns the AnaTypes field value

func (*UeAnalyticsContextDescriptor) GetAnaTypesOk ¶

func (o *UeAnalyticsContextDescriptor) GetAnaTypesOk() ([]NwdafEvent, bool)

GetAnaTypesOk returns a tuple with the AnaTypes field value and a boolean to check if the value has been set.

func (*UeAnalyticsContextDescriptor) GetSupi ¶

func (o *UeAnalyticsContextDescriptor) GetSupi() string

GetSupi returns the Supi field value

func (*UeAnalyticsContextDescriptor) GetSupiOk ¶

func (o *UeAnalyticsContextDescriptor) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value and a boolean to check if the value has been set.

func (UeAnalyticsContextDescriptor) MarshalJSON ¶

func (o UeAnalyticsContextDescriptor) MarshalJSON() ([]byte, error)

func (*UeAnalyticsContextDescriptor) SetAnaTypes ¶

func (o *UeAnalyticsContextDescriptor) SetAnaTypes(v []NwdafEvent)

SetAnaTypes sets field value

func (*UeAnalyticsContextDescriptor) SetSupi ¶

func (o *UeAnalyticsContextDescriptor) SetSupi(v string)

SetSupi sets field value

func (UeAnalyticsContextDescriptor) ToMap ¶

func (o UeAnalyticsContextDescriptor) ToMap() (map[string]interface{}, error)

type UeCommunication ¶

type UeCommunication struct {
	// indicating a time in seconds.
	CommDur *int32 `json:"commDur,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	CommDurVariance *float32 `json:"commDurVariance,omitempty"`
	// indicating a time in seconds.
	PerioTime *int32 `json:"perioTime,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	PerioTimeVariance *float32 `json:"perioTimeVariance,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	Ts *time.Time `json:"ts,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	TsVariance    *float32                    `json:"tsVariance,omitempty"`
	RecurringTime *ScheduledCommunicationTime `json:"recurringTime,omitempty"`
	TrafChar      *TrafficCharacterization    `json:"trafChar,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	Ratio        *int32 `json:"ratio,omitempty"`
	PerioCommInd *bool  `json:"perioCommInd,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Confidence     *int32                   `json:"confidence,omitempty"`
	AnaOfAppList   *AppListForUeComm        `json:"anaOfAppList,omitempty"`
	SessInactTimer *SessInactTimerForUeComm `json:"sessInactTimer,omitempty"`
}

UeCommunication Represents UE communication information.

func NewUeCommunication ¶

func NewUeCommunication() *UeCommunication

NewUeCommunication instantiates a new UeCommunication 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 NewUeCommunicationWithDefaults ¶

func NewUeCommunicationWithDefaults() *UeCommunication

NewUeCommunicationWithDefaults instantiates a new UeCommunication 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 (*UeCommunication) GetAnaOfAppList ¶

func (o *UeCommunication) GetAnaOfAppList() AppListForUeComm

GetAnaOfAppList returns the AnaOfAppList field value if set, zero value otherwise.

func (*UeCommunication) GetAnaOfAppListOk ¶

func (o *UeCommunication) GetAnaOfAppListOk() (*AppListForUeComm, bool)

GetAnaOfAppListOk returns a tuple with the AnaOfAppList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunication) GetCommDur ¶

func (o *UeCommunication) GetCommDur() int32

GetCommDur returns the CommDur field value if set, zero value otherwise.

func (*UeCommunication) GetCommDurOk ¶

func (o *UeCommunication) GetCommDurOk() (*int32, bool)

GetCommDurOk returns a tuple with the CommDur field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunication) GetCommDurVariance ¶

func (o *UeCommunication) GetCommDurVariance() float32

GetCommDurVariance returns the CommDurVariance field value if set, zero value otherwise.

func (*UeCommunication) GetCommDurVarianceOk ¶

func (o *UeCommunication) GetCommDurVarianceOk() (*float32, bool)

GetCommDurVarianceOk returns a tuple with the CommDurVariance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunication) GetConfidence ¶

func (o *UeCommunication) GetConfidence() int32

GetConfidence returns the Confidence field value if set, zero value otherwise.

func (*UeCommunication) GetConfidenceOk ¶

func (o *UeCommunication) GetConfidenceOk() (*int32, bool)

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 (*UeCommunication) GetPerioCommInd ¶

func (o *UeCommunication) GetPerioCommInd() bool

GetPerioCommInd returns the PerioCommInd field value if set, zero value otherwise.

func (*UeCommunication) GetPerioCommIndOk ¶

func (o *UeCommunication) GetPerioCommIndOk() (*bool, bool)

GetPerioCommIndOk returns a tuple with the PerioCommInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunication) GetPerioTime ¶

func (o *UeCommunication) GetPerioTime() int32

GetPerioTime returns the PerioTime field value if set, zero value otherwise.

func (*UeCommunication) GetPerioTimeOk ¶

func (o *UeCommunication) GetPerioTimeOk() (*int32, bool)

GetPerioTimeOk returns a tuple with the PerioTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunication) GetPerioTimeVariance ¶

func (o *UeCommunication) GetPerioTimeVariance() float32

GetPerioTimeVariance returns the PerioTimeVariance field value if set, zero value otherwise.

func (*UeCommunication) GetPerioTimeVarianceOk ¶

func (o *UeCommunication) GetPerioTimeVarianceOk() (*float32, bool)

GetPerioTimeVarianceOk returns a tuple with the PerioTimeVariance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunication) GetRatio ¶

func (o *UeCommunication) GetRatio() int32

GetRatio returns the Ratio field value if set, zero value otherwise.

func (*UeCommunication) GetRatioOk ¶

func (o *UeCommunication) GetRatioOk() (*int32, bool)

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 (*UeCommunication) GetRecurringTime ¶

func (o *UeCommunication) GetRecurringTime() ScheduledCommunicationTime

GetRecurringTime returns the RecurringTime field value if set, zero value otherwise.

func (*UeCommunication) GetRecurringTimeOk ¶

func (o *UeCommunication) GetRecurringTimeOk() (*ScheduledCommunicationTime, bool)

GetRecurringTimeOk returns a tuple with the RecurringTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunication) GetSessInactTimer ¶

func (o *UeCommunication) GetSessInactTimer() SessInactTimerForUeComm

GetSessInactTimer returns the SessInactTimer field value if set, zero value otherwise.

func (*UeCommunication) GetSessInactTimerOk ¶

func (o *UeCommunication) GetSessInactTimerOk() (*SessInactTimerForUeComm, bool)

GetSessInactTimerOk returns a tuple with the SessInactTimer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunication) GetTrafChar ¶

func (o *UeCommunication) GetTrafChar() TrafficCharacterization

GetTrafChar returns the TrafChar field value if set, zero value otherwise.

func (*UeCommunication) GetTrafCharOk ¶

func (o *UeCommunication) GetTrafCharOk() (*TrafficCharacterization, bool)

GetTrafCharOk returns a tuple with the TrafChar field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunication) GetTs ¶

func (o *UeCommunication) GetTs() time.Time

GetTs returns the Ts field value if set, zero value otherwise.

func (*UeCommunication) GetTsOk ¶

func (o *UeCommunication) GetTsOk() (*time.Time, bool)

GetTsOk returns a tuple with the Ts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunication) GetTsVariance ¶

func (o *UeCommunication) GetTsVariance() float32

GetTsVariance returns the TsVariance field value if set, zero value otherwise.

func (*UeCommunication) GetTsVarianceOk ¶

func (o *UeCommunication) GetTsVarianceOk() (*float32, bool)

GetTsVarianceOk returns a tuple with the TsVariance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunication) HasAnaOfAppList ¶

func (o *UeCommunication) HasAnaOfAppList() bool

HasAnaOfAppList returns a boolean if a field has been set.

func (*UeCommunication) HasCommDur ¶

func (o *UeCommunication) HasCommDur() bool

HasCommDur returns a boolean if a field has been set.

func (*UeCommunication) HasCommDurVariance ¶

func (o *UeCommunication) HasCommDurVariance() bool

HasCommDurVariance returns a boolean if a field has been set.

func (*UeCommunication) HasConfidence ¶

func (o *UeCommunication) HasConfidence() bool

HasConfidence returns a boolean if a field has been set.

func (*UeCommunication) HasPerioCommInd ¶

func (o *UeCommunication) HasPerioCommInd() bool

HasPerioCommInd returns a boolean if a field has been set.

func (*UeCommunication) HasPerioTime ¶

func (o *UeCommunication) HasPerioTime() bool

HasPerioTime returns a boolean if a field has been set.

func (*UeCommunication) HasPerioTimeVariance ¶

func (o *UeCommunication) HasPerioTimeVariance() bool

HasPerioTimeVariance returns a boolean if a field has been set.

func (*UeCommunication) HasRatio ¶

func (o *UeCommunication) HasRatio() bool

HasRatio returns a boolean if a field has been set.

func (*UeCommunication) HasRecurringTime ¶

func (o *UeCommunication) HasRecurringTime() bool

HasRecurringTime returns a boolean if a field has been set.

func (*UeCommunication) HasSessInactTimer ¶

func (o *UeCommunication) HasSessInactTimer() bool

HasSessInactTimer returns a boolean if a field has been set.

func (*UeCommunication) HasTrafChar ¶

func (o *UeCommunication) HasTrafChar() bool

HasTrafChar returns a boolean if a field has been set.

func (*UeCommunication) HasTs ¶

func (o *UeCommunication) HasTs() bool

HasTs returns a boolean if a field has been set.

func (*UeCommunication) HasTsVariance ¶

func (o *UeCommunication) HasTsVariance() bool

HasTsVariance returns a boolean if a field has been set.

func (UeCommunication) MarshalJSON ¶

func (o UeCommunication) MarshalJSON() ([]byte, error)

func (*UeCommunication) SetAnaOfAppList ¶

func (o *UeCommunication) SetAnaOfAppList(v AppListForUeComm)

SetAnaOfAppList gets a reference to the given AppListForUeComm and assigns it to the AnaOfAppList field.

func (*UeCommunication) SetCommDur ¶

func (o *UeCommunication) SetCommDur(v int32)

SetCommDur gets a reference to the given int32 and assigns it to the CommDur field.

func (*UeCommunication) SetCommDurVariance ¶

func (o *UeCommunication) SetCommDurVariance(v float32)

SetCommDurVariance gets a reference to the given float32 and assigns it to the CommDurVariance field.

func (*UeCommunication) SetConfidence ¶

func (o *UeCommunication) SetConfidence(v int32)

SetConfidence gets a reference to the given int32 and assigns it to the Confidence field.

func (*UeCommunication) SetPerioCommInd ¶

func (o *UeCommunication) SetPerioCommInd(v bool)

SetPerioCommInd gets a reference to the given bool and assigns it to the PerioCommInd field.

func (*UeCommunication) SetPerioTime ¶

func (o *UeCommunication) SetPerioTime(v int32)

SetPerioTime gets a reference to the given int32 and assigns it to the PerioTime field.

func (*UeCommunication) SetPerioTimeVariance ¶

func (o *UeCommunication) SetPerioTimeVariance(v float32)

SetPerioTimeVariance gets a reference to the given float32 and assigns it to the PerioTimeVariance field.

func (*UeCommunication) SetRatio ¶

func (o *UeCommunication) SetRatio(v int32)

SetRatio gets a reference to the given int32 and assigns it to the Ratio field.

func (*UeCommunication) SetRecurringTime ¶

func (o *UeCommunication) SetRecurringTime(v ScheduledCommunicationTime)

SetRecurringTime gets a reference to the given ScheduledCommunicationTime and assigns it to the RecurringTime field.

func (*UeCommunication) SetSessInactTimer ¶

func (o *UeCommunication) SetSessInactTimer(v SessInactTimerForUeComm)

SetSessInactTimer gets a reference to the given SessInactTimerForUeComm and assigns it to the SessInactTimer field.

func (*UeCommunication) SetTrafChar ¶

func (o *UeCommunication) SetTrafChar(v TrafficCharacterization)

SetTrafChar gets a reference to the given TrafficCharacterization and assigns it to the TrafChar field.

func (*UeCommunication) SetTs ¶

func (o *UeCommunication) SetTs(v time.Time)

SetTs gets a reference to the given time.Time and assigns it to the Ts field.

func (*UeCommunication) SetTsVariance ¶

func (o *UeCommunication) SetTsVariance(v float32)

SetTsVariance gets a reference to the given float32 and assigns it to the TsVariance field.

func (UeCommunication) ToMap ¶

func (o UeCommunication) ToMap() (map[string]interface{}, error)

type UeCommunicationCollection ¶

type UeCommunicationCollection struct {
	// 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.
	Gpsi *string `json:"gpsi,omitempty"`
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi         *string `json:"supi,omitempty"`
	ExterGroupId *string `json:"exterGroupId,omitempty"`
	// String identifying a group of devices network internal globally unique ID which identifies a set of IMSIs, as specified in clause 19.9 of 3GPP TS 23.003.
	InterGroupId *string `json:"interGroupId,omitempty"`
	// String providing an application identifier.
	AppId string                    `json:"appId"`
	Comms []CommunicationCollection `json:"comms"`
}

UeCommunicationCollection Contains UE communication information associated with an application.

func NewUeCommunicationCollection ¶

func NewUeCommunicationCollection(appId string, comms []CommunicationCollection) *UeCommunicationCollection

NewUeCommunicationCollection instantiates a new UeCommunicationCollection 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 NewUeCommunicationCollectionWithDefaults ¶

func NewUeCommunicationCollectionWithDefaults() *UeCommunicationCollection

NewUeCommunicationCollectionWithDefaults instantiates a new UeCommunicationCollection 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 (*UeCommunicationCollection) GetAppId ¶

func (o *UeCommunicationCollection) GetAppId() string

GetAppId returns the AppId field value

func (*UeCommunicationCollection) GetAppIdOk ¶

func (o *UeCommunicationCollection) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value and a boolean to check if the value has been set.

func (*UeCommunicationCollection) GetComms ¶

GetComms returns the Comms field value

func (*UeCommunicationCollection) GetCommsOk ¶

GetCommsOk returns a tuple with the Comms field value and a boolean to check if the value has been set.

func (*UeCommunicationCollection) GetExterGroupId ¶

func (o *UeCommunicationCollection) GetExterGroupId() string

GetExterGroupId returns the ExterGroupId field value if set, zero value otherwise.

func (*UeCommunicationCollection) GetExterGroupIdOk ¶

func (o *UeCommunicationCollection) GetExterGroupIdOk() (*string, bool)

GetExterGroupIdOk returns a tuple with the ExterGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunicationCollection) GetGpsi ¶

func (o *UeCommunicationCollection) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*UeCommunicationCollection) GetGpsiOk ¶

func (o *UeCommunicationCollection) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunicationCollection) GetInterGroupId ¶

func (o *UeCommunicationCollection) GetInterGroupId() string

GetInterGroupId returns the InterGroupId field value if set, zero value otherwise.

func (*UeCommunicationCollection) GetInterGroupIdOk ¶

func (o *UeCommunicationCollection) GetInterGroupIdOk() (*string, bool)

GetInterGroupIdOk returns a tuple with the InterGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunicationCollection) GetSupi ¶

func (o *UeCommunicationCollection) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*UeCommunicationCollection) GetSupiOk ¶

func (o *UeCommunicationCollection) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunicationCollection) HasExterGroupId ¶

func (o *UeCommunicationCollection) HasExterGroupId() bool

HasExterGroupId returns a boolean if a field has been set.

func (*UeCommunicationCollection) HasGpsi ¶

func (o *UeCommunicationCollection) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*UeCommunicationCollection) HasInterGroupId ¶

func (o *UeCommunicationCollection) HasInterGroupId() bool

HasInterGroupId returns a boolean if a field has been set.

func (*UeCommunicationCollection) HasSupi ¶

func (o *UeCommunicationCollection) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (UeCommunicationCollection) MarshalJSON ¶

func (o UeCommunicationCollection) MarshalJSON() ([]byte, error)

func (*UeCommunicationCollection) SetAppId ¶

func (o *UeCommunicationCollection) SetAppId(v string)

SetAppId sets field value

func (*UeCommunicationCollection) SetComms ¶

SetComms sets field value

func (*UeCommunicationCollection) SetExterGroupId ¶

func (o *UeCommunicationCollection) SetExterGroupId(v string)

SetExterGroupId gets a reference to the given string and assigns it to the ExterGroupId field.

func (*UeCommunicationCollection) SetGpsi ¶

func (o *UeCommunicationCollection) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*UeCommunicationCollection) SetInterGroupId ¶

func (o *UeCommunicationCollection) SetInterGroupId(v string)

SetInterGroupId gets a reference to the given string and assigns it to the InterGroupId field.

func (*UeCommunicationCollection) SetSupi ¶

func (o *UeCommunicationCollection) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (UeCommunicationCollection) ToMap ¶

func (o UeCommunicationCollection) ToMap() (map[string]interface{}, error)

type UeCommunicationInfo ¶

type UeCommunicationInfo struct {
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,omitempty"`
	// String identifying a group of devices network internal globally unique ID which identifies a set of IMSIs, as specified in clause 19.9 of 3GPP TS 23.003.
	InterGroupId *string `json:"interGroupId,omitempty"`
	// String providing an application identifier.
	AppId *string                   `json:"appId,omitempty"`
	Comms []CommunicationCollection `json:"comms"`
}

UeCommunicationInfo Contains UE communication information associated with an application.

func NewUeCommunicationInfo ¶

func NewUeCommunicationInfo(comms []CommunicationCollection) *UeCommunicationInfo

NewUeCommunicationInfo instantiates a new UeCommunicationInfo 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 NewUeCommunicationInfoWithDefaults ¶

func NewUeCommunicationInfoWithDefaults() *UeCommunicationInfo

NewUeCommunicationInfoWithDefaults instantiates a new UeCommunicationInfo 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 (*UeCommunicationInfo) GetAppId ¶

func (o *UeCommunicationInfo) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*UeCommunicationInfo) GetAppIdOk ¶

func (o *UeCommunicationInfo) GetAppIdOk() (*string, bool)

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 (*UeCommunicationInfo) GetComms ¶

GetComms returns the Comms field value

func (*UeCommunicationInfo) GetCommsOk ¶

func (o *UeCommunicationInfo) GetCommsOk() ([]CommunicationCollection, bool)

GetCommsOk returns a tuple with the Comms field value and a boolean to check if the value has been set.

func (*UeCommunicationInfo) GetInterGroupId ¶

func (o *UeCommunicationInfo) GetInterGroupId() string

GetInterGroupId returns the InterGroupId field value if set, zero value otherwise.

func (*UeCommunicationInfo) GetInterGroupIdOk ¶

func (o *UeCommunicationInfo) GetInterGroupIdOk() (*string, bool)

GetInterGroupIdOk returns a tuple with the InterGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunicationInfo) GetSupi ¶

func (o *UeCommunicationInfo) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*UeCommunicationInfo) GetSupiOk ¶

func (o *UeCommunicationInfo) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeCommunicationInfo) HasAppId ¶

func (o *UeCommunicationInfo) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*UeCommunicationInfo) HasInterGroupId ¶

func (o *UeCommunicationInfo) HasInterGroupId() bool

HasInterGroupId returns a boolean if a field has been set.

func (*UeCommunicationInfo) HasSupi ¶

func (o *UeCommunicationInfo) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (UeCommunicationInfo) MarshalJSON ¶

func (o UeCommunicationInfo) MarshalJSON() ([]byte, error)

func (*UeCommunicationInfo) SetAppId ¶

func (o *UeCommunicationInfo) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*UeCommunicationInfo) SetComms ¶

SetComms sets field value

func (*UeCommunicationInfo) SetInterGroupId ¶

func (o *UeCommunicationInfo) SetInterGroupId(v string)

SetInterGroupId gets a reference to the given string and assigns it to the InterGroupId field.

func (*UeCommunicationInfo) SetSupi ¶

func (o *UeCommunicationInfo) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (UeCommunicationInfo) ToMap ¶

func (o UeCommunicationInfo) ToMap() (map[string]interface{}, error)

type UeInAreaFilter ¶

type UeInAreaFilter struct {
	UeType          *UeType `json:"ueType,omitempty"`
	AerialSrvDnnInd *bool   `json:"aerialSrvDnnInd,omitempty"`
}

UeInAreaFilter Additional filters for UE in Area Report event

func NewUeInAreaFilter ¶

func NewUeInAreaFilter() *UeInAreaFilter

NewUeInAreaFilter instantiates a new UeInAreaFilter 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 NewUeInAreaFilterWithDefaults ¶

func NewUeInAreaFilterWithDefaults() *UeInAreaFilter

NewUeInAreaFilterWithDefaults instantiates a new UeInAreaFilter 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 (*UeInAreaFilter) GetAerialSrvDnnInd ¶

func (o *UeInAreaFilter) GetAerialSrvDnnInd() bool

GetAerialSrvDnnInd returns the AerialSrvDnnInd field value if set, zero value otherwise.

func (*UeInAreaFilter) GetAerialSrvDnnIndOk ¶

func (o *UeInAreaFilter) GetAerialSrvDnnIndOk() (*bool, bool)

GetAerialSrvDnnIndOk returns a tuple with the AerialSrvDnnInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeInAreaFilter) GetUeType ¶

func (o *UeInAreaFilter) GetUeType() UeType

GetUeType returns the UeType field value if set, zero value otherwise.

func (*UeInAreaFilter) GetUeTypeOk ¶

func (o *UeInAreaFilter) GetUeTypeOk() (*UeType, bool)

GetUeTypeOk returns a tuple with the UeType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeInAreaFilter) HasAerialSrvDnnInd ¶

func (o *UeInAreaFilter) HasAerialSrvDnnInd() bool

HasAerialSrvDnnInd returns a boolean if a field has been set.

func (*UeInAreaFilter) HasUeType ¶

func (o *UeInAreaFilter) HasUeType() bool

HasUeType returns a boolean if a field has been set.

func (UeInAreaFilter) MarshalJSON ¶

func (o UeInAreaFilter) MarshalJSON() ([]byte, error)

func (*UeInAreaFilter) SetAerialSrvDnnInd ¶

func (o *UeInAreaFilter) SetAerialSrvDnnInd(v bool)

SetAerialSrvDnnInd gets a reference to the given bool and assigns it to the AerialSrvDnnInd field.

func (*UeInAreaFilter) SetUeType ¶

func (o *UeInAreaFilter) SetUeType(v UeType)

SetUeType gets a reference to the given UeType and assigns it to the UeType field.

func (UeInAreaFilter) ToMap ¶

func (o UeInAreaFilter) ToMap() (map[string]interface{}, error)

type UeLocationTrendsReportItem ¶

type UeLocationTrendsReportItem struct {
	Tai          *Tai          `json:"tai,omitempty"`
	Ncgi         *Ncgi         `json:"ncgi,omitempty"`
	Ecgi         *Ecgi         `json:"ecgi,omitempty"`
	N3gaLocation *N3gaLocation `json:"n3gaLocation,omitempty"`
	// indicating a time in seconds.
	Spacing int32 `json:"spacing"`
	// indicating a time in seconds.
	Duration int32 `json:"duration"`
	// string with format 'date-time' as defined in OpenAPI.
	Timestamp time.Time `json:"timestamp"`
}

UeLocationTrendsReportItem Report Item for UE Location Trends event.

func NewUeLocationTrendsReportItem ¶

func NewUeLocationTrendsReportItem(spacing int32, duration int32, timestamp time.Time) *UeLocationTrendsReportItem

NewUeLocationTrendsReportItem instantiates a new UeLocationTrendsReportItem 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 NewUeLocationTrendsReportItemWithDefaults ¶

func NewUeLocationTrendsReportItemWithDefaults() *UeLocationTrendsReportItem

NewUeLocationTrendsReportItemWithDefaults instantiates a new UeLocationTrendsReportItem 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 (*UeLocationTrendsReportItem) GetDuration ¶

func (o *UeLocationTrendsReportItem) GetDuration() int32

GetDuration returns the Duration field value

func (*UeLocationTrendsReportItem) GetDurationOk ¶

func (o *UeLocationTrendsReportItem) GetDurationOk() (*int32, bool)

GetDurationOk returns a tuple with the Duration field value and a boolean to check if the value has been set.

func (*UeLocationTrendsReportItem) GetEcgi ¶

func (o *UeLocationTrendsReportItem) GetEcgi() Ecgi

GetEcgi returns the Ecgi field value if set, zero value otherwise.

func (*UeLocationTrendsReportItem) GetEcgiOk ¶

func (o *UeLocationTrendsReportItem) GetEcgiOk() (*Ecgi, bool)

GetEcgiOk returns a tuple with the Ecgi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeLocationTrendsReportItem) GetN3gaLocation ¶

func (o *UeLocationTrendsReportItem) GetN3gaLocation() N3gaLocation

GetN3gaLocation returns the N3gaLocation field value if set, zero value otherwise.

func (*UeLocationTrendsReportItem) GetN3gaLocationOk ¶

func (o *UeLocationTrendsReportItem) GetN3gaLocationOk() (*N3gaLocation, bool)

GetN3gaLocationOk returns a tuple with the N3gaLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeLocationTrendsReportItem) GetNcgi ¶

func (o *UeLocationTrendsReportItem) GetNcgi() Ncgi

GetNcgi returns the Ncgi field value if set, zero value otherwise.

func (*UeLocationTrendsReportItem) GetNcgiOk ¶

func (o *UeLocationTrendsReportItem) GetNcgiOk() (*Ncgi, bool)

GetNcgiOk returns a tuple with the Ncgi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeLocationTrendsReportItem) GetSpacing ¶

func (o *UeLocationTrendsReportItem) GetSpacing() int32

GetSpacing returns the Spacing field value

func (*UeLocationTrendsReportItem) GetSpacingOk ¶

func (o *UeLocationTrendsReportItem) GetSpacingOk() (*int32, bool)

GetSpacingOk returns a tuple with the Spacing field value and a boolean to check if the value has been set.

func (*UeLocationTrendsReportItem) GetTai ¶

func (o *UeLocationTrendsReportItem) GetTai() Tai

GetTai returns the Tai field value if set, zero value otherwise.

func (*UeLocationTrendsReportItem) GetTaiOk ¶

func (o *UeLocationTrendsReportItem) GetTaiOk() (*Tai, bool)

GetTaiOk returns a tuple with the Tai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeLocationTrendsReportItem) GetTimestamp ¶

func (o *UeLocationTrendsReportItem) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*UeLocationTrendsReportItem) GetTimestampOk ¶

func (o *UeLocationTrendsReportItem) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value and a boolean to check if the value has been set.

func (*UeLocationTrendsReportItem) HasEcgi ¶

func (o *UeLocationTrendsReportItem) HasEcgi() bool

HasEcgi returns a boolean if a field has been set.

func (*UeLocationTrendsReportItem) HasN3gaLocation ¶

func (o *UeLocationTrendsReportItem) HasN3gaLocation() bool

HasN3gaLocation returns a boolean if a field has been set.

func (*UeLocationTrendsReportItem) HasNcgi ¶

func (o *UeLocationTrendsReportItem) HasNcgi() bool

HasNcgi returns a boolean if a field has been set.

func (*UeLocationTrendsReportItem) HasTai ¶

func (o *UeLocationTrendsReportItem) HasTai() bool

HasTai returns a boolean if a field has been set.

func (UeLocationTrendsReportItem) MarshalJSON ¶

func (o UeLocationTrendsReportItem) MarshalJSON() ([]byte, error)

func (*UeLocationTrendsReportItem) SetDuration ¶

func (o *UeLocationTrendsReportItem) SetDuration(v int32)

SetDuration sets field value

func (*UeLocationTrendsReportItem) SetEcgi ¶

func (o *UeLocationTrendsReportItem) SetEcgi(v Ecgi)

SetEcgi gets a reference to the given Ecgi and assigns it to the Ecgi field.

func (*UeLocationTrendsReportItem) SetN3gaLocation ¶

func (o *UeLocationTrendsReportItem) SetN3gaLocation(v N3gaLocation)

SetN3gaLocation gets a reference to the given N3gaLocation and assigns it to the N3gaLocation field.

func (*UeLocationTrendsReportItem) SetNcgi ¶

func (o *UeLocationTrendsReportItem) SetNcgi(v Ncgi)

SetNcgi gets a reference to the given Ncgi and assigns it to the Ncgi field.

func (*UeLocationTrendsReportItem) SetSpacing ¶

func (o *UeLocationTrendsReportItem) SetSpacing(v int32)

SetSpacing sets field value

func (*UeLocationTrendsReportItem) SetTai ¶

func (o *UeLocationTrendsReportItem) SetTai(v Tai)

SetTai gets a reference to the given Tai and assigns it to the Tai field.

func (*UeLocationTrendsReportItem) SetTimestamp ¶

func (o *UeLocationTrendsReportItem) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (UeLocationTrendsReportItem) ToMap ¶

func (o UeLocationTrendsReportItem) ToMap() (map[string]interface{}, error)

type UeMobility ¶

type UeMobility struct {
	// string with format 'date-time' as defined in OpenAPI.
	Ts            *time.Time                  `json:"ts,omitempty"`
	RecurringTime *ScheduledCommunicationTime `json:"recurringTime,omitempty"`
	// indicating a time in seconds.
	Duration *int32 `json:"duration,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	DurationVariance *float32       `json:"durationVariance,omitempty"`
	LocInfos         []LocationInfo `json:"locInfos,omitempty"`
}

UeMobility Represents UE mobility information.

func NewUeMobility ¶

func NewUeMobility() *UeMobility

NewUeMobility instantiates a new UeMobility 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 NewUeMobilityWithDefaults ¶

func NewUeMobilityWithDefaults() *UeMobility

NewUeMobilityWithDefaults instantiates a new UeMobility 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 (*UeMobility) GetDuration ¶

func (o *UeMobility) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise.

func (*UeMobility) GetDurationOk ¶

func (o *UeMobility) GetDurationOk() (*int32, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeMobility) GetDurationVariance ¶

func (o *UeMobility) GetDurationVariance() float32

GetDurationVariance returns the DurationVariance field value if set, zero value otherwise.

func (*UeMobility) GetDurationVarianceOk ¶

func (o *UeMobility) GetDurationVarianceOk() (*float32, bool)

GetDurationVarianceOk returns a tuple with the DurationVariance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeMobility) GetLocInfos ¶

func (o *UeMobility) GetLocInfos() []LocationInfo

GetLocInfos returns the LocInfos field value if set, zero value otherwise.

func (*UeMobility) GetLocInfosOk ¶

func (o *UeMobility) GetLocInfosOk() ([]LocationInfo, bool)

GetLocInfosOk returns a tuple with the LocInfos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeMobility) GetRecurringTime ¶

func (o *UeMobility) GetRecurringTime() ScheduledCommunicationTime

GetRecurringTime returns the RecurringTime field value if set, zero value otherwise.

func (*UeMobility) GetRecurringTimeOk ¶

func (o *UeMobility) GetRecurringTimeOk() (*ScheduledCommunicationTime, bool)

GetRecurringTimeOk returns a tuple with the RecurringTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeMobility) GetTs ¶

func (o *UeMobility) GetTs() time.Time

GetTs returns the Ts field value if set, zero value otherwise.

func (*UeMobility) GetTsOk ¶

func (o *UeMobility) GetTsOk() (*time.Time, bool)

GetTsOk returns a tuple with the Ts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeMobility) HasDuration ¶

func (o *UeMobility) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*UeMobility) HasDurationVariance ¶

func (o *UeMobility) HasDurationVariance() bool

HasDurationVariance returns a boolean if a field has been set.

func (*UeMobility) HasLocInfos ¶

func (o *UeMobility) HasLocInfos() bool

HasLocInfos returns a boolean if a field has been set.

func (*UeMobility) HasRecurringTime ¶

func (o *UeMobility) HasRecurringTime() bool

HasRecurringTime returns a boolean if a field has been set.

func (*UeMobility) HasTs ¶

func (o *UeMobility) HasTs() bool

HasTs returns a boolean if a field has been set.

func (UeMobility) MarshalJSON ¶

func (o UeMobility) MarshalJSON() ([]byte, error)

func (*UeMobility) SetDuration ¶

func (o *UeMobility) SetDuration(v int32)

SetDuration gets a reference to the given int32 and assigns it to the Duration field.

func (*UeMobility) SetDurationVariance ¶

func (o *UeMobility) SetDurationVariance(v float32)

SetDurationVariance gets a reference to the given float32 and assigns it to the DurationVariance field.

func (*UeMobility) SetLocInfos ¶

func (o *UeMobility) SetLocInfos(v []LocationInfo)

SetLocInfos gets a reference to the given []LocationInfo and assigns it to the LocInfos field.

func (*UeMobility) SetRecurringTime ¶

func (o *UeMobility) SetRecurringTime(v ScheduledCommunicationTime)

SetRecurringTime gets a reference to the given ScheduledCommunicationTime and assigns it to the RecurringTime field.

func (*UeMobility) SetTs ¶

func (o *UeMobility) SetTs(v time.Time)

SetTs gets a reference to the given time.Time and assigns it to the Ts field.

func (UeMobility) ToMap ¶

func (o UeMobility) ToMap() (map[string]interface{}, error)

type UeMobilityCollection ¶

type UeMobilityCollection struct {
	// 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.
	Gpsi *string `json:"gpsi,omitempty"`
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,omitempty"`
	// String providing an application identifier.
	AppId string `json:"appId"`
	// Indicates applicable to all applications if set to true, otherwise set to false.  Default value is false if omitted.
	AllAppInd *bool                    `json:"allAppInd,omitempty"`
	UeTrajs   []UeTrajectoryCollection `json:"ueTrajs"`
}

UeMobilityCollection Contains UE mobility information associated with an application. If the allAppInd attribute is present and set to true, then the value in the appId shall be ignored, which indicates the collected UE mobility information is applicable to all the applications for the UE.

func NewUeMobilityCollection ¶

func NewUeMobilityCollection(appId string, ueTrajs []UeTrajectoryCollection) *UeMobilityCollection

NewUeMobilityCollection instantiates a new UeMobilityCollection 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 NewUeMobilityCollectionWithDefaults ¶

func NewUeMobilityCollectionWithDefaults() *UeMobilityCollection

NewUeMobilityCollectionWithDefaults instantiates a new UeMobilityCollection 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 (*UeMobilityCollection) GetAllAppInd ¶

func (o *UeMobilityCollection) GetAllAppInd() bool

GetAllAppInd returns the AllAppInd field value if set, zero value otherwise.

func (*UeMobilityCollection) GetAllAppIndOk ¶

func (o *UeMobilityCollection) GetAllAppIndOk() (*bool, bool)

GetAllAppIndOk returns a tuple with the AllAppInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeMobilityCollection) GetAppId ¶

func (o *UeMobilityCollection) GetAppId() string

GetAppId returns the AppId field value

func (*UeMobilityCollection) GetAppIdOk ¶

func (o *UeMobilityCollection) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value and a boolean to check if the value has been set.

func (*UeMobilityCollection) GetGpsi ¶

func (o *UeMobilityCollection) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*UeMobilityCollection) GetGpsiOk ¶

func (o *UeMobilityCollection) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeMobilityCollection) GetSupi ¶

func (o *UeMobilityCollection) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*UeMobilityCollection) GetSupiOk ¶

func (o *UeMobilityCollection) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UeMobilityCollection) GetUeTrajs ¶

func (o *UeMobilityCollection) GetUeTrajs() []UeTrajectoryCollection

GetUeTrajs returns the UeTrajs field value

func (*UeMobilityCollection) GetUeTrajsOk ¶

func (o *UeMobilityCollection) GetUeTrajsOk() ([]UeTrajectoryCollection, bool)

GetUeTrajsOk returns a tuple with the UeTrajs field value and a boolean to check if the value has been set.

func (*UeMobilityCollection) HasAllAppInd ¶

func (o *UeMobilityCollection) HasAllAppInd() bool

HasAllAppInd returns a boolean if a field has been set.

func (*UeMobilityCollection) HasGpsi ¶

func (o *UeMobilityCollection) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*UeMobilityCollection) HasSupi ¶

func (o *UeMobilityCollection) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (UeMobilityCollection) MarshalJSON ¶

func (o UeMobilityCollection) MarshalJSON() ([]byte, error)

func (*UeMobilityCollection) SetAllAppInd ¶

func (o *UeMobilityCollection) SetAllAppInd(v bool)

SetAllAppInd gets a reference to the given bool and assigns it to the AllAppInd field.

func (*UeMobilityCollection) SetAppId ¶

func (o *UeMobilityCollection) SetAppId(v string)

SetAppId sets field value

func (*UeMobilityCollection) SetGpsi ¶

func (o *UeMobilityCollection) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*UeMobilityCollection) SetSupi ¶

func (o *UeMobilityCollection) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (*UeMobilityCollection) SetUeTrajs ¶

func (o *UeMobilityCollection) SetUeTrajs(v []UeTrajectoryCollection)

SetUeTrajs sets field value

func (UeMobilityCollection) ToMap ¶

func (o UeMobilityCollection) ToMap() (map[string]interface{}, error)

type UeMobilityInfo ¶

type UeMobilityInfo struct {
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi string `json:"supi"`
	// String providing an application identifier.
	AppId   *string            `json:"appId,omitempty"`
	UeTrajs []UeTrajectoryInfo `json:"ueTrajs"`
}

UeMobilityInfo Contains UE mobility information associated with an application. If the \"appId\" attribute is not present, then indicates the collected UE mobility information is applicable to all the applications for the UE.

func NewUeMobilityInfo ¶

func NewUeMobilityInfo(supi string, ueTrajs []UeTrajectoryInfo) *UeMobilityInfo

NewUeMobilityInfo instantiates a new UeMobilityInfo 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 NewUeMobilityInfoWithDefaults ¶

func NewUeMobilityInfoWithDefaults() *UeMobilityInfo

NewUeMobilityInfoWithDefaults instantiates a new UeMobilityInfo 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 (*UeMobilityInfo) GetAppId ¶

func (o *UeMobilityInfo) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*UeMobilityInfo) GetAppIdOk ¶

func (o *UeMobilityInfo) GetAppIdOk() (*string, bool)

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 (*UeMobilityInfo) GetSupi ¶

func (o *UeMobilityInfo) GetSupi() string

GetSupi returns the Supi field value

func (*UeMobilityInfo) GetSupiOk ¶

func (o *UeMobilityInfo) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value and a boolean to check if the value has been set.

func (*UeMobilityInfo) GetUeTrajs ¶

func (o *UeMobilityInfo) GetUeTrajs() []UeTrajectoryInfo

GetUeTrajs returns the UeTrajs field value

func (*UeMobilityInfo) GetUeTrajsOk ¶

func (o *UeMobilityInfo) GetUeTrajsOk() ([]UeTrajectoryInfo, bool)

GetUeTrajsOk returns a tuple with the UeTrajs field value and a boolean to check if the value has been set.

func (*UeMobilityInfo) HasAppId ¶

func (o *UeMobilityInfo) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (UeMobilityInfo) MarshalJSON ¶

func (o UeMobilityInfo) MarshalJSON() ([]byte, error)

func (*UeMobilityInfo) SetAppId ¶

func (o *UeMobilityInfo) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*UeMobilityInfo) SetSupi ¶

func (o *UeMobilityInfo) SetSupi(v string)

SetSupi sets field value

func (*UeMobilityInfo) SetUeTrajs ¶

func (o *UeMobilityInfo) SetUeTrajs(v []UeTrajectoryInfo)

SetUeTrajs sets field value

func (UeMobilityInfo) ToMap ¶

func (o UeMobilityInfo) ToMap() (map[string]interface{}, error)

type UeReachability ¶

type UeReachability struct {
	String *string
}

UeReachability Describes the reachability of the UE

func (*UeReachability) MarshalJSON ¶

func (src *UeReachability) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UeReachability) UnmarshalJSON ¶

func (dst *UeReachability) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UeTrajectoryCollection ¶

type UeTrajectoryCollection struct {
	// string with format 'date-time' as defined in OpenAPI.
	Ts      time.Time      `json:"ts"`
	LocArea LocationArea5G `json:"locArea"`
}

UeTrajectoryCollection Contains UE trajectory information associated with an application.

func NewUeTrajectoryCollection ¶

func NewUeTrajectoryCollection(ts time.Time, locArea LocationArea5G) *UeTrajectoryCollection

NewUeTrajectoryCollection instantiates a new UeTrajectoryCollection 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 NewUeTrajectoryCollectionWithDefaults ¶

func NewUeTrajectoryCollectionWithDefaults() *UeTrajectoryCollection

NewUeTrajectoryCollectionWithDefaults instantiates a new UeTrajectoryCollection 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 (*UeTrajectoryCollection) GetLocArea ¶

func (o *UeTrajectoryCollection) GetLocArea() LocationArea5G

GetLocArea returns the LocArea field value

func (*UeTrajectoryCollection) GetLocAreaOk ¶

func (o *UeTrajectoryCollection) GetLocAreaOk() (*LocationArea5G, bool)

GetLocAreaOk returns a tuple with the LocArea field value and a boolean to check if the value has been set.

func (*UeTrajectoryCollection) GetTs ¶

func (o *UeTrajectoryCollection) GetTs() time.Time

GetTs returns the Ts field value

func (*UeTrajectoryCollection) GetTsOk ¶

func (o *UeTrajectoryCollection) GetTsOk() (*time.Time, bool)

GetTsOk returns a tuple with the Ts field value and a boolean to check if the value has been set.

func (UeTrajectoryCollection) MarshalJSON ¶

func (o UeTrajectoryCollection) MarshalJSON() ([]byte, error)

func (*UeTrajectoryCollection) SetLocArea ¶

func (o *UeTrajectoryCollection) SetLocArea(v LocationArea5G)

SetLocArea sets field value

func (*UeTrajectoryCollection) SetTs ¶

func (o *UeTrajectoryCollection) SetTs(v time.Time)

SetTs sets field value

func (UeTrajectoryCollection) ToMap ¶

func (o UeTrajectoryCollection) ToMap() (map[string]interface{}, error)

type UeTrajectoryInfo ¶

type UeTrajectoryInfo struct {
	// string with format 'date-time' as defined in OpenAPI.
	Ts       time.Time    `json:"ts"`
	Location UserLocation `json:"location"`
}

UeTrajectoryInfo Contains UE trajectory information.

func NewUeTrajectoryInfo ¶

func NewUeTrajectoryInfo(ts time.Time, location UserLocation) *UeTrajectoryInfo

NewUeTrajectoryInfo instantiates a new UeTrajectoryInfo 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 NewUeTrajectoryInfoWithDefaults ¶

func NewUeTrajectoryInfoWithDefaults() *UeTrajectoryInfo

NewUeTrajectoryInfoWithDefaults instantiates a new UeTrajectoryInfo 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 (*UeTrajectoryInfo) GetLocation ¶

func (o *UeTrajectoryInfo) GetLocation() UserLocation

GetLocation returns the Location field value

func (*UeTrajectoryInfo) GetLocationOk ¶

func (o *UeTrajectoryInfo) GetLocationOk() (*UserLocation, bool)

GetLocationOk returns a tuple with the Location field value and a boolean to check if the value has been set.

func (*UeTrajectoryInfo) GetTs ¶

func (o *UeTrajectoryInfo) GetTs() time.Time

GetTs returns the Ts field value

func (*UeTrajectoryInfo) GetTsOk ¶

func (o *UeTrajectoryInfo) GetTsOk() (*time.Time, bool)

GetTsOk returns a tuple with the Ts field value and a boolean to check if the value has been set.

func (UeTrajectoryInfo) MarshalJSON ¶

func (o UeTrajectoryInfo) MarshalJSON() ([]byte, error)

func (*UeTrajectoryInfo) SetLocation ¶

func (o *UeTrajectoryInfo) SetLocation(v UserLocation)

SetLocation sets field value

func (*UeTrajectoryInfo) SetTs ¶

func (o *UeTrajectoryInfo) SetTs(v time.Time)

SetTs sets field value

func (UeTrajectoryInfo) ToMap ¶

func (o UeTrajectoryInfo) ToMap() (map[string]interface{}, error)

type UeType ¶

type UeType struct {
	String *string
}

UeType Describes the type of UEs

func (*UeType) MarshalJSON ¶

func (src *UeType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UeType) UnmarshalJSON ¶

func (dst *UeType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UmtTime ¶

type UmtTime struct {
	// String with format partial-time or full-time as defined in clause 5.6 of IETF RFC 3339. Examples, 20:15:00, 20:15:00-08:00 (for 8 hours behind UTC).
	TimeOfDay string `json:"timeOfDay"`
	// integer between and including 1 and 7 denoting a weekday. 1 shall indicate Monday, and the subsequent weekdays  shall be indicated with the next higher numbers. 7 shall indicate Sunday.
	DayOfWeek int32 `json:"dayOfWeek"`
}

UmtTime struct for UmtTime

func NewUmtTime ¶

func NewUmtTime(timeOfDay string, dayOfWeek int32) *UmtTime

NewUmtTime instantiates a new UmtTime 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 NewUmtTimeWithDefaults ¶

func NewUmtTimeWithDefaults() *UmtTime

NewUmtTimeWithDefaults instantiates a new UmtTime 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 (*UmtTime) GetDayOfWeek ¶

func (o *UmtTime) GetDayOfWeek() int32

GetDayOfWeek returns the DayOfWeek field value

func (*UmtTime) GetDayOfWeekOk ¶

func (o *UmtTime) GetDayOfWeekOk() (*int32, bool)

GetDayOfWeekOk returns a tuple with the DayOfWeek field value and a boolean to check if the value has been set.

func (*UmtTime) GetTimeOfDay ¶

func (o *UmtTime) GetTimeOfDay() string

GetTimeOfDay returns the TimeOfDay field value

func (*UmtTime) GetTimeOfDayOk ¶

func (o *UmtTime) GetTimeOfDayOk() (*string, bool)

GetTimeOfDayOk returns a tuple with the TimeOfDay field value and a boolean to check if the value has been set.

func (UmtTime) MarshalJSON ¶

func (o UmtTime) MarshalJSON() ([]byte, error)

func (*UmtTime) SetDayOfWeek ¶

func (o *UmtTime) SetDayOfWeek(v int32)

SetDayOfWeek sets field value

func (*UmtTime) SetTimeOfDay ¶

func (o *UmtTime) SetTimeOfDay(v string)

SetTimeOfDay sets field value

func (UmtTime) ToMap ¶

func (o UmtTime) ToMap() (map[string]interface{}, error)

type UnTrustAfInfo ¶

type UnTrustAfInfo struct {
	AfId           string           `json:"afId"`
	SNssaiInfoList []SnssaiInfoItem `json:"sNssaiInfoList,omitempty"`
	MappingInd     *bool            `json:"mappingInd,omitempty"`
}

UnTrustAfInfo Information of a untrusted AF Instance

func NewUnTrustAfInfo ¶

func NewUnTrustAfInfo(afId string) *UnTrustAfInfo

NewUnTrustAfInfo instantiates a new UnTrustAfInfo 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 NewUnTrustAfInfoWithDefaults ¶

func NewUnTrustAfInfoWithDefaults() *UnTrustAfInfo

NewUnTrustAfInfoWithDefaults instantiates a new UnTrustAfInfo 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 (*UnTrustAfInfo) GetAfId ¶

func (o *UnTrustAfInfo) GetAfId() string

GetAfId returns the AfId field value

func (*UnTrustAfInfo) GetAfIdOk ¶

func (o *UnTrustAfInfo) GetAfIdOk() (*string, bool)

GetAfIdOk returns a tuple with the AfId field value and a boolean to check if the value has been set.

func (*UnTrustAfInfo) GetMappingInd ¶

func (o *UnTrustAfInfo) GetMappingInd() bool

GetMappingInd returns the MappingInd field value if set, zero value otherwise.

func (*UnTrustAfInfo) GetMappingIndOk ¶

func (o *UnTrustAfInfo) GetMappingIndOk() (*bool, bool)

GetMappingIndOk returns a tuple with the MappingInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UnTrustAfInfo) GetSNssaiInfoList ¶

func (o *UnTrustAfInfo) GetSNssaiInfoList() []SnssaiInfoItem

GetSNssaiInfoList returns the SNssaiInfoList field value if set, zero value otherwise.

func (*UnTrustAfInfo) GetSNssaiInfoListOk ¶

func (o *UnTrustAfInfo) GetSNssaiInfoListOk() ([]SnssaiInfoItem, bool)

GetSNssaiInfoListOk returns a tuple with the SNssaiInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UnTrustAfInfo) HasMappingInd ¶

func (o *UnTrustAfInfo) HasMappingInd() bool

HasMappingInd returns a boolean if a field has been set.

func (*UnTrustAfInfo) HasSNssaiInfoList ¶

func (o *UnTrustAfInfo) HasSNssaiInfoList() bool

HasSNssaiInfoList returns a boolean if a field has been set.

func (UnTrustAfInfo) MarshalJSON ¶

func (o UnTrustAfInfo) MarshalJSON() ([]byte, error)

func (*UnTrustAfInfo) SetAfId ¶

func (o *UnTrustAfInfo) SetAfId(v string)

SetAfId sets field value

func (*UnTrustAfInfo) SetMappingInd ¶

func (o *UnTrustAfInfo) SetMappingInd(v bool)

SetMappingInd gets a reference to the given bool and assigns it to the MappingInd field.

func (*UnTrustAfInfo) SetSNssaiInfoList ¶

func (o *UnTrustAfInfo) SetSNssaiInfoList(v []SnssaiInfoItem)

SetSNssaiInfoList gets a reference to the given []SnssaiInfoItem and assigns it to the SNssaiInfoList field.

func (UnTrustAfInfo) ToMap ¶

func (o UnTrustAfInfo) ToMap() (map[string]interface{}, error)

type UncertaintyEllipse ¶

type UncertaintyEllipse struct {
	// Indicates value of uncertainty.
	SemiMajor float32 `json:"semiMajor"`
	// Indicates value of uncertainty.
	SemiMinor float32 `json:"semiMinor"`
	// Indicates value of orientation angle.
	OrientationMajor int32 `json:"orientationMajor"`
}

UncertaintyEllipse Ellipse with uncertainty.

func NewUncertaintyEllipse ¶

func NewUncertaintyEllipse(semiMajor float32, semiMinor float32, orientationMajor int32) *UncertaintyEllipse

NewUncertaintyEllipse instantiates a new UncertaintyEllipse 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 NewUncertaintyEllipseWithDefaults ¶

func NewUncertaintyEllipseWithDefaults() *UncertaintyEllipse

NewUncertaintyEllipseWithDefaults instantiates a new UncertaintyEllipse 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 (*UncertaintyEllipse) GetOrientationMajor ¶

func (o *UncertaintyEllipse) GetOrientationMajor() int32

GetOrientationMajor returns the OrientationMajor field value

func (*UncertaintyEllipse) GetOrientationMajorOk ¶

func (o *UncertaintyEllipse) GetOrientationMajorOk() (*int32, bool)

GetOrientationMajorOk returns a tuple with the OrientationMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipse) GetSemiMajor ¶

func (o *UncertaintyEllipse) GetSemiMajor() float32

GetSemiMajor returns the SemiMajor field value

func (*UncertaintyEllipse) GetSemiMajorOk ¶

func (o *UncertaintyEllipse) GetSemiMajorOk() (*float32, bool)

GetSemiMajorOk returns a tuple with the SemiMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipse) GetSemiMinor ¶

func (o *UncertaintyEllipse) GetSemiMinor() float32

GetSemiMinor returns the SemiMinor field value

func (*UncertaintyEllipse) GetSemiMinorOk ¶

func (o *UncertaintyEllipse) GetSemiMinorOk() (*float32, bool)

GetSemiMinorOk returns a tuple with the SemiMinor field value and a boolean to check if the value has been set.

func (UncertaintyEllipse) MarshalJSON ¶

func (o UncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*UncertaintyEllipse) SetOrientationMajor ¶

func (o *UncertaintyEllipse) SetOrientationMajor(v int32)

SetOrientationMajor sets field value

func (*UncertaintyEllipse) SetSemiMajor ¶

func (o *UncertaintyEllipse) SetSemiMajor(v float32)

SetSemiMajor sets field value

func (*UncertaintyEllipse) SetSemiMinor ¶

func (o *UncertaintyEllipse) SetSemiMinor(v float32)

SetSemiMinor sets field value

func (UncertaintyEllipse) ToMap ¶

func (o UncertaintyEllipse) ToMap() (map[string]interface{}, error)

type UncertaintyEllipsoid ¶

type UncertaintyEllipsoid struct {
	// Indicates value of uncertainty.
	SemiMajor float32 `json:"semiMajor"`
	// Indicates value of uncertainty.
	SemiMinor float32 `json:"semiMinor"`
	// Indicates value of uncertainty.
	Vertical float32 `json:"vertical"`
	// Indicates value of orientation angle.
	OrientationMajor int32 `json:"orientationMajor"`
}

UncertaintyEllipsoid Ellipsoid with uncertainty

func NewUncertaintyEllipsoid ¶

func NewUncertaintyEllipsoid(semiMajor float32, semiMinor float32, vertical float32, orientationMajor int32) *UncertaintyEllipsoid

NewUncertaintyEllipsoid instantiates a new UncertaintyEllipsoid 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 NewUncertaintyEllipsoidWithDefaults ¶

func NewUncertaintyEllipsoidWithDefaults() *UncertaintyEllipsoid

NewUncertaintyEllipsoidWithDefaults instantiates a new UncertaintyEllipsoid 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 (*UncertaintyEllipsoid) GetOrientationMajor ¶

func (o *UncertaintyEllipsoid) GetOrientationMajor() int32

GetOrientationMajor returns the OrientationMajor field value

func (*UncertaintyEllipsoid) GetOrientationMajorOk ¶

func (o *UncertaintyEllipsoid) GetOrientationMajorOk() (*int32, bool)

GetOrientationMajorOk returns a tuple with the OrientationMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetSemiMajor ¶

func (o *UncertaintyEllipsoid) GetSemiMajor() float32

GetSemiMajor returns the SemiMajor field value

func (*UncertaintyEllipsoid) GetSemiMajorOk ¶

func (o *UncertaintyEllipsoid) GetSemiMajorOk() (*float32, bool)

GetSemiMajorOk returns a tuple with the SemiMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetSemiMinor ¶

func (o *UncertaintyEllipsoid) GetSemiMinor() float32

GetSemiMinor returns the SemiMinor field value

func (*UncertaintyEllipsoid) GetSemiMinorOk ¶

func (o *UncertaintyEllipsoid) GetSemiMinorOk() (*float32, bool)

GetSemiMinorOk returns a tuple with the SemiMinor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetVertical ¶

func (o *UncertaintyEllipsoid) GetVertical() float32

GetVertical returns the Vertical field value

func (*UncertaintyEllipsoid) GetVerticalOk ¶

func (o *UncertaintyEllipsoid) GetVerticalOk() (*float32, bool)

GetVerticalOk returns a tuple with the Vertical field value and a boolean to check if the value has been set.

func (UncertaintyEllipsoid) MarshalJSON ¶

func (o UncertaintyEllipsoid) MarshalJSON() ([]byte, error)

func (*UncertaintyEllipsoid) SetOrientationMajor ¶

func (o *UncertaintyEllipsoid) SetOrientationMajor(v int32)

SetOrientationMajor sets field value

func (*UncertaintyEllipsoid) SetSemiMajor ¶

func (o *UncertaintyEllipsoid) SetSemiMajor(v float32)

SetSemiMajor sets field value

func (*UncertaintyEllipsoid) SetSemiMinor ¶

func (o *UncertaintyEllipsoid) SetSemiMinor(v float32)

SetSemiMinor sets field value

func (*UncertaintyEllipsoid) SetVertical ¶

func (o *UncertaintyEllipsoid) SetVertical(v float32)

SetVertical sets field value

func (UncertaintyEllipsoid) ToMap ¶

func (o UncertaintyEllipsoid) ToMap() (map[string]interface{}, error)

type UpfCond ¶

type UpfCond struct {
	ConditionType  string   `json:"conditionType"`
	SmfServingArea []string `json:"smfServingArea,omitempty"`
	TaiList        []Tai    `json:"taiList,omitempty"`
}

UpfCond Subscription to a set of NF Instances (UPFs), able to serve a certain service area (i.e. SMF serving area or TAI list)

func NewUpfCond ¶

func NewUpfCond(conditionType string) *UpfCond

NewUpfCond instantiates a new UpfCond 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 NewUpfCondWithDefaults ¶

func NewUpfCondWithDefaults() *UpfCond

NewUpfCondWithDefaults instantiates a new UpfCond 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 (*UpfCond) GetConditionType ¶

func (o *UpfCond) GetConditionType() string

GetConditionType returns the ConditionType field value

func (*UpfCond) GetConditionTypeOk ¶

func (o *UpfCond) GetConditionTypeOk() (*string, bool)

GetConditionTypeOk returns a tuple with the ConditionType field value and a boolean to check if the value has been set.

func (*UpfCond) GetSmfServingArea ¶

func (o *UpfCond) GetSmfServingArea() []string

GetSmfServingArea returns the SmfServingArea field value if set, zero value otherwise.

func (*UpfCond) GetSmfServingAreaOk ¶

func (o *UpfCond) GetSmfServingAreaOk() ([]string, bool)

GetSmfServingAreaOk returns a tuple with the SmfServingArea field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfCond) GetTaiList ¶

func (o *UpfCond) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*UpfCond) GetTaiListOk ¶

func (o *UpfCond) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfCond) HasSmfServingArea ¶

func (o *UpfCond) HasSmfServingArea() bool

HasSmfServingArea returns a boolean if a field has been set.

func (*UpfCond) HasTaiList ¶

func (o *UpfCond) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (UpfCond) MarshalJSON ¶

func (o UpfCond) MarshalJSON() ([]byte, error)

func (*UpfCond) SetConditionType ¶

func (o *UpfCond) SetConditionType(v string)

SetConditionType sets field value

func (*UpfCond) SetSmfServingArea ¶

func (o *UpfCond) SetSmfServingArea(v []string)

SetSmfServingArea gets a reference to the given []string and assigns it to the SmfServingArea field.

func (*UpfCond) SetTaiList ¶

func (o *UpfCond) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (UpfCond) ToMap ¶

func (o UpfCond) ToMap() (map[string]interface{}, error)

type UpfInfo ¶

type UpfInfo struct {
	SNssaiUpfInfoList     []SnssaiUpfInfoItem    `json:"sNssaiUpfInfoList"`
	SmfServingArea        []string               `json:"smfServingArea,omitempty"`
	InterfaceUpfInfoList  []InterfaceUpfInfoItem `json:"interfaceUpfInfoList,omitempty"`
	IwkEpsInd             *bool                  `json:"iwkEpsInd,omitempty"`
	SxaInd                *bool                  `json:"sxaInd,omitempty"`
	PduSessionTypes       []PduSessionType       `json:"pduSessionTypes,omitempty"`
	AtsssCapability       *AtsssCapability       `json:"atsssCapability,omitempty"`
	UeIpAddrInd           *bool                  `json:"ueIpAddrInd,omitempty"`
	TaiList               []Tai                  `json:"taiList,omitempty"`
	TaiRangeList          []TaiRange             `json:"taiRangeList,omitempty"`
	WAgfInfo              *WAgfInfo              `json:"wAgfInfo,omitempty"`
	TngfInfo              *TngfInfo              `json:"tngfInfo,omitempty"`
	TwifInfo              *TwifInfo              `json:"twifInfo,omitempty"`
	Priority              *int32                 `json:"priority,omitempty"`
	RedundantGtpu         *bool                  `json:"redundantGtpu,omitempty"`
	Ipups                 *bool                  `json:"ipups,omitempty"`
	DataForwarding        *bool                  `json:"dataForwarding,omitempty"`
	SupportedPfcpFeatures *string                `json:"supportedPfcpFeatures,omitempty"`
}

UpfInfo Information of an UPF NF Instance

func NewUpfInfo ¶

func NewUpfInfo(sNssaiUpfInfoList []SnssaiUpfInfoItem) *UpfInfo

NewUpfInfo instantiates a new UpfInfo 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 NewUpfInfoWithDefaults ¶

func NewUpfInfoWithDefaults() *UpfInfo

NewUpfInfoWithDefaults instantiates a new UpfInfo 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 (*UpfInfo) GetAtsssCapability ¶

func (o *UpfInfo) GetAtsssCapability() AtsssCapability

GetAtsssCapability returns the AtsssCapability field value if set, zero value otherwise.

func (*UpfInfo) GetAtsssCapabilityOk ¶

func (o *UpfInfo) GetAtsssCapabilityOk() (*AtsssCapability, bool)

GetAtsssCapabilityOk returns a tuple with the AtsssCapability field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetDataForwarding ¶

func (o *UpfInfo) GetDataForwarding() bool

GetDataForwarding returns the DataForwarding field value if set, zero value otherwise.

func (*UpfInfo) GetDataForwardingOk ¶

func (o *UpfInfo) GetDataForwardingOk() (*bool, bool)

GetDataForwardingOk returns a tuple with the DataForwarding field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetInterfaceUpfInfoList ¶

func (o *UpfInfo) GetInterfaceUpfInfoList() []InterfaceUpfInfoItem

GetInterfaceUpfInfoList returns the InterfaceUpfInfoList field value if set, zero value otherwise.

func (*UpfInfo) GetInterfaceUpfInfoListOk ¶

func (o *UpfInfo) GetInterfaceUpfInfoListOk() ([]InterfaceUpfInfoItem, bool)

GetInterfaceUpfInfoListOk returns a tuple with the InterfaceUpfInfoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetIpups ¶

func (o *UpfInfo) GetIpups() bool

GetIpups returns the Ipups field value if set, zero value otherwise.

func (*UpfInfo) GetIpupsOk ¶

func (o *UpfInfo) GetIpupsOk() (*bool, bool)

GetIpupsOk returns a tuple with the Ipups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetIwkEpsInd ¶

func (o *UpfInfo) GetIwkEpsInd() bool

GetIwkEpsInd returns the IwkEpsInd field value if set, zero value otherwise.

func (*UpfInfo) GetIwkEpsIndOk ¶

func (o *UpfInfo) GetIwkEpsIndOk() (*bool, bool)

GetIwkEpsIndOk returns a tuple with the IwkEpsInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetPduSessionTypes ¶

func (o *UpfInfo) GetPduSessionTypes() []PduSessionType

GetPduSessionTypes returns the PduSessionTypes field value if set, zero value otherwise.

func (*UpfInfo) GetPduSessionTypesOk ¶

func (o *UpfInfo) GetPduSessionTypesOk() ([]PduSessionType, bool)

GetPduSessionTypesOk returns a tuple with the PduSessionTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetPriority ¶

func (o *UpfInfo) GetPriority() int32

GetPriority returns the Priority field value if set, zero value otherwise.

func (*UpfInfo) GetPriorityOk ¶

func (o *UpfInfo) GetPriorityOk() (*int32, bool)

GetPriorityOk returns a tuple with the Priority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetRedundantGtpu ¶

func (o *UpfInfo) GetRedundantGtpu() bool

GetRedundantGtpu returns the RedundantGtpu field value if set, zero value otherwise.

func (*UpfInfo) GetRedundantGtpuOk ¶

func (o *UpfInfo) GetRedundantGtpuOk() (*bool, bool)

GetRedundantGtpuOk returns a tuple with the RedundantGtpu field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetSNssaiUpfInfoList ¶

func (o *UpfInfo) GetSNssaiUpfInfoList() []SnssaiUpfInfoItem

GetSNssaiUpfInfoList returns the SNssaiUpfInfoList field value

func (*UpfInfo) GetSNssaiUpfInfoListOk ¶

func (o *UpfInfo) GetSNssaiUpfInfoListOk() ([]SnssaiUpfInfoItem, bool)

GetSNssaiUpfInfoListOk returns a tuple with the SNssaiUpfInfoList field value and a boolean to check if the value has been set.

func (*UpfInfo) GetSmfServingArea ¶

func (o *UpfInfo) GetSmfServingArea() []string

GetSmfServingArea returns the SmfServingArea field value if set, zero value otherwise.

func (*UpfInfo) GetSmfServingAreaOk ¶

func (o *UpfInfo) GetSmfServingAreaOk() ([]string, bool)

GetSmfServingAreaOk returns a tuple with the SmfServingArea field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetSupportedPfcpFeatures ¶

func (o *UpfInfo) GetSupportedPfcpFeatures() string

GetSupportedPfcpFeatures returns the SupportedPfcpFeatures field value if set, zero value otherwise.

func (*UpfInfo) GetSupportedPfcpFeaturesOk ¶

func (o *UpfInfo) GetSupportedPfcpFeaturesOk() (*string, bool)

GetSupportedPfcpFeaturesOk returns a tuple with the SupportedPfcpFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetSxaInd ¶

func (o *UpfInfo) GetSxaInd() bool

GetSxaInd returns the SxaInd field value if set, zero value otherwise.

func (*UpfInfo) GetSxaIndOk ¶

func (o *UpfInfo) GetSxaIndOk() (*bool, bool)

GetSxaIndOk returns a tuple with the SxaInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetTaiList ¶

func (o *UpfInfo) GetTaiList() []Tai

GetTaiList returns the TaiList field value if set, zero value otherwise.

func (*UpfInfo) GetTaiListOk ¶

func (o *UpfInfo) GetTaiListOk() ([]Tai, bool)

GetTaiListOk returns a tuple with the TaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetTaiRangeList ¶

func (o *UpfInfo) GetTaiRangeList() []TaiRange

GetTaiRangeList returns the TaiRangeList field value if set, zero value otherwise.

func (*UpfInfo) GetTaiRangeListOk ¶

func (o *UpfInfo) GetTaiRangeListOk() ([]TaiRange, bool)

GetTaiRangeListOk returns a tuple with the TaiRangeList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetTngfInfo ¶

func (o *UpfInfo) GetTngfInfo() TngfInfo

GetTngfInfo returns the TngfInfo field value if set, zero value otherwise.

func (*UpfInfo) GetTngfInfoOk ¶

func (o *UpfInfo) GetTngfInfoOk() (*TngfInfo, bool)

GetTngfInfoOk returns a tuple with the TngfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetTwifInfo ¶

func (o *UpfInfo) GetTwifInfo() TwifInfo

GetTwifInfo returns the TwifInfo field value if set, zero value otherwise.

func (*UpfInfo) GetTwifInfoOk ¶

func (o *UpfInfo) GetTwifInfoOk() (*TwifInfo, bool)

GetTwifInfoOk returns a tuple with the TwifInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetUeIpAddrInd ¶

func (o *UpfInfo) GetUeIpAddrInd() bool

GetUeIpAddrInd returns the UeIpAddrInd field value if set, zero value otherwise.

func (*UpfInfo) GetUeIpAddrIndOk ¶

func (o *UpfInfo) GetUeIpAddrIndOk() (*bool, bool)

GetUeIpAddrIndOk returns a tuple with the UeIpAddrInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) GetWAgfInfo ¶

func (o *UpfInfo) GetWAgfInfo() WAgfInfo

GetWAgfInfo returns the WAgfInfo field value if set, zero value otherwise.

func (*UpfInfo) GetWAgfInfoOk ¶

func (o *UpfInfo) GetWAgfInfoOk() (*WAgfInfo, bool)

GetWAgfInfoOk returns a tuple with the WAgfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInfo) HasAtsssCapability ¶

func (o *UpfInfo) HasAtsssCapability() bool

HasAtsssCapability returns a boolean if a field has been set.

func (*UpfInfo) HasDataForwarding ¶

func (o *UpfInfo) HasDataForwarding() bool

HasDataForwarding returns a boolean if a field has been set.

func (*UpfInfo) HasInterfaceUpfInfoList ¶

func (o *UpfInfo) HasInterfaceUpfInfoList() bool

HasInterfaceUpfInfoList returns a boolean if a field has been set.

func (*UpfInfo) HasIpups ¶

func (o *UpfInfo) HasIpups() bool

HasIpups returns a boolean if a field has been set.

func (*UpfInfo) HasIwkEpsInd ¶

func (o *UpfInfo) HasIwkEpsInd() bool

HasIwkEpsInd returns a boolean if a field has been set.

func (*UpfInfo) HasPduSessionTypes ¶

func (o *UpfInfo) HasPduSessionTypes() bool

HasPduSessionTypes returns a boolean if a field has been set.

func (*UpfInfo) HasPriority ¶

func (o *UpfInfo) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*UpfInfo) HasRedundantGtpu ¶

func (o *UpfInfo) HasRedundantGtpu() bool

HasRedundantGtpu returns a boolean if a field has been set.

func (*UpfInfo) HasSmfServingArea ¶

func (o *UpfInfo) HasSmfServingArea() bool

HasSmfServingArea returns a boolean if a field has been set.

func (*UpfInfo) HasSupportedPfcpFeatures ¶

func (o *UpfInfo) HasSupportedPfcpFeatures() bool

HasSupportedPfcpFeatures returns a boolean if a field has been set.

func (*UpfInfo) HasSxaInd ¶

func (o *UpfInfo) HasSxaInd() bool

HasSxaInd returns a boolean if a field has been set.

func (*UpfInfo) HasTaiList ¶

func (o *UpfInfo) HasTaiList() bool

HasTaiList returns a boolean if a field has been set.

func (*UpfInfo) HasTaiRangeList ¶

func (o *UpfInfo) HasTaiRangeList() bool

HasTaiRangeList returns a boolean if a field has been set.

func (*UpfInfo) HasTngfInfo ¶

func (o *UpfInfo) HasTngfInfo() bool

HasTngfInfo returns a boolean if a field has been set.

func (*UpfInfo) HasTwifInfo ¶

func (o *UpfInfo) HasTwifInfo() bool

HasTwifInfo returns a boolean if a field has been set.

func (*UpfInfo) HasUeIpAddrInd ¶

func (o *UpfInfo) HasUeIpAddrInd() bool

HasUeIpAddrInd returns a boolean if a field has been set.

func (*UpfInfo) HasWAgfInfo ¶

func (o *UpfInfo) HasWAgfInfo() bool

HasWAgfInfo returns a boolean if a field has been set.

func (UpfInfo) MarshalJSON ¶

func (o UpfInfo) MarshalJSON() ([]byte, error)

func (*UpfInfo) SetAtsssCapability ¶

func (o *UpfInfo) SetAtsssCapability(v AtsssCapability)

SetAtsssCapability gets a reference to the given AtsssCapability and assigns it to the AtsssCapability field.

func (*UpfInfo) SetDataForwarding ¶

func (o *UpfInfo) SetDataForwarding(v bool)

SetDataForwarding gets a reference to the given bool and assigns it to the DataForwarding field.

func (*UpfInfo) SetInterfaceUpfInfoList ¶

func (o *UpfInfo) SetInterfaceUpfInfoList(v []InterfaceUpfInfoItem)

SetInterfaceUpfInfoList gets a reference to the given []InterfaceUpfInfoItem and assigns it to the InterfaceUpfInfoList field.

func (*UpfInfo) SetIpups ¶

func (o *UpfInfo) SetIpups(v bool)

SetIpups gets a reference to the given bool and assigns it to the Ipups field.

func (*UpfInfo) SetIwkEpsInd ¶

func (o *UpfInfo) SetIwkEpsInd(v bool)

SetIwkEpsInd gets a reference to the given bool and assigns it to the IwkEpsInd field.

func (*UpfInfo) SetPduSessionTypes ¶

func (o *UpfInfo) SetPduSessionTypes(v []PduSessionType)

SetPduSessionTypes gets a reference to the given []PduSessionType and assigns it to the PduSessionTypes field.

func (*UpfInfo) SetPriority ¶

func (o *UpfInfo) SetPriority(v int32)

SetPriority gets a reference to the given int32 and assigns it to the Priority field.

func (*UpfInfo) SetRedundantGtpu ¶

func (o *UpfInfo) SetRedundantGtpu(v bool)

SetRedundantGtpu gets a reference to the given bool and assigns it to the RedundantGtpu field.

func (*UpfInfo) SetSNssaiUpfInfoList ¶

func (o *UpfInfo) SetSNssaiUpfInfoList(v []SnssaiUpfInfoItem)

SetSNssaiUpfInfoList sets field value

func (*UpfInfo) SetSmfServingArea ¶

func (o *UpfInfo) SetSmfServingArea(v []string)

SetSmfServingArea gets a reference to the given []string and assigns it to the SmfServingArea field.

func (*UpfInfo) SetSupportedPfcpFeatures ¶

func (o *UpfInfo) SetSupportedPfcpFeatures(v string)

SetSupportedPfcpFeatures gets a reference to the given string and assigns it to the SupportedPfcpFeatures field.

func (*UpfInfo) SetSxaInd ¶

func (o *UpfInfo) SetSxaInd(v bool)

SetSxaInd gets a reference to the given bool and assigns it to the SxaInd field.

func (*UpfInfo) SetTaiList ¶

func (o *UpfInfo) SetTaiList(v []Tai)

SetTaiList gets a reference to the given []Tai and assigns it to the TaiList field.

func (*UpfInfo) SetTaiRangeList ¶

func (o *UpfInfo) SetTaiRangeList(v []TaiRange)

SetTaiRangeList gets a reference to the given []TaiRange and assigns it to the TaiRangeList field.

func (*UpfInfo) SetTngfInfo ¶

func (o *UpfInfo) SetTngfInfo(v TngfInfo)

SetTngfInfo gets a reference to the given TngfInfo and assigns it to the TngfInfo field.

func (*UpfInfo) SetTwifInfo ¶

func (o *UpfInfo) SetTwifInfo(v TwifInfo)

SetTwifInfo gets a reference to the given TwifInfo and assigns it to the TwifInfo field.

func (*UpfInfo) SetUeIpAddrInd ¶

func (o *UpfInfo) SetUeIpAddrInd(v bool)

SetUeIpAddrInd gets a reference to the given bool and assigns it to the UeIpAddrInd field.

func (*UpfInfo) SetWAgfInfo ¶

func (o *UpfInfo) SetWAgfInfo(v WAgfInfo)

SetWAgfInfo gets a reference to the given WAgfInfo and assigns it to the WAgfInfo field.

func (UpfInfo) ToMap ¶

func (o UpfInfo) ToMap() (map[string]interface{}, error)

type UpfInformation ¶

type UpfInformation struct {
	UpfId   *string   `json:"upfId,omitempty"`
	UpfAddr *AddrFqdn `json:"upfAddr,omitempty"`
}

UpfInformation Represents the ID/address/FQDN of the UPF.

func NewUpfInformation ¶

func NewUpfInformation() *UpfInformation

NewUpfInformation instantiates a new UpfInformation 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 NewUpfInformationWithDefaults ¶

func NewUpfInformationWithDefaults() *UpfInformation

NewUpfInformationWithDefaults instantiates a new UpfInformation 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 (*UpfInformation) GetUpfAddr ¶

func (o *UpfInformation) GetUpfAddr() AddrFqdn

GetUpfAddr returns the UpfAddr field value if set, zero value otherwise.

func (*UpfInformation) GetUpfAddrOk ¶

func (o *UpfInformation) GetUpfAddrOk() (*AddrFqdn, bool)

GetUpfAddrOk returns a tuple with the UpfAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInformation) GetUpfId ¶

func (o *UpfInformation) GetUpfId() string

GetUpfId returns the UpfId field value if set, zero value otherwise.

func (*UpfInformation) GetUpfIdOk ¶

func (o *UpfInformation) GetUpfIdOk() (*string, bool)

GetUpfIdOk returns a tuple with the UpfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpfInformation) HasUpfAddr ¶

func (o *UpfInformation) HasUpfAddr() bool

HasUpfAddr returns a boolean if a field has been set.

func (*UpfInformation) HasUpfId ¶

func (o *UpfInformation) HasUpfId() bool

HasUpfId returns a boolean if a field has been set.

func (UpfInformation) MarshalJSON ¶

func (o UpfInformation) MarshalJSON() ([]byte, error)

func (*UpfInformation) SetUpfAddr ¶

func (o *UpfInformation) SetUpfAddr(v AddrFqdn)

SetUpfAddr gets a reference to the given AddrFqdn and assigns it to the UpfAddr field.

func (*UpfInformation) SetUpfId ¶

func (o *UpfInformation) SetUpfId(v string)

SetUpfId gets a reference to the given string and assigns it to the UpfId field.

func (UpfInformation) ToMap ¶

func (o UpfInformation) ToMap() (map[string]interface{}, error)

type UriScheme ¶

type UriScheme struct {
	String *string
}

UriScheme HTTP and HTTPS URI scheme.

func (*UriScheme) MarshalJSON ¶

func (src *UriScheme) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UriScheme) UnmarshalJSON ¶

func (dst *UriScheme) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UsageThreshold ¶

type UsageThreshold struct {
	// Unsigned integer identifying a period of time in units of seconds.
	Duration *int32 `json:"duration,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	TotalVolume *int64 `json:"totalVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	DownlinkVolume *int64 `json:"downlinkVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	UplinkVolume *int64 `json:"uplinkVolume,omitempty"`
}

UsageThreshold Represents a usage threshold.

func NewUsageThreshold ¶

func NewUsageThreshold() *UsageThreshold

NewUsageThreshold instantiates a new UsageThreshold 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 NewUsageThresholdWithDefaults ¶

func NewUsageThresholdWithDefaults() *UsageThreshold

NewUsageThresholdWithDefaults instantiates a new UsageThreshold 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 (*UsageThreshold) GetDownlinkVolume ¶

func (o *UsageThreshold) GetDownlinkVolume() int64

GetDownlinkVolume returns the DownlinkVolume field value if set, zero value otherwise.

func (*UsageThreshold) GetDownlinkVolumeOk ¶

func (o *UsageThreshold) GetDownlinkVolumeOk() (*int64, bool)

GetDownlinkVolumeOk returns a tuple with the DownlinkVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageThreshold) GetDuration ¶

func (o *UsageThreshold) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise.

func (*UsageThreshold) GetDurationOk ¶

func (o *UsageThreshold) GetDurationOk() (*int32, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageThreshold) GetTotalVolume ¶

func (o *UsageThreshold) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*UsageThreshold) GetTotalVolumeOk ¶

func (o *UsageThreshold) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageThreshold) GetUplinkVolume ¶

func (o *UsageThreshold) GetUplinkVolume() int64

GetUplinkVolume returns the UplinkVolume field value if set, zero value otherwise.

func (*UsageThreshold) GetUplinkVolumeOk ¶

func (o *UsageThreshold) GetUplinkVolumeOk() (*int64, bool)

GetUplinkVolumeOk returns a tuple with the UplinkVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageThreshold) HasDownlinkVolume ¶

func (o *UsageThreshold) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*UsageThreshold) HasDuration ¶

func (o *UsageThreshold) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*UsageThreshold) HasTotalVolume ¶

func (o *UsageThreshold) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*UsageThreshold) HasUplinkVolume ¶

func (o *UsageThreshold) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (UsageThreshold) MarshalJSON ¶

func (o UsageThreshold) MarshalJSON() ([]byte, error)

func (*UsageThreshold) SetDownlinkVolume ¶

func (o *UsageThreshold) SetDownlinkVolume(v int64)

SetDownlinkVolume gets a reference to the given int64 and assigns it to the DownlinkVolume field.

func (*UsageThreshold) SetDuration ¶

func (o *UsageThreshold) SetDuration(v int32)

SetDuration gets a reference to the given int32 and assigns it to the Duration field.

func (*UsageThreshold) SetTotalVolume ¶

func (o *UsageThreshold) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (*UsageThreshold) SetUplinkVolume ¶

func (o *UsageThreshold) SetUplinkVolume(v int64)

SetUplinkVolume gets a reference to the given int64 and assigns it to the UplinkVolume field.

func (UsageThreshold) ToMap ¶

func (o UsageThreshold) ToMap() (map[string]interface{}, error)

type UserDataCongestionCollection ¶

type UserDataCongestionCollection struct {
	Interface *interface{}
}

UserDataCongestionCollection - Contains User Data Congestion Analytics related information collection.

func InterfaceAsUserDataCongestionCollection ¶

func InterfaceAsUserDataCongestionCollection(v *interface{}) UserDataCongestionCollection

interface{}AsUserDataCongestionCollection is a convenience function that returns interface{} wrapped in UserDataCongestionCollection

func (*UserDataCongestionCollection) GetActualInstance ¶

func (obj *UserDataCongestionCollection) GetActualInstance() interface{}

Get the actual instance

func (UserDataCongestionCollection) MarshalJSON ¶

func (src UserDataCongestionCollection) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UserDataCongestionCollection) UnmarshalJSON ¶

func (dst *UserDataCongestionCollection) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type UserDataCongestionInfo ¶

type UserDataCongestionInfo struct {
	NetworkArea    NetworkAreaInfo `json:"networkArea"`
	CongestionInfo CongestionInfo  `json:"congestionInfo"`
	Snssai         *Snssai         `json:"snssai,omitempty"`
}

UserDataCongestionInfo Represents the user data congestion information.

func NewUserDataCongestionInfo ¶

func NewUserDataCongestionInfo(networkArea NetworkAreaInfo, congestionInfo CongestionInfo) *UserDataCongestionInfo

NewUserDataCongestionInfo instantiates a new UserDataCongestionInfo 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 NewUserDataCongestionInfoWithDefaults ¶

func NewUserDataCongestionInfoWithDefaults() *UserDataCongestionInfo

NewUserDataCongestionInfoWithDefaults instantiates a new UserDataCongestionInfo 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 (*UserDataCongestionInfo) GetCongestionInfo ¶

func (o *UserDataCongestionInfo) GetCongestionInfo() CongestionInfo

GetCongestionInfo returns the CongestionInfo field value

func (*UserDataCongestionInfo) GetCongestionInfoOk ¶

func (o *UserDataCongestionInfo) GetCongestionInfoOk() (*CongestionInfo, bool)

GetCongestionInfoOk returns a tuple with the CongestionInfo field value and a boolean to check if the value has been set.

func (*UserDataCongestionInfo) GetNetworkArea ¶

func (o *UserDataCongestionInfo) GetNetworkArea() NetworkAreaInfo

GetNetworkArea returns the NetworkArea field value

func (*UserDataCongestionInfo) GetNetworkAreaOk ¶

func (o *UserDataCongestionInfo) GetNetworkAreaOk() (*NetworkAreaInfo, bool)

GetNetworkAreaOk returns a tuple with the NetworkArea field value and a boolean to check if the value has been set.

func (*UserDataCongestionInfo) GetSnssai ¶

func (o *UserDataCongestionInfo) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*UserDataCongestionInfo) GetSnssaiOk ¶

func (o *UserDataCongestionInfo) GetSnssaiOk() (*Snssai, bool)

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 (*UserDataCongestionInfo) HasSnssai ¶

func (o *UserDataCongestionInfo) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (UserDataCongestionInfo) MarshalJSON ¶

func (o UserDataCongestionInfo) MarshalJSON() ([]byte, error)

func (*UserDataCongestionInfo) SetCongestionInfo ¶

func (o *UserDataCongestionInfo) SetCongestionInfo(v CongestionInfo)

SetCongestionInfo sets field value

func (*UserDataCongestionInfo) SetNetworkArea ¶

func (o *UserDataCongestionInfo) SetNetworkArea(v NetworkAreaInfo)

SetNetworkArea sets field value

func (*UserDataCongestionInfo) SetSnssai ¶

func (o *UserDataCongestionInfo) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (UserDataCongestionInfo) ToMap ¶

func (o UserDataCongestionInfo) ToMap() (map[string]interface{}, error)

type UserLocation ¶

type UserLocation struct {
	EutraLocation *EutraLocation `json:"eutraLocation,omitempty"`
	NrLocation    *NrLocation    `json:"nrLocation,omitempty"`
	N3gaLocation  *N3gaLocation  `json:"n3gaLocation,omitempty"`
	UtraLocation  *UtraLocation  `json:"utraLocation,omitempty"`
	GeraLocation  *GeraLocation  `json:"geraLocation,omitempty"`
}

UserLocation At least one of eutraLocation, nrLocation and n3gaLocation shall be present. Several of them may be present.

func NewUserLocation ¶

func NewUserLocation() *UserLocation

NewUserLocation instantiates a new UserLocation 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 NewUserLocationWithDefaults ¶

func NewUserLocationWithDefaults() *UserLocation

NewUserLocationWithDefaults instantiates a new UserLocation 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 (*UserLocation) GetEutraLocation ¶

func (o *UserLocation) GetEutraLocation() EutraLocation

GetEutraLocation returns the EutraLocation field value if set, zero value otherwise.

func (*UserLocation) GetEutraLocationOk ¶

func (o *UserLocation) GetEutraLocationOk() (*EutraLocation, bool)

GetEutraLocationOk returns a tuple with the EutraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetGeraLocation ¶

func (o *UserLocation) GetGeraLocation() GeraLocation

GetGeraLocation returns the GeraLocation field value if set, zero value otherwise.

func (*UserLocation) GetGeraLocationOk ¶

func (o *UserLocation) GetGeraLocationOk() (*GeraLocation, bool)

GetGeraLocationOk returns a tuple with the GeraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetN3gaLocation ¶

func (o *UserLocation) GetN3gaLocation() N3gaLocation

GetN3gaLocation returns the N3gaLocation field value if set, zero value otherwise.

func (*UserLocation) GetN3gaLocationOk ¶

func (o *UserLocation) GetN3gaLocationOk() (*N3gaLocation, bool)

GetN3gaLocationOk returns a tuple with the N3gaLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetNrLocation ¶

func (o *UserLocation) GetNrLocation() NrLocation

GetNrLocation returns the NrLocation field value if set, zero value otherwise.

func (*UserLocation) GetNrLocationOk ¶

func (o *UserLocation) GetNrLocationOk() (*NrLocation, bool)

GetNrLocationOk returns a tuple with the NrLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetUtraLocation ¶

func (o *UserLocation) GetUtraLocation() UtraLocation

GetUtraLocation returns the UtraLocation field value if set, zero value otherwise.

func (*UserLocation) GetUtraLocationOk ¶

func (o *UserLocation) GetUtraLocationOk() (*UtraLocation, bool)

GetUtraLocationOk returns a tuple with the UtraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) HasEutraLocation ¶

func (o *UserLocation) HasEutraLocation() bool

HasEutraLocation returns a boolean if a field has been set.

func (*UserLocation) HasGeraLocation ¶

func (o *UserLocation) HasGeraLocation() bool

HasGeraLocation returns a boolean if a field has been set.

func (*UserLocation) HasN3gaLocation ¶

func (o *UserLocation) HasN3gaLocation() bool

HasN3gaLocation returns a boolean if a field has been set.

func (*UserLocation) HasNrLocation ¶

func (o *UserLocation) HasNrLocation() bool

HasNrLocation returns a boolean if a field has been set.

func (*UserLocation) HasUtraLocation ¶

func (o *UserLocation) HasUtraLocation() bool

HasUtraLocation returns a boolean if a field has been set.

func (UserLocation) MarshalJSON ¶

func (o UserLocation) MarshalJSON() ([]byte, error)

func (*UserLocation) SetEutraLocation ¶

func (o *UserLocation) SetEutraLocation(v EutraLocation)

SetEutraLocation gets a reference to the given EutraLocation and assigns it to the EutraLocation field.

func (*UserLocation) SetGeraLocation ¶

func (o *UserLocation) SetGeraLocation(v GeraLocation)

SetGeraLocation gets a reference to the given GeraLocation and assigns it to the GeraLocation field.

func (*UserLocation) SetN3gaLocation ¶

func (o *UserLocation) SetN3gaLocation(v N3gaLocation)

SetN3gaLocation gets a reference to the given N3gaLocation and assigns it to the N3gaLocation field.

func (*UserLocation) SetNrLocation ¶

func (o *UserLocation) SetNrLocation(v NrLocation)

SetNrLocation gets a reference to the given NrLocation and assigns it to the NrLocation field.

func (*UserLocation) SetUtraLocation ¶

func (o *UserLocation) SetUtraLocation(v UtraLocation)

SetUtraLocation gets a reference to the given UtraLocation and assigns it to the UtraLocation field.

func (UserLocation) ToMap ¶

func (o UserLocation) ToMap() (map[string]interface{}, error)

type UtraLocation ¶

type UtraLocation struct {
	Interface *interface{}
}

UtraLocation - Exactly one of cgi, sai or lai shall be present.

func InterfaceAsUtraLocation ¶

func InterfaceAsUtraLocation(v *interface{}) UtraLocation

interface{}AsUtraLocation is a convenience function that returns interface{} wrapped in UtraLocation

func (*UtraLocation) GetActualInstance ¶

func (obj *UtraLocation) GetActualInstance() interface{}

Get the actual instance

func (UtraLocation) MarshalJSON ¶

func (src UtraLocation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UtraLocation) UnmarshalJSON ¶

func (dst *UtraLocation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type V2xCapability ¶

type V2xCapability struct {
	LteV2x *bool `json:"lteV2x,omitempty"`
	NrV2x  *bool `json:"nrV2x,omitempty"`
}

V2xCapability Indicate the supported V2X Capability by the PCF.

func NewV2xCapability ¶

func NewV2xCapability() *V2xCapability

NewV2xCapability instantiates a new V2xCapability 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 NewV2xCapabilityWithDefaults ¶

func NewV2xCapabilityWithDefaults() *V2xCapability

NewV2xCapabilityWithDefaults instantiates a new V2xCapability 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 (*V2xCapability) GetLteV2x ¶

func (o *V2xCapability) GetLteV2x() bool

GetLteV2x returns the LteV2x field value if set, zero value otherwise.

func (*V2xCapability) GetLteV2xOk ¶

func (o *V2xCapability) GetLteV2xOk() (*bool, bool)

GetLteV2xOk returns a tuple with the LteV2x field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V2xCapability) GetNrV2x ¶

func (o *V2xCapability) GetNrV2x() bool

GetNrV2x returns the NrV2x field value if set, zero value otherwise.

func (*V2xCapability) GetNrV2xOk ¶

func (o *V2xCapability) GetNrV2xOk() (*bool, bool)

GetNrV2xOk returns a tuple with the NrV2x field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V2xCapability) HasLteV2x ¶

func (o *V2xCapability) HasLteV2x() bool

HasLteV2x returns a boolean if a field has been set.

func (*V2xCapability) HasNrV2x ¶

func (o *V2xCapability) HasNrV2x() bool

HasNrV2x returns a boolean if a field has been set.

func (V2xCapability) MarshalJSON ¶

func (o V2xCapability) MarshalJSON() ([]byte, error)

func (*V2xCapability) SetLteV2x ¶

func (o *V2xCapability) SetLteV2x(v bool)

SetLteV2x gets a reference to the given bool and assigns it to the LteV2x field.

func (*V2xCapability) SetNrV2x ¶

func (o *V2xCapability) SetNrV2x(v bool)

SetNrV2x gets a reference to the given bool and assigns it to the NrV2x field.

func (V2xCapability) ToMap ¶

func (o V2xCapability) ToMap() (map[string]interface{}, error)

type VendorSpecificFeature ¶

type VendorSpecificFeature struct {
	FeatureName    string `json:"featureName"`
	FeatureVersion string `json:"featureVersion"`
}

VendorSpecificFeature Information about a vendor-specific feature

func NewVendorSpecificFeature ¶

func NewVendorSpecificFeature(featureName string, featureVersion string) *VendorSpecificFeature

NewVendorSpecificFeature instantiates a new VendorSpecificFeature 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 NewVendorSpecificFeatureWithDefaults ¶

func NewVendorSpecificFeatureWithDefaults() *VendorSpecificFeature

NewVendorSpecificFeatureWithDefaults instantiates a new VendorSpecificFeature 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 (*VendorSpecificFeature) GetFeatureName ¶

func (o *VendorSpecificFeature) GetFeatureName() string

GetFeatureName returns the FeatureName field value

func (*VendorSpecificFeature) GetFeatureNameOk ¶

func (o *VendorSpecificFeature) GetFeatureNameOk() (*string, bool)

GetFeatureNameOk returns a tuple with the FeatureName field value and a boolean to check if the value has been set.

func (*VendorSpecificFeature) GetFeatureVersion ¶

func (o *VendorSpecificFeature) GetFeatureVersion() string

GetFeatureVersion returns the FeatureVersion field value

func (*VendorSpecificFeature) GetFeatureVersionOk ¶

func (o *VendorSpecificFeature) GetFeatureVersionOk() (*string, bool)

GetFeatureVersionOk returns a tuple with the FeatureVersion field value and a boolean to check if the value has been set.

func (VendorSpecificFeature) MarshalJSON ¶

func (o VendorSpecificFeature) MarshalJSON() ([]byte, error)

func (*VendorSpecificFeature) SetFeatureName ¶

func (o *VendorSpecificFeature) SetFeatureName(v string)

SetFeatureName sets field value

func (*VendorSpecificFeature) SetFeatureVersion ¶

func (o *VendorSpecificFeature) SetFeatureVersion(v string)

SetFeatureVersion sets field value

func (VendorSpecificFeature) ToMap ¶

func (o VendorSpecificFeature) ToMap() (map[string]interface{}, error)

type WAgfInfo ¶

type WAgfInfo struct {
	Interface *interface{}
}

WAgfInfo Information of the W-AGF end-points

func (*WAgfInfo) MarshalJSON ¶

func (src *WAgfInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*WAgfInfo) UnmarshalJSON ¶

func (dst *WAgfInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type WlanOrderingCriterion ¶

type WlanOrderingCriterion struct {
	String *string
}

WlanOrderingCriterion Possible values are: - TIME_SLOT_START: Indicates the order of time slot start. - NUMBER_OF_UES: Indicates the order of number of UEs. - RSSI: Indicates the order of RSSI. - RTT: Indicates the order of RTT. - TRAFFIC_INFO: Indicates the order of Traffic information.

func (*WlanOrderingCriterion) MarshalJSON ¶

func (src *WlanOrderingCriterion) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*WlanOrderingCriterion) UnmarshalJSON ¶

func (dst *WlanOrderingCriterion) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type WlanPerSsIdPerformanceInfo ¶

type WlanPerSsIdPerformanceInfo struct {
	SsId           string                     `json:"ssId"`
	WlanPerTsInfos []WlanPerTsPerformanceInfo `json:"wlanPerTsInfos"`
}

WlanPerSsIdPerformanceInfo The WLAN performance per SSID.

func NewWlanPerSsIdPerformanceInfo ¶

func NewWlanPerSsIdPerformanceInfo(ssId string, wlanPerTsInfos []WlanPerTsPerformanceInfo) *WlanPerSsIdPerformanceInfo

NewWlanPerSsIdPerformanceInfo instantiates a new WlanPerSsIdPerformanceInfo 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 NewWlanPerSsIdPerformanceInfoWithDefaults ¶

func NewWlanPerSsIdPerformanceInfoWithDefaults() *WlanPerSsIdPerformanceInfo

NewWlanPerSsIdPerformanceInfoWithDefaults instantiates a new WlanPerSsIdPerformanceInfo 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 (*WlanPerSsIdPerformanceInfo) GetSsId ¶

func (o *WlanPerSsIdPerformanceInfo) GetSsId() string

GetSsId returns the SsId field value

func (*WlanPerSsIdPerformanceInfo) GetSsIdOk ¶

func (o *WlanPerSsIdPerformanceInfo) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value and a boolean to check if the value has been set.

func (*WlanPerSsIdPerformanceInfo) GetWlanPerTsInfos ¶

func (o *WlanPerSsIdPerformanceInfo) GetWlanPerTsInfos() []WlanPerTsPerformanceInfo

GetWlanPerTsInfos returns the WlanPerTsInfos field value

func (*WlanPerSsIdPerformanceInfo) GetWlanPerTsInfosOk ¶

func (o *WlanPerSsIdPerformanceInfo) GetWlanPerTsInfosOk() ([]WlanPerTsPerformanceInfo, bool)

GetWlanPerTsInfosOk returns a tuple with the WlanPerTsInfos field value and a boolean to check if the value has been set.

func (WlanPerSsIdPerformanceInfo) MarshalJSON ¶

func (o WlanPerSsIdPerformanceInfo) MarshalJSON() ([]byte, error)

func (*WlanPerSsIdPerformanceInfo) SetSsId ¶

func (o *WlanPerSsIdPerformanceInfo) SetSsId(v string)

SetSsId sets field value

func (*WlanPerSsIdPerformanceInfo) SetWlanPerTsInfos ¶

func (o *WlanPerSsIdPerformanceInfo) SetWlanPerTsInfos(v []WlanPerTsPerformanceInfo)

SetWlanPerTsInfos sets field value

func (WlanPerSsIdPerformanceInfo) ToMap ¶

func (o WlanPerSsIdPerformanceInfo) ToMap() (map[string]interface{}, error)

type WlanPerTsPerformanceInfo ¶

type WlanPerTsPerformanceInfo struct {
	Interface *interface{}
}

WlanPerTsPerformanceInfo WLAN performance information per Time Slot during the analytics target period.

func (*WlanPerTsPerformanceInfo) MarshalJSON ¶

func (src *WlanPerTsPerformanceInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*WlanPerTsPerformanceInfo) UnmarshalJSON ¶

func (dst *WlanPerTsPerformanceInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type WlanPerformanceInfo ¶

type WlanPerformanceInfo struct {
	NetworkArea      *NetworkAreaInfo             `json:"networkArea,omitempty"`
	WlanPerSsidInfos []WlanPerSsIdPerformanceInfo `json:"wlanPerSsidInfos"`
}

WlanPerformanceInfo The WLAN performance related information.

func NewWlanPerformanceInfo ¶

func NewWlanPerformanceInfo(wlanPerSsidInfos []WlanPerSsIdPerformanceInfo) *WlanPerformanceInfo

NewWlanPerformanceInfo instantiates a new WlanPerformanceInfo 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 NewWlanPerformanceInfoWithDefaults ¶

func NewWlanPerformanceInfoWithDefaults() *WlanPerformanceInfo

NewWlanPerformanceInfoWithDefaults instantiates a new WlanPerformanceInfo 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 (*WlanPerformanceInfo) GetNetworkArea ¶

func (o *WlanPerformanceInfo) GetNetworkArea() NetworkAreaInfo

GetNetworkArea returns the NetworkArea field value if set, zero value otherwise.

func (*WlanPerformanceInfo) GetNetworkAreaOk ¶

func (o *WlanPerformanceInfo) GetNetworkAreaOk() (*NetworkAreaInfo, bool)

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 (*WlanPerformanceInfo) GetWlanPerSsidInfos ¶

func (o *WlanPerformanceInfo) GetWlanPerSsidInfos() []WlanPerSsIdPerformanceInfo

GetWlanPerSsidInfos returns the WlanPerSsidInfos field value

func (*WlanPerformanceInfo) GetWlanPerSsidInfosOk ¶

func (o *WlanPerformanceInfo) GetWlanPerSsidInfosOk() ([]WlanPerSsIdPerformanceInfo, bool)

GetWlanPerSsidInfosOk returns a tuple with the WlanPerSsidInfos field value and a boolean to check if the value has been set.

func (*WlanPerformanceInfo) HasNetworkArea ¶

func (o *WlanPerformanceInfo) HasNetworkArea() bool

HasNetworkArea returns a boolean if a field has been set.

func (WlanPerformanceInfo) MarshalJSON ¶

func (o WlanPerformanceInfo) MarshalJSON() ([]byte, error)

func (*WlanPerformanceInfo) SetNetworkArea ¶

func (o *WlanPerformanceInfo) SetNetworkArea(v NetworkAreaInfo)

SetNetworkArea gets a reference to the given NetworkAreaInfo and assigns it to the NetworkArea field.

func (*WlanPerformanceInfo) SetWlanPerSsidInfos ¶

func (o *WlanPerformanceInfo) SetWlanPerSsidInfos(v []WlanPerSsIdPerformanceInfo)

SetWlanPerSsidInfos sets field value

func (WlanPerformanceInfo) ToMap ¶

func (o WlanPerformanceInfo) ToMap() (map[string]interface{}, error)

type WlanPerformanceReq ¶

type WlanPerformanceReq struct {
	SsIds           []string               `json:"ssIds,omitempty"`
	BssIds          []string               `json:"bssIds,omitempty"`
	WlanOrderCriter *WlanOrderingCriterion `json:"wlanOrderCriter,omitempty"`
	Order           *MatchingDirection     `json:"order,omitempty"`
}

WlanPerformanceReq Represents other WLAN performance analytics requirements.

func NewWlanPerformanceReq ¶

func NewWlanPerformanceReq() *WlanPerformanceReq

NewWlanPerformanceReq instantiates a new WlanPerformanceReq 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 NewWlanPerformanceReqWithDefaults ¶

func NewWlanPerformanceReqWithDefaults() *WlanPerformanceReq

NewWlanPerformanceReqWithDefaults instantiates a new WlanPerformanceReq 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 (*WlanPerformanceReq) GetBssIds ¶

func (o *WlanPerformanceReq) GetBssIds() []string

GetBssIds returns the BssIds field value if set, zero value otherwise.

func (*WlanPerformanceReq) GetBssIdsOk ¶

func (o *WlanPerformanceReq) GetBssIdsOk() ([]string, bool)

GetBssIdsOk returns a tuple with the BssIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WlanPerformanceReq) GetOrder ¶

func (o *WlanPerformanceReq) GetOrder() MatchingDirection

GetOrder returns the Order field value if set, zero value otherwise.

func (*WlanPerformanceReq) GetOrderOk ¶

func (o *WlanPerformanceReq) GetOrderOk() (*MatchingDirection, bool)

GetOrderOk returns a tuple with the Order field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WlanPerformanceReq) GetSsIds ¶

func (o *WlanPerformanceReq) GetSsIds() []string

GetSsIds returns the SsIds field value if set, zero value otherwise.

func (*WlanPerformanceReq) GetSsIdsOk ¶

func (o *WlanPerformanceReq) GetSsIdsOk() ([]string, bool)

GetSsIdsOk returns a tuple with the SsIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WlanPerformanceReq) GetWlanOrderCriter ¶

func (o *WlanPerformanceReq) GetWlanOrderCriter() WlanOrderingCriterion

GetWlanOrderCriter returns the WlanOrderCriter field value if set, zero value otherwise.

func (*WlanPerformanceReq) GetWlanOrderCriterOk ¶

func (o *WlanPerformanceReq) GetWlanOrderCriterOk() (*WlanOrderingCriterion, bool)

GetWlanOrderCriterOk returns a tuple with the WlanOrderCriter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WlanPerformanceReq) HasBssIds ¶

func (o *WlanPerformanceReq) HasBssIds() bool

HasBssIds returns a boolean if a field has been set.

func (*WlanPerformanceReq) HasOrder ¶

func (o *WlanPerformanceReq) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (*WlanPerformanceReq) HasSsIds ¶

func (o *WlanPerformanceReq) HasSsIds() bool

HasSsIds returns a boolean if a field has been set.

func (*WlanPerformanceReq) HasWlanOrderCriter ¶

func (o *WlanPerformanceReq) HasWlanOrderCriter() bool

HasWlanOrderCriter returns a boolean if a field has been set.

func (WlanPerformanceReq) MarshalJSON ¶

func (o WlanPerformanceReq) MarshalJSON() ([]byte, error)

func (*WlanPerformanceReq) SetBssIds ¶

func (o *WlanPerformanceReq) SetBssIds(v []string)

SetBssIds gets a reference to the given []string and assigns it to the BssIds field.

func (*WlanPerformanceReq) SetOrder ¶

func (o *WlanPerformanceReq) SetOrder(v MatchingDirection)

SetOrder gets a reference to the given MatchingDirection and assigns it to the Order field.

func (*WlanPerformanceReq) SetSsIds ¶

func (o *WlanPerformanceReq) SetSsIds(v []string)

SetSsIds gets a reference to the given []string and assigns it to the SsIds field.

func (*WlanPerformanceReq) SetWlanOrderCriter ¶

func (o *WlanPerformanceReq) SetWlanOrderCriter(v WlanOrderingCriterion)

SetWlanOrderCriter gets a reference to the given WlanOrderingCriterion and assigns it to the WlanOrderCriter field.

func (WlanPerformanceReq) ToMap ¶

func (o WlanPerformanceReq) ToMap() (map[string]interface{}, error)

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL