openapi_Nchf_OfflineOnlyCharging

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_Nchf_OfflineOnlyCharging

OfflineOnlyCharging 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.2.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_Nchf_OfflineOnlyCharging "github.com/GIT_USER_ID/GIT_REPO_ID/openapi_Nchf_OfflineOnlyCharging"

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_Nchf_OfflineOnlyCharging.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_Nchf_OfflineOnlyCharging.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_Nchf_OfflineOnlyCharging.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), openapi_Nchf_OfflineOnlyCharging.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://example.com/nchf-offlineonlycharging/v1

Class Method HTTP request Description
DefaultApi OfflinechargingdataOfflineChargingDataRefReleasePost Post /offlinechargingdata/{OfflineChargingDataRef}/release
DefaultApi OfflinechargingdataOfflineChargingDataRefUpdatePost Post /offlinechargingdata/{OfflineChargingDataRef}/update
DefaultApi OfflinechargingdataPost Post /offlinechargingdata

Documentation For Models

Documentation For Authorization

oAuth2ClientCredentials
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • nchf-offlineonlycharging: Access to the Nchf_OfflineOnlyCharging 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

View Source
var AllowedNullValueEnumValues = []NullValue{
	"null",
}

All allowed values of NullValue 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 APIClient

type APIClient struct {
	DefaultApi *DefaultApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Nchf_OfflineOnlyCharging API v1.2.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 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 AccessTypeRm

type AccessTypeRm struct {
	AccessType *AccessType
	NullValue  *NullValue
}

AccessTypeRm Indicates wether the access is via 3GPP or via non-3GPP but with the OpenAPI 'nullable: true' property.\"

func (*AccessTypeRm) MarshalJSON

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

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

func (*AccessTypeRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Ambr

type Ambr 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\".
	Uplink string `json:"uplink"`
	// 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\".
	Downlink string `json:"downlink"`
}

Ambr Contains the maximum aggregated uplink and downlink bit rates.

func NewAmbr

func NewAmbr(uplink string, downlink string) *Ambr

NewAmbr instantiates a new Ambr object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAmbrWithDefaults

func NewAmbrWithDefaults() *Ambr

NewAmbrWithDefaults instantiates a new Ambr object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (o *Ambr) GetDownlink() string

GetDownlink returns the Downlink field value

func (*Ambr) GetDownlinkOk

func (o *Ambr) GetDownlinkOk() (*string, bool)

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

func (o *Ambr) GetUplink() string

GetUplink returns the Uplink field value

func (*Ambr) GetUplinkOk

func (o *Ambr) GetUplinkOk() (*string, bool)

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

func (Ambr) MarshalJSON

func (o Ambr) MarshalJSON() ([]byte, error)
func (o *Ambr) SetDownlink(v string)

SetDownlink sets field value

func (o *Ambr) SetUplink(v string)

SetUplink sets field value

func (Ambr) ToMap

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

type ApiOfflinechargingdataOfflineChargingDataRefReleasePostRequest

type ApiOfflinechargingdataOfflineChargingDataRefReleasePostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOfflinechargingdataOfflineChargingDataRefReleasePostRequest) ChargingDataRequest

func (ApiOfflinechargingdataOfflineChargingDataRefReleasePostRequest) Execute

type ApiOfflinechargingdataOfflineChargingDataRefUpdatePostRequest

type ApiOfflinechargingdataOfflineChargingDataRefUpdatePostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOfflinechargingdataOfflineChargingDataRefUpdatePostRequest) ChargingDataRequest

func (ApiOfflinechargingdataOfflineChargingDataRefUpdatePostRequest) Execute

type ApiOfflinechargingdataPostRequest

type ApiOfflinechargingdataPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiOfflinechargingdataPostRequest) ChargingDataRequest

func (ApiOfflinechargingdataPostRequest) Execute

type Arp

type Arp struct {
	// nullable true shall not be used for this attribute. Unsigned integer indicating the ARP Priority Level (see clause 5.7.2.2 of 3GPP TS 23.501, within the range 1 to 15.Values are ordered in decreasing order of priority, i.e. with 1 as the highest priority and 15 as the lowest priority.
	PriorityLevel NullableInt32           `json:"priorityLevel"`
	PreemptCap    PreemptionCapability    `json:"preemptCap"`
	PreemptVuln   PreemptionVulnerability `json:"preemptVuln"`
}

Arp Contains Allocation and Retention Priority information.

func NewArp

func NewArp(priorityLevel NullableInt32, preemptCap PreemptionCapability, preemptVuln PreemptionVulnerability) *Arp

NewArp instantiates a new Arp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewArpWithDefaults

func NewArpWithDefaults() *Arp

NewArpWithDefaults instantiates a new Arp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Arp) GetPreemptCap

func (o *Arp) GetPreemptCap() PreemptionCapability

GetPreemptCap returns the PreemptCap field value

func (*Arp) GetPreemptCapOk

func (o *Arp) GetPreemptCapOk() (*PreemptionCapability, bool)

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

func (*Arp) GetPreemptVuln

func (o *Arp) GetPreemptVuln() PreemptionVulnerability

GetPreemptVuln returns the PreemptVuln field value

func (*Arp) GetPreemptVulnOk

func (o *Arp) GetPreemptVulnOk() (*PreemptionVulnerability, bool)

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

func (*Arp) GetPriorityLevel

func (o *Arp) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value If the value is explicit nil, the zero value for int32 will be returned

func (*Arp) GetPriorityLevelOk

func (o *Arp) GetPriorityLevelOk() (*int32, bool)

GetPriorityLevelOk returns a tuple with the PriorityLevel field value 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 (Arp) MarshalJSON

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

func (*Arp) SetPreemptCap

func (o *Arp) SetPreemptCap(v PreemptionCapability)

SetPreemptCap sets field value

func (*Arp) SetPreemptVuln

func (o *Arp) SetPreemptVuln(v PreemptionVulnerability)

SetPreemptVuln sets field value

func (*Arp) SetPriorityLevel

func (o *Arp) SetPriorityLevel(v int32)

SetPriorityLevel sets field value

func (Arp) ToMap

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

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 AuthorizedDefaultQos

type AuthorizedDefaultQos struct {
	// Unsigned integer representing a 5G QoS Identifier (see clause 5.7.2.1 of 3GPP TS 23.501, within the range 0 to 255.
	Var5qi *int32 `json:"5qi,omitempty"`
	Arp    *Arp   `json:"arp,omitempty"`
	// This data type is defined in the same way as the '5QiPriorityLevel' data type, but with the OpenAPI 'nullable: true' property.
	PriorityLevel NullableInt32 `json:"priorityLevel,omitempty"`
	// This data type is defined in the same way as the 'AverWindow' data type, but with the OpenAPI 'nullable: true' property.
	AverWindow NullableInt32 `json:"averWindow,omitempty"`
	// This data type is defined in the same way as the 'MaxDataBurstVol' data type, but with the OpenAPI 'nullable: true' property.
	MaxDataBurstVol NullableInt32 `json:"maxDataBurstVol,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxbrUl NullableString `json:"maxbrUl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxbrDl NullableString `json:"maxbrDl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	GbrUl NullableString `json:"gbrUl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	GbrDl NullableString `json:"gbrDl,omitempty"`
	// This data type is defined in the same way as the 'ExtMaxDataBurstVol' data type, but with the OpenAPI 'nullable: true' property.
	ExtMaxDataBurstVol NullableInt32 `json:"extMaxDataBurstVol,omitempty"`
}

AuthorizedDefaultQos Represents the Authorized Default QoS.

func NewAuthorizedDefaultQos

func NewAuthorizedDefaultQos() *AuthorizedDefaultQos

NewAuthorizedDefaultQos instantiates a new AuthorizedDefaultQos object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorizedDefaultQosWithDefaults

func NewAuthorizedDefaultQosWithDefaults() *AuthorizedDefaultQos

NewAuthorizedDefaultQosWithDefaults instantiates a new AuthorizedDefaultQos object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorizedDefaultQos) GetArp

func (o *AuthorizedDefaultQos) GetArp() Arp

GetArp returns the Arp field value if set, zero value otherwise.

func (*AuthorizedDefaultQos) GetArpOk

func (o *AuthorizedDefaultQos) GetArpOk() (*Arp, bool)

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

func (*AuthorizedDefaultQos) GetAverWindow

func (o *AuthorizedDefaultQos) GetAverWindow() int32

GetAverWindow returns the AverWindow field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthorizedDefaultQos) GetAverWindowOk

func (o *AuthorizedDefaultQos) GetAverWindowOk() (*int32, bool)

GetAverWindowOk returns a tuple with the AverWindow 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 (*AuthorizedDefaultQos) GetExtMaxDataBurstVol

func (o *AuthorizedDefaultQos) GetExtMaxDataBurstVol() int32

GetExtMaxDataBurstVol returns the ExtMaxDataBurstVol field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthorizedDefaultQos) GetExtMaxDataBurstVolOk

func (o *AuthorizedDefaultQos) GetExtMaxDataBurstVolOk() (*int32, bool)

GetExtMaxDataBurstVolOk returns a tuple with the ExtMaxDataBurstVol 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 (*AuthorizedDefaultQos) GetGbrDl

func (o *AuthorizedDefaultQos) GetGbrDl() string

GetGbrDl returns the GbrDl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthorizedDefaultQos) GetGbrDlOk

func (o *AuthorizedDefaultQos) GetGbrDlOk() (*string, bool)

GetGbrDlOk returns a tuple with the GbrDl 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 (*AuthorizedDefaultQos) GetGbrUl

func (o *AuthorizedDefaultQos) GetGbrUl() string

GetGbrUl returns the GbrUl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthorizedDefaultQos) GetGbrUlOk

func (o *AuthorizedDefaultQos) GetGbrUlOk() (*string, bool)

GetGbrUlOk returns a tuple with the GbrUl 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 (*AuthorizedDefaultQos) GetMaxDataBurstVol

func (o *AuthorizedDefaultQos) GetMaxDataBurstVol() int32

GetMaxDataBurstVol returns the MaxDataBurstVol field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthorizedDefaultQos) GetMaxDataBurstVolOk

func (o *AuthorizedDefaultQos) GetMaxDataBurstVolOk() (*int32, bool)

GetMaxDataBurstVolOk returns a tuple with the MaxDataBurstVol 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 (*AuthorizedDefaultQos) GetMaxbrDl

func (o *AuthorizedDefaultQos) GetMaxbrDl() string

GetMaxbrDl returns the MaxbrDl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthorizedDefaultQos) GetMaxbrDlOk

func (o *AuthorizedDefaultQos) GetMaxbrDlOk() (*string, bool)

GetMaxbrDlOk returns a tuple with the MaxbrDl 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 (*AuthorizedDefaultQos) GetMaxbrUl

func (o *AuthorizedDefaultQos) GetMaxbrUl() string

GetMaxbrUl returns the MaxbrUl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthorizedDefaultQos) GetMaxbrUlOk

func (o *AuthorizedDefaultQos) GetMaxbrUlOk() (*string, bool)

GetMaxbrUlOk returns a tuple with the MaxbrUl 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 (*AuthorizedDefaultQos) GetPriorityLevel

func (o *AuthorizedDefaultQos) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthorizedDefaultQos) GetPriorityLevelOk

func (o *AuthorizedDefaultQos) GetPriorityLevelOk() (*int32, bool)

GetPriorityLevelOk returns a tuple with the PriorityLevel 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 (*AuthorizedDefaultQos) GetVar5qi

func (o *AuthorizedDefaultQos) GetVar5qi() int32

GetVar5qi returns the Var5qi field value if set, zero value otherwise.

func (*AuthorizedDefaultQos) GetVar5qiOk

func (o *AuthorizedDefaultQos) GetVar5qiOk() (*int32, bool)

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

func (*AuthorizedDefaultQos) HasArp

func (o *AuthorizedDefaultQos) HasArp() bool

HasArp returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasAverWindow

func (o *AuthorizedDefaultQos) HasAverWindow() bool

HasAverWindow returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasExtMaxDataBurstVol

func (o *AuthorizedDefaultQos) HasExtMaxDataBurstVol() bool

HasExtMaxDataBurstVol returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasGbrDl

func (o *AuthorizedDefaultQos) HasGbrDl() bool

HasGbrDl returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasGbrUl

func (o *AuthorizedDefaultQos) HasGbrUl() bool

HasGbrUl returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasMaxDataBurstVol

func (o *AuthorizedDefaultQos) HasMaxDataBurstVol() bool

HasMaxDataBurstVol returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasMaxbrDl

func (o *AuthorizedDefaultQos) HasMaxbrDl() bool

HasMaxbrDl returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasMaxbrUl

func (o *AuthorizedDefaultQos) HasMaxbrUl() bool

HasMaxbrUl returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasPriorityLevel

func (o *AuthorizedDefaultQos) HasPriorityLevel() bool

HasPriorityLevel returns a boolean if a field has been set.

func (*AuthorizedDefaultQos) HasVar5qi

func (o *AuthorizedDefaultQos) HasVar5qi() bool

HasVar5qi returns a boolean if a field has been set.

func (AuthorizedDefaultQos) MarshalJSON

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

func (*AuthorizedDefaultQos) SetArp

func (o *AuthorizedDefaultQos) SetArp(v Arp)

SetArp gets a reference to the given Arp and assigns it to the Arp field.

func (*AuthorizedDefaultQos) SetAverWindow

func (o *AuthorizedDefaultQos) SetAverWindow(v int32)

SetAverWindow gets a reference to the given NullableInt32 and assigns it to the AverWindow field.

func (*AuthorizedDefaultQos) SetAverWindowNil

func (o *AuthorizedDefaultQos) SetAverWindowNil()

SetAverWindowNil sets the value for AverWindow to be an explicit nil

func (*AuthorizedDefaultQos) SetExtMaxDataBurstVol

func (o *AuthorizedDefaultQos) SetExtMaxDataBurstVol(v int32)

SetExtMaxDataBurstVol gets a reference to the given NullableInt32 and assigns it to the ExtMaxDataBurstVol field.

func (*AuthorizedDefaultQos) SetExtMaxDataBurstVolNil

func (o *AuthorizedDefaultQos) SetExtMaxDataBurstVolNil()

SetExtMaxDataBurstVolNil sets the value for ExtMaxDataBurstVol to be an explicit nil

func (*AuthorizedDefaultQos) SetGbrDl

func (o *AuthorizedDefaultQos) SetGbrDl(v string)

SetGbrDl gets a reference to the given NullableString and assigns it to the GbrDl field.

func (*AuthorizedDefaultQos) SetGbrDlNil

func (o *AuthorizedDefaultQos) SetGbrDlNil()

SetGbrDlNil sets the value for GbrDl to be an explicit nil

func (*AuthorizedDefaultQos) SetGbrUl

func (o *AuthorizedDefaultQos) SetGbrUl(v string)

SetGbrUl gets a reference to the given NullableString and assigns it to the GbrUl field.

func (*AuthorizedDefaultQos) SetGbrUlNil

func (o *AuthorizedDefaultQos) SetGbrUlNil()

SetGbrUlNil sets the value for GbrUl to be an explicit nil

func (*AuthorizedDefaultQos) SetMaxDataBurstVol

func (o *AuthorizedDefaultQos) SetMaxDataBurstVol(v int32)

SetMaxDataBurstVol gets a reference to the given NullableInt32 and assigns it to the MaxDataBurstVol field.

func (*AuthorizedDefaultQos) SetMaxDataBurstVolNil

func (o *AuthorizedDefaultQos) SetMaxDataBurstVolNil()

SetMaxDataBurstVolNil sets the value for MaxDataBurstVol to be an explicit nil

func (*AuthorizedDefaultQos) SetMaxbrDl

func (o *AuthorizedDefaultQos) SetMaxbrDl(v string)

SetMaxbrDl gets a reference to the given NullableString and assigns it to the MaxbrDl field.

func (*AuthorizedDefaultQos) SetMaxbrDlNil

func (o *AuthorizedDefaultQos) SetMaxbrDlNil()

SetMaxbrDlNil sets the value for MaxbrDl to be an explicit nil

func (*AuthorizedDefaultQos) SetMaxbrUl

func (o *AuthorizedDefaultQos) SetMaxbrUl(v string)

SetMaxbrUl gets a reference to the given NullableString and assigns it to the MaxbrUl field.

func (*AuthorizedDefaultQos) SetMaxbrUlNil

func (o *AuthorizedDefaultQos) SetMaxbrUlNil()

SetMaxbrUlNil sets the value for MaxbrUl to be an explicit nil

func (*AuthorizedDefaultQos) SetPriorityLevel

func (o *AuthorizedDefaultQos) SetPriorityLevel(v int32)

SetPriorityLevel gets a reference to the given NullableInt32 and assigns it to the PriorityLevel field.

func (*AuthorizedDefaultQos) SetPriorityLevelNil

func (o *AuthorizedDefaultQos) SetPriorityLevelNil()

SetPriorityLevelNil sets the value for PriorityLevel to be an explicit nil

func (*AuthorizedDefaultQos) SetVar5qi

func (o *AuthorizedDefaultQos) SetVar5qi(v int32)

SetVar5qi gets a reference to the given int32 and assigns it to the Var5qi field.

func (AuthorizedDefaultQos) ToMap

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

func (*AuthorizedDefaultQos) UnsetAverWindow

func (o *AuthorizedDefaultQos) UnsetAverWindow()

UnsetAverWindow ensures that no value is present for AverWindow, not even an explicit nil

func (*AuthorizedDefaultQos) UnsetExtMaxDataBurstVol

func (o *AuthorizedDefaultQos) UnsetExtMaxDataBurstVol()

UnsetExtMaxDataBurstVol ensures that no value is present for ExtMaxDataBurstVol, not even an explicit nil

func (*AuthorizedDefaultQos) UnsetGbrDl

func (o *AuthorizedDefaultQos) UnsetGbrDl()

UnsetGbrDl ensures that no value is present for GbrDl, not even an explicit nil

func (*AuthorizedDefaultQos) UnsetGbrUl

func (o *AuthorizedDefaultQos) UnsetGbrUl()

UnsetGbrUl ensures that no value is present for GbrUl, not even an explicit nil

func (*AuthorizedDefaultQos) UnsetMaxDataBurstVol

func (o *AuthorizedDefaultQos) UnsetMaxDataBurstVol()

UnsetMaxDataBurstVol ensures that no value is present for MaxDataBurstVol, not even an explicit nil

func (*AuthorizedDefaultQos) UnsetMaxbrDl

func (o *AuthorizedDefaultQos) UnsetMaxbrDl()

UnsetMaxbrDl ensures that no value is present for MaxbrDl, not even an explicit nil

func (*AuthorizedDefaultQos) UnsetMaxbrUl

func (o *AuthorizedDefaultQos) UnsetMaxbrUl()

UnsetMaxbrUl ensures that no value is present for MaxbrUl, not even an explicit nil

func (*AuthorizedDefaultQos) UnsetPriorityLevel

func (o *AuthorizedDefaultQos) UnsetPriorityLevel()

UnsetPriorityLevel ensures that no value is present for PriorityLevel, not even an explicit nil

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 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 ChargingCharacteristicsSelectionMode

type ChargingCharacteristicsSelectionMode struct {
	String *string
}

ChargingCharacteristicsSelectionMode struct for ChargingCharacteristicsSelectionMode

func (*ChargingCharacteristicsSelectionMode) MarshalJSON

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

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

func (*ChargingCharacteristicsSelectionMode) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ChargingDataRequest

type ChargingDataRequest 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.
	SubscriberIdentifier     *string          `json:"subscriberIdentifier,omitempty"`
	NfConsumerIdentification NFIdentification `json:"nfConsumerIdentification"`
	// string with format 'date-time' as defined in OpenAPI.
	InvocationTimeStamp time.Time `json:"invocationTimeStamp"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	InvocationSequenceNumber      int32                          `json:"invocationSequenceNumber"`
	RetransmissionIndicator       *bool                          `json:"retransmissionIndicator,omitempty"`
	ServiceSpecificationInfo      *string                        `json:"serviceSpecificationInfo,omitempty"`
	MultipleUnitUsage             []MultipleUnitUsage            `json:"multipleUnitUsage,omitempty"`
	Triggers                      []Trigger                      `json:"triggers,omitempty"`
	PDUSessionChargingInformation *PDUSessionChargingInformation `json:"pDUSessionChargingInformation,omitempty"`
	RoamingQBCInformation         *RoamingQBCInformation         `json:"roamingQBCInformation,omitempty"`
}

ChargingDataRequest struct for ChargingDataRequest

func NewChargingDataRequest

func NewChargingDataRequest(nfConsumerIdentification NFIdentification, invocationTimeStamp time.Time, invocationSequenceNumber int32) *ChargingDataRequest

NewChargingDataRequest instantiates a new ChargingDataRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewChargingDataRequestWithDefaults

func NewChargingDataRequestWithDefaults() *ChargingDataRequest

NewChargingDataRequestWithDefaults instantiates a new ChargingDataRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ChargingDataRequest) GetInvocationSequenceNumber

func (o *ChargingDataRequest) GetInvocationSequenceNumber() int32

GetInvocationSequenceNumber returns the InvocationSequenceNumber field value

func (*ChargingDataRequest) GetInvocationSequenceNumberOk

func (o *ChargingDataRequest) GetInvocationSequenceNumberOk() (*int32, bool)

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

func (*ChargingDataRequest) GetInvocationTimeStamp

func (o *ChargingDataRequest) GetInvocationTimeStamp() time.Time

GetInvocationTimeStamp returns the InvocationTimeStamp field value

func (*ChargingDataRequest) GetInvocationTimeStampOk

func (o *ChargingDataRequest) GetInvocationTimeStampOk() (*time.Time, bool)

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

func (*ChargingDataRequest) GetMultipleUnitUsage

func (o *ChargingDataRequest) GetMultipleUnitUsage() []MultipleUnitUsage

GetMultipleUnitUsage returns the MultipleUnitUsage field value if set, zero value otherwise.

func (*ChargingDataRequest) GetMultipleUnitUsageOk

func (o *ChargingDataRequest) GetMultipleUnitUsageOk() ([]MultipleUnitUsage, bool)

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

func (*ChargingDataRequest) GetNfConsumerIdentification

func (o *ChargingDataRequest) GetNfConsumerIdentification() NFIdentification

GetNfConsumerIdentification returns the NfConsumerIdentification field value

func (*ChargingDataRequest) GetNfConsumerIdentificationOk

func (o *ChargingDataRequest) GetNfConsumerIdentificationOk() (*NFIdentification, bool)

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

func (*ChargingDataRequest) GetPDUSessionChargingInformation

func (o *ChargingDataRequest) GetPDUSessionChargingInformation() PDUSessionChargingInformation

GetPDUSessionChargingInformation returns the PDUSessionChargingInformation field value if set, zero value otherwise.

func (*ChargingDataRequest) GetPDUSessionChargingInformationOk

func (o *ChargingDataRequest) GetPDUSessionChargingInformationOk() (*PDUSessionChargingInformation, bool)

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

func (*ChargingDataRequest) GetRetransmissionIndicator

func (o *ChargingDataRequest) GetRetransmissionIndicator() bool

GetRetransmissionIndicator returns the RetransmissionIndicator field value if set, zero value otherwise.

func (*ChargingDataRequest) GetRetransmissionIndicatorOk

func (o *ChargingDataRequest) GetRetransmissionIndicatorOk() (*bool, bool)

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

func (*ChargingDataRequest) GetRoamingQBCInformation

func (o *ChargingDataRequest) GetRoamingQBCInformation() RoamingQBCInformation

GetRoamingQBCInformation returns the RoamingQBCInformation field value if set, zero value otherwise.

func (*ChargingDataRequest) GetRoamingQBCInformationOk

func (o *ChargingDataRequest) GetRoamingQBCInformationOk() (*RoamingQBCInformation, bool)

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

func (*ChargingDataRequest) GetServiceSpecificationInfo

func (o *ChargingDataRequest) GetServiceSpecificationInfo() string

GetServiceSpecificationInfo returns the ServiceSpecificationInfo field value if set, zero value otherwise.

func (*ChargingDataRequest) GetServiceSpecificationInfoOk

func (o *ChargingDataRequest) GetServiceSpecificationInfoOk() (*string, bool)

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

func (*ChargingDataRequest) GetSubscriberIdentifier

func (o *ChargingDataRequest) GetSubscriberIdentifier() string

GetSubscriberIdentifier returns the SubscriberIdentifier field value if set, zero value otherwise.

func (*ChargingDataRequest) GetSubscriberIdentifierOk

func (o *ChargingDataRequest) GetSubscriberIdentifierOk() (*string, bool)

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

func (*ChargingDataRequest) GetTriggers

func (o *ChargingDataRequest) GetTriggers() []Trigger

GetTriggers returns the Triggers field value if set, zero value otherwise.

func (*ChargingDataRequest) GetTriggersOk

func (o *ChargingDataRequest) GetTriggersOk() ([]Trigger, bool)

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

func (*ChargingDataRequest) HasMultipleUnitUsage

func (o *ChargingDataRequest) HasMultipleUnitUsage() bool

HasMultipleUnitUsage returns a boolean if a field has been set.

func (*ChargingDataRequest) HasPDUSessionChargingInformation

func (o *ChargingDataRequest) HasPDUSessionChargingInformation() bool

HasPDUSessionChargingInformation returns a boolean if a field has been set.

func (*ChargingDataRequest) HasRetransmissionIndicator

func (o *ChargingDataRequest) HasRetransmissionIndicator() bool

HasRetransmissionIndicator returns a boolean if a field has been set.

func (*ChargingDataRequest) HasRoamingQBCInformation

func (o *ChargingDataRequest) HasRoamingQBCInformation() bool

HasRoamingQBCInformation returns a boolean if a field has been set.

func (*ChargingDataRequest) HasServiceSpecificationInfo

func (o *ChargingDataRequest) HasServiceSpecificationInfo() bool

HasServiceSpecificationInfo returns a boolean if a field has been set.

func (*ChargingDataRequest) HasSubscriberIdentifier

func (o *ChargingDataRequest) HasSubscriberIdentifier() bool

HasSubscriberIdentifier returns a boolean if a field has been set.

func (*ChargingDataRequest) HasTriggers

func (o *ChargingDataRequest) HasTriggers() bool

HasTriggers returns a boolean if a field has been set.

func (ChargingDataRequest) MarshalJSON

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

func (*ChargingDataRequest) SetInvocationSequenceNumber

func (o *ChargingDataRequest) SetInvocationSequenceNumber(v int32)

SetInvocationSequenceNumber sets field value

func (*ChargingDataRequest) SetInvocationTimeStamp

func (o *ChargingDataRequest) SetInvocationTimeStamp(v time.Time)

SetInvocationTimeStamp sets field value

func (*ChargingDataRequest) SetMultipleUnitUsage

func (o *ChargingDataRequest) SetMultipleUnitUsage(v []MultipleUnitUsage)

SetMultipleUnitUsage gets a reference to the given []MultipleUnitUsage and assigns it to the MultipleUnitUsage field.

func (*ChargingDataRequest) SetNfConsumerIdentification

func (o *ChargingDataRequest) SetNfConsumerIdentification(v NFIdentification)

SetNfConsumerIdentification sets field value

func (*ChargingDataRequest) SetPDUSessionChargingInformation

func (o *ChargingDataRequest) SetPDUSessionChargingInformation(v PDUSessionChargingInformation)

SetPDUSessionChargingInformation gets a reference to the given PDUSessionChargingInformation and assigns it to the PDUSessionChargingInformation field.

func (*ChargingDataRequest) SetRetransmissionIndicator

func (o *ChargingDataRequest) SetRetransmissionIndicator(v bool)

SetRetransmissionIndicator gets a reference to the given bool and assigns it to the RetransmissionIndicator field.

func (*ChargingDataRequest) SetRoamingQBCInformation

func (o *ChargingDataRequest) SetRoamingQBCInformation(v RoamingQBCInformation)

SetRoamingQBCInformation gets a reference to the given RoamingQBCInformation and assigns it to the RoamingQBCInformation field.

func (*ChargingDataRequest) SetServiceSpecificationInfo

func (o *ChargingDataRequest) SetServiceSpecificationInfo(v string)

SetServiceSpecificationInfo gets a reference to the given string and assigns it to the ServiceSpecificationInfo field.

func (*ChargingDataRequest) SetSubscriberIdentifier

func (o *ChargingDataRequest) SetSubscriberIdentifier(v string)

SetSubscriberIdentifier gets a reference to the given string and assigns it to the SubscriberIdentifier field.

func (*ChargingDataRequest) SetTriggers

func (o *ChargingDataRequest) SetTriggers(v []Trigger)

SetTriggers gets a reference to the given []Trigger and assigns it to the Triggers field.

func (ChargingDataRequest) ToMap

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

type ChargingDataResponse

type ChargingDataResponse struct {
	// string with format 'date-time' as defined in OpenAPI.
	InvocationTimeStamp time.Time `json:"invocationTimeStamp"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	InvocationSequenceNumber      int32                          `json:"invocationSequenceNumber"`
	InvocationResult              *InvocationResult              `json:"invocationResult,omitempty"`
	SessionFailover               *SessionFailover               `json:"sessionFailover,omitempty"`
	Triggers                      []Trigger                      `json:"triggers,omitempty"`
	PDUSessionChargingInformation *PDUSessionChargingInformation `json:"pDUSessionChargingInformation,omitempty"`
	RoamingQBCInformation         *RoamingQBCInformation         `json:"roamingQBCInformation,omitempty"`
}

ChargingDataResponse struct for ChargingDataResponse

func NewChargingDataResponse

func NewChargingDataResponse(invocationTimeStamp time.Time, invocationSequenceNumber int32) *ChargingDataResponse

NewChargingDataResponse instantiates a new ChargingDataResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewChargingDataResponseWithDefaults

func NewChargingDataResponseWithDefaults() *ChargingDataResponse

NewChargingDataResponseWithDefaults instantiates a new ChargingDataResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ChargingDataResponse) GetInvocationResult

func (o *ChargingDataResponse) GetInvocationResult() InvocationResult

GetInvocationResult returns the InvocationResult field value if set, zero value otherwise.

func (*ChargingDataResponse) GetInvocationResultOk

func (o *ChargingDataResponse) GetInvocationResultOk() (*InvocationResult, bool)

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

func (*ChargingDataResponse) GetInvocationSequenceNumber

func (o *ChargingDataResponse) GetInvocationSequenceNumber() int32

GetInvocationSequenceNumber returns the InvocationSequenceNumber field value

func (*ChargingDataResponse) GetInvocationSequenceNumberOk

func (o *ChargingDataResponse) GetInvocationSequenceNumberOk() (*int32, bool)

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

func (*ChargingDataResponse) GetInvocationTimeStamp

func (o *ChargingDataResponse) GetInvocationTimeStamp() time.Time

GetInvocationTimeStamp returns the InvocationTimeStamp field value

func (*ChargingDataResponse) GetInvocationTimeStampOk

func (o *ChargingDataResponse) GetInvocationTimeStampOk() (*time.Time, bool)

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

func (*ChargingDataResponse) GetPDUSessionChargingInformation

func (o *ChargingDataResponse) GetPDUSessionChargingInformation() PDUSessionChargingInformation

GetPDUSessionChargingInformation returns the PDUSessionChargingInformation field value if set, zero value otherwise.

func (*ChargingDataResponse) GetPDUSessionChargingInformationOk

func (o *ChargingDataResponse) GetPDUSessionChargingInformationOk() (*PDUSessionChargingInformation, bool)

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

func (*ChargingDataResponse) GetRoamingQBCInformation

func (o *ChargingDataResponse) GetRoamingQBCInformation() RoamingQBCInformation

GetRoamingQBCInformation returns the RoamingQBCInformation field value if set, zero value otherwise.

func (*ChargingDataResponse) GetRoamingQBCInformationOk

func (o *ChargingDataResponse) GetRoamingQBCInformationOk() (*RoamingQBCInformation, bool)

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

func (*ChargingDataResponse) GetSessionFailover

func (o *ChargingDataResponse) GetSessionFailover() SessionFailover

GetSessionFailover returns the SessionFailover field value if set, zero value otherwise.

func (*ChargingDataResponse) GetSessionFailoverOk

func (o *ChargingDataResponse) GetSessionFailoverOk() (*SessionFailover, bool)

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

func (*ChargingDataResponse) GetTriggers

func (o *ChargingDataResponse) GetTriggers() []Trigger

GetTriggers returns the Triggers field value if set, zero value otherwise.

func (*ChargingDataResponse) GetTriggersOk

func (o *ChargingDataResponse) GetTriggersOk() ([]Trigger, bool)

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

func (*ChargingDataResponse) HasInvocationResult

func (o *ChargingDataResponse) HasInvocationResult() bool

HasInvocationResult returns a boolean if a field has been set.

func (*ChargingDataResponse) HasPDUSessionChargingInformation

func (o *ChargingDataResponse) HasPDUSessionChargingInformation() bool

HasPDUSessionChargingInformation returns a boolean if a field has been set.

func (*ChargingDataResponse) HasRoamingQBCInformation

func (o *ChargingDataResponse) HasRoamingQBCInformation() bool

HasRoamingQBCInformation returns a boolean if a field has been set.

func (*ChargingDataResponse) HasSessionFailover

func (o *ChargingDataResponse) HasSessionFailover() bool

HasSessionFailover returns a boolean if a field has been set.

func (*ChargingDataResponse) HasTriggers

func (o *ChargingDataResponse) HasTriggers() bool

HasTriggers returns a boolean if a field has been set.

func (ChargingDataResponse) MarshalJSON

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

func (*ChargingDataResponse) SetInvocationResult

func (o *ChargingDataResponse) SetInvocationResult(v InvocationResult)

SetInvocationResult gets a reference to the given InvocationResult and assigns it to the InvocationResult field.

func (*ChargingDataResponse) SetInvocationSequenceNumber

func (o *ChargingDataResponse) SetInvocationSequenceNumber(v int32)

SetInvocationSequenceNumber sets field value

func (*ChargingDataResponse) SetInvocationTimeStamp

func (o *ChargingDataResponse) SetInvocationTimeStamp(v time.Time)

SetInvocationTimeStamp sets field value

func (*ChargingDataResponse) SetPDUSessionChargingInformation

func (o *ChargingDataResponse) SetPDUSessionChargingInformation(v PDUSessionChargingInformation)

SetPDUSessionChargingInformation gets a reference to the given PDUSessionChargingInformation and assigns it to the PDUSessionChargingInformation field.

func (*ChargingDataResponse) SetRoamingQBCInformation

func (o *ChargingDataResponse) SetRoamingQBCInformation(v RoamingQBCInformation)

SetRoamingQBCInformation gets a reference to the given RoamingQBCInformation and assigns it to the RoamingQBCInformation field.

func (*ChargingDataResponse) SetSessionFailover

func (o *ChargingDataResponse) SetSessionFailover(v SessionFailover)

SetSessionFailover gets a reference to the given SessionFailover and assigns it to the SessionFailover field.

func (*ChargingDataResponse) SetTriggers

func (o *ChargingDataResponse) SetTriggers(v []Trigger)

SetTriggers gets a reference to the given []Trigger and assigns it to the Triggers field.

func (ChargingDataResponse) ToMap

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

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 DefaultApiService

type DefaultApiService service

DefaultApiService DefaultApi service

func (*DefaultApiService) OfflinechargingdataOfflineChargingDataRefReleasePost

func (a *DefaultApiService) OfflinechargingdataOfflineChargingDataRefReleasePost(ctx context.Context, offlineChargingDataRef string) ApiOfflinechargingdataOfflineChargingDataRefReleasePostRequest

OfflinechargingdataOfflineChargingDataRefReleasePost Method for OfflinechargingdataOfflineChargingDataRefReleasePost

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param offlineChargingDataRef a unique identifier for a charging data resource in a PLMN
@return ApiOfflinechargingdataOfflineChargingDataRefReleasePostRequest

func (*DefaultApiService) OfflinechargingdataOfflineChargingDataRefReleasePostExecute

func (a *DefaultApiService) OfflinechargingdataOfflineChargingDataRefReleasePostExecute(r ApiOfflinechargingdataOfflineChargingDataRefReleasePostRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) OfflinechargingdataOfflineChargingDataRefUpdatePost

func (a *DefaultApiService) OfflinechargingdataOfflineChargingDataRefUpdatePost(ctx context.Context, offlineChargingDataRef string) ApiOfflinechargingdataOfflineChargingDataRefUpdatePostRequest

OfflinechargingdataOfflineChargingDataRefUpdatePost Method for OfflinechargingdataOfflineChargingDataRefUpdatePost

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param offlineChargingDataRef a unique identifier for a charging data resource in a PLMN
@return ApiOfflinechargingdataOfflineChargingDataRefUpdatePostRequest

func (*DefaultApiService) OfflinechargingdataOfflineChargingDataRefUpdatePostExecute

func (a *DefaultApiService) OfflinechargingdataOfflineChargingDataRefUpdatePostExecute(r ApiOfflinechargingdataOfflineChargingDataRefUpdatePostRequest) (*ChargingDataResponse, *http.Response, error)

Execute executes the request

@return ChargingDataResponse

func (*DefaultApiService) OfflinechargingdataPost

func (a *DefaultApiService) OfflinechargingdataPost(ctx context.Context) ApiOfflinechargingdataPostRequest

OfflinechargingdataPost Method for OfflinechargingdataPost

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

func (*DefaultApiService) OfflinechargingdataPostExecute

Execute executes the request

@return ChargingDataResponse

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 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 FailureHandling

type FailureHandling struct {
	String *string
}

FailureHandling struct for FailureHandling

func (*FailureHandling) MarshalJSON

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

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

func (*FailureHandling) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 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 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 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 InvocationResult

type InvocationResult struct {
	Error           *ProblemDetails  `json:"error,omitempty"`
	FailureHandling *FailureHandling `json:"failureHandling,omitempty"`
}

InvocationResult struct for InvocationResult

func NewInvocationResult

func NewInvocationResult() *InvocationResult

NewInvocationResult instantiates a new InvocationResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInvocationResultWithDefaults

func NewInvocationResultWithDefaults() *InvocationResult

NewInvocationResultWithDefaults instantiates a new InvocationResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InvocationResult) GetError

func (o *InvocationResult) GetError() ProblemDetails

GetError returns the Error field value if set, zero value otherwise.

func (*InvocationResult) GetErrorOk

func (o *InvocationResult) GetErrorOk() (*ProblemDetails, bool)

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

func (*InvocationResult) GetFailureHandling

func (o *InvocationResult) GetFailureHandling() FailureHandling

GetFailureHandling returns the FailureHandling field value if set, zero value otherwise.

func (*InvocationResult) GetFailureHandlingOk

func (o *InvocationResult) GetFailureHandlingOk() (*FailureHandling, bool)

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

func (*InvocationResult) HasError

func (o *InvocationResult) HasError() bool

HasError returns a boolean if a field has been set.

func (*InvocationResult) HasFailureHandling

func (o *InvocationResult) HasFailureHandling() bool

HasFailureHandling returns a boolean if a field has been set.

func (InvocationResult) MarshalJSON

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

func (*InvocationResult) SetError

func (o *InvocationResult) SetError(v ProblemDetails)

SetError gets a reference to the given ProblemDetails and assigns it to the Error field.

func (*InvocationResult) SetFailureHandling

func (o *InvocationResult) SetFailureHandling(v FailureHandling)

SetFailureHandling gets a reference to the given FailureHandling and assigns it to the FailureHandling field.

func (InvocationResult) ToMap

func (o InvocationResult) 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 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 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 MAPDUSessionInformation

type MAPDUSessionInformation struct {
	MAPDUSessionIndicator *MaPduIndication `json:"mAPDUSessionIndicator,omitempty"`
	ATSSSCapability       *AtsssCapability `json:"aTSSSCapability,omitempty"`
}

MAPDUSessionInformation struct for MAPDUSessionInformation

func NewMAPDUSessionInformation

func NewMAPDUSessionInformation() *MAPDUSessionInformation

NewMAPDUSessionInformation instantiates a new MAPDUSessionInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMAPDUSessionInformationWithDefaults

func NewMAPDUSessionInformationWithDefaults() *MAPDUSessionInformation

NewMAPDUSessionInformationWithDefaults instantiates a new MAPDUSessionInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MAPDUSessionInformation) GetATSSSCapability

func (o *MAPDUSessionInformation) GetATSSSCapability() AtsssCapability

GetATSSSCapability returns the ATSSSCapability field value if set, zero value otherwise.

func (*MAPDUSessionInformation) GetATSSSCapabilityOk

func (o *MAPDUSessionInformation) 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 (*MAPDUSessionInformation) GetMAPDUSessionIndicator

func (o *MAPDUSessionInformation) GetMAPDUSessionIndicator() MaPduIndication

GetMAPDUSessionIndicator returns the MAPDUSessionIndicator field value if set, zero value otherwise.

func (*MAPDUSessionInformation) GetMAPDUSessionIndicatorOk

func (o *MAPDUSessionInformation) GetMAPDUSessionIndicatorOk() (*MaPduIndication, bool)

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

func (*MAPDUSessionInformation) HasATSSSCapability

func (o *MAPDUSessionInformation) HasATSSSCapability() bool

HasATSSSCapability returns a boolean if a field has been set.

func (*MAPDUSessionInformation) HasMAPDUSessionIndicator

func (o *MAPDUSessionInformation) HasMAPDUSessionIndicator() bool

HasMAPDUSessionIndicator returns a boolean if a field has been set.

func (MAPDUSessionInformation) MarshalJSON

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

func (*MAPDUSessionInformation) SetATSSSCapability

func (o *MAPDUSessionInformation) SetATSSSCapability(v AtsssCapability)

SetATSSSCapability gets a reference to the given AtsssCapability and assigns it to the ATSSSCapability field.

func (*MAPDUSessionInformation) SetMAPDUSessionIndicator

func (o *MAPDUSessionInformation) SetMAPDUSessionIndicator(v MaPduIndication)

SetMAPDUSessionIndicator gets a reference to the given MaPduIndication and assigns it to the MAPDUSessionIndicator field.

func (MAPDUSessionInformation) ToMap

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

type MaPduIndication

type MaPduIndication struct {
	String *string
}

MaPduIndication Contains the MA PDU session indication, i.e., MA PDU Request or MA PDU Network-Upgrade Allowed.

func (*MaPduIndication) MarshalJSON

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

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

func (*MaPduIndication) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type Model3GPPPSDataOffStatus

type Model3GPPPSDataOffStatus struct {
	String *string
}

Model3GPPPSDataOffStatus struct for Model3GPPPSDataOffStatus

func (*Model3GPPPSDataOffStatus) MarshalJSON

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

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

func (*Model3GPPPSDataOffStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MultipleQFIcontainer

type MultipleQFIcontainer struct {
	Triggers []Trigger `json:"triggers,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	TriggerTimestamp *time.Time `json:"triggerTimestamp,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	Time *int32 `json:"time,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 64-bit integer.
	TotalVolume *int32 `json:"totalVolume,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 64-bit integer.
	UplinkVolume            *int32                   `json:"uplinkVolume,omitempty"`
	LocalSequenceNumber     int32                    `json:"localSequenceNumber"`
	QFIContainerInformation *QFIContainerInformation `json:"qFIContainerInformation,omitempty"`
}

MultipleQFIcontainer struct for MultipleQFIcontainer

func NewMultipleQFIcontainer

func NewMultipleQFIcontainer(localSequenceNumber int32) *MultipleQFIcontainer

NewMultipleQFIcontainer instantiates a new MultipleQFIcontainer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMultipleQFIcontainerWithDefaults

func NewMultipleQFIcontainerWithDefaults() *MultipleQFIcontainer

NewMultipleQFIcontainerWithDefaults instantiates a new MultipleQFIcontainer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MultipleQFIcontainer) GetLocalSequenceNumber

func (o *MultipleQFIcontainer) GetLocalSequenceNumber() int32

GetLocalSequenceNumber returns the LocalSequenceNumber field value

func (*MultipleQFIcontainer) GetLocalSequenceNumberOk

func (o *MultipleQFIcontainer) GetLocalSequenceNumberOk() (*int32, bool)

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

func (*MultipleQFIcontainer) GetQFIContainerInformation

func (o *MultipleQFIcontainer) GetQFIContainerInformation() QFIContainerInformation

GetQFIContainerInformation returns the QFIContainerInformation field value if set, zero value otherwise.

func (*MultipleQFIcontainer) GetQFIContainerInformationOk

func (o *MultipleQFIcontainer) GetQFIContainerInformationOk() (*QFIContainerInformation, bool)

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

func (*MultipleQFIcontainer) GetTime

func (o *MultipleQFIcontainer) GetTime() int32

GetTime returns the Time field value if set, zero value otherwise.

func (*MultipleQFIcontainer) GetTimeOk

func (o *MultipleQFIcontainer) GetTimeOk() (*int32, bool)

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

func (*MultipleQFIcontainer) GetTotalVolume

func (o *MultipleQFIcontainer) GetTotalVolume() int32

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*MultipleQFIcontainer) GetTotalVolumeOk

func (o *MultipleQFIcontainer) GetTotalVolumeOk() (*int32, 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 (*MultipleQFIcontainer) GetTriggerTimestamp

func (o *MultipleQFIcontainer) GetTriggerTimestamp() time.Time

GetTriggerTimestamp returns the TriggerTimestamp field value if set, zero value otherwise.

func (*MultipleQFIcontainer) GetTriggerTimestampOk

func (o *MultipleQFIcontainer) GetTriggerTimestampOk() (*time.Time, bool)

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

func (*MultipleQFIcontainer) GetTriggers

func (o *MultipleQFIcontainer) GetTriggers() []Trigger

GetTriggers returns the Triggers field value if set, zero value otherwise.

func (*MultipleQFIcontainer) GetTriggersOk

func (o *MultipleQFIcontainer) GetTriggersOk() ([]Trigger, bool)

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

func (*MultipleQFIcontainer) GetUplinkVolume

func (o *MultipleQFIcontainer) GetUplinkVolume() int32

GetUplinkVolume returns the UplinkVolume field value if set, zero value otherwise.

func (*MultipleQFIcontainer) GetUplinkVolumeOk

func (o *MultipleQFIcontainer) GetUplinkVolumeOk() (*int32, 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 (*MultipleQFIcontainer) HasQFIContainerInformation

func (o *MultipleQFIcontainer) HasQFIContainerInformation() bool

HasQFIContainerInformation returns a boolean if a field has been set.

func (*MultipleQFIcontainer) HasTime

func (o *MultipleQFIcontainer) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*MultipleQFIcontainer) HasTotalVolume

func (o *MultipleQFIcontainer) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*MultipleQFIcontainer) HasTriggerTimestamp

func (o *MultipleQFIcontainer) HasTriggerTimestamp() bool

HasTriggerTimestamp returns a boolean if a field has been set.

func (*MultipleQFIcontainer) HasTriggers

func (o *MultipleQFIcontainer) HasTriggers() bool

HasTriggers returns a boolean if a field has been set.

func (*MultipleQFIcontainer) HasUplinkVolume

func (o *MultipleQFIcontainer) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (MultipleQFIcontainer) MarshalJSON

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

func (*MultipleQFIcontainer) SetLocalSequenceNumber

func (o *MultipleQFIcontainer) SetLocalSequenceNumber(v int32)

SetLocalSequenceNumber sets field value

func (*MultipleQFIcontainer) SetQFIContainerInformation

func (o *MultipleQFIcontainer) SetQFIContainerInformation(v QFIContainerInformation)

SetQFIContainerInformation gets a reference to the given QFIContainerInformation and assigns it to the QFIContainerInformation field.

func (*MultipleQFIcontainer) SetTime

func (o *MultipleQFIcontainer) SetTime(v int32)

SetTime gets a reference to the given int32 and assigns it to the Time field.

func (*MultipleQFIcontainer) SetTotalVolume

func (o *MultipleQFIcontainer) SetTotalVolume(v int32)

SetTotalVolume gets a reference to the given int32 and assigns it to the TotalVolume field.

func (*MultipleQFIcontainer) SetTriggerTimestamp

func (o *MultipleQFIcontainer) SetTriggerTimestamp(v time.Time)

SetTriggerTimestamp gets a reference to the given time.Time and assigns it to the TriggerTimestamp field.

func (*MultipleQFIcontainer) SetTriggers

func (o *MultipleQFIcontainer) SetTriggers(v []Trigger)

SetTriggers gets a reference to the given []Trigger and assigns it to the Triggers field.

func (*MultipleQFIcontainer) SetUplinkVolume

func (o *MultipleQFIcontainer) SetUplinkVolume(v int32)

SetUplinkVolume gets a reference to the given int32 and assigns it to the UplinkVolume field.

func (MultipleQFIcontainer) ToMap

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

type MultipleUnitUsage

type MultipleUnitUsage struct {
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	RatingGroup       int32               `json:"ratingGroup"`
	UsedUnitContainer []UsedUnitContainer `json:"usedUnitContainer,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.
	UPFID                *string     `json:"uPFID,omitempty"`
	MultihomedPDUAddress *PDUAddress `json:"multihomedPDUAddress,omitempty"`
}

MultipleUnitUsage struct for MultipleUnitUsage

func NewMultipleUnitUsage

func NewMultipleUnitUsage(ratingGroup int32) *MultipleUnitUsage

NewMultipleUnitUsage instantiates a new MultipleUnitUsage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMultipleUnitUsageWithDefaults

func NewMultipleUnitUsageWithDefaults() *MultipleUnitUsage

NewMultipleUnitUsageWithDefaults instantiates a new MultipleUnitUsage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MultipleUnitUsage) GetMultihomedPDUAddress

func (o *MultipleUnitUsage) GetMultihomedPDUAddress() PDUAddress

GetMultihomedPDUAddress returns the MultihomedPDUAddress field value if set, zero value otherwise.

func (*MultipleUnitUsage) GetMultihomedPDUAddressOk

func (o *MultipleUnitUsage) GetMultihomedPDUAddressOk() (*PDUAddress, bool)

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

func (*MultipleUnitUsage) GetRatingGroup

func (o *MultipleUnitUsage) GetRatingGroup() int32

GetRatingGroup returns the RatingGroup field value

func (*MultipleUnitUsage) GetRatingGroupOk

func (o *MultipleUnitUsage) GetRatingGroupOk() (*int32, bool)

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

func (*MultipleUnitUsage) GetUPFID

func (o *MultipleUnitUsage) GetUPFID() string

GetUPFID returns the UPFID field value if set, zero value otherwise.

func (*MultipleUnitUsage) GetUPFIDOk

func (o *MultipleUnitUsage) 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 (*MultipleUnitUsage) GetUsedUnitContainer

func (o *MultipleUnitUsage) GetUsedUnitContainer() []UsedUnitContainer

GetUsedUnitContainer returns the UsedUnitContainer field value if set, zero value otherwise.

func (*MultipleUnitUsage) GetUsedUnitContainerOk

func (o *MultipleUnitUsage) GetUsedUnitContainerOk() ([]UsedUnitContainer, bool)

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

func (*MultipleUnitUsage) HasMultihomedPDUAddress

func (o *MultipleUnitUsage) HasMultihomedPDUAddress() bool

HasMultihomedPDUAddress returns a boolean if a field has been set.

func (*MultipleUnitUsage) HasUPFID

func (o *MultipleUnitUsage) HasUPFID() bool

HasUPFID returns a boolean if a field has been set.

func (*MultipleUnitUsage) HasUsedUnitContainer

func (o *MultipleUnitUsage) HasUsedUnitContainer() bool

HasUsedUnitContainer returns a boolean if a field has been set.

func (MultipleUnitUsage) MarshalJSON

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

func (*MultipleUnitUsage) SetMultihomedPDUAddress

func (o *MultipleUnitUsage) SetMultihomedPDUAddress(v PDUAddress)

SetMultihomedPDUAddress gets a reference to the given PDUAddress and assigns it to the MultihomedPDUAddress field.

func (*MultipleUnitUsage) SetRatingGroup

func (o *MultipleUnitUsage) SetRatingGroup(v int32)

SetRatingGroup sets field value

func (*MultipleUnitUsage) SetUPFID

func (o *MultipleUnitUsage) SetUPFID(v string)

SetUPFID gets a reference to the given string and assigns it to the UPFID field.

func (*MultipleUnitUsage) SetUsedUnitContainer

func (o *MultipleUnitUsage) SetUsedUnitContainer(v []UsedUnitContainer)

SetUsedUnitContainer gets a reference to the given []UsedUnitContainer and assigns it to the UsedUnitContainer field.

func (MultipleUnitUsage) ToMap

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

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   *TransportProtocol `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() TransportProtocol

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*N3gaLocation) GetProtocolOk

func (o *N3gaLocation) GetProtocolOk() (*TransportProtocol, 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 TransportProtocol)

SetProtocol gets a reference to the given TransportProtocol 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 NFIdentification

type NFIdentification 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.
	NFName *string `json:"nFName,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	NFIPv4Address     *string           `json:"nFIPv4Address,omitempty"`
	NFIPv6Address     *Ipv6Addr         `json:"nFIPv6Address,omitempty"`
	NFPLMNID          *PlmnId           `json:"nFPLMNID,omitempty"`
	NodeFunctionality NodeFunctionality `json:"nodeFunctionality"`
	NFFqdn            *string           `json:"nFFqdn,omitempty"`
}

NFIdentification struct for NFIdentification

func NewNFIdentification

func NewNFIdentification(nodeFunctionality NodeFunctionality) *NFIdentification

NewNFIdentification instantiates a new NFIdentification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewNFIdentificationWithDefaults

func NewNFIdentificationWithDefaults() *NFIdentification

NewNFIdentificationWithDefaults instantiates a new NFIdentification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*NFIdentification) GetNFFqdn

func (o *NFIdentification) GetNFFqdn() string

GetNFFqdn returns the NFFqdn field value if set, zero value otherwise.

func (*NFIdentification) GetNFFqdnOk

func (o *NFIdentification) GetNFFqdnOk() (*string, bool)

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

func (*NFIdentification) GetNFIPv4Address

func (o *NFIdentification) GetNFIPv4Address() string

GetNFIPv4Address returns the NFIPv4Address field value if set, zero value otherwise.

func (*NFIdentification) GetNFIPv4AddressOk

func (o *NFIdentification) GetNFIPv4AddressOk() (*string, bool)

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

func (*NFIdentification) GetNFIPv6Address

func (o *NFIdentification) GetNFIPv6Address() Ipv6Addr

GetNFIPv6Address returns the NFIPv6Address field value if set, zero value otherwise.

func (*NFIdentification) GetNFIPv6AddressOk

func (o *NFIdentification) GetNFIPv6AddressOk() (*Ipv6Addr, bool)

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

func (*NFIdentification) GetNFName

func (o *NFIdentification) GetNFName() string

GetNFName returns the NFName field value if set, zero value otherwise.

func (*NFIdentification) GetNFNameOk

func (o *NFIdentification) GetNFNameOk() (*string, bool)

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

func (*NFIdentification) GetNFPLMNID

func (o *NFIdentification) GetNFPLMNID() PlmnId

GetNFPLMNID returns the NFPLMNID field value if set, zero value otherwise.

func (*NFIdentification) GetNFPLMNIDOk

func (o *NFIdentification) GetNFPLMNIDOk() (*PlmnId, bool)

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

func (*NFIdentification) GetNodeFunctionality

func (o *NFIdentification) GetNodeFunctionality() NodeFunctionality

GetNodeFunctionality returns the NodeFunctionality field value

func (*NFIdentification) GetNodeFunctionalityOk

func (o *NFIdentification) GetNodeFunctionalityOk() (*NodeFunctionality, bool)

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

func (*NFIdentification) HasNFFqdn

func (o *NFIdentification) HasNFFqdn() bool

HasNFFqdn returns a boolean if a field has been set.

func (*NFIdentification) HasNFIPv4Address

func (o *NFIdentification) HasNFIPv4Address() bool

HasNFIPv4Address returns a boolean if a field has been set.

func (*NFIdentification) HasNFIPv6Address

func (o *NFIdentification) HasNFIPv6Address() bool

HasNFIPv6Address returns a boolean if a field has been set.

func (*NFIdentification) HasNFName

func (o *NFIdentification) HasNFName() bool

HasNFName returns a boolean if a field has been set.

func (*NFIdentification) HasNFPLMNID

func (o *NFIdentification) HasNFPLMNID() bool

HasNFPLMNID returns a boolean if a field has been set.

func (NFIdentification) MarshalJSON

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

func (*NFIdentification) SetNFFqdn

func (o *NFIdentification) SetNFFqdn(v string)

SetNFFqdn gets a reference to the given string and assigns it to the NFFqdn field.

func (*NFIdentification) SetNFIPv4Address

func (o *NFIdentification) SetNFIPv4Address(v string)

SetNFIPv4Address gets a reference to the given string and assigns it to the NFIPv4Address field.

func (*NFIdentification) SetNFIPv6Address

func (o *NFIdentification) SetNFIPv6Address(v Ipv6Addr)

SetNFIPv6Address gets a reference to the given Ipv6Addr and assigns it to the NFIPv6Address field.

func (*NFIdentification) SetNFName

func (o *NFIdentification) SetNFName(v string)

SetNFName gets a reference to the given string and assigns it to the NFName field.

func (*NFIdentification) SetNFPLMNID

func (o *NFIdentification) SetNFPLMNID(v PlmnId)

SetNFPLMNID gets a reference to the given PlmnId and assigns it to the NFPLMNID field.

func (*NFIdentification) SetNodeFunctionality

func (o *NFIdentification) SetNodeFunctionality(v NodeFunctionality)

SetNodeFunctionality sets field value

func (NFIdentification) ToMap

func (o NFIdentification) 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 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 NetworkSlicingInfo

type NetworkSlicingInfo struct {
	SNSSAI Snssai `json:"sNSSAI"`
}

NetworkSlicingInfo struct for NetworkSlicingInfo

func NewNetworkSlicingInfo

func NewNetworkSlicingInfo(sNSSAI Snssai) *NetworkSlicingInfo

NewNetworkSlicingInfo instantiates a new NetworkSlicingInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewNetworkSlicingInfoWithDefaults

func NewNetworkSlicingInfoWithDefaults() *NetworkSlicingInfo

NewNetworkSlicingInfoWithDefaults instantiates a new NetworkSlicingInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*NetworkSlicingInfo) GetSNSSAI

func (o *NetworkSlicingInfo) GetSNSSAI() Snssai

GetSNSSAI returns the SNSSAI field value

func (*NetworkSlicingInfo) GetSNSSAIOk

func (o *NetworkSlicingInfo) GetSNSSAIOk() (*Snssai, bool)

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

func (NetworkSlicingInfo) MarshalJSON

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

func (*NetworkSlicingInfo) SetSNSSAI

func (o *NetworkSlicingInfo) SetSNSSAI(v Snssai)

SetSNSSAI sets field value

func (NetworkSlicingInfo) ToMap

func (o NetworkSlicingInfo) 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 NodeFunctionality

type NodeFunctionality struct {
	String *string
}

NodeFunctionality struct for NodeFunctionality

func (*NodeFunctionality) MarshalJSON

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

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

func (*NodeFunctionality) UnmarshalJSON

func (dst *NodeFunctionality) 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 NullValue

type NullValue string

NullValue JSON's null value.

const (
	NULL NullValue = "null"
)

List of NullValue

func NewNullValueFromValue

func NewNullValueFromValue(v string) (*NullValue, error)

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

func (NullValue) IsValid

func (v NullValue) IsValid() bool

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

func (NullValue) Ptr

func (v NullValue) Ptr() *NullValue

Ptr returns reference to NullValue value

func (*NullValue) UnmarshalJSON

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

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 NullableAccessTypeRm

type NullableAccessTypeRm struct {
	// contains filtered or unexported fields
}

func NewNullableAccessTypeRm

func NewNullableAccessTypeRm(val *AccessTypeRm) *NullableAccessTypeRm

func (NullableAccessTypeRm) Get

func (NullableAccessTypeRm) IsSet

func (v NullableAccessTypeRm) IsSet() bool

func (NullableAccessTypeRm) MarshalJSON

func (v NullableAccessTypeRm) MarshalJSON() ([]byte, error)

func (*NullableAccessTypeRm) Set

func (v *NullableAccessTypeRm) Set(val *AccessTypeRm)

func (*NullableAccessTypeRm) UnmarshalJSON

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

func (*NullableAccessTypeRm) Unset

func (v *NullableAccessTypeRm) Unset()

type NullableAmbr

type NullableAmbr struct {
	// contains filtered or unexported fields
}

func NewNullableAmbr

func NewNullableAmbr(val *Ambr) *NullableAmbr

func (NullableAmbr) Get

func (v NullableAmbr) Get() *Ambr

func (NullableAmbr) IsSet

func (v NullableAmbr) IsSet() bool

func (NullableAmbr) MarshalJSON

func (v NullableAmbr) MarshalJSON() ([]byte, error)

func (*NullableAmbr) Set

func (v *NullableAmbr) Set(val *Ambr)

func (*NullableAmbr) UnmarshalJSON

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

func (*NullableAmbr) Unset

func (v *NullableAmbr) Unset()

type NullableArp

type NullableArp struct {
	// contains filtered or unexported fields
}

func NewNullableArp

func NewNullableArp(val *Arp) *NullableArp

func (NullableArp) Get

func (v NullableArp) Get() *Arp

func (NullableArp) IsSet

func (v NullableArp) IsSet() bool

func (NullableArp) MarshalJSON

func (v NullableArp) MarshalJSON() ([]byte, error)

func (*NullableArp) Set

func (v *NullableArp) Set(val *Arp)

func (*NullableArp) UnmarshalJSON

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

func (*NullableArp) Unset

func (v *NullableArp) 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 NullableAuthorizedDefaultQos

type NullableAuthorizedDefaultQos struct {
	// contains filtered or unexported fields
}

func NewNullableAuthorizedDefaultQos

func NewNullableAuthorizedDefaultQos(val *AuthorizedDefaultQos) *NullableAuthorizedDefaultQos

func (NullableAuthorizedDefaultQos) Get

func (NullableAuthorizedDefaultQos) IsSet

func (NullableAuthorizedDefaultQos) MarshalJSON

func (v NullableAuthorizedDefaultQos) MarshalJSON() ([]byte, error)

func (*NullableAuthorizedDefaultQos) Set

func (*NullableAuthorizedDefaultQos) UnmarshalJSON

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

func (*NullableAuthorizedDefaultQos) Unset

func (v *NullableAuthorizedDefaultQos) 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 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 NullableChargingCharacteristicsSelectionMode

type NullableChargingCharacteristicsSelectionMode struct {
	// contains filtered or unexported fields
}

func (NullableChargingCharacteristicsSelectionMode) Get

func (NullableChargingCharacteristicsSelectionMode) IsSet

func (NullableChargingCharacteristicsSelectionMode) MarshalJSON

func (*NullableChargingCharacteristicsSelectionMode) Set

func (*NullableChargingCharacteristicsSelectionMode) UnmarshalJSON

func (*NullableChargingCharacteristicsSelectionMode) Unset

type NullableChargingDataRequest

type NullableChargingDataRequest struct {
	// contains filtered or unexported fields
}

func NewNullableChargingDataRequest

func NewNullableChargingDataRequest(val *ChargingDataRequest) *NullableChargingDataRequest

func (NullableChargingDataRequest) Get

func (NullableChargingDataRequest) IsSet

func (NullableChargingDataRequest) MarshalJSON

func (v NullableChargingDataRequest) MarshalJSON() ([]byte, error)

func (*NullableChargingDataRequest) Set

func (*NullableChargingDataRequest) UnmarshalJSON

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

func (*NullableChargingDataRequest) Unset

func (v *NullableChargingDataRequest) Unset()

type NullableChargingDataResponse

type NullableChargingDataResponse struct {
	// contains filtered or unexported fields
}

func NewNullableChargingDataResponse

func NewNullableChargingDataResponse(val *ChargingDataResponse) *NullableChargingDataResponse

func (NullableChargingDataResponse) Get

func (NullableChargingDataResponse) IsSet

func (NullableChargingDataResponse) MarshalJSON

func (v NullableChargingDataResponse) MarshalJSON() ([]byte, error)

func (*NullableChargingDataResponse) Set

func (*NullableChargingDataResponse) UnmarshalJSON

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

func (*NullableChargingDataResponse) Unset

func (v *NullableChargingDataResponse) 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 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 NullableFailureHandling

type NullableFailureHandling struct {
	// contains filtered or unexported fields
}

func NewNullableFailureHandling

func NewNullableFailureHandling(val *FailureHandling) *NullableFailureHandling

func (NullableFailureHandling) Get

func (NullableFailureHandling) IsSet

func (v NullableFailureHandling) IsSet() bool

func (NullableFailureHandling) MarshalJSON

func (v NullableFailureHandling) MarshalJSON() ([]byte, error)

func (*NullableFailureHandling) Set

func (*NullableFailureHandling) UnmarshalJSON

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

func (*NullableFailureHandling) Unset

func (v *NullableFailureHandling) 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 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 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 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 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 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 NullableInvocationResult

type NullableInvocationResult struct {
	// contains filtered or unexported fields
}

func NewNullableInvocationResult

func NewNullableInvocationResult(val *InvocationResult) *NullableInvocationResult

func (NullableInvocationResult) Get

func (NullableInvocationResult) IsSet

func (v NullableInvocationResult) IsSet() bool

func (NullableInvocationResult) MarshalJSON

func (v NullableInvocationResult) MarshalJSON() ([]byte, error)

func (*NullableInvocationResult) Set

func (*NullableInvocationResult) UnmarshalJSON

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

func (*NullableInvocationResult) Unset

func (v *NullableInvocationResult) 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 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 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 NullableMAPDUSessionInformation

type NullableMAPDUSessionInformation struct {
	// contains filtered or unexported fields
}

func (NullableMAPDUSessionInformation) Get

func (NullableMAPDUSessionInformation) IsSet

func (NullableMAPDUSessionInformation) MarshalJSON

func (v NullableMAPDUSessionInformation) MarshalJSON() ([]byte, error)

func (*NullableMAPDUSessionInformation) Set

func (*NullableMAPDUSessionInformation) UnmarshalJSON

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

func (*NullableMAPDUSessionInformation) Unset

type NullableMaPduIndication

type NullableMaPduIndication struct {
	// contains filtered or unexported fields
}

func NewNullableMaPduIndication

func NewNullableMaPduIndication(val *MaPduIndication) *NullableMaPduIndication

func (NullableMaPduIndication) Get

func (NullableMaPduIndication) IsSet

func (v NullableMaPduIndication) IsSet() bool

func (NullableMaPduIndication) MarshalJSON

func (v NullableMaPduIndication) MarshalJSON() ([]byte, error)

func (*NullableMaPduIndication) Set

func (*NullableMaPduIndication) UnmarshalJSON

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

func (*NullableMaPduIndication) Unset

func (v *NullableMaPduIndication) Unset()

type NullableModel3GPPPSDataOffStatus

type NullableModel3GPPPSDataOffStatus struct {
	// contains filtered or unexported fields
}

func (NullableModel3GPPPSDataOffStatus) Get

func (NullableModel3GPPPSDataOffStatus) IsSet

func (NullableModel3GPPPSDataOffStatus) MarshalJSON

func (v NullableModel3GPPPSDataOffStatus) MarshalJSON() ([]byte, error)

func (*NullableModel3GPPPSDataOffStatus) Set

func (*NullableModel3GPPPSDataOffStatus) UnmarshalJSON

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

func (*NullableModel3GPPPSDataOffStatus) Unset

type NullableMultipleQFIcontainer

type NullableMultipleQFIcontainer struct {
	// contains filtered or unexported fields
}

func NewNullableMultipleQFIcontainer

func NewNullableMultipleQFIcontainer(val *MultipleQFIcontainer) *NullableMultipleQFIcontainer

func (NullableMultipleQFIcontainer) Get

func (NullableMultipleQFIcontainer) IsSet

func (NullableMultipleQFIcontainer) MarshalJSON

func (v NullableMultipleQFIcontainer) MarshalJSON() ([]byte, error)

func (*NullableMultipleQFIcontainer) Set

func (*NullableMultipleQFIcontainer) UnmarshalJSON

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

func (*NullableMultipleQFIcontainer) Unset

func (v *NullableMultipleQFIcontainer) Unset()

type NullableMultipleUnitUsage

type NullableMultipleUnitUsage struct {
	// contains filtered or unexported fields
}

func NewNullableMultipleUnitUsage

func NewNullableMultipleUnitUsage(val *MultipleUnitUsage) *NullableMultipleUnitUsage

func (NullableMultipleUnitUsage) Get

func (NullableMultipleUnitUsage) IsSet

func (v NullableMultipleUnitUsage) IsSet() bool

func (NullableMultipleUnitUsage) MarshalJSON

func (v NullableMultipleUnitUsage) MarshalJSON() ([]byte, error)

func (*NullableMultipleUnitUsage) Set

func (*NullableMultipleUnitUsage) UnmarshalJSON

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

func (*NullableMultipleUnitUsage) Unset

func (v *NullableMultipleUnitUsage) 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 NullableNFIdentification

type NullableNFIdentification struct {
	// contains filtered or unexported fields
}

func NewNullableNFIdentification

func NewNullableNFIdentification(val *NFIdentification) *NullableNFIdentification

func (NullableNFIdentification) Get

func (NullableNFIdentification) IsSet

func (v NullableNFIdentification) IsSet() bool

func (NullableNFIdentification) MarshalJSON

func (v NullableNFIdentification) MarshalJSON() ([]byte, error)

func (*NullableNFIdentification) Set

func (*NullableNFIdentification) UnmarshalJSON

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

func (*NullableNFIdentification) Unset

func (v *NullableNFIdentification) 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 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 NullableNetworkSlicingInfo

type NullableNetworkSlicingInfo struct {
	// contains filtered or unexported fields
}

func NewNullableNetworkSlicingInfo

func NewNullableNetworkSlicingInfo(val *NetworkSlicingInfo) *NullableNetworkSlicingInfo

func (NullableNetworkSlicingInfo) Get

func (NullableNetworkSlicingInfo) IsSet

func (v NullableNetworkSlicingInfo) IsSet() bool

func (NullableNetworkSlicingInfo) MarshalJSON

func (v NullableNetworkSlicingInfo) MarshalJSON() ([]byte, error)

func (*NullableNetworkSlicingInfo) Set

func (*NullableNetworkSlicingInfo) UnmarshalJSON

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

func (*NullableNetworkSlicingInfo) Unset

func (v *NullableNetworkSlicingInfo) 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 NullableNodeFunctionality

type NullableNodeFunctionality struct {
	// contains filtered or unexported fields
}

func NewNullableNodeFunctionality

func NewNullableNodeFunctionality(val *NodeFunctionality) *NullableNodeFunctionality

func (NullableNodeFunctionality) Get

func (NullableNodeFunctionality) IsSet

func (v NullableNodeFunctionality) IsSet() bool

func (NullableNodeFunctionality) MarshalJSON

func (v NullableNodeFunctionality) MarshalJSON() ([]byte, error)

func (*NullableNodeFunctionality) Set

func (*NullableNodeFunctionality) UnmarshalJSON

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

func (*NullableNodeFunctionality) Unset

func (v *NullableNodeFunctionality) 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 NullableNullValue

type NullableNullValue struct {
	// contains filtered or unexported fields
}

func NewNullableNullValue

func NewNullableNullValue(val *NullValue) *NullableNullValue

func (NullableNullValue) Get

func (v NullableNullValue) Get() *NullValue

func (NullableNullValue) IsSet

func (v NullableNullValue) IsSet() bool

func (NullableNullValue) MarshalJSON

func (v NullableNullValue) MarshalJSON() ([]byte, error)

func (*NullableNullValue) Set

func (v *NullableNullValue) Set(val *NullValue)

func (*NullableNullValue) UnmarshalJSON

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

func (*NullableNullValue) Unset

func (v *NullableNullValue) Unset()

type NullablePDUAddress

type NullablePDUAddress struct {
	// contains filtered or unexported fields
}

func NewNullablePDUAddress

func NewNullablePDUAddress(val *PDUAddress) *NullablePDUAddress

func (NullablePDUAddress) Get

func (v NullablePDUAddress) Get() *PDUAddress

func (NullablePDUAddress) IsSet

func (v NullablePDUAddress) IsSet() bool

func (NullablePDUAddress) MarshalJSON

func (v NullablePDUAddress) MarshalJSON() ([]byte, error)

func (*NullablePDUAddress) Set

func (v *NullablePDUAddress) Set(val *PDUAddress)

func (*NullablePDUAddress) UnmarshalJSON

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

func (*NullablePDUAddress) Unset

func (v *NullablePDUAddress) Unset()

type NullablePDUContainerInformation

type NullablePDUContainerInformation struct {
	// contains filtered or unexported fields
}

func (NullablePDUContainerInformation) Get

func (NullablePDUContainerInformation) IsSet

func (NullablePDUContainerInformation) MarshalJSON

func (v NullablePDUContainerInformation) MarshalJSON() ([]byte, error)

func (*NullablePDUContainerInformation) Set

func (*NullablePDUContainerInformation) UnmarshalJSON

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

func (*NullablePDUContainerInformation) Unset

type NullablePDUSessionChargingInformation

type NullablePDUSessionChargingInformation struct {
	// contains filtered or unexported fields
}

func (NullablePDUSessionChargingInformation) Get

func (NullablePDUSessionChargingInformation) IsSet

func (NullablePDUSessionChargingInformation) MarshalJSON

func (v NullablePDUSessionChargingInformation) MarshalJSON() ([]byte, error)

func (*NullablePDUSessionChargingInformation) Set

func (*NullablePDUSessionChargingInformation) UnmarshalJSON

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

func (*NullablePDUSessionChargingInformation) 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 NullablePartialRecordMethod

type NullablePartialRecordMethod struct {
	// contains filtered or unexported fields
}

func NewNullablePartialRecordMethod

func NewNullablePartialRecordMethod(val *PartialRecordMethod) *NullablePartialRecordMethod

func (NullablePartialRecordMethod) Get

func (NullablePartialRecordMethod) IsSet

func (NullablePartialRecordMethod) MarshalJSON

func (v NullablePartialRecordMethod) MarshalJSON() ([]byte, error)

func (*NullablePartialRecordMethod) Set

func (*NullablePartialRecordMethod) UnmarshalJSON

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

func (*NullablePartialRecordMethod) Unset

func (v *NullablePartialRecordMethod) 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 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 NullablePreemptionCapability

type NullablePreemptionCapability struct {
	// contains filtered or unexported fields
}

func NewNullablePreemptionCapability

func NewNullablePreemptionCapability(val *PreemptionCapability) *NullablePreemptionCapability

func (NullablePreemptionCapability) Get

func (NullablePreemptionCapability) IsSet

func (NullablePreemptionCapability) MarshalJSON

func (v NullablePreemptionCapability) MarshalJSON() ([]byte, error)

func (*NullablePreemptionCapability) Set

func (*NullablePreemptionCapability) UnmarshalJSON

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

func (*NullablePreemptionCapability) Unset

func (v *NullablePreemptionCapability) Unset()

type NullablePreemptionVulnerability

type NullablePreemptionVulnerability struct {
	// contains filtered or unexported fields
}

func (NullablePreemptionVulnerability) Get

func (NullablePreemptionVulnerability) IsSet

func (NullablePreemptionVulnerability) MarshalJSON

func (v NullablePreemptionVulnerability) MarshalJSON() ([]byte, error)

func (*NullablePreemptionVulnerability) Set

func (*NullablePreemptionVulnerability) UnmarshalJSON

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

func (*NullablePreemptionVulnerability) 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 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 NullableQFIContainerInformation

type NullableQFIContainerInformation struct {
	// contains filtered or unexported fields
}

func (NullableQFIContainerInformation) Get

func (NullableQFIContainerInformation) IsSet

func (NullableQFIContainerInformation) MarshalJSON

func (v NullableQFIContainerInformation) MarshalJSON() ([]byte, error)

func (*NullableQFIContainerInformation) Set

func (*NullableQFIContainerInformation) UnmarshalJSON

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

func (*NullableQFIContainerInformation) Unset

type NullableQosCharacteristics

type NullableQosCharacteristics struct {
	// contains filtered or unexported fields
}

func NewNullableQosCharacteristics

func NewNullableQosCharacteristics(val *QosCharacteristics) *NullableQosCharacteristics

func (NullableQosCharacteristics) Get

func (NullableQosCharacteristics) IsSet

func (v NullableQosCharacteristics) IsSet() bool

func (NullableQosCharacteristics) MarshalJSON

func (v NullableQosCharacteristics) MarshalJSON() ([]byte, error)

func (*NullableQosCharacteristics) Set

func (*NullableQosCharacteristics) UnmarshalJSON

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

func (*NullableQosCharacteristics) Unset

func (v *NullableQosCharacteristics) Unset()

type NullableQosData

type NullableQosData struct {
	// contains filtered or unexported fields
}

func NewNullableQosData

func NewNullableQosData(val *QosData) *NullableQosData

func (NullableQosData) Get

func (v NullableQosData) Get() *QosData

func (NullableQosData) IsSet

func (v NullableQosData) IsSet() bool

func (NullableQosData) MarshalJSON

func (v NullableQosData) MarshalJSON() ([]byte, error)

func (*NullableQosData) Set

func (v *NullableQosData) Set(val *QosData)

func (*NullableQosData) UnmarshalJSON

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

func (*NullableQosData) Unset

func (v *NullableQosData) Unset()

type NullableQosFlowsUsageReport

type NullableQosFlowsUsageReport struct {
	// contains filtered or unexported fields
}

func NewNullableQosFlowsUsageReport

func NewNullableQosFlowsUsageReport(val *QosFlowsUsageReport) *NullableQosFlowsUsageReport

func (NullableQosFlowsUsageReport) Get

func (NullableQosFlowsUsageReport) IsSet

func (NullableQosFlowsUsageReport) MarshalJSON

func (v NullableQosFlowsUsageReport) MarshalJSON() ([]byte, error)

func (*NullableQosFlowsUsageReport) Set

func (*NullableQosFlowsUsageReport) UnmarshalJSON

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

func (*NullableQosFlowsUsageReport) Unset

func (v *NullableQosFlowsUsageReport) 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 NullableRANSecondaryRATUsageReport

type NullableRANSecondaryRATUsageReport struct {
	// contains filtered or unexported fields
}

func (NullableRANSecondaryRATUsageReport) Get

func (NullableRANSecondaryRATUsageReport) IsSet

func (NullableRANSecondaryRATUsageReport) MarshalJSON

func (v NullableRANSecondaryRATUsageReport) MarshalJSON() ([]byte, error)

func (*NullableRANSecondaryRATUsageReport) Set

func (*NullableRANSecondaryRATUsageReport) UnmarshalJSON

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

func (*NullableRANSecondaryRATUsageReport) Unset

type NullableRanNasRelCause

type NullableRanNasRelCause struct {
	// contains filtered or unexported fields
}

func NewNullableRanNasRelCause

func NewNullableRanNasRelCause(val *RanNasRelCause) *NullableRanNasRelCause

func (NullableRanNasRelCause) Get

func (NullableRanNasRelCause) IsSet

func (v NullableRanNasRelCause) IsSet() bool

func (NullableRanNasRelCause) MarshalJSON

func (v NullableRanNasRelCause) MarshalJSON() ([]byte, error)

func (*NullableRanNasRelCause) Set

func (*NullableRanNasRelCause) UnmarshalJSON

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

func (*NullableRanNasRelCause) Unset

func (v *NullableRanNasRelCause) 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 NullableResultCode

type NullableResultCode struct {
	// contains filtered or unexported fields
}

func NewNullableResultCode

func NewNullableResultCode(val *ResultCode) *NullableResultCode

func (NullableResultCode) Get

func (v NullableResultCode) Get() *ResultCode

func (NullableResultCode) IsSet

func (v NullableResultCode) IsSet() bool

func (NullableResultCode) MarshalJSON

func (v NullableResultCode) MarshalJSON() ([]byte, error)

func (*NullableResultCode) Set

func (v *NullableResultCode) Set(val *ResultCode)

func (*NullableResultCode) UnmarshalJSON

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

func (*NullableResultCode) Unset

func (v *NullableResultCode) Unset()

type NullableRoamerInOut

type NullableRoamerInOut struct {
	// contains filtered or unexported fields
}

func NewNullableRoamerInOut

func NewNullableRoamerInOut(val *RoamerInOut) *NullableRoamerInOut

func (NullableRoamerInOut) Get

func (NullableRoamerInOut) IsSet

func (v NullableRoamerInOut) IsSet() bool

func (NullableRoamerInOut) MarshalJSON

func (v NullableRoamerInOut) MarshalJSON() ([]byte, error)

func (*NullableRoamerInOut) Set

func (v *NullableRoamerInOut) Set(val *RoamerInOut)

func (*NullableRoamerInOut) UnmarshalJSON

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

func (*NullableRoamerInOut) Unset

func (v *NullableRoamerInOut) Unset()

type NullableRoamingChargingProfile

type NullableRoamingChargingProfile struct {
	// contains filtered or unexported fields
}

func (NullableRoamingChargingProfile) Get

func (NullableRoamingChargingProfile) IsSet

func (NullableRoamingChargingProfile) MarshalJSON

func (v NullableRoamingChargingProfile) MarshalJSON() ([]byte, error)

func (*NullableRoamingChargingProfile) Set

func (*NullableRoamingChargingProfile) UnmarshalJSON

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

func (*NullableRoamingChargingProfile) Unset

func (v *NullableRoamingChargingProfile) Unset()

type NullableRoamingQBCInformation

type NullableRoamingQBCInformation struct {
	// contains filtered or unexported fields
}

func (NullableRoamingQBCInformation) Get

func (NullableRoamingQBCInformation) IsSet

func (NullableRoamingQBCInformation) MarshalJSON

func (v NullableRoamingQBCInformation) MarshalJSON() ([]byte, error)

func (*NullableRoamingQBCInformation) Set

func (*NullableRoamingQBCInformation) UnmarshalJSON

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

func (*NullableRoamingQBCInformation) Unset

func (v *NullableRoamingQBCInformation) 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 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 NullableServingNetworkFunctionID

type NullableServingNetworkFunctionID struct {
	// contains filtered or unexported fields
}

func (NullableServingNetworkFunctionID) Get

func (NullableServingNetworkFunctionID) IsSet

func (NullableServingNetworkFunctionID) MarshalJSON

func (v NullableServingNetworkFunctionID) MarshalJSON() ([]byte, error)

func (*NullableServingNetworkFunctionID) Set

func (*NullableServingNetworkFunctionID) UnmarshalJSON

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

func (*NullableServingNetworkFunctionID) Unset

type NullableSessionFailover

type NullableSessionFailover struct {
	// contains filtered or unexported fields
}

func NewNullableSessionFailover

func NewNullableSessionFailover(val *SessionFailover) *NullableSessionFailover

func (NullableSessionFailover) Get

func (NullableSessionFailover) IsSet

func (v NullableSessionFailover) IsSet() bool

func (NullableSessionFailover) MarshalJSON

func (v NullableSessionFailover) MarshalJSON() ([]byte, error)

func (*NullableSessionFailover) Set

func (*NullableSessionFailover) UnmarshalJSON

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

func (*NullableSessionFailover) Unset

func (v *NullableSessionFailover) 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 NullableSscMode

type NullableSscMode struct {
	// contains filtered or unexported fields
}

func NewNullableSscMode

func NewNullableSscMode(val *SscMode) *NullableSscMode

func (NullableSscMode) Get

func (v NullableSscMode) Get() *SscMode

func (NullableSscMode) IsSet

func (v NullableSscMode) IsSet() bool

func (NullableSscMode) MarshalJSON

func (v NullableSscMode) MarshalJSON() ([]byte, error)

func (*NullableSscMode) Set

func (v *NullableSscMode) Set(val *SscMode)

func (*NullableSscMode) UnmarshalJSON

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

func (*NullableSscMode) Unset

func (v *NullableSscMode) Unset()

type NullableSteerModeIndicator

type NullableSteerModeIndicator struct {
	// contains filtered or unexported fields
}

func NewNullableSteerModeIndicator

func NewNullableSteerModeIndicator(val *SteerModeIndicator) *NullableSteerModeIndicator

func (NullableSteerModeIndicator) Get

func (NullableSteerModeIndicator) IsSet

func (v NullableSteerModeIndicator) IsSet() bool

func (NullableSteerModeIndicator) MarshalJSON

func (v NullableSteerModeIndicator) MarshalJSON() ([]byte, error)

func (*NullableSteerModeIndicator) Set

func (*NullableSteerModeIndicator) UnmarshalJSON

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

func (*NullableSteerModeIndicator) Unset

func (v *NullableSteerModeIndicator) Unset()

type NullableSteerModeValue

type NullableSteerModeValue struct {
	// contains filtered or unexported fields
}

func NewNullableSteerModeValue

func NewNullableSteerModeValue(val *SteerModeValue) *NullableSteerModeValue

func (NullableSteerModeValue) Get

func (NullableSteerModeValue) IsSet

func (v NullableSteerModeValue) IsSet() bool

func (NullableSteerModeValue) MarshalJSON

func (v NullableSteerModeValue) MarshalJSON() ([]byte, error)

func (*NullableSteerModeValue) Set

func (*NullableSteerModeValue) UnmarshalJSON

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

func (*NullableSteerModeValue) Unset

func (v *NullableSteerModeValue) Unset()

type NullableSteeringFunctionality

type NullableSteeringFunctionality struct {
	// contains filtered or unexported fields
}

func (NullableSteeringFunctionality) Get

func (NullableSteeringFunctionality) IsSet

func (NullableSteeringFunctionality) MarshalJSON

func (v NullableSteeringFunctionality) MarshalJSON() ([]byte, error)

func (*NullableSteeringFunctionality) Set

func (*NullableSteeringFunctionality) UnmarshalJSON

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

func (*NullableSteeringFunctionality) Unset

func (v *NullableSteeringFunctionality) Unset()

type NullableSteeringMode

type NullableSteeringMode struct {
	// contains filtered or unexported fields
}

func NewNullableSteeringMode

func NewNullableSteeringMode(val *SteeringMode) *NullableSteeringMode

func (NullableSteeringMode) Get

func (NullableSteeringMode) IsSet

func (v NullableSteeringMode) IsSet() bool

func (NullableSteeringMode) MarshalJSON

func (v NullableSteeringMode) MarshalJSON() ([]byte, error)

func (*NullableSteeringMode) Set

func (v *NullableSteeringMode) Set(val *SteeringMode)

func (*NullableSteeringMode) UnmarshalJSON

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

func (*NullableSteeringMode) Unset

func (v *NullableSteeringMode) 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 NullableSubscribedDefaultQos

type NullableSubscribedDefaultQos struct {
	// contains filtered or unexported fields
}

func NewNullableSubscribedDefaultQos

func NewNullableSubscribedDefaultQos(val *SubscribedDefaultQos) *NullableSubscribedDefaultQos

func (NullableSubscribedDefaultQos) Get

func (NullableSubscribedDefaultQos) IsSet

func (NullableSubscribedDefaultQos) MarshalJSON

func (v NullableSubscribedDefaultQos) MarshalJSON() ([]byte, error)

func (*NullableSubscribedDefaultQos) Set

func (*NullableSubscribedDefaultQos) UnmarshalJSON

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

func (*NullableSubscribedDefaultQos) Unset

func (v *NullableSubscribedDefaultQos) 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 NullableThresholdValue

type NullableThresholdValue struct {
	// contains filtered or unexported fields
}

func NewNullableThresholdValue

func NewNullableThresholdValue(val *ThresholdValue) *NullableThresholdValue

func (NullableThresholdValue) Get

func (NullableThresholdValue) IsSet

func (v NullableThresholdValue) IsSet() bool

func (NullableThresholdValue) MarshalJSON

func (v NullableThresholdValue) MarshalJSON() ([]byte, error)

func (*NullableThresholdValue) Set

func (*NullableThresholdValue) UnmarshalJSON

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

func (*NullableThresholdValue) Unset

func (v *NullableThresholdValue) 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 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 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 NullableTrigger

type NullableTrigger struct {
	// contains filtered or unexported fields
}

func NewNullableTrigger

func NewNullableTrigger(val *Trigger) *NullableTrigger

func (NullableTrigger) Get

func (v NullableTrigger) Get() *Trigger

func (NullableTrigger) IsSet

func (v NullableTrigger) IsSet() bool

func (NullableTrigger) MarshalJSON

func (v NullableTrigger) MarshalJSON() ([]byte, error)

func (*NullableTrigger) Set

func (v *NullableTrigger) Set(val *Trigger)

func (*NullableTrigger) UnmarshalJSON

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

func (*NullableTrigger) Unset

func (v *NullableTrigger) Unset()

type NullableTriggerCategory

type NullableTriggerCategory struct {
	// contains filtered or unexported fields
}

func NewNullableTriggerCategory

func NewNullableTriggerCategory(val *TriggerCategory) *NullableTriggerCategory

func (NullableTriggerCategory) Get

func (NullableTriggerCategory) IsSet

func (v NullableTriggerCategory) IsSet() bool

func (NullableTriggerCategory) MarshalJSON

func (v NullableTriggerCategory) MarshalJSON() ([]byte, error)

func (*NullableTriggerCategory) Set

func (*NullableTriggerCategory) UnmarshalJSON

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

func (*NullableTriggerCategory) Unset

func (v *NullableTriggerCategory) Unset()

type NullableTriggerType

type NullableTriggerType struct {
	// contains filtered or unexported fields
}

func NewNullableTriggerType

func NewNullableTriggerType(val *TriggerType) *NullableTriggerType

func (NullableTriggerType) Get

func (NullableTriggerType) IsSet

func (v NullableTriggerType) IsSet() bool

func (NullableTriggerType) MarshalJSON

func (v NullableTriggerType) MarshalJSON() ([]byte, error)

func (*NullableTriggerType) Set

func (v *NullableTriggerType) Set(val *TriggerType)

func (*NullableTriggerType) UnmarshalJSON

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

func (*NullableTriggerType) Unset

func (v *NullableTriggerType) 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 NullableUsedUnitContainer

type NullableUsedUnitContainer struct {
	// contains filtered or unexported fields
}

func NewNullableUsedUnitContainer

func NewNullableUsedUnitContainer(val *UsedUnitContainer) *NullableUsedUnitContainer

func (NullableUsedUnitContainer) Get

func (NullableUsedUnitContainer) IsSet

func (v NullableUsedUnitContainer) IsSet() bool

func (NullableUsedUnitContainer) MarshalJSON

func (v NullableUsedUnitContainer) MarshalJSON() ([]byte, error)

func (*NullableUsedUnitContainer) Set

func (*NullableUsedUnitContainer) UnmarshalJSON

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

func (*NullableUsedUnitContainer) Unset

func (v *NullableUsedUnitContainer) Unset()

type NullableUserInformation

type NullableUserInformation struct {
	// contains filtered or unexported fields
}

func NewNullableUserInformation

func NewNullableUserInformation(val *UserInformation) *NullableUserInformation

func (NullableUserInformation) Get

func (NullableUserInformation) IsSet

func (v NullableUserInformation) IsSet() bool

func (NullableUserInformation) MarshalJSON

func (v NullableUserInformation) MarshalJSON() ([]byte, error)

func (*NullableUserInformation) Set

func (*NullableUserInformation) UnmarshalJSON

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

func (*NullableUserInformation) Unset

func (v *NullableUserInformation) 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 PDUAddress

type PDUAddress struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	PduIPv4Address           *string   `json:"pduIPv4Address,omitempty"`
	PduIPv6AddresswithPrefix *Ipv6Addr `json:"pduIPv6AddresswithPrefix,omitempty"`
	PduAddressprefixlength   *int32    `json:"pduAddressprefixlength,omitempty"`
	IPv4dynamicAddressFlag   *bool     `json:"iPv4dynamicAddressFlag,omitempty"`
	IPv6dynamicPrefixFlag    *bool     `json:"iPv6dynamicPrefixFlag,omitempty"`
}

PDUAddress struct for PDUAddress

func NewPDUAddress

func NewPDUAddress() *PDUAddress

NewPDUAddress instantiates a new PDUAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPDUAddressWithDefaults

func NewPDUAddressWithDefaults() *PDUAddress

NewPDUAddressWithDefaults instantiates a new PDUAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PDUAddress) GetIPv4dynamicAddressFlag

func (o *PDUAddress) GetIPv4dynamicAddressFlag() bool

GetIPv4dynamicAddressFlag returns the IPv4dynamicAddressFlag field value if set, zero value otherwise.

func (*PDUAddress) GetIPv4dynamicAddressFlagOk

func (o *PDUAddress) GetIPv4dynamicAddressFlagOk() (*bool, bool)

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

func (*PDUAddress) GetIPv6dynamicPrefixFlag

func (o *PDUAddress) GetIPv6dynamicPrefixFlag() bool

GetIPv6dynamicPrefixFlag returns the IPv6dynamicPrefixFlag field value if set, zero value otherwise.

func (*PDUAddress) GetIPv6dynamicPrefixFlagOk

func (o *PDUAddress) GetIPv6dynamicPrefixFlagOk() (*bool, bool)

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

func (*PDUAddress) GetPduAddressprefixlength

func (o *PDUAddress) GetPduAddressprefixlength() int32

GetPduAddressprefixlength returns the PduAddressprefixlength field value if set, zero value otherwise.

func (*PDUAddress) GetPduAddressprefixlengthOk

func (o *PDUAddress) GetPduAddressprefixlengthOk() (*int32, bool)

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

func (*PDUAddress) GetPduIPv4Address

func (o *PDUAddress) GetPduIPv4Address() string

GetPduIPv4Address returns the PduIPv4Address field value if set, zero value otherwise.

func (*PDUAddress) GetPduIPv4AddressOk

func (o *PDUAddress) GetPduIPv4AddressOk() (*string, bool)

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

func (*PDUAddress) GetPduIPv6AddresswithPrefix

func (o *PDUAddress) GetPduIPv6AddresswithPrefix() Ipv6Addr

GetPduIPv6AddresswithPrefix returns the PduIPv6AddresswithPrefix field value if set, zero value otherwise.

func (*PDUAddress) GetPduIPv6AddresswithPrefixOk

func (o *PDUAddress) GetPduIPv6AddresswithPrefixOk() (*Ipv6Addr, bool)

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

func (*PDUAddress) HasIPv4dynamicAddressFlag

func (o *PDUAddress) HasIPv4dynamicAddressFlag() bool

HasIPv4dynamicAddressFlag returns a boolean if a field has been set.

func (*PDUAddress) HasIPv6dynamicPrefixFlag

func (o *PDUAddress) HasIPv6dynamicPrefixFlag() bool

HasIPv6dynamicPrefixFlag returns a boolean if a field has been set.

func (*PDUAddress) HasPduAddressprefixlength

func (o *PDUAddress) HasPduAddressprefixlength() bool

HasPduAddressprefixlength returns a boolean if a field has been set.

func (*PDUAddress) HasPduIPv4Address

func (o *PDUAddress) HasPduIPv4Address() bool

HasPduIPv4Address returns a boolean if a field has been set.

func (*PDUAddress) HasPduIPv6AddresswithPrefix

func (o *PDUAddress) HasPduIPv6AddresswithPrefix() bool

HasPduIPv6AddresswithPrefix returns a boolean if a field has been set.

func (PDUAddress) MarshalJSON

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

func (*PDUAddress) SetIPv4dynamicAddressFlag

func (o *PDUAddress) SetIPv4dynamicAddressFlag(v bool)

SetIPv4dynamicAddressFlag gets a reference to the given bool and assigns it to the IPv4dynamicAddressFlag field.

func (*PDUAddress) SetIPv6dynamicPrefixFlag

func (o *PDUAddress) SetIPv6dynamicPrefixFlag(v bool)

SetIPv6dynamicPrefixFlag gets a reference to the given bool and assigns it to the IPv6dynamicPrefixFlag field.

func (*PDUAddress) SetPduAddressprefixlength

func (o *PDUAddress) SetPduAddressprefixlength(v int32)

SetPduAddressprefixlength gets a reference to the given int32 and assigns it to the PduAddressprefixlength field.

func (*PDUAddress) SetPduIPv4Address

func (o *PDUAddress) SetPduIPv4Address(v string)

SetPduIPv4Address gets a reference to the given string and assigns it to the PduIPv4Address field.

func (*PDUAddress) SetPduIPv6AddresswithPrefix

func (o *PDUAddress) SetPduIPv6AddresswithPrefix(v Ipv6Addr)

SetPduIPv6AddresswithPrefix gets a reference to the given Ipv6Addr and assigns it to the PduIPv6AddresswithPrefix field.

func (PDUAddress) ToMap

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

type PDUContainerInformation

type PDUContainerInformation struct {
	// string with format 'date-time' as defined in OpenAPI.
	TimeofFirstUsage *time.Time `json:"timeofFirstUsage,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeofLastUsage          *time.Time          `json:"timeofLastUsage,omitempty"`
	QoSInformation           NullableQosData     `json:"qoSInformation,omitempty"`
	QoSCharacteristics       *QosCharacteristics `json:"qoSCharacteristics,omitempty"`
	AFCorrelationInformation *string             `json:"aFCorrelationInformation,omitempty"`
	UserLocationInformation  *UserLocation       `json:"userLocationInformation,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.
	UetimeZone                         *string                    `json:"uetimeZone,omitempty"`
	RATType                            *RatType                   `json:"rATType,omitempty"`
	ServingNodeID                      []ServingNetworkFunctionID `json:"servingNodeID,omitempty"`
	PresenceReportingAreaInformation   *map[string]PresenceInfo   `json:"presenceReportingAreaInformation,omitempty"`
	Var3gppPSDataOffStatus             *Model3GPPPSDataOffStatus  `json:"3gppPSDataOffStatus,omitempty"`
	SponsorIdentity                    *string                    `json:"sponsorIdentity,omitempty"`
	ApplicationserviceProviderIdentity *string                    `json:"applicationserviceProviderIdentity,omitempty"`
	ChargingRuleBaseName               *string                    `json:"chargingRuleBaseName,omitempty"`
	MAPDUSteeringFunctionality         *SteeringFunctionality     `json:"mAPDUSteeringFunctionality,omitempty"`
	MAPDUSteeringMode                  *SteeringMode              `json:"mAPDUSteeringMode,omitempty"`
}

PDUContainerInformation struct for PDUContainerInformation

func NewPDUContainerInformation

func NewPDUContainerInformation() *PDUContainerInformation

NewPDUContainerInformation instantiates a new PDUContainerInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPDUContainerInformationWithDefaults

func NewPDUContainerInformationWithDefaults() *PDUContainerInformation

NewPDUContainerInformationWithDefaults instantiates a new PDUContainerInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PDUContainerInformation) GetAFCorrelationInformation

func (o *PDUContainerInformation) GetAFCorrelationInformation() string

GetAFCorrelationInformation returns the AFCorrelationInformation field value if set, zero value otherwise.

func (*PDUContainerInformation) GetAFCorrelationInformationOk

func (o *PDUContainerInformation) GetAFCorrelationInformationOk() (*string, bool)

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

func (*PDUContainerInformation) GetApplicationserviceProviderIdentity

func (o *PDUContainerInformation) GetApplicationserviceProviderIdentity() string

GetApplicationserviceProviderIdentity returns the ApplicationserviceProviderIdentity field value if set, zero value otherwise.

func (*PDUContainerInformation) GetApplicationserviceProviderIdentityOk

func (o *PDUContainerInformation) GetApplicationserviceProviderIdentityOk() (*string, bool)

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

func (*PDUContainerInformation) GetChargingRuleBaseName

func (o *PDUContainerInformation) GetChargingRuleBaseName() string

GetChargingRuleBaseName returns the ChargingRuleBaseName field value if set, zero value otherwise.

func (*PDUContainerInformation) GetChargingRuleBaseNameOk

func (o *PDUContainerInformation) GetChargingRuleBaseNameOk() (*string, bool)

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

func (*PDUContainerInformation) GetMAPDUSteeringFunctionality

func (o *PDUContainerInformation) GetMAPDUSteeringFunctionality() SteeringFunctionality

GetMAPDUSteeringFunctionality returns the MAPDUSteeringFunctionality field value if set, zero value otherwise.

func (*PDUContainerInformation) GetMAPDUSteeringFunctionalityOk

func (o *PDUContainerInformation) GetMAPDUSteeringFunctionalityOk() (*SteeringFunctionality, bool)

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

func (*PDUContainerInformation) GetMAPDUSteeringMode

func (o *PDUContainerInformation) GetMAPDUSteeringMode() SteeringMode

GetMAPDUSteeringMode returns the MAPDUSteeringMode field value if set, zero value otherwise.

func (*PDUContainerInformation) GetMAPDUSteeringModeOk

func (o *PDUContainerInformation) GetMAPDUSteeringModeOk() (*SteeringMode, bool)

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

func (*PDUContainerInformation) GetPresenceReportingAreaInformation

func (o *PDUContainerInformation) GetPresenceReportingAreaInformation() map[string]PresenceInfo

GetPresenceReportingAreaInformation returns the PresenceReportingAreaInformation field value if set, zero value otherwise.

func (*PDUContainerInformation) GetPresenceReportingAreaInformationOk

func (o *PDUContainerInformation) GetPresenceReportingAreaInformationOk() (*map[string]PresenceInfo, bool)

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

func (*PDUContainerInformation) GetQoSCharacteristics

func (o *PDUContainerInformation) GetQoSCharacteristics() QosCharacteristics

GetQoSCharacteristics returns the QoSCharacteristics field value if set, zero value otherwise.

func (*PDUContainerInformation) GetQoSCharacteristicsOk

func (o *PDUContainerInformation) GetQoSCharacteristicsOk() (*QosCharacteristics, bool)

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

func (*PDUContainerInformation) GetQoSInformation

func (o *PDUContainerInformation) GetQoSInformation() QosData

GetQoSInformation returns the QoSInformation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PDUContainerInformation) GetQoSInformationOk

func (o *PDUContainerInformation) GetQoSInformationOk() (*QosData, bool)

GetQoSInformationOk returns a tuple with the QoSInformation 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 (*PDUContainerInformation) GetRATType

func (o *PDUContainerInformation) GetRATType() RatType

GetRATType returns the RATType field value if set, zero value otherwise.

func (*PDUContainerInformation) GetRATTypeOk

func (o *PDUContainerInformation) 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 (*PDUContainerInformation) GetServingNodeID

func (o *PDUContainerInformation) GetServingNodeID() []ServingNetworkFunctionID

GetServingNodeID returns the ServingNodeID field value if set, zero value otherwise.

func (*PDUContainerInformation) GetServingNodeIDOk

func (o *PDUContainerInformation) GetServingNodeIDOk() ([]ServingNetworkFunctionID, bool)

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

func (*PDUContainerInformation) GetSponsorIdentity

func (o *PDUContainerInformation) GetSponsorIdentity() string

GetSponsorIdentity returns the SponsorIdentity field value if set, zero value otherwise.

func (*PDUContainerInformation) GetSponsorIdentityOk

func (o *PDUContainerInformation) GetSponsorIdentityOk() (*string, bool)

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

func (*PDUContainerInformation) GetTimeofFirstUsage

func (o *PDUContainerInformation) GetTimeofFirstUsage() time.Time

GetTimeofFirstUsage returns the TimeofFirstUsage field value if set, zero value otherwise.

func (*PDUContainerInformation) GetTimeofFirstUsageOk

func (o *PDUContainerInformation) GetTimeofFirstUsageOk() (*time.Time, bool)

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

func (*PDUContainerInformation) GetTimeofLastUsage

func (o *PDUContainerInformation) GetTimeofLastUsage() time.Time

GetTimeofLastUsage returns the TimeofLastUsage field value if set, zero value otherwise.

func (*PDUContainerInformation) GetTimeofLastUsageOk

func (o *PDUContainerInformation) GetTimeofLastUsageOk() (*time.Time, bool)

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

func (*PDUContainerInformation) GetUetimeZone

func (o *PDUContainerInformation) GetUetimeZone() string

GetUetimeZone returns the UetimeZone field value if set, zero value otherwise.

func (*PDUContainerInformation) GetUetimeZoneOk

func (o *PDUContainerInformation) GetUetimeZoneOk() (*string, bool)

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

func (*PDUContainerInformation) GetUserLocationInformation

func (o *PDUContainerInformation) GetUserLocationInformation() UserLocation

GetUserLocationInformation returns the UserLocationInformation field value if set, zero value otherwise.

func (*PDUContainerInformation) GetUserLocationInformationOk

func (o *PDUContainerInformation) GetUserLocationInformationOk() (*UserLocation, bool)

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

func (*PDUContainerInformation) GetVar3gppPSDataOffStatus

func (o *PDUContainerInformation) GetVar3gppPSDataOffStatus() Model3GPPPSDataOffStatus

GetVar3gppPSDataOffStatus returns the Var3gppPSDataOffStatus field value if set, zero value otherwise.

func (*PDUContainerInformation) GetVar3gppPSDataOffStatusOk

func (o *PDUContainerInformation) GetVar3gppPSDataOffStatusOk() (*Model3GPPPSDataOffStatus, bool)

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

func (*PDUContainerInformation) HasAFCorrelationInformation

func (o *PDUContainerInformation) HasAFCorrelationInformation() bool

HasAFCorrelationInformation returns a boolean if a field has been set.

func (*PDUContainerInformation) HasApplicationserviceProviderIdentity

func (o *PDUContainerInformation) HasApplicationserviceProviderIdentity() bool

HasApplicationserviceProviderIdentity returns a boolean if a field has been set.

func (*PDUContainerInformation) HasChargingRuleBaseName

func (o *PDUContainerInformation) HasChargingRuleBaseName() bool

HasChargingRuleBaseName returns a boolean if a field has been set.

func (*PDUContainerInformation) HasMAPDUSteeringFunctionality

func (o *PDUContainerInformation) HasMAPDUSteeringFunctionality() bool

HasMAPDUSteeringFunctionality returns a boolean if a field has been set.

func (*PDUContainerInformation) HasMAPDUSteeringMode

func (o *PDUContainerInformation) HasMAPDUSteeringMode() bool

HasMAPDUSteeringMode returns a boolean if a field has been set.

func (*PDUContainerInformation) HasPresenceReportingAreaInformation

func (o *PDUContainerInformation) HasPresenceReportingAreaInformation() bool

HasPresenceReportingAreaInformation returns a boolean if a field has been set.

func (*PDUContainerInformation) HasQoSCharacteristics

func (o *PDUContainerInformation) HasQoSCharacteristics() bool

HasQoSCharacteristics returns a boolean if a field has been set.

func (*PDUContainerInformation) HasQoSInformation

func (o *PDUContainerInformation) HasQoSInformation() bool

HasQoSInformation returns a boolean if a field has been set.

func (*PDUContainerInformation) HasRATType

func (o *PDUContainerInformation) HasRATType() bool

HasRATType returns a boolean if a field has been set.

func (*PDUContainerInformation) HasServingNodeID

func (o *PDUContainerInformation) HasServingNodeID() bool

HasServingNodeID returns a boolean if a field has been set.

func (*PDUContainerInformation) HasSponsorIdentity

func (o *PDUContainerInformation) HasSponsorIdentity() bool

HasSponsorIdentity returns a boolean if a field has been set.

func (*PDUContainerInformation) HasTimeofFirstUsage

func (o *PDUContainerInformation) HasTimeofFirstUsage() bool

HasTimeofFirstUsage returns a boolean if a field has been set.

func (*PDUContainerInformation) HasTimeofLastUsage

func (o *PDUContainerInformation) HasTimeofLastUsage() bool

HasTimeofLastUsage returns a boolean if a field has been set.

func (*PDUContainerInformation) HasUetimeZone

func (o *PDUContainerInformation) HasUetimeZone() bool

HasUetimeZone returns a boolean if a field has been set.

func (*PDUContainerInformation) HasUserLocationInformation

func (o *PDUContainerInformation) HasUserLocationInformation() bool

HasUserLocationInformation returns a boolean if a field has been set.

func (*PDUContainerInformation) HasVar3gppPSDataOffStatus

func (o *PDUContainerInformation) HasVar3gppPSDataOffStatus() bool

HasVar3gppPSDataOffStatus returns a boolean if a field has been set.

func (PDUContainerInformation) MarshalJSON

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

func (*PDUContainerInformation) SetAFCorrelationInformation

func (o *PDUContainerInformation) SetAFCorrelationInformation(v string)

SetAFCorrelationInformation gets a reference to the given string and assigns it to the AFCorrelationInformation field.

func (*PDUContainerInformation) SetApplicationserviceProviderIdentity

func (o *PDUContainerInformation) SetApplicationserviceProviderIdentity(v string)

SetApplicationserviceProviderIdentity gets a reference to the given string and assigns it to the ApplicationserviceProviderIdentity field.

func (*PDUContainerInformation) SetChargingRuleBaseName

func (o *PDUContainerInformation) SetChargingRuleBaseName(v string)

SetChargingRuleBaseName gets a reference to the given string and assigns it to the ChargingRuleBaseName field.

func (*PDUContainerInformation) SetMAPDUSteeringFunctionality

func (o *PDUContainerInformation) SetMAPDUSteeringFunctionality(v SteeringFunctionality)

SetMAPDUSteeringFunctionality gets a reference to the given SteeringFunctionality and assigns it to the MAPDUSteeringFunctionality field.

func (*PDUContainerInformation) SetMAPDUSteeringMode

func (o *PDUContainerInformation) SetMAPDUSteeringMode(v SteeringMode)

SetMAPDUSteeringMode gets a reference to the given SteeringMode and assigns it to the MAPDUSteeringMode field.

func (*PDUContainerInformation) SetPresenceReportingAreaInformation

func (o *PDUContainerInformation) SetPresenceReportingAreaInformation(v map[string]PresenceInfo)

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

func (*PDUContainerInformation) SetQoSCharacteristics

func (o *PDUContainerInformation) SetQoSCharacteristics(v QosCharacteristics)

SetQoSCharacteristics gets a reference to the given QosCharacteristics and assigns it to the QoSCharacteristics field.

func (*PDUContainerInformation) SetQoSInformation

func (o *PDUContainerInformation) SetQoSInformation(v QosData)

SetQoSInformation gets a reference to the given NullableQosData and assigns it to the QoSInformation field.

func (*PDUContainerInformation) SetQoSInformationNil

func (o *PDUContainerInformation) SetQoSInformationNil()

SetQoSInformationNil sets the value for QoSInformation to be an explicit nil

func (*PDUContainerInformation) SetRATType

func (o *PDUContainerInformation) SetRATType(v RatType)

SetRATType gets a reference to the given RatType and assigns it to the RATType field.

func (*PDUContainerInformation) SetServingNodeID

func (o *PDUContainerInformation) SetServingNodeID(v []ServingNetworkFunctionID)

SetServingNodeID gets a reference to the given []ServingNetworkFunctionID and assigns it to the ServingNodeID field.

func (*PDUContainerInformation) SetSponsorIdentity

func (o *PDUContainerInformation) SetSponsorIdentity(v string)

SetSponsorIdentity gets a reference to the given string and assigns it to the SponsorIdentity field.

func (*PDUContainerInformation) SetTimeofFirstUsage

func (o *PDUContainerInformation) SetTimeofFirstUsage(v time.Time)

SetTimeofFirstUsage gets a reference to the given time.Time and assigns it to the TimeofFirstUsage field.

func (*PDUContainerInformation) SetTimeofLastUsage

func (o *PDUContainerInformation) SetTimeofLastUsage(v time.Time)

SetTimeofLastUsage gets a reference to the given time.Time and assigns it to the TimeofLastUsage field.

func (*PDUContainerInformation) SetUetimeZone

func (o *PDUContainerInformation) SetUetimeZone(v string)

SetUetimeZone gets a reference to the given string and assigns it to the UetimeZone field.

func (*PDUContainerInformation) SetUserLocationInformation

func (o *PDUContainerInformation) SetUserLocationInformation(v UserLocation)

SetUserLocationInformation gets a reference to the given UserLocation and assigns it to the UserLocationInformation field.

func (*PDUContainerInformation) SetVar3gppPSDataOffStatus

func (o *PDUContainerInformation) SetVar3gppPSDataOffStatus(v Model3GPPPSDataOffStatus)

SetVar3gppPSDataOffStatus gets a reference to the given Model3GPPPSDataOffStatus and assigns it to the Var3gppPSDataOffStatus field.

func (PDUContainerInformation) ToMap

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

func (*PDUContainerInformation) UnsetQoSInformation

func (o *PDUContainerInformation) UnsetQoSInformation()

UnsetQoSInformation ensures that no value is present for QoSInformation, not even an explicit nil

type PDUSessionChargingInformation

type PDUSessionChargingInformation struct {
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	// Deprecated
	ChargingId                   *int32           `json:"chargingId,omitempty"`
	SMFChargingId                *string          `json:"sMFChargingId,omitempty"`
	UserInformation              *UserInformation `json:"userInformation,omitempty"`
	UserLocationinfo             *UserLocation    `json:"userLocationinfo,omitempty"`
	MAPDUNon3GPPUserLocationInfo *UserLocation    `json:"mAPDUNon3GPPUserLocationInfo,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	UserLocationTime                 *time.Time               `json:"userLocationTime,omitempty"`
	PresenceReportingAreaInformation *map[string]PresenceInfo `json:"presenceReportingAreaInformation,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.
	UetimeZone            *string               `json:"uetimeZone,omitempty"`
	PduSessionInformation PDUSessionInformation `json:"pduSessionInformation"`
	// indicating a time in seconds.
	UnitCountInactivityTimer   *int32                      `json:"unitCountInactivityTimer,omitempty"`
	RANSecondaryRATUsageReport *RANSecondaryRATUsageReport `json:"rANSecondaryRATUsageReport,omitempty"`
}

PDUSessionChargingInformation struct for PDUSessionChargingInformation

func NewPDUSessionChargingInformation

func NewPDUSessionChargingInformation(pduSessionInformation PDUSessionInformation) *PDUSessionChargingInformation

NewPDUSessionChargingInformation instantiates a new PDUSessionChargingInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPDUSessionChargingInformationWithDefaults

func NewPDUSessionChargingInformationWithDefaults() *PDUSessionChargingInformation

NewPDUSessionChargingInformationWithDefaults instantiates a new PDUSessionChargingInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PDUSessionChargingInformation) GetChargingId

func (o *PDUSessionChargingInformation) GetChargingId() int32

GetChargingId returns the ChargingId field value if set, zero value otherwise. Deprecated

func (*PDUSessionChargingInformation) GetChargingIdOk

func (o *PDUSessionChargingInformation) GetChargingIdOk() (*int32, bool)

GetChargingIdOk returns a tuple with the ChargingId field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*PDUSessionChargingInformation) GetMAPDUNon3GPPUserLocationInfo

func (o *PDUSessionChargingInformation) GetMAPDUNon3GPPUserLocationInfo() UserLocation

GetMAPDUNon3GPPUserLocationInfo returns the MAPDUNon3GPPUserLocationInfo field value if set, zero value otherwise.

func (*PDUSessionChargingInformation) GetMAPDUNon3GPPUserLocationInfoOk

func (o *PDUSessionChargingInformation) GetMAPDUNon3GPPUserLocationInfoOk() (*UserLocation, bool)

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

func (*PDUSessionChargingInformation) GetPduSessionInformation

func (o *PDUSessionChargingInformation) GetPduSessionInformation() PDUSessionInformation

GetPduSessionInformation returns the PduSessionInformation field value

func (*PDUSessionChargingInformation) GetPduSessionInformationOk

func (o *PDUSessionChargingInformation) GetPduSessionInformationOk() (*PDUSessionInformation, bool)

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

func (*PDUSessionChargingInformation) GetPresenceReportingAreaInformation

func (o *PDUSessionChargingInformation) GetPresenceReportingAreaInformation() map[string]PresenceInfo

GetPresenceReportingAreaInformation returns the PresenceReportingAreaInformation field value if set, zero value otherwise.

func (*PDUSessionChargingInformation) GetPresenceReportingAreaInformationOk

func (o *PDUSessionChargingInformation) GetPresenceReportingAreaInformationOk() (*map[string]PresenceInfo, bool)

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

func (*PDUSessionChargingInformation) GetRANSecondaryRATUsageReport

func (o *PDUSessionChargingInformation) GetRANSecondaryRATUsageReport() RANSecondaryRATUsageReport

GetRANSecondaryRATUsageReport returns the RANSecondaryRATUsageReport field value if set, zero value otherwise.

func (*PDUSessionChargingInformation) GetRANSecondaryRATUsageReportOk

func (o *PDUSessionChargingInformation) GetRANSecondaryRATUsageReportOk() (*RANSecondaryRATUsageReport, bool)

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

func (*PDUSessionChargingInformation) GetSMFChargingId

func (o *PDUSessionChargingInformation) GetSMFChargingId() string

GetSMFChargingId returns the SMFChargingId field value if set, zero value otherwise.

func (*PDUSessionChargingInformation) GetSMFChargingIdOk

func (o *PDUSessionChargingInformation) GetSMFChargingIdOk() (*string, bool)

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

func (*PDUSessionChargingInformation) GetUetimeZone

func (o *PDUSessionChargingInformation) GetUetimeZone() string

GetUetimeZone returns the UetimeZone field value if set, zero value otherwise.

func (*PDUSessionChargingInformation) GetUetimeZoneOk

func (o *PDUSessionChargingInformation) GetUetimeZoneOk() (*string, bool)

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

func (*PDUSessionChargingInformation) GetUnitCountInactivityTimer

func (o *PDUSessionChargingInformation) GetUnitCountInactivityTimer() int32

GetUnitCountInactivityTimer returns the UnitCountInactivityTimer field value if set, zero value otherwise.

func (*PDUSessionChargingInformation) GetUnitCountInactivityTimerOk

func (o *PDUSessionChargingInformation) GetUnitCountInactivityTimerOk() (*int32, bool)

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

func (*PDUSessionChargingInformation) GetUserInformation

func (o *PDUSessionChargingInformation) GetUserInformation() UserInformation

GetUserInformation returns the UserInformation field value if set, zero value otherwise.

func (*PDUSessionChargingInformation) GetUserInformationOk

func (o *PDUSessionChargingInformation) GetUserInformationOk() (*UserInformation, bool)

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

func (*PDUSessionChargingInformation) GetUserLocationTime

func (o *PDUSessionChargingInformation) GetUserLocationTime() time.Time

GetUserLocationTime returns the UserLocationTime field value if set, zero value otherwise.

func (*PDUSessionChargingInformation) GetUserLocationTimeOk

func (o *PDUSessionChargingInformation) GetUserLocationTimeOk() (*time.Time, bool)

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

func (*PDUSessionChargingInformation) GetUserLocationinfo

func (o *PDUSessionChargingInformation) GetUserLocationinfo() UserLocation

GetUserLocationinfo returns the UserLocationinfo field value if set, zero value otherwise.

func (*PDUSessionChargingInformation) GetUserLocationinfoOk

func (o *PDUSessionChargingInformation) GetUserLocationinfoOk() (*UserLocation, bool)

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

func (*PDUSessionChargingInformation) HasChargingId

func (o *PDUSessionChargingInformation) HasChargingId() bool

HasChargingId returns a boolean if a field has been set.

func (*PDUSessionChargingInformation) HasMAPDUNon3GPPUserLocationInfo

func (o *PDUSessionChargingInformation) HasMAPDUNon3GPPUserLocationInfo() bool

HasMAPDUNon3GPPUserLocationInfo returns a boolean if a field has been set.

func (*PDUSessionChargingInformation) HasPresenceReportingAreaInformation

func (o *PDUSessionChargingInformation) HasPresenceReportingAreaInformation() bool

HasPresenceReportingAreaInformation returns a boolean if a field has been set.

func (*PDUSessionChargingInformation) HasRANSecondaryRATUsageReport

func (o *PDUSessionChargingInformation) HasRANSecondaryRATUsageReport() bool

HasRANSecondaryRATUsageReport returns a boolean if a field has been set.

func (*PDUSessionChargingInformation) HasSMFChargingId

func (o *PDUSessionChargingInformation) HasSMFChargingId() bool

HasSMFChargingId returns a boolean if a field has been set.

func (*PDUSessionChargingInformation) HasUetimeZone

func (o *PDUSessionChargingInformation) HasUetimeZone() bool

HasUetimeZone returns a boolean if a field has been set.

func (*PDUSessionChargingInformation) HasUnitCountInactivityTimer

func (o *PDUSessionChargingInformation) HasUnitCountInactivityTimer() bool

HasUnitCountInactivityTimer returns a boolean if a field has been set.

func (*PDUSessionChargingInformation) HasUserInformation

func (o *PDUSessionChargingInformation) HasUserInformation() bool

HasUserInformation returns a boolean if a field has been set.

func (*PDUSessionChargingInformation) HasUserLocationTime

func (o *PDUSessionChargingInformation) HasUserLocationTime() bool

HasUserLocationTime returns a boolean if a field has been set.

func (*PDUSessionChargingInformation) HasUserLocationinfo

func (o *PDUSessionChargingInformation) HasUserLocationinfo() bool

HasUserLocationinfo returns a boolean if a field has been set.

func (PDUSessionChargingInformation) MarshalJSON

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

func (*PDUSessionChargingInformation) SetChargingId

func (o *PDUSessionChargingInformation) SetChargingId(v int32)

SetChargingId gets a reference to the given int32 and assigns it to the ChargingId field. Deprecated

func (*PDUSessionChargingInformation) SetMAPDUNon3GPPUserLocationInfo

func (o *PDUSessionChargingInformation) SetMAPDUNon3GPPUserLocationInfo(v UserLocation)

SetMAPDUNon3GPPUserLocationInfo gets a reference to the given UserLocation and assigns it to the MAPDUNon3GPPUserLocationInfo field.

func (*PDUSessionChargingInformation) SetPduSessionInformation

func (o *PDUSessionChargingInformation) SetPduSessionInformation(v PDUSessionInformation)

SetPduSessionInformation sets field value

func (*PDUSessionChargingInformation) SetPresenceReportingAreaInformation

func (o *PDUSessionChargingInformation) SetPresenceReportingAreaInformation(v map[string]PresenceInfo)

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

func (*PDUSessionChargingInformation) SetRANSecondaryRATUsageReport

func (o *PDUSessionChargingInformation) SetRANSecondaryRATUsageReport(v RANSecondaryRATUsageReport)

SetRANSecondaryRATUsageReport gets a reference to the given RANSecondaryRATUsageReport and assigns it to the RANSecondaryRATUsageReport field.

func (*PDUSessionChargingInformation) SetSMFChargingId

func (o *PDUSessionChargingInformation) SetSMFChargingId(v string)

SetSMFChargingId gets a reference to the given string and assigns it to the SMFChargingId field.

func (*PDUSessionChargingInformation) SetUetimeZone

func (o *PDUSessionChargingInformation) SetUetimeZone(v string)

SetUetimeZone gets a reference to the given string and assigns it to the UetimeZone field.

func (*PDUSessionChargingInformation) SetUnitCountInactivityTimer

func (o *PDUSessionChargingInformation) SetUnitCountInactivityTimer(v int32)

SetUnitCountInactivityTimer gets a reference to the given int32 and assigns it to the UnitCountInactivityTimer field.

func (*PDUSessionChargingInformation) SetUserInformation

func (o *PDUSessionChargingInformation) SetUserInformation(v UserInformation)

SetUserInformation gets a reference to the given UserInformation and assigns it to the UserInformation field.

func (*PDUSessionChargingInformation) SetUserLocationTime

func (o *PDUSessionChargingInformation) SetUserLocationTime(v time.Time)

SetUserLocationTime gets a reference to the given time.Time and assigns it to the UserLocationTime field.

func (*PDUSessionChargingInformation) SetUserLocationinfo

func (o *PDUSessionChargingInformation) SetUserLocationinfo(v UserLocation)

SetUserLocationinfo gets a reference to the given UserLocation and assigns it to the UserLocationinfo field.

func (PDUSessionChargingInformation) ToMap

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

type PDUSessionInformation

type PDUSessionInformation struct {
	NetworkSlicingInfo *NetworkSlicingInfo `json:"networkSlicingInfo,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.
	PduSessionID             int32                     `json:"pduSessionID"`
	PduType                  *PduSessionType           `json:"pduType,omitempty"`
	SscMode                  *SscMode                  `json:"sscMode,omitempty"`
	HPlmnId                  *PlmnId                   `json:"hPlmnId,omitempty"`
	ServingNetworkFunctionID *ServingNetworkFunctionID `json:"servingNetworkFunctionID,omitempty"`
	RatType                  *RatType                  `json:"ratType,omitempty"`
	MAPDUNon3GPPRATType      *RatType                  `json:"mAPDUNon3GPPRATType,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\").
	DnnId                                string                                `json:"dnnId"`
	ChargingCharacteristics              *string                               `json:"chargingCharacteristics,omitempty"`
	ChargingCharacteristicsSelectionMode *ChargingCharacteristicsSelectionMode `json:"chargingCharacteristicsSelectionMode,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	StartTime *time.Time `json:"startTime,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	StopTime                 *time.Time                `json:"stopTime,omitempty"`
	Var3gppPSDataOffStatus   *Model3GPPPSDataOffStatus `json:"3gppPSDataOffStatus,omitempty"`
	SessionStopIndicator     *bool                     `json:"sessionStopIndicator,omitempty"`
	PduAddress               *PDUAddress               `json:"pduAddress,omitempty"`
	Diagnostics              *int32                    `json:"diagnostics,omitempty"`
	AuthorizedQoSInformation *AuthorizedDefaultQos     `json:"authorizedQoSInformation,omitempty"`
	SubscribedQoSInformation *SubscribedDefaultQos     `json:"subscribedQoSInformation,omitempty"`
	AuthorizedSessionAMBR    *Ambr                     `json:"authorizedSessionAMBR,omitempty"`
	SubscribedSessionAMBR    *Ambr                     `json:"subscribedSessionAMBR,omitempty"`
	ServingCNPlmnId          *PlmnId                   `json:"servingCNPlmnId,omitempty"`
	MAPDUSessionInformation  *MAPDUSessionInformation  `json:"mAPDUSessionInformation,omitempty"`
	EnhancedDiagnostics      []RanNasRelCause          `json:"enhancedDiagnostics,omitempty"`
}

PDUSessionInformation struct for PDUSessionInformation

func NewPDUSessionInformation

func NewPDUSessionInformation(pduSessionID int32, dnnId string) *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) GetAuthorizedQoSInformation

func (o *PDUSessionInformation) GetAuthorizedQoSInformation() AuthorizedDefaultQos

GetAuthorizedQoSInformation returns the AuthorizedQoSInformation field value if set, zero value otherwise.

func (*PDUSessionInformation) GetAuthorizedQoSInformationOk

func (o *PDUSessionInformation) GetAuthorizedQoSInformationOk() (*AuthorizedDefaultQos, bool)

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

func (*PDUSessionInformation) GetAuthorizedSessionAMBR

func (o *PDUSessionInformation) GetAuthorizedSessionAMBR() Ambr

GetAuthorizedSessionAMBR returns the AuthorizedSessionAMBR field value if set, zero value otherwise.

func (*PDUSessionInformation) GetAuthorizedSessionAMBROk

func (o *PDUSessionInformation) GetAuthorizedSessionAMBROk() (*Ambr, bool)

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

func (*PDUSessionInformation) GetChargingCharacteristics

func (o *PDUSessionInformation) GetChargingCharacteristics() string

GetChargingCharacteristics returns the ChargingCharacteristics field value if set, zero value otherwise.

func (*PDUSessionInformation) GetChargingCharacteristicsOk

func (o *PDUSessionInformation) GetChargingCharacteristicsOk() (*string, bool)

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

func (*PDUSessionInformation) GetChargingCharacteristicsSelectionMode

func (o *PDUSessionInformation) GetChargingCharacteristicsSelectionMode() ChargingCharacteristicsSelectionMode

GetChargingCharacteristicsSelectionMode returns the ChargingCharacteristicsSelectionMode field value if set, zero value otherwise.

func (*PDUSessionInformation) GetChargingCharacteristicsSelectionModeOk

func (o *PDUSessionInformation) GetChargingCharacteristicsSelectionModeOk() (*ChargingCharacteristicsSelectionMode, bool)

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

func (*PDUSessionInformation) GetDiagnostics

func (o *PDUSessionInformation) GetDiagnostics() int32

GetDiagnostics returns the Diagnostics field value if set, zero value otherwise.

func (*PDUSessionInformation) GetDiagnosticsOk

func (o *PDUSessionInformation) GetDiagnosticsOk() (*int32, bool)

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

func (*PDUSessionInformation) GetDnnId

func (o *PDUSessionInformation) GetDnnId() string

GetDnnId returns the DnnId field value

func (*PDUSessionInformation) GetDnnIdOk

func (o *PDUSessionInformation) GetDnnIdOk() (*string, bool)

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

func (*PDUSessionInformation) GetEnhancedDiagnostics

func (o *PDUSessionInformation) GetEnhancedDiagnostics() []RanNasRelCause

GetEnhancedDiagnostics returns the EnhancedDiagnostics field value if set, zero value otherwise.

func (*PDUSessionInformation) GetEnhancedDiagnosticsOk

func (o *PDUSessionInformation) GetEnhancedDiagnosticsOk() ([]RanNasRelCause, bool)

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

func (*PDUSessionInformation) GetHPlmnId

func (o *PDUSessionInformation) GetHPlmnId() PlmnId

GetHPlmnId returns the HPlmnId field value if set, zero value otherwise.

func (*PDUSessionInformation) GetHPlmnIdOk

func (o *PDUSessionInformation) GetHPlmnIdOk() (*PlmnId, bool)

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

func (*PDUSessionInformation) GetMAPDUNon3GPPRATType

func (o *PDUSessionInformation) GetMAPDUNon3GPPRATType() RatType

GetMAPDUNon3GPPRATType returns the MAPDUNon3GPPRATType field value if set, zero value otherwise.

func (*PDUSessionInformation) GetMAPDUNon3GPPRATTypeOk

func (o *PDUSessionInformation) GetMAPDUNon3GPPRATTypeOk() (*RatType, bool)

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

func (*PDUSessionInformation) GetMAPDUSessionInformation

func (o *PDUSessionInformation) GetMAPDUSessionInformation() MAPDUSessionInformation

GetMAPDUSessionInformation returns the MAPDUSessionInformation field value if set, zero value otherwise.

func (*PDUSessionInformation) GetMAPDUSessionInformationOk

func (o *PDUSessionInformation) GetMAPDUSessionInformationOk() (*MAPDUSessionInformation, bool)

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

func (*PDUSessionInformation) GetNetworkSlicingInfo

func (o *PDUSessionInformation) GetNetworkSlicingInfo() NetworkSlicingInfo

GetNetworkSlicingInfo returns the NetworkSlicingInfo field value if set, zero value otherwise.

func (*PDUSessionInformation) GetNetworkSlicingInfoOk

func (o *PDUSessionInformation) GetNetworkSlicingInfoOk() (*NetworkSlicingInfo, bool)

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

func (*PDUSessionInformation) GetPduAddress

func (o *PDUSessionInformation) GetPduAddress() PDUAddress

GetPduAddress returns the PduAddress field value if set, zero value otherwise.

func (*PDUSessionInformation) GetPduAddressOk

func (o *PDUSessionInformation) GetPduAddressOk() (*PDUAddress, bool)

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

func (*PDUSessionInformation) GetPduSessionID

func (o *PDUSessionInformation) GetPduSessionID() int32

GetPduSessionID returns the PduSessionID field value

func (*PDUSessionInformation) GetPduSessionIDOk

func (o *PDUSessionInformation) GetPduSessionIDOk() (*int32, bool)

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

func (*PDUSessionInformation) GetPduType

func (o *PDUSessionInformation) GetPduType() PduSessionType

GetPduType returns the PduType field value if set, zero value otherwise.

func (*PDUSessionInformation) GetPduTypeOk

func (o *PDUSessionInformation) GetPduTypeOk() (*PduSessionType, bool)

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

func (*PDUSessionInformation) GetRatType

func (o *PDUSessionInformation) GetRatType() RatType

GetRatType returns the RatType field value if set, zero value otherwise.

func (*PDUSessionInformation) GetRatTypeOk

func (o *PDUSessionInformation) 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 (*PDUSessionInformation) GetServingCNPlmnId

func (o *PDUSessionInformation) GetServingCNPlmnId() PlmnId

GetServingCNPlmnId returns the ServingCNPlmnId field value if set, zero value otherwise.

func (*PDUSessionInformation) GetServingCNPlmnIdOk

func (o *PDUSessionInformation) GetServingCNPlmnIdOk() (*PlmnId, bool)

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

func (*PDUSessionInformation) GetServingNetworkFunctionID

func (o *PDUSessionInformation) GetServingNetworkFunctionID() ServingNetworkFunctionID

GetServingNetworkFunctionID returns the ServingNetworkFunctionID field value if set, zero value otherwise.

func (*PDUSessionInformation) GetServingNetworkFunctionIDOk

func (o *PDUSessionInformation) GetServingNetworkFunctionIDOk() (*ServingNetworkFunctionID, bool)

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

func (*PDUSessionInformation) GetSessionStopIndicator

func (o *PDUSessionInformation) GetSessionStopIndicator() bool

GetSessionStopIndicator returns the SessionStopIndicator field value if set, zero value otherwise.

func (*PDUSessionInformation) GetSessionStopIndicatorOk

func (o *PDUSessionInformation) GetSessionStopIndicatorOk() (*bool, bool)

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

func (*PDUSessionInformation) GetSscMode

func (o *PDUSessionInformation) GetSscMode() SscMode

GetSscMode returns the SscMode field value if set, zero value otherwise.

func (*PDUSessionInformation) GetSscModeOk

func (o *PDUSessionInformation) GetSscModeOk() (*SscMode, bool)

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

func (*PDUSessionInformation) GetStartTime

func (o *PDUSessionInformation) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*PDUSessionInformation) GetStartTimeOk

func (o *PDUSessionInformation) 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 (*PDUSessionInformation) GetStopTime

func (o *PDUSessionInformation) GetStopTime() time.Time

GetStopTime returns the StopTime field value if set, zero value otherwise.

func (*PDUSessionInformation) GetStopTimeOk

func (o *PDUSessionInformation) GetStopTimeOk() (*time.Time, bool)

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

func (*PDUSessionInformation) GetSubscribedQoSInformation

func (o *PDUSessionInformation) GetSubscribedQoSInformation() SubscribedDefaultQos

GetSubscribedQoSInformation returns the SubscribedQoSInformation field value if set, zero value otherwise.

func (*PDUSessionInformation) GetSubscribedQoSInformationOk

func (o *PDUSessionInformation) GetSubscribedQoSInformationOk() (*SubscribedDefaultQos, bool)

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

func (*PDUSessionInformation) GetSubscribedSessionAMBR

func (o *PDUSessionInformation) GetSubscribedSessionAMBR() Ambr

GetSubscribedSessionAMBR returns the SubscribedSessionAMBR field value if set, zero value otherwise.

func (*PDUSessionInformation) GetSubscribedSessionAMBROk

func (o *PDUSessionInformation) GetSubscribedSessionAMBROk() (*Ambr, bool)

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

func (*PDUSessionInformation) GetVar3gppPSDataOffStatus

func (o *PDUSessionInformation) GetVar3gppPSDataOffStatus() Model3GPPPSDataOffStatus

GetVar3gppPSDataOffStatus returns the Var3gppPSDataOffStatus field value if set, zero value otherwise.

func (*PDUSessionInformation) GetVar3gppPSDataOffStatusOk

func (o *PDUSessionInformation) GetVar3gppPSDataOffStatusOk() (*Model3GPPPSDataOffStatus, bool)

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

func (*PDUSessionInformation) HasAuthorizedQoSInformation

func (o *PDUSessionInformation) HasAuthorizedQoSInformation() bool

HasAuthorizedQoSInformation returns a boolean if a field has been set.

func (*PDUSessionInformation) HasAuthorizedSessionAMBR

func (o *PDUSessionInformation) HasAuthorizedSessionAMBR() bool

HasAuthorizedSessionAMBR returns a boolean if a field has been set.

func (*PDUSessionInformation) HasChargingCharacteristics

func (o *PDUSessionInformation) HasChargingCharacteristics() bool

HasChargingCharacteristics returns a boolean if a field has been set.

func (*PDUSessionInformation) HasChargingCharacteristicsSelectionMode

func (o *PDUSessionInformation) HasChargingCharacteristicsSelectionMode() bool

HasChargingCharacteristicsSelectionMode returns a boolean if a field has been set.

func (*PDUSessionInformation) HasDiagnostics

func (o *PDUSessionInformation) HasDiagnostics() bool

HasDiagnostics returns a boolean if a field has been set.

func (*PDUSessionInformation) HasEnhancedDiagnostics

func (o *PDUSessionInformation) HasEnhancedDiagnostics() bool

HasEnhancedDiagnostics returns a boolean if a field has been set.

func (*PDUSessionInformation) HasHPlmnId

func (o *PDUSessionInformation) HasHPlmnId() bool

HasHPlmnId returns a boolean if a field has been set.

func (*PDUSessionInformation) HasMAPDUNon3GPPRATType

func (o *PDUSessionInformation) HasMAPDUNon3GPPRATType() bool

HasMAPDUNon3GPPRATType returns a boolean if a field has been set.

func (*PDUSessionInformation) HasMAPDUSessionInformation

func (o *PDUSessionInformation) HasMAPDUSessionInformation() bool

HasMAPDUSessionInformation returns a boolean if a field has been set.

func (*PDUSessionInformation) HasNetworkSlicingInfo

func (o *PDUSessionInformation) HasNetworkSlicingInfo() bool

HasNetworkSlicingInfo returns a boolean if a field has been set.

func (*PDUSessionInformation) HasPduAddress

func (o *PDUSessionInformation) HasPduAddress() bool

HasPduAddress returns a boolean if a field has been set.

func (*PDUSessionInformation) HasPduType

func (o *PDUSessionInformation) HasPduType() bool

HasPduType returns a boolean if a field has been set.

func (*PDUSessionInformation) HasRatType

func (o *PDUSessionInformation) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (*PDUSessionInformation) HasServingCNPlmnId

func (o *PDUSessionInformation) HasServingCNPlmnId() bool

HasServingCNPlmnId returns a boolean if a field has been set.

func (*PDUSessionInformation) HasServingNetworkFunctionID

func (o *PDUSessionInformation) HasServingNetworkFunctionID() bool

HasServingNetworkFunctionID returns a boolean if a field has been set.

func (*PDUSessionInformation) HasSessionStopIndicator

func (o *PDUSessionInformation) HasSessionStopIndicator() bool

HasSessionStopIndicator returns a boolean if a field has been set.

func (*PDUSessionInformation) HasSscMode

func (o *PDUSessionInformation) HasSscMode() bool

HasSscMode returns a boolean if a field has been set.

func (*PDUSessionInformation) HasStartTime

func (o *PDUSessionInformation) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*PDUSessionInformation) HasStopTime

func (o *PDUSessionInformation) HasStopTime() bool

HasStopTime returns a boolean if a field has been set.

func (*PDUSessionInformation) HasSubscribedQoSInformation

func (o *PDUSessionInformation) HasSubscribedQoSInformation() bool

HasSubscribedQoSInformation returns a boolean if a field has been set.

func (*PDUSessionInformation) HasSubscribedSessionAMBR

func (o *PDUSessionInformation) HasSubscribedSessionAMBR() bool

HasSubscribedSessionAMBR returns a boolean if a field has been set.

func (*PDUSessionInformation) HasVar3gppPSDataOffStatus

func (o *PDUSessionInformation) HasVar3gppPSDataOffStatus() bool

HasVar3gppPSDataOffStatus returns a boolean if a field has been set.

func (PDUSessionInformation) MarshalJSON

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

func (*PDUSessionInformation) SetAuthorizedQoSInformation

func (o *PDUSessionInformation) SetAuthorizedQoSInformation(v AuthorizedDefaultQos)

SetAuthorizedQoSInformation gets a reference to the given AuthorizedDefaultQos and assigns it to the AuthorizedQoSInformation field.

func (*PDUSessionInformation) SetAuthorizedSessionAMBR

func (o *PDUSessionInformation) SetAuthorizedSessionAMBR(v Ambr)

SetAuthorizedSessionAMBR gets a reference to the given Ambr and assigns it to the AuthorizedSessionAMBR field.

func (*PDUSessionInformation) SetChargingCharacteristics

func (o *PDUSessionInformation) SetChargingCharacteristics(v string)

SetChargingCharacteristics gets a reference to the given string and assigns it to the ChargingCharacteristics field.

func (*PDUSessionInformation) SetChargingCharacteristicsSelectionMode

func (o *PDUSessionInformation) SetChargingCharacteristicsSelectionMode(v ChargingCharacteristicsSelectionMode)

SetChargingCharacteristicsSelectionMode gets a reference to the given ChargingCharacteristicsSelectionMode and assigns it to the ChargingCharacteristicsSelectionMode field.

func (*PDUSessionInformation) SetDiagnostics

func (o *PDUSessionInformation) SetDiagnostics(v int32)

SetDiagnostics gets a reference to the given int32 and assigns it to the Diagnostics field.

func (*PDUSessionInformation) SetDnnId

func (o *PDUSessionInformation) SetDnnId(v string)

SetDnnId sets field value

func (*PDUSessionInformation) SetEnhancedDiagnostics

func (o *PDUSessionInformation) SetEnhancedDiagnostics(v []RanNasRelCause)

SetEnhancedDiagnostics gets a reference to the given []RanNasRelCause and assigns it to the EnhancedDiagnostics field.

func (*PDUSessionInformation) SetHPlmnId

func (o *PDUSessionInformation) SetHPlmnId(v PlmnId)

SetHPlmnId gets a reference to the given PlmnId and assigns it to the HPlmnId field.

func (*PDUSessionInformation) SetMAPDUNon3GPPRATType

func (o *PDUSessionInformation) SetMAPDUNon3GPPRATType(v RatType)

SetMAPDUNon3GPPRATType gets a reference to the given RatType and assigns it to the MAPDUNon3GPPRATType field.

func (*PDUSessionInformation) SetMAPDUSessionInformation

func (o *PDUSessionInformation) SetMAPDUSessionInformation(v MAPDUSessionInformation)

SetMAPDUSessionInformation gets a reference to the given MAPDUSessionInformation and assigns it to the MAPDUSessionInformation field.

func (*PDUSessionInformation) SetNetworkSlicingInfo

func (o *PDUSessionInformation) SetNetworkSlicingInfo(v NetworkSlicingInfo)

SetNetworkSlicingInfo gets a reference to the given NetworkSlicingInfo and assigns it to the NetworkSlicingInfo field.

func (*PDUSessionInformation) SetPduAddress

func (o *PDUSessionInformation) SetPduAddress(v PDUAddress)

SetPduAddress gets a reference to the given PDUAddress and assigns it to the PduAddress field.

func (*PDUSessionInformation) SetPduSessionID

func (o *PDUSessionInformation) SetPduSessionID(v int32)

SetPduSessionID sets field value

func (*PDUSessionInformation) SetPduType

func (o *PDUSessionInformation) SetPduType(v PduSessionType)

SetPduType gets a reference to the given PduSessionType and assigns it to the PduType field.

func (*PDUSessionInformation) SetRatType

func (o *PDUSessionInformation) SetRatType(v RatType)

SetRatType gets a reference to the given RatType and assigns it to the RatType field.

func (*PDUSessionInformation) SetServingCNPlmnId

func (o *PDUSessionInformation) SetServingCNPlmnId(v PlmnId)

SetServingCNPlmnId gets a reference to the given PlmnId and assigns it to the ServingCNPlmnId field.

func (*PDUSessionInformation) SetServingNetworkFunctionID

func (o *PDUSessionInformation) SetServingNetworkFunctionID(v ServingNetworkFunctionID)

SetServingNetworkFunctionID gets a reference to the given ServingNetworkFunctionID and assigns it to the ServingNetworkFunctionID field.

func (*PDUSessionInformation) SetSessionStopIndicator

func (o *PDUSessionInformation) SetSessionStopIndicator(v bool)

SetSessionStopIndicator gets a reference to the given bool and assigns it to the SessionStopIndicator field.

func (*PDUSessionInformation) SetSscMode

func (o *PDUSessionInformation) SetSscMode(v SscMode)

SetSscMode gets a reference to the given SscMode and assigns it to the SscMode field.

func (*PDUSessionInformation) SetStartTime

func (o *PDUSessionInformation) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (*PDUSessionInformation) SetStopTime

func (o *PDUSessionInformation) SetStopTime(v time.Time)

SetStopTime gets a reference to the given time.Time and assigns it to the StopTime field.

func (*PDUSessionInformation) SetSubscribedQoSInformation

func (o *PDUSessionInformation) SetSubscribedQoSInformation(v SubscribedDefaultQos)

SetSubscribedQoSInformation gets a reference to the given SubscribedDefaultQos and assigns it to the SubscribedQoSInformation field.

func (*PDUSessionInformation) SetSubscribedSessionAMBR

func (o *PDUSessionInformation) SetSubscribedSessionAMBR(v Ambr)

SetSubscribedSessionAMBR gets a reference to the given Ambr and assigns it to the SubscribedSessionAMBR field.

func (*PDUSessionInformation) SetVar3gppPSDataOffStatus

func (o *PDUSessionInformation) SetVar3gppPSDataOffStatus(v Model3GPPPSDataOffStatus)

SetVar3gppPSDataOffStatus gets a reference to the given Model3GPPPSDataOffStatus and assigns it to the Var3gppPSDataOffStatus field.

func (PDUSessionInformation) ToMap

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

type PartialRecordMethod

type PartialRecordMethod struct {
	String *string
}

PartialRecordMethod struct for PartialRecordMethod

func (*PartialRecordMethod) MarshalJSON

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

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

func (*PartialRecordMethod) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 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 PreemptionCapability

type PreemptionCapability struct {
	String *string
}

PreemptionCapability The enumeration PreemptionCapability indicates the pre-emption capability of a request on other QoS flows. See clause 5.7.2.2 of 3GPP TS 23.501. It shall comply with the provisions defined in table 5.5.3.1-1.

func (*PreemptionCapability) MarshalJSON

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

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

func (*PreemptionCapability) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type PreemptionVulnerability

type PreemptionVulnerability struct {
	String *string
}

PreemptionVulnerability The enumeration PreemptionVulnerability indicates the pre-emption vulnerability of the QoS flow to pre-emption from other QoS flows. See clause 5.7.2.2 of 3GPP TS 23.501. It shall comply with the provisions defined in table 5.5.3.2-1

func (*PreemptionVulnerability) MarshalJSON

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

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

func (*PreemptionVulnerability) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 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 QFIContainerInformation

type QFIContainerInformation struct {
	// Unsigned integer identifying a QoS flow, within the range 0 to 63.
	QFI *int32 `json:"qFI,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeofFirstUsage *time.Time `json:"timeofFirstUsage,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeofLastUsage         *time.Time          `json:"timeofLastUsage,omitempty"`
	QoSInformation          NullableQosData     `json:"qoSInformation,omitempty"`
	QoSCharacteristics      *QosCharacteristics `json:"qoSCharacteristics,omitempty"`
	UserLocationInformation *UserLocation       `json:"userLocationInformation,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.
	UetimeZone                       *string                    `json:"uetimeZone,omitempty"`
	PresenceReportingAreaInformation *map[string]PresenceInfo   `json:"presenceReportingAreaInformation,omitempty"`
	RATType                          *RatType                   `json:"rATType,omitempty"`
	ServingNetworkFunctionID         []ServingNetworkFunctionID `json:"servingNetworkFunctionID,omitempty"`
	Var3gppPSDataOffStatus           *Model3GPPPSDataOffStatus  `json:"3gppPSDataOffStatus,omitempty"`
}

QFIContainerInformation struct for QFIContainerInformation

func NewQFIContainerInformation

func NewQFIContainerInformation() *QFIContainerInformation

NewQFIContainerInformation instantiates a new QFIContainerInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQFIContainerInformationWithDefaults

func NewQFIContainerInformationWithDefaults() *QFIContainerInformation

NewQFIContainerInformationWithDefaults instantiates a new QFIContainerInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QFIContainerInformation) GetPresenceReportingAreaInformation

func (o *QFIContainerInformation) GetPresenceReportingAreaInformation() map[string]PresenceInfo

GetPresenceReportingAreaInformation returns the PresenceReportingAreaInformation field value if set, zero value otherwise.

func (*QFIContainerInformation) GetPresenceReportingAreaInformationOk

func (o *QFIContainerInformation) GetPresenceReportingAreaInformationOk() (*map[string]PresenceInfo, bool)

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

func (*QFIContainerInformation) GetQFI

func (o *QFIContainerInformation) GetQFI() int32

GetQFI returns the QFI field value if set, zero value otherwise.

func (*QFIContainerInformation) GetQFIOk

func (o *QFIContainerInformation) 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 (*QFIContainerInformation) GetQoSCharacteristics

func (o *QFIContainerInformation) GetQoSCharacteristics() QosCharacteristics

GetQoSCharacteristics returns the QoSCharacteristics field value if set, zero value otherwise.

func (*QFIContainerInformation) GetQoSCharacteristicsOk

func (o *QFIContainerInformation) GetQoSCharacteristicsOk() (*QosCharacteristics, bool)

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

func (*QFIContainerInformation) GetQoSInformation

func (o *QFIContainerInformation) GetQoSInformation() QosData

GetQoSInformation returns the QoSInformation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QFIContainerInformation) GetQoSInformationOk

func (o *QFIContainerInformation) GetQoSInformationOk() (*QosData, bool)

GetQoSInformationOk returns a tuple with the QoSInformation 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 (*QFIContainerInformation) GetRATType

func (o *QFIContainerInformation) GetRATType() RatType

GetRATType returns the RATType field value if set, zero value otherwise.

func (*QFIContainerInformation) GetRATTypeOk

func (o *QFIContainerInformation) 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 (*QFIContainerInformation) GetServingNetworkFunctionID

func (o *QFIContainerInformation) GetServingNetworkFunctionID() []ServingNetworkFunctionID

GetServingNetworkFunctionID returns the ServingNetworkFunctionID field value if set, zero value otherwise.

func (*QFIContainerInformation) GetServingNetworkFunctionIDOk

func (o *QFIContainerInformation) GetServingNetworkFunctionIDOk() ([]ServingNetworkFunctionID, bool)

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

func (*QFIContainerInformation) GetTimeofFirstUsage

func (o *QFIContainerInformation) GetTimeofFirstUsage() time.Time

GetTimeofFirstUsage returns the TimeofFirstUsage field value if set, zero value otherwise.

func (*QFIContainerInformation) GetTimeofFirstUsageOk

func (o *QFIContainerInformation) GetTimeofFirstUsageOk() (*time.Time, bool)

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

func (*QFIContainerInformation) GetTimeofLastUsage

func (o *QFIContainerInformation) GetTimeofLastUsage() time.Time

GetTimeofLastUsage returns the TimeofLastUsage field value if set, zero value otherwise.

func (*QFIContainerInformation) GetTimeofLastUsageOk

func (o *QFIContainerInformation) GetTimeofLastUsageOk() (*time.Time, bool)

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

func (*QFIContainerInformation) GetUetimeZone

func (o *QFIContainerInformation) GetUetimeZone() string

GetUetimeZone returns the UetimeZone field value if set, zero value otherwise.

func (*QFIContainerInformation) GetUetimeZoneOk

func (o *QFIContainerInformation) GetUetimeZoneOk() (*string, bool)

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

func (*QFIContainerInformation) GetUserLocationInformation

func (o *QFIContainerInformation) GetUserLocationInformation() UserLocation

GetUserLocationInformation returns the UserLocationInformation field value if set, zero value otherwise.

func (*QFIContainerInformation) GetUserLocationInformationOk

func (o *QFIContainerInformation) GetUserLocationInformationOk() (*UserLocation, bool)

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

func (*QFIContainerInformation) GetVar3gppPSDataOffStatus

func (o *QFIContainerInformation) GetVar3gppPSDataOffStatus() Model3GPPPSDataOffStatus

GetVar3gppPSDataOffStatus returns the Var3gppPSDataOffStatus field value if set, zero value otherwise.

func (*QFIContainerInformation) GetVar3gppPSDataOffStatusOk

func (o *QFIContainerInformation) GetVar3gppPSDataOffStatusOk() (*Model3GPPPSDataOffStatus, bool)

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

func (*QFIContainerInformation) HasPresenceReportingAreaInformation

func (o *QFIContainerInformation) HasPresenceReportingAreaInformation() bool

HasPresenceReportingAreaInformation returns a boolean if a field has been set.

func (*QFIContainerInformation) HasQFI

func (o *QFIContainerInformation) HasQFI() bool

HasQFI returns a boolean if a field has been set.

func (*QFIContainerInformation) HasQoSCharacteristics

func (o *QFIContainerInformation) HasQoSCharacteristics() bool

HasQoSCharacteristics returns a boolean if a field has been set.

func (*QFIContainerInformation) HasQoSInformation

func (o *QFIContainerInformation) HasQoSInformation() bool

HasQoSInformation returns a boolean if a field has been set.

func (*QFIContainerInformation) HasRATType

func (o *QFIContainerInformation) HasRATType() bool

HasRATType returns a boolean if a field has been set.

func (*QFIContainerInformation) HasServingNetworkFunctionID

func (o *QFIContainerInformation) HasServingNetworkFunctionID() bool

HasServingNetworkFunctionID returns a boolean if a field has been set.

func (*QFIContainerInformation) HasTimeofFirstUsage

func (o *QFIContainerInformation) HasTimeofFirstUsage() bool

HasTimeofFirstUsage returns a boolean if a field has been set.

func (*QFIContainerInformation) HasTimeofLastUsage

func (o *QFIContainerInformation) HasTimeofLastUsage() bool

HasTimeofLastUsage returns a boolean if a field has been set.

func (*QFIContainerInformation) HasUetimeZone

func (o *QFIContainerInformation) HasUetimeZone() bool

HasUetimeZone returns a boolean if a field has been set.

func (*QFIContainerInformation) HasUserLocationInformation

func (o *QFIContainerInformation) HasUserLocationInformation() bool

HasUserLocationInformation returns a boolean if a field has been set.

func (*QFIContainerInformation) HasVar3gppPSDataOffStatus

func (o *QFIContainerInformation) HasVar3gppPSDataOffStatus() bool

HasVar3gppPSDataOffStatus returns a boolean if a field has been set.

func (QFIContainerInformation) MarshalJSON

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

func (*QFIContainerInformation) SetPresenceReportingAreaInformation

func (o *QFIContainerInformation) SetPresenceReportingAreaInformation(v map[string]PresenceInfo)

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

func (*QFIContainerInformation) SetQFI

func (o *QFIContainerInformation) SetQFI(v int32)

SetQFI gets a reference to the given int32 and assigns it to the QFI field.

func (*QFIContainerInformation) SetQoSCharacteristics

func (o *QFIContainerInformation) SetQoSCharacteristics(v QosCharacteristics)

SetQoSCharacteristics gets a reference to the given QosCharacteristics and assigns it to the QoSCharacteristics field.

func (*QFIContainerInformation) SetQoSInformation

func (o *QFIContainerInformation) SetQoSInformation(v QosData)

SetQoSInformation gets a reference to the given NullableQosData and assigns it to the QoSInformation field.

func (*QFIContainerInformation) SetQoSInformationNil

func (o *QFIContainerInformation) SetQoSInformationNil()

SetQoSInformationNil sets the value for QoSInformation to be an explicit nil

func (*QFIContainerInformation) SetRATType

func (o *QFIContainerInformation) SetRATType(v RatType)

SetRATType gets a reference to the given RatType and assigns it to the RATType field.

func (*QFIContainerInformation) SetServingNetworkFunctionID

func (o *QFIContainerInformation) SetServingNetworkFunctionID(v []ServingNetworkFunctionID)

SetServingNetworkFunctionID gets a reference to the given []ServingNetworkFunctionID and assigns it to the ServingNetworkFunctionID field.

func (*QFIContainerInformation) SetTimeofFirstUsage

func (o *QFIContainerInformation) SetTimeofFirstUsage(v time.Time)

SetTimeofFirstUsage gets a reference to the given time.Time and assigns it to the TimeofFirstUsage field.

func (*QFIContainerInformation) SetTimeofLastUsage

func (o *QFIContainerInformation) SetTimeofLastUsage(v time.Time)

SetTimeofLastUsage gets a reference to the given time.Time and assigns it to the TimeofLastUsage field.

func (*QFIContainerInformation) SetUetimeZone

func (o *QFIContainerInformation) SetUetimeZone(v string)

SetUetimeZone gets a reference to the given string and assigns it to the UetimeZone field.

func (*QFIContainerInformation) SetUserLocationInformation

func (o *QFIContainerInformation) SetUserLocationInformation(v UserLocation)

SetUserLocationInformation gets a reference to the given UserLocation and assigns it to the UserLocationInformation field.

func (*QFIContainerInformation) SetVar3gppPSDataOffStatus

func (o *QFIContainerInformation) SetVar3gppPSDataOffStatus(v Model3GPPPSDataOffStatus)

SetVar3gppPSDataOffStatus gets a reference to the given Model3GPPPSDataOffStatus and assigns it to the Var3gppPSDataOffStatus field.

func (QFIContainerInformation) ToMap

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

func (*QFIContainerInformation) UnsetQoSInformation

func (o *QFIContainerInformation) UnsetQoSInformation()

UnsetQoSInformation ensures that no value is present for QoSInformation, not even an explicit nil

type QosCharacteristics

type QosCharacteristics struct {
	// Unsigned integer representing a 5G QoS Identifier (see clause 5.7.2.1 of 3GPP TS 23.501, within the range 0 to 255.
	Var5qi       int32           `json:"5qi"`
	ResourceType QosResourceType `json:"resourceType"`
	// Unsigned integer indicating the 5QI Priority Level (see clauses 5.7.3.3 and 5.7.4 of 3GPP TS 23.501, within the range 1 to 127.Values are ordered in decreasing order of priority,  i.e. with 1 as the highest priority and 127 as the lowest priority.
	PriorityLevel int32 `json:"priorityLevel"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	PacketDelayBudget int32 `json:"packetDelayBudget"`
	// String representing Packet Error Rate (see clause 5.7.3.5 and 5.7.4 of 3GPP TS 23.501, expressed as a \"scalar x 10-k\" where the scalar and the exponent k are each encoded as one decimal digit.
	PacketErrorRate string `json:"packetErrorRate"`
	// Unsigned integer indicating Averaging Window (see clause 5.7.3.6 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	AveragingWindow *int32 `json:"averagingWindow,omitempty"`
	// Unsigned integer indicating Maximum Data Burst Volume (see clauses 5.7.3.7 and 5.7.4 of 3GPP TS 23.501), expressed in Bytes.
	MaxDataBurstVol *int32 `json:"maxDataBurstVol,omitempty"`
	// Unsigned integer indicating Maximum Data Burst Volume (see clauses 5.7.3.7 and 5.7.4 of 3GPP TS 23.501), expressed in Bytes.
	ExtMaxDataBurstVol *int32 `json:"extMaxDataBurstVol,omitempty"`
}

QosCharacteristics Contains QoS characteristics for a non-standardized or a non-configured 5QI.

func NewQosCharacteristics

func NewQosCharacteristics(var5qi int32, resourceType QosResourceType, priorityLevel int32, packetDelayBudget int32, packetErrorRate string) *QosCharacteristics

NewQosCharacteristics instantiates a new QosCharacteristics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosCharacteristicsWithDefaults

func NewQosCharacteristicsWithDefaults() *QosCharacteristics

NewQosCharacteristicsWithDefaults instantiates a new QosCharacteristics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosCharacteristics) GetAveragingWindow

func (o *QosCharacteristics) GetAveragingWindow() int32

GetAveragingWindow returns the AveragingWindow field value if set, zero value otherwise.

func (*QosCharacteristics) GetAveragingWindowOk

func (o *QosCharacteristics) GetAveragingWindowOk() (*int32, bool)

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

func (*QosCharacteristics) GetExtMaxDataBurstVol

func (o *QosCharacteristics) GetExtMaxDataBurstVol() int32

GetExtMaxDataBurstVol returns the ExtMaxDataBurstVol field value if set, zero value otherwise.

func (*QosCharacteristics) GetExtMaxDataBurstVolOk

func (o *QosCharacteristics) GetExtMaxDataBurstVolOk() (*int32, bool)

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

func (*QosCharacteristics) GetMaxDataBurstVol

func (o *QosCharacteristics) GetMaxDataBurstVol() int32

GetMaxDataBurstVol returns the MaxDataBurstVol field value if set, zero value otherwise.

func (*QosCharacteristics) GetMaxDataBurstVolOk

func (o *QosCharacteristics) GetMaxDataBurstVolOk() (*int32, bool)

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

func (*QosCharacteristics) GetPacketDelayBudget

func (o *QosCharacteristics) GetPacketDelayBudget() int32

GetPacketDelayBudget returns the PacketDelayBudget field value

func (*QosCharacteristics) GetPacketDelayBudgetOk

func (o *QosCharacteristics) GetPacketDelayBudgetOk() (*int32, bool)

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

func (*QosCharacteristics) GetPacketErrorRate

func (o *QosCharacteristics) GetPacketErrorRate() string

GetPacketErrorRate returns the PacketErrorRate field value

func (*QosCharacteristics) GetPacketErrorRateOk

func (o *QosCharacteristics) GetPacketErrorRateOk() (*string, bool)

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

func (*QosCharacteristics) GetPriorityLevel

func (o *QosCharacteristics) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value

func (*QosCharacteristics) GetPriorityLevelOk

func (o *QosCharacteristics) GetPriorityLevelOk() (*int32, bool)

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

func (*QosCharacteristics) GetResourceType

func (o *QosCharacteristics) GetResourceType() QosResourceType

GetResourceType returns the ResourceType field value

func (*QosCharacteristics) GetResourceTypeOk

func (o *QosCharacteristics) GetResourceTypeOk() (*QosResourceType, bool)

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

func (*QosCharacteristics) GetVar5qi

func (o *QosCharacteristics) GetVar5qi() int32

GetVar5qi returns the Var5qi field value

func (*QosCharacteristics) GetVar5qiOk

func (o *QosCharacteristics) GetVar5qiOk() (*int32, bool)

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

func (*QosCharacteristics) HasAveragingWindow

func (o *QosCharacteristics) HasAveragingWindow() bool

HasAveragingWindow returns a boolean if a field has been set.

func (*QosCharacteristics) HasExtMaxDataBurstVol

func (o *QosCharacteristics) HasExtMaxDataBurstVol() bool

HasExtMaxDataBurstVol returns a boolean if a field has been set.

func (*QosCharacteristics) HasMaxDataBurstVol

func (o *QosCharacteristics) HasMaxDataBurstVol() bool

HasMaxDataBurstVol returns a boolean if a field has been set.

func (QosCharacteristics) MarshalJSON

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

func (*QosCharacteristics) SetAveragingWindow

func (o *QosCharacteristics) SetAveragingWindow(v int32)

SetAveragingWindow gets a reference to the given int32 and assigns it to the AveragingWindow field.

func (*QosCharacteristics) SetExtMaxDataBurstVol

func (o *QosCharacteristics) SetExtMaxDataBurstVol(v int32)

SetExtMaxDataBurstVol gets a reference to the given int32 and assigns it to the ExtMaxDataBurstVol field.

func (*QosCharacteristics) SetMaxDataBurstVol

func (o *QosCharacteristics) SetMaxDataBurstVol(v int32)

SetMaxDataBurstVol gets a reference to the given int32 and assigns it to the MaxDataBurstVol field.

func (*QosCharacteristics) SetPacketDelayBudget

func (o *QosCharacteristics) SetPacketDelayBudget(v int32)

SetPacketDelayBudget sets field value

func (*QosCharacteristics) SetPacketErrorRate

func (o *QosCharacteristics) SetPacketErrorRate(v string)

SetPacketErrorRate sets field value

func (*QosCharacteristics) SetPriorityLevel

func (o *QosCharacteristics) SetPriorityLevel(v int32)

SetPriorityLevel sets field value

func (*QosCharacteristics) SetResourceType

func (o *QosCharacteristics) SetResourceType(v QosResourceType)

SetResourceType sets field value

func (*QosCharacteristics) SetVar5qi

func (o *QosCharacteristics) SetVar5qi(v int32)

SetVar5qi sets field value

func (QosCharacteristics) ToMap

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

type QosData

type QosData struct {
	// Univocally identifies the QoS control policy data within a PDU session.
	QosId string `json:"qosId"`
	// Unsigned integer representing a 5G QoS Identifier (see clause 5.7.2.1 of 3GPP TS 23.501, within the range 0 to 255.
	Var5qi *int32 `json:"5qi,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxbrUl NullableString `json:"maxbrUl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxbrDl NullableString `json:"maxbrDl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	GbrUl NullableString `json:"gbrUl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	GbrDl NullableString `json:"gbrDl,omitempty"`
	Arp   *Arp           `json:"arp,omitempty"`
	// Indicates whether notifications are requested from 3GPP NG-RAN when the GFBR can no longer (or again) be guaranteed for a QoS Flow during the lifetime of the QoS Flow.
	Qnc *bool `json:"qnc,omitempty"`
	// This data type is defined in the same way as the '5QiPriorityLevel' data type, but with the OpenAPI 'nullable: true' property.
	PriorityLevel NullableInt32 `json:"priorityLevel,omitempty"`
	// This data type is defined in the same way as the 'AverWindow' data type, but with the OpenAPI 'nullable: true' property.
	AverWindow NullableInt32 `json:"averWindow,omitempty"`
	// This data type is defined in the same way as the 'MaxDataBurstVol' data type, but with the OpenAPI 'nullable: true' property.
	MaxDataBurstVol NullableInt32 `json:"maxDataBurstVol,omitempty"`
	// Indicates whether the QoS information is reflective for the corresponding service data  flow.
	ReflectiveQos *bool `json:"reflectiveQos,omitempty"`
	// Indicates, by containing the same value, what PCC rules may share resource in downlink  direction.
	SharingKeyDl *string `json:"sharingKeyDl,omitempty"`
	// Indicates, by containing the same value, what PCC rules may share resource in uplink  direction.
	SharingKeyUl *string `json:"sharingKeyUl,omitempty"`
	// This data type is defined in the same way as the 'PacketLossRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxPacketLossRateDl NullableInt32 `json:"maxPacketLossRateDl,omitempty"`
	// This data type is defined in the same way as the 'PacketLossRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxPacketLossRateUl NullableInt32 `json:"maxPacketLossRateUl,omitempty"`
	// Indicates that the dynamic PCC rule shall always have its binding with the QoS Flow  associated with the default QoS rule
	DefQosFlowIndication *bool `json:"defQosFlowIndication,omitempty"`
	// This data type is defined in the same way as the 'ExtMaxDataBurstVol' data type, but with the OpenAPI 'nullable: true' property.
	ExtMaxDataBurstVol NullableInt32 `json:"extMaxDataBurstVol,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.
	PacketDelayBudget *int32 `json:"packetDelayBudget,omitempty"`
	// String representing Packet Error Rate (see clause 5.7.3.5 and 5.7.4 of 3GPP TS 23.501, expressed as a \"scalar x 10-k\" where the scalar and the exponent k are each encoded as one decimal digit.
	PacketErrorRate *string `json:"packetErrorRate,omitempty"`
}

QosData Contains the QoS parameters.

func NewQosData

func NewQosData(qosId string) *QosData

NewQosData instantiates a new QosData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosDataWithDefaults

func NewQosDataWithDefaults() *QosData

NewQosDataWithDefaults instantiates a new QosData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosData) GetArp

func (o *QosData) GetArp() Arp

GetArp returns the Arp field value if set, zero value otherwise.

func (*QosData) GetArpOk

func (o *QosData) GetArpOk() (*Arp, bool)

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

func (*QosData) GetAverWindow

func (o *QosData) GetAverWindow() int32

GetAverWindow returns the AverWindow field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetAverWindowOk

func (o *QosData) GetAverWindowOk() (*int32, bool)

GetAverWindowOk returns a tuple with the AverWindow 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 (*QosData) GetDefQosFlowIndication

func (o *QosData) GetDefQosFlowIndication() bool

GetDefQosFlowIndication returns the DefQosFlowIndication field value if set, zero value otherwise.

func (*QosData) GetDefQosFlowIndicationOk

func (o *QosData) GetDefQosFlowIndicationOk() (*bool, bool)

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

func (*QosData) GetExtMaxDataBurstVol

func (o *QosData) GetExtMaxDataBurstVol() int32

GetExtMaxDataBurstVol returns the ExtMaxDataBurstVol field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetExtMaxDataBurstVolOk

func (o *QosData) GetExtMaxDataBurstVolOk() (*int32, bool)

GetExtMaxDataBurstVolOk returns a tuple with the ExtMaxDataBurstVol 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 (*QosData) GetGbrDl

func (o *QosData) GetGbrDl() string

GetGbrDl returns the GbrDl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetGbrDlOk

func (o *QosData) GetGbrDlOk() (*string, bool)

GetGbrDlOk returns a tuple with the GbrDl 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 (*QosData) GetGbrUl

func (o *QosData) GetGbrUl() string

GetGbrUl returns the GbrUl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetGbrUlOk

func (o *QosData) GetGbrUlOk() (*string, bool)

GetGbrUlOk returns a tuple with the GbrUl 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 (*QosData) GetMaxDataBurstVol

func (o *QosData) GetMaxDataBurstVol() int32

GetMaxDataBurstVol returns the MaxDataBurstVol field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetMaxDataBurstVolOk

func (o *QosData) GetMaxDataBurstVolOk() (*int32, bool)

GetMaxDataBurstVolOk returns a tuple with the MaxDataBurstVol 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 (*QosData) GetMaxPacketLossRateDl

func (o *QosData) GetMaxPacketLossRateDl() int32

GetMaxPacketLossRateDl returns the MaxPacketLossRateDl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetMaxPacketLossRateDlOk

func (o *QosData) GetMaxPacketLossRateDlOk() (*int32, bool)

GetMaxPacketLossRateDlOk returns a tuple with the MaxPacketLossRateDl 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 (*QosData) GetMaxPacketLossRateUl

func (o *QosData) GetMaxPacketLossRateUl() int32

GetMaxPacketLossRateUl returns the MaxPacketLossRateUl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetMaxPacketLossRateUlOk

func (o *QosData) GetMaxPacketLossRateUlOk() (*int32, bool)

GetMaxPacketLossRateUlOk returns a tuple with the MaxPacketLossRateUl 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 (*QosData) GetMaxbrDl

func (o *QosData) GetMaxbrDl() string

GetMaxbrDl returns the MaxbrDl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetMaxbrDlOk

func (o *QosData) GetMaxbrDlOk() (*string, bool)

GetMaxbrDlOk returns a tuple with the MaxbrDl 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 (*QosData) GetMaxbrUl

func (o *QosData) GetMaxbrUl() string

GetMaxbrUl returns the MaxbrUl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetMaxbrUlOk

func (o *QosData) GetMaxbrUlOk() (*string, bool)

GetMaxbrUlOk returns a tuple with the MaxbrUl 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 (*QosData) GetPacketDelayBudget

func (o *QosData) GetPacketDelayBudget() int32

GetPacketDelayBudget returns the PacketDelayBudget field value if set, zero value otherwise.

func (*QosData) GetPacketDelayBudgetOk

func (o *QosData) GetPacketDelayBudgetOk() (*int32, bool)

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

func (*QosData) GetPacketErrorRate

func (o *QosData) GetPacketErrorRate() string

GetPacketErrorRate returns the PacketErrorRate field value if set, zero value otherwise.

func (*QosData) GetPacketErrorRateOk

func (o *QosData) GetPacketErrorRateOk() (*string, bool)

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

func (*QosData) GetPriorityLevel

func (o *QosData) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QosData) GetPriorityLevelOk

func (o *QosData) GetPriorityLevelOk() (*int32, bool)

GetPriorityLevelOk returns a tuple with the PriorityLevel 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 (*QosData) GetQnc

func (o *QosData) GetQnc() bool

GetQnc returns the Qnc field value if set, zero value otherwise.

func (*QosData) GetQncOk

func (o *QosData) GetQncOk() (*bool, bool)

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

func (*QosData) GetQosId

func (o *QosData) GetQosId() string

GetQosId returns the QosId field value

func (*QosData) GetQosIdOk

func (o *QosData) GetQosIdOk() (*string, bool)

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

func (*QosData) GetReflectiveQos

func (o *QosData) GetReflectiveQos() bool

GetReflectiveQos returns the ReflectiveQos field value if set, zero value otherwise.

func (*QosData) GetReflectiveQosOk

func (o *QosData) GetReflectiveQosOk() (*bool, bool)

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

func (*QosData) GetSharingKeyDl

func (o *QosData) GetSharingKeyDl() string

GetSharingKeyDl returns the SharingKeyDl field value if set, zero value otherwise.

func (*QosData) GetSharingKeyDlOk

func (o *QosData) GetSharingKeyDlOk() (*string, bool)

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

func (*QosData) GetSharingKeyUl

func (o *QosData) GetSharingKeyUl() string

GetSharingKeyUl returns the SharingKeyUl field value if set, zero value otherwise.

func (*QosData) GetSharingKeyUlOk

func (o *QosData) GetSharingKeyUlOk() (*string, bool)

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

func (*QosData) GetVar5qi

func (o *QosData) GetVar5qi() int32

GetVar5qi returns the Var5qi field value if set, zero value otherwise.

func (*QosData) GetVar5qiOk

func (o *QosData) GetVar5qiOk() (*int32, bool)

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

func (*QosData) HasArp

func (o *QosData) HasArp() bool

HasArp returns a boolean if a field has been set.

func (*QosData) HasAverWindow

func (o *QosData) HasAverWindow() bool

HasAverWindow returns a boolean if a field has been set.

func (*QosData) HasDefQosFlowIndication

func (o *QosData) HasDefQosFlowIndication() bool

HasDefQosFlowIndication returns a boolean if a field has been set.

func (*QosData) HasExtMaxDataBurstVol

func (o *QosData) HasExtMaxDataBurstVol() bool

HasExtMaxDataBurstVol returns a boolean if a field has been set.

func (*QosData) HasGbrDl

func (o *QosData) HasGbrDl() bool

HasGbrDl returns a boolean if a field has been set.

func (*QosData) HasGbrUl

func (o *QosData) HasGbrUl() bool

HasGbrUl returns a boolean if a field has been set.

func (*QosData) HasMaxDataBurstVol

func (o *QosData) HasMaxDataBurstVol() bool

HasMaxDataBurstVol returns a boolean if a field has been set.

func (*QosData) HasMaxPacketLossRateDl

func (o *QosData) HasMaxPacketLossRateDl() bool

HasMaxPacketLossRateDl returns a boolean if a field has been set.

func (*QosData) HasMaxPacketLossRateUl

func (o *QosData) HasMaxPacketLossRateUl() bool

HasMaxPacketLossRateUl returns a boolean if a field has been set.

func (*QosData) HasMaxbrDl

func (o *QosData) HasMaxbrDl() bool

HasMaxbrDl returns a boolean if a field has been set.

func (*QosData) HasMaxbrUl

func (o *QosData) HasMaxbrUl() bool

HasMaxbrUl returns a boolean if a field has been set.

func (*QosData) HasPacketDelayBudget

func (o *QosData) HasPacketDelayBudget() bool

HasPacketDelayBudget returns a boolean if a field has been set.

func (*QosData) HasPacketErrorRate

func (o *QosData) HasPacketErrorRate() bool

HasPacketErrorRate returns a boolean if a field has been set.

func (*QosData) HasPriorityLevel

func (o *QosData) HasPriorityLevel() bool

HasPriorityLevel returns a boolean if a field has been set.

func (*QosData) HasQnc

func (o *QosData) HasQnc() bool

HasQnc returns a boolean if a field has been set.

func (*QosData) HasReflectiveQos

func (o *QosData) HasReflectiveQos() bool

HasReflectiveQos returns a boolean if a field has been set.

func (*QosData) HasSharingKeyDl

func (o *QosData) HasSharingKeyDl() bool

HasSharingKeyDl returns a boolean if a field has been set.

func (*QosData) HasSharingKeyUl

func (o *QosData) HasSharingKeyUl() bool

HasSharingKeyUl returns a boolean if a field has been set.

func (*QosData) HasVar5qi

func (o *QosData) HasVar5qi() bool

HasVar5qi returns a boolean if a field has been set.

func (QosData) MarshalJSON

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

func (*QosData) SetArp

func (o *QosData) SetArp(v Arp)

SetArp gets a reference to the given Arp and assigns it to the Arp field.

func (*QosData) SetAverWindow

func (o *QosData) SetAverWindow(v int32)

SetAverWindow gets a reference to the given NullableInt32 and assigns it to the AverWindow field.

func (*QosData) SetAverWindowNil

func (o *QosData) SetAverWindowNil()

SetAverWindowNil sets the value for AverWindow to be an explicit nil

func (*QosData) SetDefQosFlowIndication

func (o *QosData) SetDefQosFlowIndication(v bool)

SetDefQosFlowIndication gets a reference to the given bool and assigns it to the DefQosFlowIndication field.

func (*QosData) SetExtMaxDataBurstVol

func (o *QosData) SetExtMaxDataBurstVol(v int32)

SetExtMaxDataBurstVol gets a reference to the given NullableInt32 and assigns it to the ExtMaxDataBurstVol field.

func (*QosData) SetExtMaxDataBurstVolNil

func (o *QosData) SetExtMaxDataBurstVolNil()

SetExtMaxDataBurstVolNil sets the value for ExtMaxDataBurstVol to be an explicit nil

func (*QosData) SetGbrDl

func (o *QosData) SetGbrDl(v string)

SetGbrDl gets a reference to the given NullableString and assigns it to the GbrDl field.

func (*QosData) SetGbrDlNil

func (o *QosData) SetGbrDlNil()

SetGbrDlNil sets the value for GbrDl to be an explicit nil

func (*QosData) SetGbrUl

func (o *QosData) SetGbrUl(v string)

SetGbrUl gets a reference to the given NullableString and assigns it to the GbrUl field.

func (*QosData) SetGbrUlNil

func (o *QosData) SetGbrUlNil()

SetGbrUlNil sets the value for GbrUl to be an explicit nil

func (*QosData) SetMaxDataBurstVol

func (o *QosData) SetMaxDataBurstVol(v int32)

SetMaxDataBurstVol gets a reference to the given NullableInt32 and assigns it to the MaxDataBurstVol field.

func (*QosData) SetMaxDataBurstVolNil

func (o *QosData) SetMaxDataBurstVolNil()

SetMaxDataBurstVolNil sets the value for MaxDataBurstVol to be an explicit nil

func (*QosData) SetMaxPacketLossRateDl

func (o *QosData) SetMaxPacketLossRateDl(v int32)

SetMaxPacketLossRateDl gets a reference to the given NullableInt32 and assigns it to the MaxPacketLossRateDl field.

func (*QosData) SetMaxPacketLossRateDlNil

func (o *QosData) SetMaxPacketLossRateDlNil()

SetMaxPacketLossRateDlNil sets the value for MaxPacketLossRateDl to be an explicit nil

func (*QosData) SetMaxPacketLossRateUl

func (o *QosData) SetMaxPacketLossRateUl(v int32)

SetMaxPacketLossRateUl gets a reference to the given NullableInt32 and assigns it to the MaxPacketLossRateUl field.

func (*QosData) SetMaxPacketLossRateUlNil

func (o *QosData) SetMaxPacketLossRateUlNil()

SetMaxPacketLossRateUlNil sets the value for MaxPacketLossRateUl to be an explicit nil

func (*QosData) SetMaxbrDl

func (o *QosData) SetMaxbrDl(v string)

SetMaxbrDl gets a reference to the given NullableString and assigns it to the MaxbrDl field.

func (*QosData) SetMaxbrDlNil

func (o *QosData) SetMaxbrDlNil()

SetMaxbrDlNil sets the value for MaxbrDl to be an explicit nil

func (*QosData) SetMaxbrUl

func (o *QosData) SetMaxbrUl(v string)

SetMaxbrUl gets a reference to the given NullableString and assigns it to the MaxbrUl field.

func (*QosData) SetMaxbrUlNil

func (o *QosData) SetMaxbrUlNil()

SetMaxbrUlNil sets the value for MaxbrUl to be an explicit nil

func (*QosData) SetPacketDelayBudget

func (o *QosData) SetPacketDelayBudget(v int32)

SetPacketDelayBudget gets a reference to the given int32 and assigns it to the PacketDelayBudget field.

func (*QosData) SetPacketErrorRate

func (o *QosData) SetPacketErrorRate(v string)

SetPacketErrorRate gets a reference to the given string and assigns it to the PacketErrorRate field.

func (*QosData) SetPriorityLevel

func (o *QosData) SetPriorityLevel(v int32)

SetPriorityLevel gets a reference to the given NullableInt32 and assigns it to the PriorityLevel field.

func (*QosData) SetPriorityLevelNil

func (o *QosData) SetPriorityLevelNil()

SetPriorityLevelNil sets the value for PriorityLevel to be an explicit nil

func (*QosData) SetQnc

func (o *QosData) SetQnc(v bool)

SetQnc gets a reference to the given bool and assigns it to the Qnc field.

func (*QosData) SetQosId

func (o *QosData) SetQosId(v string)

SetQosId sets field value

func (*QosData) SetReflectiveQos

func (o *QosData) SetReflectiveQos(v bool)

SetReflectiveQos gets a reference to the given bool and assigns it to the ReflectiveQos field.

func (*QosData) SetSharingKeyDl

func (o *QosData) SetSharingKeyDl(v string)

SetSharingKeyDl gets a reference to the given string and assigns it to the SharingKeyDl field.

func (*QosData) SetSharingKeyUl

func (o *QosData) SetSharingKeyUl(v string)

SetSharingKeyUl gets a reference to the given string and assigns it to the SharingKeyUl field.

func (*QosData) SetVar5qi

func (o *QosData) SetVar5qi(v int32)

SetVar5qi gets a reference to the given int32 and assigns it to the Var5qi field.

func (QosData) ToMap

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

func (*QosData) UnsetAverWindow

func (o *QosData) UnsetAverWindow()

UnsetAverWindow ensures that no value is present for AverWindow, not even an explicit nil

func (*QosData) UnsetExtMaxDataBurstVol

func (o *QosData) UnsetExtMaxDataBurstVol()

UnsetExtMaxDataBurstVol ensures that no value is present for ExtMaxDataBurstVol, not even an explicit nil

func (*QosData) UnsetGbrDl

func (o *QosData) UnsetGbrDl()

UnsetGbrDl ensures that no value is present for GbrDl, not even an explicit nil

func (*QosData) UnsetGbrUl

func (o *QosData) UnsetGbrUl()

UnsetGbrUl ensures that no value is present for GbrUl, not even an explicit nil

func (*QosData) UnsetMaxDataBurstVol

func (o *QosData) UnsetMaxDataBurstVol()

UnsetMaxDataBurstVol ensures that no value is present for MaxDataBurstVol, not even an explicit nil

func (*QosData) UnsetMaxPacketLossRateDl

func (o *QosData) UnsetMaxPacketLossRateDl()

UnsetMaxPacketLossRateDl ensures that no value is present for MaxPacketLossRateDl, not even an explicit nil

func (*QosData) UnsetMaxPacketLossRateUl

func (o *QosData) UnsetMaxPacketLossRateUl()

UnsetMaxPacketLossRateUl ensures that no value is present for MaxPacketLossRateUl, not even an explicit nil

func (*QosData) UnsetMaxbrDl

func (o *QosData) UnsetMaxbrDl()

UnsetMaxbrDl ensures that no value is present for MaxbrDl, not even an explicit nil

func (*QosData) UnsetMaxbrUl

func (o *QosData) UnsetMaxbrUl()

UnsetMaxbrUl ensures that no value is present for MaxbrUl, not even an explicit nil

func (*QosData) UnsetPriorityLevel

func (o *QosData) UnsetPriorityLevel()

UnsetPriorityLevel ensures that no value is present for PriorityLevel, not even an explicit nil

type QosFlowsUsageReport

type QosFlowsUsageReport struct {
	// Unsigned integer identifying a QoS flow, within the range 0 to 63.
	QFI *int32 `json:"qFI,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	StartTimestamp *time.Time `json:"startTimestamp,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	EndTimestamp *time.Time `json:"endTimestamp,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 64-bit integer.
	UplinkVolume *int32 `json:"uplinkVolume,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 64-bit integer.
	DownlinkVolume *int32 `json:"downlinkVolume,omitempty"`
}

QosFlowsUsageReport struct for QosFlowsUsageReport

func NewQosFlowsUsageReport

func NewQosFlowsUsageReport() *QosFlowsUsageReport

NewQosFlowsUsageReport instantiates a new QosFlowsUsageReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosFlowsUsageReportWithDefaults

func NewQosFlowsUsageReportWithDefaults() *QosFlowsUsageReport

NewQosFlowsUsageReportWithDefaults instantiates a new QosFlowsUsageReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosFlowsUsageReport) GetDownlinkVolume

func (o *QosFlowsUsageReport) GetDownlinkVolume() int32

GetDownlinkVolume returns the DownlinkVolume field value if set, zero value otherwise.

func (*QosFlowsUsageReport) GetDownlinkVolumeOk

func (o *QosFlowsUsageReport) GetDownlinkVolumeOk() (*int32, 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 (*QosFlowsUsageReport) GetEndTimestamp

func (o *QosFlowsUsageReport) GetEndTimestamp() time.Time

GetEndTimestamp returns the EndTimestamp field value if set, zero value otherwise.

func (*QosFlowsUsageReport) GetEndTimestampOk

func (o *QosFlowsUsageReport) GetEndTimestampOk() (*time.Time, bool)

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

func (*QosFlowsUsageReport) GetQFI

func (o *QosFlowsUsageReport) GetQFI() int32

GetQFI returns the QFI field value if set, zero value otherwise.

func (*QosFlowsUsageReport) GetQFIOk

func (o *QosFlowsUsageReport) 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 (*QosFlowsUsageReport) GetStartTimestamp

func (o *QosFlowsUsageReport) GetStartTimestamp() time.Time

GetStartTimestamp returns the StartTimestamp field value if set, zero value otherwise.

func (*QosFlowsUsageReport) GetStartTimestampOk

func (o *QosFlowsUsageReport) GetStartTimestampOk() (*time.Time, bool)

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

func (*QosFlowsUsageReport) GetUplinkVolume

func (o *QosFlowsUsageReport) GetUplinkVolume() int32

GetUplinkVolume returns the UplinkVolume field value if set, zero value otherwise.

func (*QosFlowsUsageReport) GetUplinkVolumeOk

func (o *QosFlowsUsageReport) GetUplinkVolumeOk() (*int32, 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 (*QosFlowsUsageReport) HasDownlinkVolume

func (o *QosFlowsUsageReport) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*QosFlowsUsageReport) HasEndTimestamp

func (o *QosFlowsUsageReport) HasEndTimestamp() bool

HasEndTimestamp returns a boolean if a field has been set.

func (*QosFlowsUsageReport) HasQFI

func (o *QosFlowsUsageReport) HasQFI() bool

HasQFI returns a boolean if a field has been set.

func (*QosFlowsUsageReport) HasStartTimestamp

func (o *QosFlowsUsageReport) HasStartTimestamp() bool

HasStartTimestamp returns a boolean if a field has been set.

func (*QosFlowsUsageReport) HasUplinkVolume

func (o *QosFlowsUsageReport) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (QosFlowsUsageReport) MarshalJSON

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

func (*QosFlowsUsageReport) SetDownlinkVolume

func (o *QosFlowsUsageReport) SetDownlinkVolume(v int32)

SetDownlinkVolume gets a reference to the given int32 and assigns it to the DownlinkVolume field.

func (*QosFlowsUsageReport) SetEndTimestamp

func (o *QosFlowsUsageReport) SetEndTimestamp(v time.Time)

SetEndTimestamp gets a reference to the given time.Time and assigns it to the EndTimestamp field.

func (*QosFlowsUsageReport) SetQFI

func (o *QosFlowsUsageReport) SetQFI(v int32)

SetQFI gets a reference to the given int32 and assigns it to the QFI field.

func (*QosFlowsUsageReport) SetStartTimestamp

func (o *QosFlowsUsageReport) SetStartTimestamp(v time.Time)

SetStartTimestamp gets a reference to the given time.Time and assigns it to the StartTimestamp field.

func (*QosFlowsUsageReport) SetUplinkVolume

func (o *QosFlowsUsageReport) SetUplinkVolume(v int32)

SetUplinkVolume gets a reference to the given int32 and assigns it to the UplinkVolume field.

func (QosFlowsUsageReport) ToMap

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

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 RANSecondaryRATUsageReport

type RANSecondaryRATUsageReport struct {
	RANSecondaryRATType  *RatType              `json:"rANSecondaryRATType,omitempty"`
	QosFlowsUsageReports []QosFlowsUsageReport `json:"qosFlowsUsageReports,omitempty"`
}

RANSecondaryRATUsageReport struct for RANSecondaryRATUsageReport

func NewRANSecondaryRATUsageReport

func NewRANSecondaryRATUsageReport() *RANSecondaryRATUsageReport

NewRANSecondaryRATUsageReport instantiates a new RANSecondaryRATUsageReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRANSecondaryRATUsageReportWithDefaults

func NewRANSecondaryRATUsageReportWithDefaults() *RANSecondaryRATUsageReport

NewRANSecondaryRATUsageReportWithDefaults instantiates a new RANSecondaryRATUsageReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RANSecondaryRATUsageReport) GetQosFlowsUsageReports

func (o *RANSecondaryRATUsageReport) GetQosFlowsUsageReports() []QosFlowsUsageReport

GetQosFlowsUsageReports returns the QosFlowsUsageReports field value if set, zero value otherwise.

func (*RANSecondaryRATUsageReport) GetQosFlowsUsageReportsOk

func (o *RANSecondaryRATUsageReport) GetQosFlowsUsageReportsOk() ([]QosFlowsUsageReport, bool)

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

func (*RANSecondaryRATUsageReport) GetRANSecondaryRATType

func (o *RANSecondaryRATUsageReport) GetRANSecondaryRATType() RatType

GetRANSecondaryRATType returns the RANSecondaryRATType field value if set, zero value otherwise.

func (*RANSecondaryRATUsageReport) GetRANSecondaryRATTypeOk

func (o *RANSecondaryRATUsageReport) GetRANSecondaryRATTypeOk() (*RatType, bool)

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

func (*RANSecondaryRATUsageReport) HasQosFlowsUsageReports

func (o *RANSecondaryRATUsageReport) HasQosFlowsUsageReports() bool

HasQosFlowsUsageReports returns a boolean if a field has been set.

func (*RANSecondaryRATUsageReport) HasRANSecondaryRATType

func (o *RANSecondaryRATUsageReport) HasRANSecondaryRATType() bool

HasRANSecondaryRATType returns a boolean if a field has been set.

func (RANSecondaryRATUsageReport) MarshalJSON

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

func (*RANSecondaryRATUsageReport) SetQosFlowsUsageReports

func (o *RANSecondaryRATUsageReport) SetQosFlowsUsageReports(v []QosFlowsUsageReport)

SetQosFlowsUsageReports gets a reference to the given []QosFlowsUsageReport and assigns it to the QosFlowsUsageReports field.

func (*RANSecondaryRATUsageReport) SetRANSecondaryRATType

func (o *RANSecondaryRATUsageReport) SetRANSecondaryRATType(v RatType)

SetRANSecondaryRATType gets a reference to the given RatType and assigns it to the RANSecondaryRATType field.

func (RANSecondaryRATUsageReport) ToMap

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

type RanNasRelCause

type RanNasRelCause struct {
	NgApCause *NgApCause `json:"ngApCause,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Var5gMmCause *int32 `json:"5gMmCause,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Var5gSmCause *int32 `json:"5gSmCause,omitempty"`
	// Defines the EPS RAN/NAS release cause.
	EpsCause *string `json:"epsCause,omitempty"`
}

RanNasRelCause Contains the RAN/NAS release cause.

func NewRanNasRelCause

func NewRanNasRelCause() *RanNasRelCause

NewRanNasRelCause instantiates a new RanNasRelCause object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRanNasRelCauseWithDefaults

func NewRanNasRelCauseWithDefaults() *RanNasRelCause

NewRanNasRelCauseWithDefaults instantiates a new RanNasRelCause object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RanNasRelCause) GetEpsCause

func (o *RanNasRelCause) GetEpsCause() string

GetEpsCause returns the EpsCause field value if set, zero value otherwise.

func (*RanNasRelCause) GetEpsCauseOk

func (o *RanNasRelCause) GetEpsCauseOk() (*string, bool)

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

func (*RanNasRelCause) GetNgApCause

func (o *RanNasRelCause) GetNgApCause() NgApCause

GetNgApCause returns the NgApCause field value if set, zero value otherwise.

func (*RanNasRelCause) GetNgApCauseOk

func (o *RanNasRelCause) GetNgApCauseOk() (*NgApCause, bool)

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

func (*RanNasRelCause) GetVar5gMmCause

func (o *RanNasRelCause) GetVar5gMmCause() int32

GetVar5gMmCause returns the Var5gMmCause field value if set, zero value otherwise.

func (*RanNasRelCause) GetVar5gMmCauseOk

func (o *RanNasRelCause) GetVar5gMmCauseOk() (*int32, bool)

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

func (*RanNasRelCause) GetVar5gSmCause

func (o *RanNasRelCause) GetVar5gSmCause() int32

GetVar5gSmCause returns the Var5gSmCause field value if set, zero value otherwise.

func (*RanNasRelCause) GetVar5gSmCauseOk

func (o *RanNasRelCause) GetVar5gSmCauseOk() (*int32, bool)

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

func (*RanNasRelCause) HasEpsCause

func (o *RanNasRelCause) HasEpsCause() bool

HasEpsCause returns a boolean if a field has been set.

func (*RanNasRelCause) HasNgApCause

func (o *RanNasRelCause) HasNgApCause() bool

HasNgApCause returns a boolean if a field has been set.

func (*RanNasRelCause) HasVar5gMmCause

func (o *RanNasRelCause) HasVar5gMmCause() bool

HasVar5gMmCause returns a boolean if a field has been set.

func (*RanNasRelCause) HasVar5gSmCause

func (o *RanNasRelCause) HasVar5gSmCause() bool

HasVar5gSmCause returns a boolean if a field has been set.

func (RanNasRelCause) MarshalJSON

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

func (*RanNasRelCause) SetEpsCause

func (o *RanNasRelCause) SetEpsCause(v string)

SetEpsCause gets a reference to the given string and assigns it to the EpsCause field.

func (*RanNasRelCause) SetNgApCause

func (o *RanNasRelCause) SetNgApCause(v NgApCause)

SetNgApCause gets a reference to the given NgApCause and assigns it to the NgApCause field.

func (*RanNasRelCause) SetVar5gMmCause

func (o *RanNasRelCause) SetVar5gMmCause(v int32)

SetVar5gMmCause gets a reference to the given int32 and assigns it to the Var5gMmCause field.

func (*RanNasRelCause) SetVar5gSmCause

func (o *RanNasRelCause) SetVar5gSmCause(v int32)

SetVar5gSmCause gets a reference to the given int32 and assigns it to the Var5gSmCause field.

func (RanNasRelCause) ToMap

func (o RanNasRelCause) 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 ResultCode

type ResultCode struct {
	String *string
}

ResultCode struct for ResultCode

func (*ResultCode) MarshalJSON

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

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

func (*ResultCode) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type RoamerInOut

type RoamerInOut struct {
	String *string
}

RoamerInOut struct for RoamerInOut

func (*RoamerInOut) MarshalJSON

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

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

func (*RoamerInOut) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type RoamingChargingProfile

type RoamingChargingProfile struct {
	Triggers            []Trigger            `json:"triggers,omitempty"`
	PartialRecordMethod *PartialRecordMethod `json:"partialRecordMethod,omitempty"`
}

RoamingChargingProfile struct for RoamingChargingProfile

func NewRoamingChargingProfile

func NewRoamingChargingProfile() *RoamingChargingProfile

NewRoamingChargingProfile instantiates a new RoamingChargingProfile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRoamingChargingProfileWithDefaults

func NewRoamingChargingProfileWithDefaults() *RoamingChargingProfile

NewRoamingChargingProfileWithDefaults instantiates a new RoamingChargingProfile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RoamingChargingProfile) GetPartialRecordMethod

func (o *RoamingChargingProfile) GetPartialRecordMethod() PartialRecordMethod

GetPartialRecordMethod returns the PartialRecordMethod field value if set, zero value otherwise.

func (*RoamingChargingProfile) GetPartialRecordMethodOk

func (o *RoamingChargingProfile) GetPartialRecordMethodOk() (*PartialRecordMethod, bool)

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

func (*RoamingChargingProfile) GetTriggers

func (o *RoamingChargingProfile) GetTriggers() []Trigger

GetTriggers returns the Triggers field value if set, zero value otherwise.

func (*RoamingChargingProfile) GetTriggersOk

func (o *RoamingChargingProfile) GetTriggersOk() ([]Trigger, bool)

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

func (*RoamingChargingProfile) HasPartialRecordMethod

func (o *RoamingChargingProfile) HasPartialRecordMethod() bool

HasPartialRecordMethod returns a boolean if a field has been set.

func (*RoamingChargingProfile) HasTriggers

func (o *RoamingChargingProfile) HasTriggers() bool

HasTriggers returns a boolean if a field has been set.

func (RoamingChargingProfile) MarshalJSON

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

func (*RoamingChargingProfile) SetPartialRecordMethod

func (o *RoamingChargingProfile) SetPartialRecordMethod(v PartialRecordMethod)

SetPartialRecordMethod gets a reference to the given PartialRecordMethod and assigns it to the PartialRecordMethod field.

func (*RoamingChargingProfile) SetTriggers

func (o *RoamingChargingProfile) SetTriggers(v []Trigger)

SetTriggers gets a reference to the given []Trigger and assigns it to the Triggers field.

func (RoamingChargingProfile) ToMap

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

type RoamingQBCInformation

type RoamingQBCInformation struct {
	MultipleQFIcontainer []MultipleQFIcontainer `json:"multipleQFIcontainer,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.
	UPFID                  *string                 `json:"uPFID,omitempty"`
	RoamingChargingProfile *RoamingChargingProfile `json:"roamingChargingProfile,omitempty"`
}

RoamingQBCInformation struct for RoamingQBCInformation

func NewRoamingQBCInformation

func NewRoamingQBCInformation() *RoamingQBCInformation

NewRoamingQBCInformation instantiates a new RoamingQBCInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRoamingQBCInformationWithDefaults

func NewRoamingQBCInformationWithDefaults() *RoamingQBCInformation

NewRoamingQBCInformationWithDefaults instantiates a new RoamingQBCInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RoamingQBCInformation) GetMultipleQFIcontainer

func (o *RoamingQBCInformation) GetMultipleQFIcontainer() []MultipleQFIcontainer

GetMultipleQFIcontainer returns the MultipleQFIcontainer field value if set, zero value otherwise.

func (*RoamingQBCInformation) GetMultipleQFIcontainerOk

func (o *RoamingQBCInformation) GetMultipleQFIcontainerOk() ([]MultipleQFIcontainer, bool)

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

func (*RoamingQBCInformation) GetRoamingChargingProfile

func (o *RoamingQBCInformation) GetRoamingChargingProfile() RoamingChargingProfile

GetRoamingChargingProfile returns the RoamingChargingProfile field value if set, zero value otherwise.

func (*RoamingQBCInformation) GetRoamingChargingProfileOk

func (o *RoamingQBCInformation) GetRoamingChargingProfileOk() (*RoamingChargingProfile, bool)

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

func (*RoamingQBCInformation) GetUPFID

func (o *RoamingQBCInformation) GetUPFID() string

GetUPFID returns the UPFID field value if set, zero value otherwise.

func (*RoamingQBCInformation) GetUPFIDOk

func (o *RoamingQBCInformation) 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 (*RoamingQBCInformation) HasMultipleQFIcontainer

func (o *RoamingQBCInformation) HasMultipleQFIcontainer() bool

HasMultipleQFIcontainer returns a boolean if a field has been set.

func (*RoamingQBCInformation) HasRoamingChargingProfile

func (o *RoamingQBCInformation) HasRoamingChargingProfile() bool

HasRoamingChargingProfile returns a boolean if a field has been set.

func (*RoamingQBCInformation) HasUPFID

func (o *RoamingQBCInformation) HasUPFID() bool

HasUPFID returns a boolean if a field has been set.

func (RoamingQBCInformation) MarshalJSON

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

func (*RoamingQBCInformation) SetMultipleQFIcontainer

func (o *RoamingQBCInformation) SetMultipleQFIcontainer(v []MultipleQFIcontainer)

SetMultipleQFIcontainer gets a reference to the given []MultipleQFIcontainer and assigns it to the MultipleQFIcontainer field.

func (*RoamingQBCInformation) SetRoamingChargingProfile

func (o *RoamingQBCInformation) SetRoamingChargingProfile(v RoamingChargingProfile)

SetRoamingChargingProfile gets a reference to the given RoamingChargingProfile and assigns it to the RoamingChargingProfile field.

func (*RoamingQBCInformation) SetUPFID

func (o *RoamingQBCInformation) SetUPFID(v string)

SetUPFID gets a reference to the given string and assigns it to the UPFID field.

func (RoamingQBCInformation) ToMap

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

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 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 ServingNetworkFunctionID

type ServingNetworkFunctionID struct {
	ServingNetworkFunctionInformation NFIdentification `json:"servingNetworkFunctionInformation"`
	// 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,omitempty"`
}

ServingNetworkFunctionID struct for ServingNetworkFunctionID

func NewServingNetworkFunctionID

func NewServingNetworkFunctionID(servingNetworkFunctionInformation NFIdentification) *ServingNetworkFunctionID

NewServingNetworkFunctionID instantiates a new ServingNetworkFunctionID object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServingNetworkFunctionIDWithDefaults

func NewServingNetworkFunctionIDWithDefaults() *ServingNetworkFunctionID

NewServingNetworkFunctionIDWithDefaults instantiates a new ServingNetworkFunctionID object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServingNetworkFunctionID) GetAMFId

func (o *ServingNetworkFunctionID) GetAMFId() string

GetAMFId returns the AMFId field value if set, zero value otherwise.

func (*ServingNetworkFunctionID) GetAMFIdOk

func (o *ServingNetworkFunctionID) GetAMFIdOk() (*string, bool)

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

func (*ServingNetworkFunctionID) GetServingNetworkFunctionInformation

func (o *ServingNetworkFunctionID) GetServingNetworkFunctionInformation() NFIdentification

GetServingNetworkFunctionInformation returns the ServingNetworkFunctionInformation field value

func (*ServingNetworkFunctionID) GetServingNetworkFunctionInformationOk

func (o *ServingNetworkFunctionID) GetServingNetworkFunctionInformationOk() (*NFIdentification, bool)

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

func (*ServingNetworkFunctionID) HasAMFId

func (o *ServingNetworkFunctionID) HasAMFId() bool

HasAMFId returns a boolean if a field has been set.

func (ServingNetworkFunctionID) MarshalJSON

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

func (*ServingNetworkFunctionID) SetAMFId

func (o *ServingNetworkFunctionID) SetAMFId(v string)

SetAMFId gets a reference to the given string and assigns it to the AMFId field.

func (*ServingNetworkFunctionID) SetServingNetworkFunctionInformation

func (o *ServingNetworkFunctionID) SetServingNetworkFunctionInformation(v NFIdentification)

SetServingNetworkFunctionInformation sets field value

func (ServingNetworkFunctionID) ToMap

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

type SessionFailover

type SessionFailover struct {
	String *string
}

SessionFailover struct for SessionFailover

func (*SessionFailover) MarshalJSON

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

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

func (*SessionFailover) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 SscMode

type SscMode struct {
	String *string
}

SscMode represents the service and session continuity mode It shall comply with the provisions defined in table 5.4.3.6-1.

func (*SscMode) MarshalJSON

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

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

func (*SscMode) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type SteerModeIndicator

type SteerModeIndicator struct {
	String *string
}

SteerModeIndicator Contains Autonomous load-balance indicator or UE-assistance indicator.

func (*SteerModeIndicator) MarshalJSON

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

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

func (*SteerModeIndicator) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type SteerModeValue

type SteerModeValue struct {
	String *string
}

SteerModeValue Indicates the steering mode value determined by the PCF.

func (*SteerModeValue) MarshalJSON

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

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

func (*SteerModeValue) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type SteeringFunctionality

type SteeringFunctionality struct {
	String *string
}

SteeringFunctionality Possible values are - MPTCP: Indicates that PCF authorizes the MPTCP functionality to support traffic steering, switching and splitting. - ATSSS_LL: Indicates that PCF authorizes the ATSSS-LL functionality to support traffic steering, switching and splitting.

func (*SteeringFunctionality) MarshalJSON

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

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

func (*SteeringFunctionality) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type SteeringMode

type SteeringMode struct {
	SteerModeValue SteerModeValue `json:"steerModeValue"`
	Active         *AccessType    `json:"active,omitempty"`
	Standby        *AccessTypeRm  `json:"standby,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Var3gLoad    *int32                 `json:"3gLoad,omitempty"`
	PrioAcc      *AccessType            `json:"prioAcc,omitempty"`
	ThresValue   NullableThresholdValue `json:"thresValue,omitempty"`
	SteerModeInd *SteerModeIndicator    `json:"steerModeInd,omitempty"`
}

SteeringMode Contains the steering mode value and parameters determined by the PCF.

func NewSteeringMode

func NewSteeringMode(steerModeValue SteerModeValue) *SteeringMode

NewSteeringMode instantiates a new SteeringMode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSteeringModeWithDefaults

func NewSteeringModeWithDefaults() *SteeringMode

NewSteeringModeWithDefaults instantiates a new SteeringMode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SteeringMode) GetActive

func (o *SteeringMode) GetActive() AccessType

GetActive returns the Active field value if set, zero value otherwise.

func (*SteeringMode) GetActiveOk

func (o *SteeringMode) GetActiveOk() (*AccessType, bool)

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

func (*SteeringMode) GetPrioAcc

func (o *SteeringMode) GetPrioAcc() AccessType

GetPrioAcc returns the PrioAcc field value if set, zero value otherwise.

func (*SteeringMode) GetPrioAccOk

func (o *SteeringMode) GetPrioAccOk() (*AccessType, bool)

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

func (*SteeringMode) GetStandby

func (o *SteeringMode) GetStandby() AccessTypeRm

GetStandby returns the Standby field value if set, zero value otherwise.

func (*SteeringMode) GetStandbyOk

func (o *SteeringMode) GetStandbyOk() (*AccessTypeRm, bool)

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

func (*SteeringMode) GetSteerModeInd

func (o *SteeringMode) GetSteerModeInd() SteerModeIndicator

GetSteerModeInd returns the SteerModeInd field value if set, zero value otherwise.

func (*SteeringMode) GetSteerModeIndOk

func (o *SteeringMode) GetSteerModeIndOk() (*SteerModeIndicator, bool)

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

func (*SteeringMode) GetSteerModeValue

func (o *SteeringMode) GetSteerModeValue() SteerModeValue

GetSteerModeValue returns the SteerModeValue field value

func (*SteeringMode) GetSteerModeValueOk

func (o *SteeringMode) GetSteerModeValueOk() (*SteerModeValue, bool)

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

func (*SteeringMode) GetThresValue

func (o *SteeringMode) GetThresValue() ThresholdValue

GetThresValue returns the ThresValue field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SteeringMode) GetThresValueOk

func (o *SteeringMode) GetThresValueOk() (*ThresholdValue, bool)

GetThresValueOk returns a tuple with the ThresValue 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 (*SteeringMode) GetVar3gLoad

func (o *SteeringMode) GetVar3gLoad() int32

GetVar3gLoad returns the Var3gLoad field value if set, zero value otherwise.

func (*SteeringMode) GetVar3gLoadOk

func (o *SteeringMode) GetVar3gLoadOk() (*int32, bool)

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

func (*SteeringMode) HasActive

func (o *SteeringMode) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*SteeringMode) HasPrioAcc

func (o *SteeringMode) HasPrioAcc() bool

HasPrioAcc returns a boolean if a field has been set.

func (*SteeringMode) HasStandby

func (o *SteeringMode) HasStandby() bool

HasStandby returns a boolean if a field has been set.

func (*SteeringMode) HasSteerModeInd

func (o *SteeringMode) HasSteerModeInd() bool

HasSteerModeInd returns a boolean if a field has been set.

func (*SteeringMode) HasThresValue

func (o *SteeringMode) HasThresValue() bool

HasThresValue returns a boolean if a field has been set.

func (*SteeringMode) HasVar3gLoad

func (o *SteeringMode) HasVar3gLoad() bool

HasVar3gLoad returns a boolean if a field has been set.

func (SteeringMode) MarshalJSON

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

func (*SteeringMode) SetActive

func (o *SteeringMode) SetActive(v AccessType)

SetActive gets a reference to the given AccessType and assigns it to the Active field.

func (*SteeringMode) SetPrioAcc

func (o *SteeringMode) SetPrioAcc(v AccessType)

SetPrioAcc gets a reference to the given AccessType and assigns it to the PrioAcc field.

func (*SteeringMode) SetStandby

func (o *SteeringMode) SetStandby(v AccessTypeRm)

SetStandby gets a reference to the given AccessTypeRm and assigns it to the Standby field.

func (*SteeringMode) SetSteerModeInd

func (o *SteeringMode) SetSteerModeInd(v SteerModeIndicator)

SetSteerModeInd gets a reference to the given SteerModeIndicator and assigns it to the SteerModeInd field.

func (*SteeringMode) SetSteerModeValue

func (o *SteeringMode) SetSteerModeValue(v SteerModeValue)

SetSteerModeValue sets field value

func (*SteeringMode) SetThresValue

func (o *SteeringMode) SetThresValue(v ThresholdValue)

SetThresValue gets a reference to the given NullableThresholdValue and assigns it to the ThresValue field.

func (*SteeringMode) SetThresValueNil

func (o *SteeringMode) SetThresValueNil()

SetThresValueNil sets the value for ThresValue to be an explicit nil

func (*SteeringMode) SetVar3gLoad

func (o *SteeringMode) SetVar3gLoad(v int32)

SetVar3gLoad gets a reference to the given int32 and assigns it to the Var3gLoad field.

func (SteeringMode) ToMap

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

func (*SteeringMode) UnsetThresValue

func (o *SteeringMode) UnsetThresValue()

UnsetThresValue ensures that no value is present for ThresValue, not even an explicit nil

type SubscribedDefaultQos

type SubscribedDefaultQos struct {
	// Unsigned integer representing a 5G QoS Identifier (see clause 5.7.2.1 of 3GPP TS 23.501, within the range 0 to 255.
	Var5qi int32 `json:"5qi"`
	Arp    Arp   `json:"arp"`
	// Unsigned integer indicating the 5QI Priority Level (see clauses 5.7.3.3 and 5.7.4 of 3GPP TS 23.501, within the range 1 to 127.Values are ordered in decreasing order of priority,  i.e. with 1 as the highest priority and 127 as the lowest priority.
	PriorityLevel *int32 `json:"priorityLevel,omitempty"`
}

SubscribedDefaultQos Provides the subsribed 5QI and the ARP, it may contain the priority level.

func NewSubscribedDefaultQos

func NewSubscribedDefaultQos(var5qi int32, arp Arp) *SubscribedDefaultQos

NewSubscribedDefaultQos instantiates a new SubscribedDefaultQos object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubscribedDefaultQosWithDefaults

func NewSubscribedDefaultQosWithDefaults() *SubscribedDefaultQos

NewSubscribedDefaultQosWithDefaults instantiates a new SubscribedDefaultQos object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SubscribedDefaultQos) GetArp

func (o *SubscribedDefaultQos) GetArp() Arp

GetArp returns the Arp field value

func (*SubscribedDefaultQos) GetArpOk

func (o *SubscribedDefaultQos) GetArpOk() (*Arp, bool)

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

func (*SubscribedDefaultQos) GetPriorityLevel

func (o *SubscribedDefaultQos) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value if set, zero value otherwise.

func (*SubscribedDefaultQos) GetPriorityLevelOk

func (o *SubscribedDefaultQos) GetPriorityLevelOk() (*int32, bool)

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

func (*SubscribedDefaultQos) GetVar5qi

func (o *SubscribedDefaultQos) GetVar5qi() int32

GetVar5qi returns the Var5qi field value

func (*SubscribedDefaultQos) GetVar5qiOk

func (o *SubscribedDefaultQos) GetVar5qiOk() (*int32, bool)

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

func (*SubscribedDefaultQos) HasPriorityLevel

func (o *SubscribedDefaultQos) HasPriorityLevel() bool

HasPriorityLevel returns a boolean if a field has been set.

func (SubscribedDefaultQos) MarshalJSON

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

func (*SubscribedDefaultQos) SetArp

func (o *SubscribedDefaultQos) SetArp(v Arp)

SetArp sets field value

func (*SubscribedDefaultQos) SetPriorityLevel

func (o *SubscribedDefaultQos) SetPriorityLevel(v int32)

SetPriorityLevel gets a reference to the given int32 and assigns it to the PriorityLevel field.

func (*SubscribedDefaultQos) SetVar5qi

func (o *SubscribedDefaultQos) SetVar5qi(v int32)

SetVar5qi sets field value

func (SubscribedDefaultQos) ToMap

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

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 ThresholdValue

type ThresholdValue struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible with the OpenAPI 'nullable: true' property.
	RttThres NullableInt32 `json:"rttThres,omitempty"`
	// This data type is defined in the same way as the 'PacketLossRate' data type, but with the OpenAPI 'nullable: true' property.
	PlrThres NullableInt32 `json:"plrThres,omitempty"`
}

ThresholdValue Indicates the threshold value(s) for RTT and/or Packet Loss Rate.

func NewThresholdValue

func NewThresholdValue() *ThresholdValue

NewThresholdValue instantiates a new ThresholdValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewThresholdValueWithDefaults

func NewThresholdValueWithDefaults() *ThresholdValue

NewThresholdValueWithDefaults instantiates a new ThresholdValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ThresholdValue) GetPlrThres

func (o *ThresholdValue) GetPlrThres() int32

GetPlrThres returns the PlrThres field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThresholdValue) GetPlrThresOk

func (o *ThresholdValue) GetPlrThresOk() (*int32, bool)

GetPlrThresOk returns a tuple with the PlrThres 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 (*ThresholdValue) GetRttThres

func (o *ThresholdValue) GetRttThres() int32

GetRttThres returns the RttThres field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ThresholdValue) GetRttThresOk

func (o *ThresholdValue) GetRttThresOk() (*int32, bool)

GetRttThresOk returns a tuple with the RttThres 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 (*ThresholdValue) HasPlrThres

func (o *ThresholdValue) HasPlrThres() bool

HasPlrThres returns a boolean if a field has been set.

func (*ThresholdValue) HasRttThres

func (o *ThresholdValue) HasRttThres() bool

HasRttThres returns a boolean if a field has been set.

func (ThresholdValue) MarshalJSON

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

func (*ThresholdValue) SetPlrThres

func (o *ThresholdValue) SetPlrThres(v int32)

SetPlrThres gets a reference to the given NullableInt32 and assigns it to the PlrThres field.

func (*ThresholdValue) SetPlrThresNil

func (o *ThresholdValue) SetPlrThresNil()

SetPlrThresNil sets the value for PlrThres to be an explicit nil

func (*ThresholdValue) SetRttThres

func (o *ThresholdValue) SetRttThres(v int32)

SetRttThres gets a reference to the given NullableInt32 and assigns it to the RttThres field.

func (*ThresholdValue) SetRttThresNil

func (o *ThresholdValue) SetRttThresNil()

SetRttThresNil sets the value for RttThres to be an explicit nil

func (ThresholdValue) ToMap

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

func (*ThresholdValue) UnsetPlrThres

func (o *ThresholdValue) UnsetPlrThres()

UnsetPlrThres ensures that no value is present for PlrThres, not even an explicit nil

func (*ThresholdValue) UnsetRttThres

func (o *ThresholdValue) UnsetRttThres()

UnsetRttThres ensures that no value is present for RttThres, not even an explicit nil

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 TransportProtocol

type TransportProtocol struct {
	String *string
}

TransportProtocol Possible values are: - UDP: User Datagram Protocol. - TCP: Transmission Control Protocol.

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 Trigger

type Trigger struct {
	TriggerType     TriggerType     `json:"triggerType"`
	TriggerCategory TriggerCategory `json:"triggerCategory"`
	// indicating a time in seconds.
	TimeLimit *int32 `json:"timeLimit,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	VolumeLimit *int32 `json:"volumeLimit,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 64-bit integer.
	VolumeLimit64 *int32 `json:"volumeLimit64,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	EventLimit *int32 `json:"eventLimit,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	MaxNumberOfccc *int32 `json:"maxNumberOfccc,omitempty"`
}

Trigger struct for Trigger

func NewTrigger

func NewTrigger(triggerType TriggerType, triggerCategory TriggerCategory) *Trigger

NewTrigger instantiates a new Trigger object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTriggerWithDefaults

func NewTriggerWithDefaults() *Trigger

NewTriggerWithDefaults instantiates a new Trigger object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Trigger) GetEventLimit

func (o *Trigger) GetEventLimit() int32

GetEventLimit returns the EventLimit field value if set, zero value otherwise.

func (*Trigger) GetEventLimitOk

func (o *Trigger) GetEventLimitOk() (*int32, bool)

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

func (*Trigger) GetMaxNumberOfccc

func (o *Trigger) GetMaxNumberOfccc() int32

GetMaxNumberOfccc returns the MaxNumberOfccc field value if set, zero value otherwise.

func (*Trigger) GetMaxNumberOfcccOk

func (o *Trigger) GetMaxNumberOfcccOk() (*int32, bool)

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

func (*Trigger) GetTimeLimit

func (o *Trigger) GetTimeLimit() int32

GetTimeLimit returns the TimeLimit field value if set, zero value otherwise.

func (*Trigger) GetTimeLimitOk

func (o *Trigger) GetTimeLimitOk() (*int32, bool)

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

func (*Trigger) GetTriggerCategory

func (o *Trigger) GetTriggerCategory() TriggerCategory

GetTriggerCategory returns the TriggerCategory field value

func (*Trigger) GetTriggerCategoryOk

func (o *Trigger) GetTriggerCategoryOk() (*TriggerCategory, bool)

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

func (*Trigger) GetTriggerType

func (o *Trigger) GetTriggerType() TriggerType

GetTriggerType returns the TriggerType field value

func (*Trigger) GetTriggerTypeOk

func (o *Trigger) GetTriggerTypeOk() (*TriggerType, bool)

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

func (*Trigger) GetVolumeLimit

func (o *Trigger) GetVolumeLimit() int32

GetVolumeLimit returns the VolumeLimit field value if set, zero value otherwise.

func (*Trigger) GetVolumeLimit64

func (o *Trigger) GetVolumeLimit64() int32

GetVolumeLimit64 returns the VolumeLimit64 field value if set, zero value otherwise.

func (*Trigger) GetVolumeLimit64Ok

func (o *Trigger) GetVolumeLimit64Ok() (*int32, bool)

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

func (*Trigger) GetVolumeLimitOk

func (o *Trigger) GetVolumeLimitOk() (*int32, bool)

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

func (*Trigger) HasEventLimit

func (o *Trigger) HasEventLimit() bool

HasEventLimit returns a boolean if a field has been set.

func (*Trigger) HasMaxNumberOfccc

func (o *Trigger) HasMaxNumberOfccc() bool

HasMaxNumberOfccc returns a boolean if a field has been set.

func (*Trigger) HasTimeLimit

func (o *Trigger) HasTimeLimit() bool

HasTimeLimit returns a boolean if a field has been set.

func (*Trigger) HasVolumeLimit

func (o *Trigger) HasVolumeLimit() bool

HasVolumeLimit returns a boolean if a field has been set.

func (*Trigger) HasVolumeLimit64

func (o *Trigger) HasVolumeLimit64() bool

HasVolumeLimit64 returns a boolean if a field has been set.

func (Trigger) MarshalJSON

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

func (*Trigger) SetEventLimit

func (o *Trigger) SetEventLimit(v int32)

SetEventLimit gets a reference to the given int32 and assigns it to the EventLimit field.

func (*Trigger) SetMaxNumberOfccc

func (o *Trigger) SetMaxNumberOfccc(v int32)

SetMaxNumberOfccc gets a reference to the given int32 and assigns it to the MaxNumberOfccc field.

func (*Trigger) SetTimeLimit

func (o *Trigger) SetTimeLimit(v int32)

SetTimeLimit gets a reference to the given int32 and assigns it to the TimeLimit field.

func (*Trigger) SetTriggerCategory

func (o *Trigger) SetTriggerCategory(v TriggerCategory)

SetTriggerCategory sets field value

func (*Trigger) SetTriggerType

func (o *Trigger) SetTriggerType(v TriggerType)

SetTriggerType sets field value

func (*Trigger) SetVolumeLimit

func (o *Trigger) SetVolumeLimit(v int32)

SetVolumeLimit gets a reference to the given int32 and assigns it to the VolumeLimit field.

func (*Trigger) SetVolumeLimit64

func (o *Trigger) SetVolumeLimit64(v int32)

SetVolumeLimit64 gets a reference to the given int32 and assigns it to the VolumeLimit64 field.

func (Trigger) ToMap

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

type TriggerCategory

type TriggerCategory struct {
	String *string
}

TriggerCategory struct for TriggerCategory

func (*TriggerCategory) MarshalJSON

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

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

func (*TriggerCategory) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type TriggerType

type TriggerType struct {
	String *string
}

TriggerType struct for TriggerType

func (*TriggerType) MarshalJSON

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

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

func (*TriggerType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 UsedUnitContainer

type UsedUnitContainer struct {
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	ServiceId *int32    `json:"serviceId,omitempty"`
	Triggers  []Trigger `json:"triggers,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	TriggerTimestamp *time.Time `json:"triggerTimestamp,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	Time *int32 `json:"time,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 64-bit integer.
	TotalVolume *int32 `json:"totalVolume,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 64-bit integer.
	UplinkVolume *int32 `json:"uplinkVolume,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 64-bit integer.
	DownlinkVolume *int32 `json:"downlinkVolume,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 64-bit integer.
	ServiceSpecificUnits    *int32                   `json:"serviceSpecificUnits,omitempty"`
	EventTimeStamps         []time.Time              `json:"eventTimeStamps,omitempty"`
	LocalSequenceNumber     int32                    `json:"localSequenceNumber"`
	PDUContainerInformation *PDUContainerInformation `json:"pDUContainerInformation,omitempty"`
}

UsedUnitContainer struct for UsedUnitContainer

func NewUsedUnitContainer

func NewUsedUnitContainer(localSequenceNumber int32) *UsedUnitContainer

NewUsedUnitContainer instantiates a new UsedUnitContainer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsedUnitContainerWithDefaults

func NewUsedUnitContainerWithDefaults() *UsedUnitContainer

NewUsedUnitContainerWithDefaults instantiates a new UsedUnitContainer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsedUnitContainer) GetDownlinkVolume

func (o *UsedUnitContainer) GetDownlinkVolume() int32

GetDownlinkVolume returns the DownlinkVolume field value if set, zero value otherwise.

func (*UsedUnitContainer) GetDownlinkVolumeOk

func (o *UsedUnitContainer) GetDownlinkVolumeOk() (*int32, 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 (*UsedUnitContainer) GetEventTimeStamps

func (o *UsedUnitContainer) GetEventTimeStamps() []time.Time

GetEventTimeStamps returns the EventTimeStamps field value if set, zero value otherwise.

func (*UsedUnitContainer) GetEventTimeStampsOk

func (o *UsedUnitContainer) GetEventTimeStampsOk() ([]time.Time, bool)

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

func (*UsedUnitContainer) GetLocalSequenceNumber

func (o *UsedUnitContainer) GetLocalSequenceNumber() int32

GetLocalSequenceNumber returns the LocalSequenceNumber field value

func (*UsedUnitContainer) GetLocalSequenceNumberOk

func (o *UsedUnitContainer) GetLocalSequenceNumberOk() (*int32, bool)

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

func (*UsedUnitContainer) GetPDUContainerInformation

func (o *UsedUnitContainer) GetPDUContainerInformation() PDUContainerInformation

GetPDUContainerInformation returns the PDUContainerInformation field value if set, zero value otherwise.

func (*UsedUnitContainer) GetPDUContainerInformationOk

func (o *UsedUnitContainer) GetPDUContainerInformationOk() (*PDUContainerInformation, bool)

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

func (*UsedUnitContainer) GetServiceId

func (o *UsedUnitContainer) GetServiceId() int32

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*UsedUnitContainer) GetServiceIdOk

func (o *UsedUnitContainer) GetServiceIdOk() (*int32, bool)

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

func (*UsedUnitContainer) GetServiceSpecificUnits

func (o *UsedUnitContainer) GetServiceSpecificUnits() int32

GetServiceSpecificUnits returns the ServiceSpecificUnits field value if set, zero value otherwise.

func (*UsedUnitContainer) GetServiceSpecificUnitsOk

func (o *UsedUnitContainer) GetServiceSpecificUnitsOk() (*int32, bool)

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

func (*UsedUnitContainer) GetTime

func (o *UsedUnitContainer) GetTime() int32

GetTime returns the Time field value if set, zero value otherwise.

func (*UsedUnitContainer) GetTimeOk

func (o *UsedUnitContainer) GetTimeOk() (*int32, bool)

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

func (*UsedUnitContainer) GetTotalVolume

func (o *UsedUnitContainer) GetTotalVolume() int32

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*UsedUnitContainer) GetTotalVolumeOk

func (o *UsedUnitContainer) GetTotalVolumeOk() (*int32, 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 (*UsedUnitContainer) GetTriggerTimestamp

func (o *UsedUnitContainer) GetTriggerTimestamp() time.Time

GetTriggerTimestamp returns the TriggerTimestamp field value if set, zero value otherwise.

func (*UsedUnitContainer) GetTriggerTimestampOk

func (o *UsedUnitContainer) GetTriggerTimestampOk() (*time.Time, bool)

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

func (*UsedUnitContainer) GetTriggers

func (o *UsedUnitContainer) GetTriggers() []Trigger

GetTriggers returns the Triggers field value if set, zero value otherwise.

func (*UsedUnitContainer) GetTriggersOk

func (o *UsedUnitContainer) GetTriggersOk() ([]Trigger, bool)

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

func (*UsedUnitContainer) GetUplinkVolume

func (o *UsedUnitContainer) GetUplinkVolume() int32

GetUplinkVolume returns the UplinkVolume field value if set, zero value otherwise.

func (*UsedUnitContainer) GetUplinkVolumeOk

func (o *UsedUnitContainer) GetUplinkVolumeOk() (*int32, 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 (*UsedUnitContainer) HasDownlinkVolume

func (o *UsedUnitContainer) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*UsedUnitContainer) HasEventTimeStamps

func (o *UsedUnitContainer) HasEventTimeStamps() bool

HasEventTimeStamps returns a boolean if a field has been set.

func (*UsedUnitContainer) HasPDUContainerInformation

func (o *UsedUnitContainer) HasPDUContainerInformation() bool

HasPDUContainerInformation returns a boolean if a field has been set.

func (*UsedUnitContainer) HasServiceId

func (o *UsedUnitContainer) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*UsedUnitContainer) HasServiceSpecificUnits

func (o *UsedUnitContainer) HasServiceSpecificUnits() bool

HasServiceSpecificUnits returns a boolean if a field has been set.

func (*UsedUnitContainer) HasTime

func (o *UsedUnitContainer) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*UsedUnitContainer) HasTotalVolume

func (o *UsedUnitContainer) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*UsedUnitContainer) HasTriggerTimestamp

func (o *UsedUnitContainer) HasTriggerTimestamp() bool

HasTriggerTimestamp returns a boolean if a field has been set.

func (*UsedUnitContainer) HasTriggers

func (o *UsedUnitContainer) HasTriggers() bool

HasTriggers returns a boolean if a field has been set.

func (*UsedUnitContainer) HasUplinkVolume

func (o *UsedUnitContainer) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (UsedUnitContainer) MarshalJSON

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

func (*UsedUnitContainer) SetDownlinkVolume

func (o *UsedUnitContainer) SetDownlinkVolume(v int32)

SetDownlinkVolume gets a reference to the given int32 and assigns it to the DownlinkVolume field.

func (*UsedUnitContainer) SetEventTimeStamps

func (o *UsedUnitContainer) SetEventTimeStamps(v []time.Time)

SetEventTimeStamps gets a reference to the given []time.Time and assigns it to the EventTimeStamps field.

func (*UsedUnitContainer) SetLocalSequenceNumber

func (o *UsedUnitContainer) SetLocalSequenceNumber(v int32)

SetLocalSequenceNumber sets field value

func (*UsedUnitContainer) SetPDUContainerInformation

func (o *UsedUnitContainer) SetPDUContainerInformation(v PDUContainerInformation)

SetPDUContainerInformation gets a reference to the given PDUContainerInformation and assigns it to the PDUContainerInformation field.

func (*UsedUnitContainer) SetServiceId

func (o *UsedUnitContainer) SetServiceId(v int32)

SetServiceId gets a reference to the given int32 and assigns it to the ServiceId field.

func (*UsedUnitContainer) SetServiceSpecificUnits

func (o *UsedUnitContainer) SetServiceSpecificUnits(v int32)

SetServiceSpecificUnits gets a reference to the given int32 and assigns it to the ServiceSpecificUnits field.

func (*UsedUnitContainer) SetTime

func (o *UsedUnitContainer) SetTime(v int32)

SetTime gets a reference to the given int32 and assigns it to the Time field.

func (*UsedUnitContainer) SetTotalVolume

func (o *UsedUnitContainer) SetTotalVolume(v int32)

SetTotalVolume gets a reference to the given int32 and assigns it to the TotalVolume field.

func (*UsedUnitContainer) SetTriggerTimestamp

func (o *UsedUnitContainer) SetTriggerTimestamp(v time.Time)

SetTriggerTimestamp gets a reference to the given time.Time and assigns it to the TriggerTimestamp field.

func (*UsedUnitContainer) SetTriggers

func (o *UsedUnitContainer) SetTriggers(v []Trigger)

SetTriggers gets a reference to the given []Trigger and assigns it to the Triggers field.

func (*UsedUnitContainer) SetUplinkVolume

func (o *UsedUnitContainer) SetUplinkVolume(v int32)

SetUplinkVolume gets a reference to the given int32 and assigns it to the UplinkVolume field.

func (UsedUnitContainer) ToMap

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

type UserInformation

type UserInformation 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.
	ServedGPSI *string `json:"servedGPSI,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.
	ServedPEI           *string      `json:"servedPEI,omitempty"`
	UnauthenticatedFlag *bool        `json:"unauthenticatedFlag,omitempty"`
	RoamerInOut         *RoamerInOut `json:"roamerInOut,omitempty"`
}

UserInformation struct for UserInformation

func NewUserInformation

func NewUserInformation() *UserInformation

NewUserInformation instantiates a new UserInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserInformationWithDefaults

func NewUserInformationWithDefaults() *UserInformation

NewUserInformationWithDefaults instantiates a new UserInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserInformation) GetRoamerInOut

func (o *UserInformation) GetRoamerInOut() RoamerInOut

GetRoamerInOut returns the RoamerInOut field value if set, zero value otherwise.

func (*UserInformation) GetRoamerInOutOk

func (o *UserInformation) GetRoamerInOutOk() (*RoamerInOut, bool)

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

func (*UserInformation) GetServedGPSI

func (o *UserInformation) GetServedGPSI() string

GetServedGPSI returns the ServedGPSI field value if set, zero value otherwise.

func (*UserInformation) GetServedGPSIOk

func (o *UserInformation) GetServedGPSIOk() (*string, bool)

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

func (*UserInformation) GetServedPEI

func (o *UserInformation) GetServedPEI() string

GetServedPEI returns the ServedPEI field value if set, zero value otherwise.

func (*UserInformation) GetServedPEIOk

func (o *UserInformation) GetServedPEIOk() (*string, bool)

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

func (*UserInformation) GetUnauthenticatedFlag

func (o *UserInformation) GetUnauthenticatedFlag() bool

GetUnauthenticatedFlag returns the UnauthenticatedFlag field value if set, zero value otherwise.

func (*UserInformation) GetUnauthenticatedFlagOk

func (o *UserInformation) GetUnauthenticatedFlagOk() (*bool, bool)

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

func (*UserInformation) HasRoamerInOut

func (o *UserInformation) HasRoamerInOut() bool

HasRoamerInOut returns a boolean if a field has been set.

func (*UserInformation) HasServedGPSI

func (o *UserInformation) HasServedGPSI() bool

HasServedGPSI returns a boolean if a field has been set.

func (*UserInformation) HasServedPEI

func (o *UserInformation) HasServedPEI() bool

HasServedPEI returns a boolean if a field has been set.

func (*UserInformation) HasUnauthenticatedFlag

func (o *UserInformation) HasUnauthenticatedFlag() bool

HasUnauthenticatedFlag returns a boolean if a field has been set.

func (UserInformation) MarshalJSON

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

func (*UserInformation) SetRoamerInOut

func (o *UserInformation) SetRoamerInOut(v RoamerInOut)

SetRoamerInOut gets a reference to the given RoamerInOut and assigns it to the RoamerInOut field.

func (*UserInformation) SetServedGPSI

func (o *UserInformation) SetServedGPSI(v string)

SetServedGPSI gets a reference to the given string and assigns it to the ServedGPSI field.

func (*UserInformation) SetServedPEI

func (o *UserInformation) SetServedPEI(v string)

SetServedPEI gets a reference to the given string and assigns it to the ServedPEI field.

func (*UserInformation) SetUnauthenticatedFlag

func (o *UserInformation) SetUnauthenticatedFlag(v bool)

SetUnauthenticatedFlag gets a reference to the given bool and assigns it to the UnauthenticatedFlag field.

func (UserInformation) ToMap

func (o UserInformation) 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

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL