openapi_Nsmf_PDUSession

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_Nsmf_PDUSession

SMF PDU Session 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.3.0-alpha.2
  • 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_Nsmf_PDUSession "github.com/GIT_USER_ID/GIT_REPO_ID/openapi_Nsmf_PDUSession"

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

Documentation for API Endpoints

All URIs are relative to https://example.com/nsmf-pdusession/v1

Class Method HTTP request Description
IndividualPDUSessionHSMFOrSMFApi ReleasePduSession Post /pdu-sessions/{pduSessionRef}/release Release
IndividualPDUSessionHSMFOrSMFApi RetrievePduSession Post /pdu-sessions/{pduSessionRef}/retrieve Retrieve
IndividualPDUSessionHSMFOrSMFApi TransferMoData Post /pdu-sessions/{pduSessionRef}/transfer-mo-data Transfer MO Data
IndividualPDUSessionHSMFOrSMFApi UpdatePduSession Post /pdu-sessions/{pduSessionRef}/modify Update (initiated by V-SMF or I-SMF)
IndividualSMContextApi ReleaseSmContext Post /sm-contexts/{smContextRef}/release Release SM Context
IndividualSMContextApi RetrieveSmContext Post /sm-contexts/{smContextRef}/retrieve Retrieve SM Context
IndividualSMContextApi SendMoData Post /sm-contexts/{smContextRef}/send-mo-data Send MO Data
IndividualSMContextApi UpdateSmContext Post /sm-contexts/{smContextRef}/modify Update SM Context
PDUSessionsCollectionApi PostPduSessions Post /pdu-sessions Create
SMContextsCollectionApi PostSmContexts Post /sm-contexts Create SM Context

Documentation For Models

Documentation For Authorization

oAuth2ClientCredentials
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • nsmf-pdusession: Access to the nsmf-pdusession 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 added in v1.18.2

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 {
	IndividualPDUSessionHSMFOrSMFApi *IndividualPDUSessionHSMFOrSMFApiService

	IndividualSMContextApi *IndividualSMContextApiService

	PDUSessionsCollectionApi *PDUSessionsCollectionApiService

	SMContextsCollectionApi *SMContextsCollectionApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Nsmf_PDUSession API v1.3.0-alpha.2 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 AdditionalQosFlowInfo

type AdditionalQosFlowInfo struct {
	AdditionalQosFlowInfoAnyOf *AdditionalQosFlowInfoAnyOf
	NullValue                  *NullValue
}

AdditionalQosFlowInfo The enumeration AdditionalQosFlowInfo provides additional QoS flow information (see clause 9.3.1.12 3GPP TS 38.413 [11]). It shall comply with the provisions defined in table 5.5.3.12-1.

func (*AdditionalQosFlowInfo) MarshalJSON

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

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

func (*AdditionalQosFlowInfo) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AdditionalQosFlowInfoAnyOf

type AdditionalQosFlowInfoAnyOf struct {
	String *string
}

AdditionalQosFlowInfoAnyOf struct for AdditionalQosFlowInfoAnyOf

func (*AdditionalQosFlowInfoAnyOf) MarshalJSON

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

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

func (*AdditionalQosFlowInfoAnyOf) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AfCoordinationInfo

type AfCoordinationInfo struct {
	// DNAI (Data network access identifier), see clause 5.6.7 of 3GPP TS 23.501.
	SourceDnai *string `json:"sourceDnai,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	SourceUeIpv4Addr     *string            `json:"sourceUeIpv4Addr,omitempty"`
	SourceUeIpv6Prefix   *Ipv6Prefix        `json:"sourceUeIpv6Prefix,omitempty"`
	NotificationInfoList []NotificationInfo `json:"notificationInfoList,omitempty"`
}

AfCoordinationInfo AF Coordination Information

func NewAfCoordinationInfo

func NewAfCoordinationInfo() *AfCoordinationInfo

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

func NewAfCoordinationInfoWithDefaults

func NewAfCoordinationInfoWithDefaults() *AfCoordinationInfo

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

func (*AfCoordinationInfo) GetNotificationInfoList

func (o *AfCoordinationInfo) GetNotificationInfoList() []NotificationInfo

GetNotificationInfoList returns the NotificationInfoList field value if set, zero value otherwise.

func (*AfCoordinationInfo) GetNotificationInfoListOk

func (o *AfCoordinationInfo) GetNotificationInfoListOk() ([]NotificationInfo, bool)

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

func (*AfCoordinationInfo) GetSourceDnai

func (o *AfCoordinationInfo) GetSourceDnai() string

GetSourceDnai returns the SourceDnai field value if set, zero value otherwise.

func (*AfCoordinationInfo) GetSourceDnaiOk

func (o *AfCoordinationInfo) GetSourceDnaiOk() (*string, bool)

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

func (*AfCoordinationInfo) GetSourceUeIpv4Addr

func (o *AfCoordinationInfo) GetSourceUeIpv4Addr() string

GetSourceUeIpv4Addr returns the SourceUeIpv4Addr field value if set, zero value otherwise.

func (*AfCoordinationInfo) GetSourceUeIpv4AddrOk

func (o *AfCoordinationInfo) GetSourceUeIpv4AddrOk() (*string, bool)

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

func (*AfCoordinationInfo) GetSourceUeIpv6Prefix

func (o *AfCoordinationInfo) GetSourceUeIpv6Prefix() Ipv6Prefix

GetSourceUeIpv6Prefix returns the SourceUeIpv6Prefix field value if set, zero value otherwise.

func (*AfCoordinationInfo) GetSourceUeIpv6PrefixOk

func (o *AfCoordinationInfo) GetSourceUeIpv6PrefixOk() (*Ipv6Prefix, bool)

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

func (*AfCoordinationInfo) HasNotificationInfoList

func (o *AfCoordinationInfo) HasNotificationInfoList() bool

HasNotificationInfoList returns a boolean if a field has been set.

func (*AfCoordinationInfo) HasSourceDnai

func (o *AfCoordinationInfo) HasSourceDnai() bool

HasSourceDnai returns a boolean if a field has been set.

func (*AfCoordinationInfo) HasSourceUeIpv4Addr

func (o *AfCoordinationInfo) HasSourceUeIpv4Addr() bool

HasSourceUeIpv4Addr returns a boolean if a field has been set.

func (*AfCoordinationInfo) HasSourceUeIpv6Prefix

func (o *AfCoordinationInfo) HasSourceUeIpv6Prefix() bool

HasSourceUeIpv6Prefix returns a boolean if a field has been set.

func (AfCoordinationInfo) MarshalJSON

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

func (*AfCoordinationInfo) SetNotificationInfoList

func (o *AfCoordinationInfo) SetNotificationInfoList(v []NotificationInfo)

SetNotificationInfoList gets a reference to the given []NotificationInfo and assigns it to the NotificationInfoList field.

func (*AfCoordinationInfo) SetSourceDnai

func (o *AfCoordinationInfo) SetSourceDnai(v string)

SetSourceDnai gets a reference to the given string and assigns it to the SourceDnai field.

func (*AfCoordinationInfo) SetSourceUeIpv4Addr

func (o *AfCoordinationInfo) SetSourceUeIpv4Addr(v string)

SetSourceUeIpv4Addr gets a reference to the given string and assigns it to the SourceUeIpv4Addr field.

func (*AfCoordinationInfo) SetSourceUeIpv6Prefix

func (o *AfCoordinationInfo) SetSourceUeIpv6Prefix(v Ipv6Prefix)

SetSourceUeIpv6Prefix gets a reference to the given Ipv6Prefix and assigns it to the SourceUeIpv6Prefix field.

func (AfCoordinationInfo) ToMap

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

type AlternativeQosProfile

type AlternativeQosProfile struct {
	Index int32 `json:"index"`
	// 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\".
	GuaFbrDl *string `json:"guaFbrDl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	GuaFbrUl *string `json:"guaFbrUl,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.
	PacketErrRate *string `json:"packetErrRate,omitempty"`
}

AlternativeQosProfile Alternative QoS Profile

func NewAlternativeQosProfile

func NewAlternativeQosProfile(index int32) *AlternativeQosProfile

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

func NewAlternativeQosProfileWithDefaults

func NewAlternativeQosProfileWithDefaults() *AlternativeQosProfile

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

func (*AlternativeQosProfile) GetGuaFbrDl

func (o *AlternativeQosProfile) GetGuaFbrDl() string

GetGuaFbrDl returns the GuaFbrDl field value if set, zero value otherwise.

func (*AlternativeQosProfile) GetGuaFbrDlOk

func (o *AlternativeQosProfile) GetGuaFbrDlOk() (*string, bool)

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

func (*AlternativeQosProfile) GetGuaFbrUl

func (o *AlternativeQosProfile) GetGuaFbrUl() string

GetGuaFbrUl returns the GuaFbrUl field value if set, zero value otherwise.

func (*AlternativeQosProfile) GetGuaFbrUlOk

func (o *AlternativeQosProfile) GetGuaFbrUlOk() (*string, bool)

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

func (*AlternativeQosProfile) GetIndex

func (o *AlternativeQosProfile) GetIndex() int32

GetIndex returns the Index field value

func (*AlternativeQosProfile) GetIndexOk

func (o *AlternativeQosProfile) GetIndexOk() (*int32, bool)

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

func (*AlternativeQosProfile) GetPacketDelayBudget

func (o *AlternativeQosProfile) GetPacketDelayBudget() int32

GetPacketDelayBudget returns the PacketDelayBudget field value if set, zero value otherwise.

func (*AlternativeQosProfile) GetPacketDelayBudgetOk

func (o *AlternativeQosProfile) 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 (*AlternativeQosProfile) GetPacketErrRate

func (o *AlternativeQosProfile) GetPacketErrRate() string

GetPacketErrRate returns the PacketErrRate field value if set, zero value otherwise.

func (*AlternativeQosProfile) GetPacketErrRateOk

func (o *AlternativeQosProfile) GetPacketErrRateOk() (*string, bool)

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

func (*AlternativeQosProfile) HasGuaFbrDl

func (o *AlternativeQosProfile) HasGuaFbrDl() bool

HasGuaFbrDl returns a boolean if a field has been set.

func (*AlternativeQosProfile) HasGuaFbrUl

func (o *AlternativeQosProfile) HasGuaFbrUl() bool

HasGuaFbrUl returns a boolean if a field has been set.

func (*AlternativeQosProfile) HasPacketDelayBudget

func (o *AlternativeQosProfile) HasPacketDelayBudget() bool

HasPacketDelayBudget returns a boolean if a field has been set.

func (*AlternativeQosProfile) HasPacketErrRate

func (o *AlternativeQosProfile) HasPacketErrRate() bool

HasPacketErrRate returns a boolean if a field has been set.

func (AlternativeQosProfile) MarshalJSON

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

func (*AlternativeQosProfile) SetGuaFbrDl

func (o *AlternativeQosProfile) SetGuaFbrDl(v string)

SetGuaFbrDl gets a reference to the given string and assigns it to the GuaFbrDl field.

func (*AlternativeQosProfile) SetGuaFbrUl

func (o *AlternativeQosProfile) SetGuaFbrUl(v string)

SetGuaFbrUl gets a reference to the given string and assigns it to the GuaFbrUl field.

func (*AlternativeQosProfile) SetIndex

func (o *AlternativeQosProfile) SetIndex(v int32)

SetIndex sets field value

func (*AlternativeQosProfile) SetPacketDelayBudget

func (o *AlternativeQosProfile) SetPacketDelayBudget(v int32)

SetPacketDelayBudget gets a reference to the given int32 and assigns it to the PacketDelayBudget field.

func (*AlternativeQosProfile) SetPacketErrRate

func (o *AlternativeQosProfile) SetPacketErrRate(v string)

SetPacketErrRate gets a reference to the given string and assigns it to the PacketErrRate field.

func (AlternativeQosProfile) ToMap

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

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 AnchorSmfFeatures

type AnchorSmfFeatures struct {
	PsetrSupportInd *bool `json:"psetrSupportInd,omitempty"`
}

AnchorSmfFeatures Anchor SMF supported features

func NewAnchorSmfFeatures

func NewAnchorSmfFeatures() *AnchorSmfFeatures

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

func NewAnchorSmfFeaturesWithDefaults

func NewAnchorSmfFeaturesWithDefaults() *AnchorSmfFeatures

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

func (*AnchorSmfFeatures) GetPsetrSupportInd

func (o *AnchorSmfFeatures) GetPsetrSupportInd() bool

GetPsetrSupportInd returns the PsetrSupportInd field value if set, zero value otherwise.

func (*AnchorSmfFeatures) GetPsetrSupportIndOk

func (o *AnchorSmfFeatures) GetPsetrSupportIndOk() (*bool, bool)

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

func (*AnchorSmfFeatures) HasPsetrSupportInd

func (o *AnchorSmfFeatures) HasPsetrSupportInd() bool

HasPsetrSupportInd returns a boolean if a field has been set.

func (AnchorSmfFeatures) MarshalJSON

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

func (*AnchorSmfFeatures) SetPsetrSupportInd

func (o *AnchorSmfFeatures) SetPsetrSupportInd(v bool)

SetPsetrSupportInd gets a reference to the given bool and assigns it to the PsetrSupportInd field.

func (AnchorSmfFeatures) ToMap

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

type ApiPostPduSessionsRequest

type ApiPostPduSessionsRequest struct {
	ApiService *PDUSessionsCollectionApiService
	// contains filtered or unexported fields
}

func (ApiPostPduSessionsRequest) Execute

func (ApiPostPduSessionsRequest) PduSessionCreateData

func (r ApiPostPduSessionsRequest) PduSessionCreateData(pduSessionCreateData PduSessionCreateData) ApiPostPduSessionsRequest

representation of the PDU session to be created in the H-SMF or SMF

type ApiPostSmContextsRequest

type ApiPostSmContextsRequest struct {
	ApiService *SMContextsCollectionApiService
	// contains filtered or unexported fields
}

func (ApiPostSmContextsRequest) BinaryDataN1SmMessage

func (r ApiPostSmContextsRequest) BinaryDataN1SmMessage(binaryDataN1SmMessage *os.File) ApiPostSmContextsRequest

func (ApiPostSmContextsRequest) BinaryDataN2SmInformation

func (r ApiPostSmContextsRequest) BinaryDataN2SmInformation(binaryDataN2SmInformation *os.File) ApiPostSmContextsRequest

func (ApiPostSmContextsRequest) BinaryDataN2SmInformationExt1

func (r ApiPostSmContextsRequest) BinaryDataN2SmInformationExt1(binaryDataN2SmInformationExt1 *os.File) ApiPostSmContextsRequest

func (ApiPostSmContextsRequest) Execute

func (ApiPostSmContextsRequest) JsonData

type ApiReleasePduSessionRequest

type ApiReleasePduSessionRequest struct {
	ApiService *IndividualPDUSessionHSMFOrSMFApiService
	// contains filtered or unexported fields
}

func (ApiReleasePduSessionRequest) Execute

func (ApiReleasePduSessionRequest) ReleaseData

data sent to H-SMF or SMF when releasing the PDU session

type ApiReleaseSmContextRequest

type ApiReleaseSmContextRequest struct {
	ApiService *IndividualSMContextApiService
	// contains filtered or unexported fields
}

func (ApiReleaseSmContextRequest) Execute

func (ApiReleaseSmContextRequest) SmContextReleaseData

func (r ApiReleaseSmContextRequest) SmContextReleaseData(smContextReleaseData SmContextReleaseData) ApiReleaseSmContextRequest

representation of the data to be sent to the SMF when releasing the SM context

type ApiRetrievePduSessionRequest

type ApiRetrievePduSessionRequest struct {
	ApiService *IndividualPDUSessionHSMFOrSMFApiService
	// contains filtered or unexported fields
}

func (ApiRetrievePduSessionRequest) Execute

func (ApiRetrievePduSessionRequest) RetrieveData

representation of the payload of the Retrieve Request

type ApiRetrieveSmContextRequest

type ApiRetrieveSmContextRequest struct {
	ApiService *IndividualSMContextApiService
	// contains filtered or unexported fields
}

func (ApiRetrieveSmContextRequest) Execute

func (ApiRetrieveSmContextRequest) SmContextRetrieveData

func (r ApiRetrieveSmContextRequest) SmContextRetrieveData(smContextRetrieveData SmContextRetrieveData) ApiRetrieveSmContextRequest

parameters used to retrieve the SM context

type ApiSendMoDataRequest

type ApiSendMoDataRequest struct {
	ApiService *IndividualSMContextApiService
	// contains filtered or unexported fields
}

func (ApiSendMoDataRequest) BinaryMoData

func (r ApiSendMoDataRequest) BinaryMoData(binaryMoData *os.File) ApiSendMoDataRequest

func (ApiSendMoDataRequest) Execute

func (r ApiSendMoDataRequest) Execute() (*http.Response, error)

func (ApiSendMoDataRequest) JsonData

type ApiTransferMoDataRequest

type ApiTransferMoDataRequest struct {
	ApiService *IndividualPDUSessionHSMFOrSMFApiService
	// contains filtered or unexported fields
}

func (ApiTransferMoDataRequest) BinaryMoData

func (r ApiTransferMoDataRequest) BinaryMoData(binaryMoData *os.File) ApiTransferMoDataRequest

func (ApiTransferMoDataRequest) Execute

func (r ApiTransferMoDataRequest) Execute() (*http.Response, error)

func (ApiTransferMoDataRequest) JsonData

type ApiUpdatePduSessionRequest

type ApiUpdatePduSessionRequest struct {
	ApiService *IndividualPDUSessionHSMFOrSMFApiService
	// contains filtered or unexported fields
}

func (ApiUpdatePduSessionRequest) Execute

func (ApiUpdatePduSessionRequest) HsmfUpdateData

func (r ApiUpdatePduSessionRequest) HsmfUpdateData(hsmfUpdateData HsmfUpdateData) ApiUpdatePduSessionRequest

representation of the updates to apply to the PDU session

type ApiUpdateSmContextRequest

type ApiUpdateSmContextRequest struct {
	ApiService *IndividualSMContextApiService
	// contains filtered or unexported fields
}

func (ApiUpdateSmContextRequest) Execute

func (ApiUpdateSmContextRequest) SmContextUpdateData

func (r ApiUpdateSmContextRequest) SmContextUpdateData(smContextUpdateData SmContextUpdateData) ApiUpdateSmContextRequest

representation of the updates to apply to the SM context

type ApnRateStatus

type ApnRateStatus struct {
	// When present, it shall contain the number of packets the UE is allowed to send uplink in the given time unit for the given APN (all PDN connections of the UE to this APN see clause 4.7.7.3 in 3GPP TS 23.401.
	RemainPacketsUl *int32 `json:"remainPacketsUl,omitempty"`
	// When present, it shall contain the number of packets the UE is allowed to send uplink in the given time unit for the given APN (all PDN connections of the UE to this APN see clause 4.7.7.3 in 3GPP TS 23.401.
	RemainPacketsDl *int32 `json:"remainPacketsDl,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	ValidityTime *time.Time `json:"validityTime,omitempty"`
	// When present, it shall indicate the number of additional exception reports the UE is allowed to send uplink in the given time unit for the given APN (all PDN connections of the UE to this APN, see clause 4.7.7.3 in 3GPP TS 23.401.
	RemainExReportsUl *int32 `json:"remainExReportsUl,omitempty"`
	// When present, it shall indicate the number of additional exception reports the AF is allowed to send downlink in the  given time unit for the given APN (all PDN connections of the UE to this APN, see clause 4.7.7.3 in 3GPP TS 23.401.
	RemainExReportsDl *int32 `json:"remainExReportsDl,omitempty"`
}

ApnRateStatus Contains the APN rate control status e.g. of the AMF.

func NewApnRateStatus

func NewApnRateStatus() *ApnRateStatus

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

func NewApnRateStatusWithDefaults

func NewApnRateStatusWithDefaults() *ApnRateStatus

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

func (*ApnRateStatus) GetRemainExReportsDl

func (o *ApnRateStatus) GetRemainExReportsDl() int32

GetRemainExReportsDl returns the RemainExReportsDl field value if set, zero value otherwise.

func (*ApnRateStatus) GetRemainExReportsDlOk

func (o *ApnRateStatus) GetRemainExReportsDlOk() (*int32, bool)

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

func (*ApnRateStatus) GetRemainExReportsUl

func (o *ApnRateStatus) GetRemainExReportsUl() int32

GetRemainExReportsUl returns the RemainExReportsUl field value if set, zero value otherwise.

func (*ApnRateStatus) GetRemainExReportsUlOk

func (o *ApnRateStatus) GetRemainExReportsUlOk() (*int32, bool)

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

func (*ApnRateStatus) GetRemainPacketsDl

func (o *ApnRateStatus) GetRemainPacketsDl() int32

GetRemainPacketsDl returns the RemainPacketsDl field value if set, zero value otherwise.

func (*ApnRateStatus) GetRemainPacketsDlOk

func (o *ApnRateStatus) GetRemainPacketsDlOk() (*int32, bool)

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

func (*ApnRateStatus) GetRemainPacketsUl

func (o *ApnRateStatus) GetRemainPacketsUl() int32

GetRemainPacketsUl returns the RemainPacketsUl field value if set, zero value otherwise.

func (*ApnRateStatus) GetRemainPacketsUlOk

func (o *ApnRateStatus) GetRemainPacketsUlOk() (*int32, bool)

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

func (*ApnRateStatus) GetValidityTime

func (o *ApnRateStatus) GetValidityTime() time.Time

GetValidityTime returns the ValidityTime field value if set, zero value otherwise.

func (*ApnRateStatus) GetValidityTimeOk

func (o *ApnRateStatus) GetValidityTimeOk() (*time.Time, bool)

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

func (*ApnRateStatus) HasRemainExReportsDl

func (o *ApnRateStatus) HasRemainExReportsDl() bool

HasRemainExReportsDl returns a boolean if a field has been set.

func (*ApnRateStatus) HasRemainExReportsUl

func (o *ApnRateStatus) HasRemainExReportsUl() bool

HasRemainExReportsUl returns a boolean if a field has been set.

func (*ApnRateStatus) HasRemainPacketsDl

func (o *ApnRateStatus) HasRemainPacketsDl() bool

HasRemainPacketsDl returns a boolean if a field has been set.

func (*ApnRateStatus) HasRemainPacketsUl

func (o *ApnRateStatus) HasRemainPacketsUl() bool

HasRemainPacketsUl returns a boolean if a field has been set.

func (*ApnRateStatus) HasValidityTime

func (o *ApnRateStatus) HasValidityTime() bool

HasValidityTime returns a boolean if a field has been set.

func (ApnRateStatus) MarshalJSON

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

func (*ApnRateStatus) SetRemainExReportsDl

func (o *ApnRateStatus) SetRemainExReportsDl(v int32)

SetRemainExReportsDl gets a reference to the given int32 and assigns it to the RemainExReportsDl field.

func (*ApnRateStatus) SetRemainExReportsUl

func (o *ApnRateStatus) SetRemainExReportsUl(v int32)

SetRemainExReportsUl gets a reference to the given int32 and assigns it to the RemainExReportsUl field.

func (*ApnRateStatus) SetRemainPacketsDl

func (o *ApnRateStatus) SetRemainPacketsDl(v int32)

SetRemainPacketsDl gets a reference to the given int32 and assigns it to the RemainPacketsDl field.

func (*ApnRateStatus) SetRemainPacketsUl

func (o *ApnRateStatus) SetRemainPacketsUl(v int32)

SetRemainPacketsUl gets a reference to the given int32 and assigns it to the RemainPacketsUl field.

func (*ApnRateStatus) SetValidityTime

func (o *ApnRateStatus) SetValidityTime(v time.Time)

SetValidityTime gets a reference to the given time.Time and assigns it to the ValidityTime field.

func (ApnRateStatus) ToMap

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

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 BackupAmfInfo

type BackupAmfInfo struct {
	// Fully Qualified Domain Name
	BackupAmf string `json:"backupAmf"`
	// If present, this IE shall contain the list of GUAMI(s) (supported by the AMF) for which the backupAmf IE applies.
	GuamiList []Guami `json:"guamiList,omitempty"`
}

BackupAmfInfo Provides details of the Backup AMF.

func NewBackupAmfInfo

func NewBackupAmfInfo(backupAmf string) *BackupAmfInfo

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

func NewBackupAmfInfoWithDefaults

func NewBackupAmfInfoWithDefaults() *BackupAmfInfo

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

func (*BackupAmfInfo) GetBackupAmf

func (o *BackupAmfInfo) GetBackupAmf() string

GetBackupAmf returns the BackupAmf field value

func (*BackupAmfInfo) GetBackupAmfOk

func (o *BackupAmfInfo) GetBackupAmfOk() (*string, bool)

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

func (*BackupAmfInfo) GetGuamiList

func (o *BackupAmfInfo) GetGuamiList() []Guami

GetGuamiList returns the GuamiList field value if set, zero value otherwise.

func (*BackupAmfInfo) GetGuamiListOk

func (o *BackupAmfInfo) GetGuamiListOk() ([]Guami, bool)

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

func (*BackupAmfInfo) HasGuamiList

func (o *BackupAmfInfo) HasGuamiList() bool

HasGuamiList returns a boolean if a field has been set.

func (BackupAmfInfo) MarshalJSON

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

func (*BackupAmfInfo) SetBackupAmf

func (o *BackupAmfInfo) SetBackupAmf(v string)

SetBackupAmf sets field value

func (*BackupAmfInfo) SetGuamiList

func (o *BackupAmfInfo) SetGuamiList(v []Guami)

SetGuamiList gets a reference to the given []Guami and assigns it to the GuamiList field.

func (BackupAmfInfo) ToMap

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

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type BatteryIndication

type BatteryIndication struct {
	// This IE shall indicate whether the UE is battery powered or not. true: the UE is battery powered; false or absent: the UE is not battery powered
	BatteryInd *bool `json:"batteryInd,omitempty"`
	// This IE shall indicate whether the battery of the UE is replaceable or not. true: the battery of the UE is replaceable; false or absent: the battery of the UE is not replaceable.
	ReplaceableInd *bool `json:"replaceableInd,omitempty"`
	// This IE shall indicate whether the battery of the UE is rechargeable or not. true: the battery of UE is rechargeable; false or absent: the battery of the UE is not rechargeable.
	RechargeableInd *bool `json:"rechargeableInd,omitempty"`
}

BatteryIndication Parameters \"replaceableInd\" and \"rechargeableInd\" are only included if the value of Parameter \"batteryInd\" is true.

func NewBatteryIndication

func NewBatteryIndication() *BatteryIndication

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

func NewBatteryIndicationWithDefaults

func NewBatteryIndicationWithDefaults() *BatteryIndication

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

func (*BatteryIndication) GetBatteryInd

func (o *BatteryIndication) GetBatteryInd() bool

GetBatteryInd returns the BatteryInd field value if set, zero value otherwise.

func (*BatteryIndication) GetBatteryIndOk

func (o *BatteryIndication) GetBatteryIndOk() (*bool, bool)

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

func (*BatteryIndication) GetRechargeableInd

func (o *BatteryIndication) GetRechargeableInd() bool

GetRechargeableInd returns the RechargeableInd field value if set, zero value otherwise.

func (*BatteryIndication) GetRechargeableIndOk

func (o *BatteryIndication) GetRechargeableIndOk() (*bool, bool)

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

func (*BatteryIndication) GetReplaceableInd

func (o *BatteryIndication) GetReplaceableInd() bool

GetReplaceableInd returns the ReplaceableInd field value if set, zero value otherwise.

func (*BatteryIndication) GetReplaceableIndOk

func (o *BatteryIndication) GetReplaceableIndOk() (*bool, bool)

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

func (*BatteryIndication) HasBatteryInd

func (o *BatteryIndication) HasBatteryInd() bool

HasBatteryInd returns a boolean if a field has been set.

func (*BatteryIndication) HasRechargeableInd

func (o *BatteryIndication) HasRechargeableInd() bool

HasRechargeableInd returns a boolean if a field has been set.

func (*BatteryIndication) HasReplaceableInd

func (o *BatteryIndication) HasReplaceableInd() bool

HasReplaceableInd returns a boolean if a field has been set.

func (BatteryIndication) MarshalJSON

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

func (*BatteryIndication) SetBatteryInd

func (o *BatteryIndication) SetBatteryInd(v bool)

SetBatteryInd gets a reference to the given bool and assigns it to the BatteryInd field.

func (*BatteryIndication) SetRechargeableInd

func (o *BatteryIndication) SetRechargeableInd(v bool)

SetRechargeableInd gets a reference to the given bool and assigns it to the RechargeableInd field.

func (*BatteryIndication) SetReplaceableInd

func (o *BatteryIndication) SetReplaceableInd(v bool)

SetReplaceableInd gets a reference to the given bool and assigns it to the ReplaceableInd field.

func (BatteryIndication) ToMap

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

type Cause

type Cause struct {
	String *string
}

Cause Cause information. Possible values are - REL_DUE_TO_HO - EPS_FALLBACK - REL_DUE_TO_UP_SEC - DNN_CONGESTION - S_NSSAI_CONGESTION - REL_DUE_TO_REACTIVATION - 5G_AN_NOT_RESPONDING - REL_DUE_TO_SLICE_NOT_AVAILABLE - REL_DUE_TO_DUPLICATE_SESSION_ID - PDU_SESSION_STATUS_MISMATCH - HO_FAILURE - INSUFFICIENT_UP_RESOURCES - PDU_SESSION_HANDED_OVER - PDU_SESSION_RESUMED - CN_ASSISTED_RAN_PARAMETER_TUNING - ISMF_CONTEXT_TRANSFER - SMF_CONTEXT_TRANSFER - REL_DUE_TO_PS_TO_CS_HO - REL_DUE_TO_SUBSCRIPTION_CHANGE - HO_CANCEL - REL_DUE_TO_SLICE_NOT_AUTHORIZED - PDU_SESSION_HAND_OVER_FAILURE - DDN_FAILURE_STATUS - REL_DUE_TO_CP_ONLY_NOT_APPLICABLE - NOT_SUPPORTED_WITH_ISMF - CHANGED_ANCHOR_SMF - CHANGED_INTERMEDIATE_SMF - TARGET_DNAI_NOTIFICATION - REL_DUE_TO_VPLMN_QOS_FAILURE - REL_DUE_TO_SMF_NOT_SUPPORT_PSETR - REL_DUE_TO_SNPN_SNPN_MOBILITY - REL_DUE_TO_NO_HR_AGREEMENT - REL_DUE_TO_UNSPECIFIED_REASON

func (*Cause) MarshalJSON

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

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

func (*Cause) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type CellGlobalId

type CellGlobalId struct {
	PlmnId PlmnId `json:"plmnId"`
	Lac    string `json:"lac"`
	CellId string `json:"cellId"`
}

CellGlobalId Contains a Cell Global Identification as defined in 3GPP TS 23.003, clause 4.3.1.

func NewCellGlobalId

func NewCellGlobalId(plmnId PlmnId, lac string, cellId string) *CellGlobalId

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

func NewCellGlobalIdWithDefaults

func NewCellGlobalIdWithDefaults() *CellGlobalId

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

func (*CellGlobalId) GetCellId

func (o *CellGlobalId) GetCellId() string

GetCellId returns the CellId field value

func (*CellGlobalId) GetCellIdOk

func (o *CellGlobalId) GetCellIdOk() (*string, bool)

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

func (*CellGlobalId) GetLac

func (o *CellGlobalId) GetLac() string

GetLac returns the Lac field value

func (*CellGlobalId) GetLacOk

func (o *CellGlobalId) GetLacOk() (*string, bool)

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

func (*CellGlobalId) GetPlmnId

func (o *CellGlobalId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*CellGlobalId) GetPlmnIdOk

func (o *CellGlobalId) GetPlmnIdOk() (*PlmnId, bool)

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

func (CellGlobalId) MarshalJSON

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

func (*CellGlobalId) SetCellId

func (o *CellGlobalId) SetCellId(v string)

SetCellId sets field value

func (*CellGlobalId) SetLac

func (o *CellGlobalId) SetLac(v string)

SetLac sets field value

func (*CellGlobalId) SetPlmnId

func (o *CellGlobalId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (CellGlobalId) ToMap

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

type ChargingInformation

type ChargingInformation struct {
	// String providing an URI formatted according to RFC 3986.
	PrimaryChfAddress string `json:"primaryChfAddress"`
	// String providing an URI formatted according to RFC 3986.
	SecondaryChfAddress *string `json:"secondaryChfAddress,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.
	PrimaryChfSetId *string `json:"primaryChfSetId,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.
	PrimaryChfInstanceId *string `json:"primaryChfInstanceId,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.
	SecondaryChfSetId *string `json:"secondaryChfSetId,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.
	SecondaryChfInstanceId *string `json:"secondaryChfInstanceId,omitempty"`
}

ChargingInformation Contains the addresses of the charging functions.

func NewChargingInformation

func NewChargingInformation(primaryChfAddress string) *ChargingInformation

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

func NewChargingInformationWithDefaults

func NewChargingInformationWithDefaults() *ChargingInformation

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

func (*ChargingInformation) GetPrimaryChfAddress

func (o *ChargingInformation) GetPrimaryChfAddress() string

GetPrimaryChfAddress returns the PrimaryChfAddress field value

func (*ChargingInformation) GetPrimaryChfAddressOk

func (o *ChargingInformation) GetPrimaryChfAddressOk() (*string, bool)

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

func (*ChargingInformation) GetPrimaryChfInstanceId

func (o *ChargingInformation) GetPrimaryChfInstanceId() string

GetPrimaryChfInstanceId returns the PrimaryChfInstanceId field value if set, zero value otherwise.

func (*ChargingInformation) GetPrimaryChfInstanceIdOk

func (o *ChargingInformation) GetPrimaryChfInstanceIdOk() (*string, bool)

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

func (*ChargingInformation) GetPrimaryChfSetId

func (o *ChargingInformation) GetPrimaryChfSetId() string

GetPrimaryChfSetId returns the PrimaryChfSetId field value if set, zero value otherwise.

func (*ChargingInformation) GetPrimaryChfSetIdOk

func (o *ChargingInformation) GetPrimaryChfSetIdOk() (*string, bool)

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

func (*ChargingInformation) GetSecondaryChfAddress

func (o *ChargingInformation) GetSecondaryChfAddress() string

GetSecondaryChfAddress returns the SecondaryChfAddress field value if set, zero value otherwise.

func (*ChargingInformation) GetSecondaryChfAddressOk

func (o *ChargingInformation) GetSecondaryChfAddressOk() (*string, bool)

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

func (*ChargingInformation) GetSecondaryChfInstanceId

func (o *ChargingInformation) GetSecondaryChfInstanceId() string

GetSecondaryChfInstanceId returns the SecondaryChfInstanceId field value if set, zero value otherwise.

func (*ChargingInformation) GetSecondaryChfInstanceIdOk

func (o *ChargingInformation) GetSecondaryChfInstanceIdOk() (*string, bool)

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

func (*ChargingInformation) GetSecondaryChfSetId

func (o *ChargingInformation) GetSecondaryChfSetId() string

GetSecondaryChfSetId returns the SecondaryChfSetId field value if set, zero value otherwise.

func (*ChargingInformation) GetSecondaryChfSetIdOk

func (o *ChargingInformation) GetSecondaryChfSetIdOk() (*string, bool)

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

func (*ChargingInformation) HasPrimaryChfInstanceId

func (o *ChargingInformation) HasPrimaryChfInstanceId() bool

HasPrimaryChfInstanceId returns a boolean if a field has been set.

func (*ChargingInformation) HasPrimaryChfSetId

func (o *ChargingInformation) HasPrimaryChfSetId() bool

HasPrimaryChfSetId returns a boolean if a field has been set.

func (*ChargingInformation) HasSecondaryChfAddress

func (o *ChargingInformation) HasSecondaryChfAddress() bool

HasSecondaryChfAddress returns a boolean if a field has been set.

func (*ChargingInformation) HasSecondaryChfInstanceId

func (o *ChargingInformation) HasSecondaryChfInstanceId() bool

HasSecondaryChfInstanceId returns a boolean if a field has been set.

func (*ChargingInformation) HasSecondaryChfSetId

func (o *ChargingInformation) HasSecondaryChfSetId() bool

HasSecondaryChfSetId returns a boolean if a field has been set.

func (ChargingInformation) MarshalJSON

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

func (*ChargingInformation) SetPrimaryChfAddress

func (o *ChargingInformation) SetPrimaryChfAddress(v string)

SetPrimaryChfAddress sets field value

func (*ChargingInformation) SetPrimaryChfInstanceId

func (o *ChargingInformation) SetPrimaryChfInstanceId(v string)

SetPrimaryChfInstanceId gets a reference to the given string and assigns it to the PrimaryChfInstanceId field.

func (*ChargingInformation) SetPrimaryChfSetId

func (o *ChargingInformation) SetPrimaryChfSetId(v string)

SetPrimaryChfSetId gets a reference to the given string and assigns it to the PrimaryChfSetId field.

func (*ChargingInformation) SetSecondaryChfAddress

func (o *ChargingInformation) SetSecondaryChfAddress(v string)

SetSecondaryChfAddress gets a reference to the given string and assigns it to the SecondaryChfAddress field.

func (*ChargingInformation) SetSecondaryChfInstanceId

func (o *ChargingInformation) SetSecondaryChfInstanceId(v string)

SetSecondaryChfInstanceId gets a reference to the given string and assigns it to the SecondaryChfInstanceId field.

func (*ChargingInformation) SetSecondaryChfSetId

func (o *ChargingInformation) SetSecondaryChfSetId(v string)

SetSecondaryChfSetId gets a reference to the given string and assigns it to the SecondaryChfSetId field.

func (ChargingInformation) ToMap

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

type CnAssistedRanPara

type CnAssistedRanPara struct {
	StationaryIndication *StationaryIndication `json:"stationaryIndication,omitempty"`
	// indicating a time in seconds.
	CommunicationDurationTime *int32 `json:"communicationDurationTime,omitempty"`
	// indicating a time in seconds.
	PeriodicTime               *int32                      `json:"periodicTime,omitempty"`
	ScheduledCommunicationTime *ScheduledCommunicationTime `json:"scheduledCommunicationTime,omitempty"`
	ScheduledCommunicationType *ScheduledCommunicationType `json:"scheduledCommunicationType,omitempty"`
	TrafficProfile             *TrafficProfile             `json:"trafficProfile,omitempty"`
	BatteryIndication          *BatteryIndication          `json:"batteryIndication,omitempty"`
}

CnAssistedRanPara SMF derived CN assisted RAN parameters tuning

func NewCnAssistedRanPara

func NewCnAssistedRanPara() *CnAssistedRanPara

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

func NewCnAssistedRanParaWithDefaults

func NewCnAssistedRanParaWithDefaults() *CnAssistedRanPara

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

func (*CnAssistedRanPara) GetBatteryIndication

func (o *CnAssistedRanPara) GetBatteryIndication() BatteryIndication

GetBatteryIndication returns the BatteryIndication field value if set, zero value otherwise.

func (*CnAssistedRanPara) GetBatteryIndicationOk

func (o *CnAssistedRanPara) GetBatteryIndicationOk() (*BatteryIndication, bool)

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

func (*CnAssistedRanPara) GetCommunicationDurationTime

func (o *CnAssistedRanPara) GetCommunicationDurationTime() int32

GetCommunicationDurationTime returns the CommunicationDurationTime field value if set, zero value otherwise.

func (*CnAssistedRanPara) GetCommunicationDurationTimeOk

func (o *CnAssistedRanPara) GetCommunicationDurationTimeOk() (*int32, bool)

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

func (*CnAssistedRanPara) GetPeriodicTime

func (o *CnAssistedRanPara) GetPeriodicTime() int32

GetPeriodicTime returns the PeriodicTime field value if set, zero value otherwise.

func (*CnAssistedRanPara) GetPeriodicTimeOk

func (o *CnAssistedRanPara) GetPeriodicTimeOk() (*int32, bool)

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

func (*CnAssistedRanPara) GetScheduledCommunicationTime

func (o *CnAssistedRanPara) GetScheduledCommunicationTime() ScheduledCommunicationTime

GetScheduledCommunicationTime returns the ScheduledCommunicationTime field value if set, zero value otherwise.

func (*CnAssistedRanPara) GetScheduledCommunicationTimeOk

func (o *CnAssistedRanPara) GetScheduledCommunicationTimeOk() (*ScheduledCommunicationTime, bool)

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

func (*CnAssistedRanPara) GetScheduledCommunicationType

func (o *CnAssistedRanPara) GetScheduledCommunicationType() ScheduledCommunicationType

GetScheduledCommunicationType returns the ScheduledCommunicationType field value if set, zero value otherwise.

func (*CnAssistedRanPara) GetScheduledCommunicationTypeOk

func (o *CnAssistedRanPara) GetScheduledCommunicationTypeOk() (*ScheduledCommunicationType, bool)

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

func (*CnAssistedRanPara) GetStationaryIndication

func (o *CnAssistedRanPara) GetStationaryIndication() StationaryIndication

GetStationaryIndication returns the StationaryIndication field value if set, zero value otherwise.

func (*CnAssistedRanPara) GetStationaryIndicationOk

func (o *CnAssistedRanPara) GetStationaryIndicationOk() (*StationaryIndication, bool)

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

func (*CnAssistedRanPara) GetTrafficProfile

func (o *CnAssistedRanPara) GetTrafficProfile() TrafficProfile

GetTrafficProfile returns the TrafficProfile field value if set, zero value otherwise.

func (*CnAssistedRanPara) GetTrafficProfileOk

func (o *CnAssistedRanPara) GetTrafficProfileOk() (*TrafficProfile, bool)

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

func (*CnAssistedRanPara) HasBatteryIndication

func (o *CnAssistedRanPara) HasBatteryIndication() bool

HasBatteryIndication returns a boolean if a field has been set.

func (*CnAssistedRanPara) HasCommunicationDurationTime

func (o *CnAssistedRanPara) HasCommunicationDurationTime() bool

HasCommunicationDurationTime returns a boolean if a field has been set.

func (*CnAssistedRanPara) HasPeriodicTime

func (o *CnAssistedRanPara) HasPeriodicTime() bool

HasPeriodicTime returns a boolean if a field has been set.

func (*CnAssistedRanPara) HasScheduledCommunicationTime

func (o *CnAssistedRanPara) HasScheduledCommunicationTime() bool

HasScheduledCommunicationTime returns a boolean if a field has been set.

func (*CnAssistedRanPara) HasScheduledCommunicationType

func (o *CnAssistedRanPara) HasScheduledCommunicationType() bool

HasScheduledCommunicationType returns a boolean if a field has been set.

func (*CnAssistedRanPara) HasStationaryIndication

func (o *CnAssistedRanPara) HasStationaryIndication() bool

HasStationaryIndication returns a boolean if a field has been set.

func (*CnAssistedRanPara) HasTrafficProfile

func (o *CnAssistedRanPara) HasTrafficProfile() bool

HasTrafficProfile returns a boolean if a field has been set.

func (CnAssistedRanPara) MarshalJSON

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

func (*CnAssistedRanPara) SetBatteryIndication

func (o *CnAssistedRanPara) SetBatteryIndication(v BatteryIndication)

SetBatteryIndication gets a reference to the given BatteryIndication and assigns it to the BatteryIndication field.

func (*CnAssistedRanPara) SetCommunicationDurationTime

func (o *CnAssistedRanPara) SetCommunicationDurationTime(v int32)

SetCommunicationDurationTime gets a reference to the given int32 and assigns it to the CommunicationDurationTime field.

func (*CnAssistedRanPara) SetPeriodicTime

func (o *CnAssistedRanPara) SetPeriodicTime(v int32)

SetPeriodicTime gets a reference to the given int32 and assigns it to the PeriodicTime field.

func (*CnAssistedRanPara) SetScheduledCommunicationTime

func (o *CnAssistedRanPara) SetScheduledCommunicationTime(v ScheduledCommunicationTime)

SetScheduledCommunicationTime gets a reference to the given ScheduledCommunicationTime and assigns it to the ScheduledCommunicationTime field.

func (*CnAssistedRanPara) SetScheduledCommunicationType

func (o *CnAssistedRanPara) SetScheduledCommunicationType(v ScheduledCommunicationType)

SetScheduledCommunicationType gets a reference to the given ScheduledCommunicationType and assigns it to the ScheduledCommunicationType field.

func (*CnAssistedRanPara) SetStationaryIndication

func (o *CnAssistedRanPara) SetStationaryIndication(v StationaryIndication)

SetStationaryIndication gets a reference to the given StationaryIndication and assigns it to the StationaryIndication field.

func (*CnAssistedRanPara) SetTrafficProfile

func (o *CnAssistedRanPara) SetTrafficProfile(v TrafficProfile)

SetTrafficProfile gets a reference to the given TrafficProfile and assigns it to the TrafficProfile field.

func (CnAssistedRanPara) ToMap

func (o CnAssistedRanPara) 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 DddTrafficDescriptor

type DddTrafficDescriptor struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string   `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber *int32 `json:"portNumber,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	MacAddr *string `json:"macAddr,omitempty"`
}

DddTrafficDescriptor Contains a Traffic Descriptor.

func NewDddTrafficDescriptor

func NewDddTrafficDescriptor() *DddTrafficDescriptor

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

func NewDddTrafficDescriptorWithDefaults

func NewDddTrafficDescriptorWithDefaults() *DddTrafficDescriptor

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

func (*DddTrafficDescriptor) GetIpv4Addr

func (o *DddTrafficDescriptor) GetIpv4Addr() string

GetIpv4Addr returns the Ipv4Addr field value if set, zero value otherwise.

func (*DddTrafficDescriptor) GetIpv4AddrOk

func (o *DddTrafficDescriptor) GetIpv4AddrOk() (*string, bool)

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

func (*DddTrafficDescriptor) GetIpv6Addr

func (o *DddTrafficDescriptor) GetIpv6Addr() Ipv6Addr

GetIpv6Addr returns the Ipv6Addr field value if set, zero value otherwise.

func (*DddTrafficDescriptor) GetIpv6AddrOk

func (o *DddTrafficDescriptor) GetIpv6AddrOk() (*Ipv6Addr, bool)

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

func (*DddTrafficDescriptor) GetMacAddr

func (o *DddTrafficDescriptor) GetMacAddr() string

GetMacAddr returns the MacAddr field value if set, zero value otherwise.

func (*DddTrafficDescriptor) GetMacAddrOk

func (o *DddTrafficDescriptor) GetMacAddrOk() (*string, bool)

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

func (*DddTrafficDescriptor) GetPortNumber

func (o *DddTrafficDescriptor) GetPortNumber() int32

GetPortNumber returns the PortNumber field value if set, zero value otherwise.

func (*DddTrafficDescriptor) GetPortNumberOk

func (o *DddTrafficDescriptor) GetPortNumberOk() (*int32, bool)

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

func (*DddTrafficDescriptor) HasIpv4Addr

func (o *DddTrafficDescriptor) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasIpv6Addr

func (o *DddTrafficDescriptor) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasMacAddr

func (o *DddTrafficDescriptor) HasMacAddr() bool

HasMacAddr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasPortNumber

func (o *DddTrafficDescriptor) HasPortNumber() bool

HasPortNumber returns a boolean if a field has been set.

func (DddTrafficDescriptor) MarshalJSON

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

func (*DddTrafficDescriptor) SetIpv4Addr

func (o *DddTrafficDescriptor) SetIpv4Addr(v string)

SetIpv4Addr gets a reference to the given string and assigns it to the Ipv4Addr field.

func (*DddTrafficDescriptor) SetIpv6Addr

func (o *DddTrafficDescriptor) SetIpv6Addr(v Ipv6Addr)

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

func (*DddTrafficDescriptor) SetMacAddr

func (o *DddTrafficDescriptor) SetMacAddr(v string)

SetMacAddr gets a reference to the given string and assigns it to the MacAddr field.

func (*DddTrafficDescriptor) SetPortNumber

func (o *DddTrafficDescriptor) SetPortNumber(v int32)

SetPortNumber gets a reference to the given int32 and assigns it to the PortNumber field.

func (DddTrafficDescriptor) ToMap

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

type DdnFailureSubInfo

type DdnFailureSubInfo struct {
	NotifyCorrelationId      string                 `json:"notifyCorrelationId"`
	DddTrafficDescriptorList []DddTrafficDescriptor `json:"dddTrafficDescriptorList,omitempty"`
}

DdnFailureSubInfo DDN Failure Subscription Information

func NewDdnFailureSubInfo

func NewDdnFailureSubInfo(notifyCorrelationId string) *DdnFailureSubInfo

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

func NewDdnFailureSubInfoWithDefaults

func NewDdnFailureSubInfoWithDefaults() *DdnFailureSubInfo

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

func (*DdnFailureSubInfo) GetDddTrafficDescriptorList

func (o *DdnFailureSubInfo) GetDddTrafficDescriptorList() []DddTrafficDescriptor

GetDddTrafficDescriptorList returns the DddTrafficDescriptorList field value if set, zero value otherwise.

func (*DdnFailureSubInfo) GetDddTrafficDescriptorListOk

func (o *DdnFailureSubInfo) GetDddTrafficDescriptorListOk() ([]DddTrafficDescriptor, bool)

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

func (*DdnFailureSubInfo) GetNotifyCorrelationId

func (o *DdnFailureSubInfo) GetNotifyCorrelationId() string

GetNotifyCorrelationId returns the NotifyCorrelationId field value

func (*DdnFailureSubInfo) GetNotifyCorrelationIdOk

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

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

func (*DdnFailureSubInfo) HasDddTrafficDescriptorList

func (o *DdnFailureSubInfo) HasDddTrafficDescriptorList() bool

HasDddTrafficDescriptorList returns a boolean if a field has been set.

func (DdnFailureSubInfo) MarshalJSON

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

func (*DdnFailureSubInfo) SetDddTrafficDescriptorList

func (o *DdnFailureSubInfo) SetDddTrafficDescriptorList(v []DddTrafficDescriptor)

SetDddTrafficDescriptorList gets a reference to the given []DddTrafficDescriptor and assigns it to the DddTrafficDescriptorList field.

func (*DdnFailureSubInfo) SetNotifyCorrelationId

func (o *DdnFailureSubInfo) SetNotifyCorrelationId(v string)

SetNotifyCorrelationId sets field value

func (DdnFailureSubInfo) ToMap

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

type DdnFailureSubs

type DdnFailureSubs struct {
	DdnFailureSubsInd      *bool               `json:"ddnFailureSubsInd,omitempty"`
	DdnFailureSubsInfoList []DdnFailureSubInfo `json:"ddnFailureSubsInfoList,omitempty"`
}

DdnFailureSubs DDN Failure Subscription

func NewDdnFailureSubs

func NewDdnFailureSubs() *DdnFailureSubs

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

func NewDdnFailureSubsWithDefaults

func NewDdnFailureSubsWithDefaults() *DdnFailureSubs

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

func (*DdnFailureSubs) GetDdnFailureSubsInd

func (o *DdnFailureSubs) GetDdnFailureSubsInd() bool

GetDdnFailureSubsInd returns the DdnFailureSubsInd field value if set, zero value otherwise.

func (*DdnFailureSubs) GetDdnFailureSubsIndOk

func (o *DdnFailureSubs) GetDdnFailureSubsIndOk() (*bool, bool)

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

func (*DdnFailureSubs) GetDdnFailureSubsInfoList

func (o *DdnFailureSubs) GetDdnFailureSubsInfoList() []DdnFailureSubInfo

GetDdnFailureSubsInfoList returns the DdnFailureSubsInfoList field value if set, zero value otherwise.

func (*DdnFailureSubs) GetDdnFailureSubsInfoListOk

func (o *DdnFailureSubs) GetDdnFailureSubsInfoListOk() ([]DdnFailureSubInfo, bool)

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

func (*DdnFailureSubs) HasDdnFailureSubsInd

func (o *DdnFailureSubs) HasDdnFailureSubsInd() bool

HasDdnFailureSubsInd returns a boolean if a field has been set.

func (*DdnFailureSubs) HasDdnFailureSubsInfoList

func (o *DdnFailureSubs) HasDdnFailureSubsInfoList() bool

HasDdnFailureSubsInfoList returns a boolean if a field has been set.

func (DdnFailureSubs) MarshalJSON

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

func (*DdnFailureSubs) SetDdnFailureSubsInd

func (o *DdnFailureSubs) SetDdnFailureSubsInd(v bool)

SetDdnFailureSubsInd gets a reference to the given bool and assigns it to the DdnFailureSubsInd field.

func (*DdnFailureSubs) SetDdnFailureSubsInfoList

func (o *DdnFailureSubs) SetDdnFailureSubsInfoList(v []DdnFailureSubInfo)

SetDdnFailureSubsInfoList gets a reference to the given []DdnFailureSubInfo and assigns it to the DdnFailureSubsInfoList field.

func (DdnFailureSubs) ToMap

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

type DnaiInformation

type DnaiInformation struct {
	// DNAI (Data network access identifier), see clause 5.6.7 of 3GPP TS 23.501.
	Dnai                string `json:"dnai"`
	NoDnaiChangeInd     *bool  `json:"noDnaiChangeInd,omitempty"`
	NoLocalPsaChangeInd *bool  `json:"noLocalPsaChangeInd,omitempty"`
}

DnaiInformation DNAI Information

func NewDnaiInformation

func NewDnaiInformation(dnai string) *DnaiInformation

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

func NewDnaiInformationWithDefaults

func NewDnaiInformationWithDefaults() *DnaiInformation

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

func (*DnaiInformation) GetDnai

func (o *DnaiInformation) GetDnai() string

GetDnai returns the Dnai field value

func (*DnaiInformation) GetDnaiOk

func (o *DnaiInformation) GetDnaiOk() (*string, bool)

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

func (*DnaiInformation) GetNoDnaiChangeInd

func (o *DnaiInformation) GetNoDnaiChangeInd() bool

GetNoDnaiChangeInd returns the NoDnaiChangeInd field value if set, zero value otherwise.

func (*DnaiInformation) GetNoDnaiChangeIndOk

func (o *DnaiInformation) GetNoDnaiChangeIndOk() (*bool, bool)

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

func (*DnaiInformation) GetNoLocalPsaChangeInd

func (o *DnaiInformation) GetNoLocalPsaChangeInd() bool

GetNoLocalPsaChangeInd returns the NoLocalPsaChangeInd field value if set, zero value otherwise.

func (*DnaiInformation) GetNoLocalPsaChangeIndOk

func (o *DnaiInformation) GetNoLocalPsaChangeIndOk() (*bool, bool)

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

func (*DnaiInformation) HasNoDnaiChangeInd

func (o *DnaiInformation) HasNoDnaiChangeInd() bool

HasNoDnaiChangeInd returns a boolean if a field has been set.

func (*DnaiInformation) HasNoLocalPsaChangeInd

func (o *DnaiInformation) HasNoLocalPsaChangeInd() bool

HasNoLocalPsaChangeInd returns a boolean if a field has been set.

func (DnaiInformation) MarshalJSON

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

func (*DnaiInformation) SetDnai

func (o *DnaiInformation) SetDnai(v string)

SetDnai sets field value

func (*DnaiInformation) SetNoDnaiChangeInd

func (o *DnaiInformation) SetNoDnaiChangeInd(v bool)

SetNoDnaiChangeInd gets a reference to the given bool and assigns it to the NoDnaiChangeInd field.

func (*DnaiInformation) SetNoLocalPsaChangeInd

func (o *DnaiInformation) SetNoLocalPsaChangeInd(v bool)

SetNoLocalPsaChangeInd gets a reference to the given bool and assigns it to the NoLocalPsaChangeInd field.

func (DnaiInformation) ToMap

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

type DnnSelectionMode

type DnnSelectionMode struct {
	String *string
}

DnnSelectionMode DNN Selection Mode. Possible values are - VERIFIED - UE_DNN_NOT_VERIFIED - NW_DNN_NOT_VERIFIED

func (*DnnSelectionMode) MarshalJSON

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

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

func (*DnnSelectionMode) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Dynamic5Qi

type Dynamic5Qi struct {
	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.
	PacketErrRate string `json:"packetErrRate"`
	// Unsigned integer indicating Averaging Window (see clause 5.7.3.6 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	AverWindow *int32 `json:"averWindow,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"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501 [8])), expressed in 0.01 milliseconds.
	ExtPacketDelBudget *int32 `json:"extPacketDelBudget,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501 [8])), expressed in 0.01 milliseconds.
	CnPacketDelayBudgetDl *int32 `json:"cnPacketDelayBudgetDl,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501 [8])), expressed in 0.01 milliseconds.
	CnPacketDelayBudgetUl *int32 `json:"cnPacketDelayBudgetUl,omitempty"`
}

Dynamic5Qi It indicates the QoS Characteristics for a Non-standardised or not pre-configured 5QI for downlink and uplink.

func NewDynamic5Qi

func NewDynamic5Qi(resourceType QosResourceType, priorityLevel int32, packetDelayBudget int32, packetErrRate string) *Dynamic5Qi

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

func NewDynamic5QiWithDefaults

func NewDynamic5QiWithDefaults() *Dynamic5Qi

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

func (*Dynamic5Qi) GetAverWindow

func (o *Dynamic5Qi) GetAverWindow() int32

GetAverWindow returns the AverWindow field value if set, zero value otherwise.

func (*Dynamic5Qi) GetAverWindowOk

func (o *Dynamic5Qi) 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.

func (*Dynamic5Qi) GetCnPacketDelayBudgetDl

func (o *Dynamic5Qi) GetCnPacketDelayBudgetDl() int32

GetCnPacketDelayBudgetDl returns the CnPacketDelayBudgetDl field value if set, zero value otherwise.

func (*Dynamic5Qi) GetCnPacketDelayBudgetDlOk

func (o *Dynamic5Qi) GetCnPacketDelayBudgetDlOk() (*int32, bool)

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

func (*Dynamic5Qi) GetCnPacketDelayBudgetUl

func (o *Dynamic5Qi) GetCnPacketDelayBudgetUl() int32

GetCnPacketDelayBudgetUl returns the CnPacketDelayBudgetUl field value if set, zero value otherwise.

func (*Dynamic5Qi) GetCnPacketDelayBudgetUlOk

func (o *Dynamic5Qi) GetCnPacketDelayBudgetUlOk() (*int32, bool)

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

func (*Dynamic5Qi) GetExtMaxDataBurstVol

func (o *Dynamic5Qi) GetExtMaxDataBurstVol() int32

GetExtMaxDataBurstVol returns the ExtMaxDataBurstVol field value if set, zero value otherwise.

func (*Dynamic5Qi) GetExtMaxDataBurstVolOk

func (o *Dynamic5Qi) 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 (*Dynamic5Qi) GetExtPacketDelBudget

func (o *Dynamic5Qi) GetExtPacketDelBudget() int32

GetExtPacketDelBudget returns the ExtPacketDelBudget field value if set, zero value otherwise.

func (*Dynamic5Qi) GetExtPacketDelBudgetOk

func (o *Dynamic5Qi) GetExtPacketDelBudgetOk() (*int32, bool)

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

func (*Dynamic5Qi) GetMaxDataBurstVol

func (o *Dynamic5Qi) GetMaxDataBurstVol() int32

GetMaxDataBurstVol returns the MaxDataBurstVol field value if set, zero value otherwise.

func (*Dynamic5Qi) GetMaxDataBurstVolOk

func (o *Dynamic5Qi) 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 (*Dynamic5Qi) GetPacketDelayBudget

func (o *Dynamic5Qi) GetPacketDelayBudget() int32

GetPacketDelayBudget returns the PacketDelayBudget field value

func (*Dynamic5Qi) GetPacketDelayBudgetOk

func (o *Dynamic5Qi) GetPacketDelayBudgetOk() (*int32, bool)

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

func (*Dynamic5Qi) GetPacketErrRate

func (o *Dynamic5Qi) GetPacketErrRate() string

GetPacketErrRate returns the PacketErrRate field value

func (*Dynamic5Qi) GetPacketErrRateOk

func (o *Dynamic5Qi) GetPacketErrRateOk() (*string, bool)

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

func (*Dynamic5Qi) GetPriorityLevel

func (o *Dynamic5Qi) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value

func (*Dynamic5Qi) GetPriorityLevelOk

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

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

func (*Dynamic5Qi) GetResourceType

func (o *Dynamic5Qi) GetResourceType() QosResourceType

GetResourceType returns the ResourceType field value

func (*Dynamic5Qi) GetResourceTypeOk

func (o *Dynamic5Qi) GetResourceTypeOk() (*QosResourceType, bool)

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

func (*Dynamic5Qi) HasAverWindow

func (o *Dynamic5Qi) HasAverWindow() bool

HasAverWindow returns a boolean if a field has been set.

func (*Dynamic5Qi) HasCnPacketDelayBudgetDl

func (o *Dynamic5Qi) HasCnPacketDelayBudgetDl() bool

HasCnPacketDelayBudgetDl returns a boolean if a field has been set.

func (*Dynamic5Qi) HasCnPacketDelayBudgetUl

func (o *Dynamic5Qi) HasCnPacketDelayBudgetUl() bool

HasCnPacketDelayBudgetUl returns a boolean if a field has been set.

func (*Dynamic5Qi) HasExtMaxDataBurstVol

func (o *Dynamic5Qi) HasExtMaxDataBurstVol() bool

HasExtMaxDataBurstVol returns a boolean if a field has been set.

func (*Dynamic5Qi) HasExtPacketDelBudget

func (o *Dynamic5Qi) HasExtPacketDelBudget() bool

HasExtPacketDelBudget returns a boolean if a field has been set.

func (*Dynamic5Qi) HasMaxDataBurstVol

func (o *Dynamic5Qi) HasMaxDataBurstVol() bool

HasMaxDataBurstVol returns a boolean if a field has been set.

func (Dynamic5Qi) MarshalJSON

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

func (*Dynamic5Qi) SetAverWindow

func (o *Dynamic5Qi) SetAverWindow(v int32)

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

func (*Dynamic5Qi) SetCnPacketDelayBudgetDl

func (o *Dynamic5Qi) SetCnPacketDelayBudgetDl(v int32)

SetCnPacketDelayBudgetDl gets a reference to the given int32 and assigns it to the CnPacketDelayBudgetDl field.

func (*Dynamic5Qi) SetCnPacketDelayBudgetUl

func (o *Dynamic5Qi) SetCnPacketDelayBudgetUl(v int32)

SetCnPacketDelayBudgetUl gets a reference to the given int32 and assigns it to the CnPacketDelayBudgetUl field.

func (*Dynamic5Qi) SetExtMaxDataBurstVol

func (o *Dynamic5Qi) SetExtMaxDataBurstVol(v int32)

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

func (*Dynamic5Qi) SetExtPacketDelBudget

func (o *Dynamic5Qi) SetExtPacketDelBudget(v int32)

SetExtPacketDelBudget gets a reference to the given int32 and assigns it to the ExtPacketDelBudget field.

func (*Dynamic5Qi) SetMaxDataBurstVol

func (o *Dynamic5Qi) SetMaxDataBurstVol(v int32)

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

func (*Dynamic5Qi) SetPacketDelayBudget

func (o *Dynamic5Qi) SetPacketDelayBudget(v int32)

SetPacketDelayBudget sets field value

func (*Dynamic5Qi) SetPacketErrRate

func (o *Dynamic5Qi) SetPacketErrRate(v string)

SetPacketErrRate sets field value

func (*Dynamic5Qi) SetPriorityLevel

func (o *Dynamic5Qi) SetPriorityLevel(v int32)

SetPriorityLevel sets field value

func (*Dynamic5Qi) SetResourceType

func (o *Dynamic5Qi) SetResourceType(v QosResourceType)

SetResourceType sets field value

func (Dynamic5Qi) ToMap

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

type EbiArpMapping

type EbiArpMapping struct {
	// EPS Bearer Identifier
	EpsBearerId int32 `json:"epsBearerId"`
	Arp         Arp   `json:"arp"`
}

EbiArpMapping EBI to ARP mapping

func NewEbiArpMapping

func NewEbiArpMapping(epsBearerId int32, arp Arp) *EbiArpMapping

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

func NewEbiArpMappingWithDefaults

func NewEbiArpMappingWithDefaults() *EbiArpMapping

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

func (*EbiArpMapping) GetArp

func (o *EbiArpMapping) GetArp() Arp

GetArp returns the Arp field value

func (*EbiArpMapping) GetArpOk

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

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

func (*EbiArpMapping) GetEpsBearerId

func (o *EbiArpMapping) GetEpsBearerId() int32

GetEpsBearerId returns the EpsBearerId field value

func (*EbiArpMapping) GetEpsBearerIdOk

func (o *EbiArpMapping) GetEpsBearerIdOk() (*int32, bool)

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

func (EbiArpMapping) MarshalJSON

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

func (*EbiArpMapping) SetArp

func (o *EbiArpMapping) SetArp(v Arp)

SetArp sets field value

func (*EbiArpMapping) SetEpsBearerId

func (o *EbiArpMapping) SetEpsBearerId(v int32)

SetEpsBearerId sets field value

func (EbiArpMapping) ToMap

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

type Ecgi

type Ecgi struct {
	PlmnId PlmnId `json:"plmnId"`
	// 28-bit string identifying an E-UTRA Cell Id as specified in clause 9.3.1.9 of  3GPP TS 38.413, in hexadecimal representation. Each character in the string shall take a  value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most  significant character representing the 4 most significant bits of the Cell Id shall appear  first in the string, and the character representing the 4 least significant bit of the  Cell Id shall appear last in the string.
	EutraCellId string `json:"eutraCellId"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

Ecgi Contains the ECGI (E-UTRAN Cell Global Identity), as described in 3GPP 23.003

func NewEcgi

func NewEcgi(plmnId PlmnId, eutraCellId string) *Ecgi

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

func NewEcgiWithDefaults

func NewEcgiWithDefaults() *Ecgi

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

func (*Ecgi) GetEutraCellId

func (o *Ecgi) GetEutraCellId() string

GetEutraCellId returns the EutraCellId field value

func (*Ecgi) GetEutraCellIdOk

func (o *Ecgi) GetEutraCellIdOk() (*string, bool)

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

func (*Ecgi) GetNid

func (o *Ecgi) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*Ecgi) GetNidOk

func (o *Ecgi) GetNidOk() (*string, bool)

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

func (*Ecgi) GetPlmnId

func (o *Ecgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Ecgi) GetPlmnIdOk

func (o *Ecgi) GetPlmnIdOk() (*PlmnId, bool)

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

func (*Ecgi) HasNid

func (o *Ecgi) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Ecgi) MarshalJSON

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

func (*Ecgi) SetEutraCellId

func (o *Ecgi) SetEutraCellId(v string)

SetEutraCellId sets field value

func (*Ecgi) SetNid

func (o *Ecgi) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (*Ecgi) SetPlmnId

func (o *Ecgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Ecgi) ToMap

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

type EpsBearerInfo

type EpsBearerInfo struct {
	// EPS Bearer Identifier
	Ebi int32 `json:"ebi"`
	// string with format 'bytes' as defined in OpenAPI
	PgwS8uFteid string `json:"pgwS8uFteid"`
	// string with format 'bytes' as defined in OpenAPI
	BearerLevelQoS string `json:"bearerLevelQoS"`
}

EpsBearerInfo EPS Bearer Information from H-SMF to V-SMF, or from SMF to I-SMF

func NewEpsBearerInfo

func NewEpsBearerInfo(ebi int32, pgwS8uFteid string, bearerLevelQoS string) *EpsBearerInfo

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

func NewEpsBearerInfoWithDefaults

func NewEpsBearerInfoWithDefaults() *EpsBearerInfo

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

func (*EpsBearerInfo) GetBearerLevelQoS

func (o *EpsBearerInfo) GetBearerLevelQoS() string

GetBearerLevelQoS returns the BearerLevelQoS field value

func (*EpsBearerInfo) GetBearerLevelQoSOk

func (o *EpsBearerInfo) GetBearerLevelQoSOk() (*string, bool)

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

func (*EpsBearerInfo) GetEbi

func (o *EpsBearerInfo) GetEbi() int32

GetEbi returns the Ebi field value

func (*EpsBearerInfo) GetEbiOk

func (o *EpsBearerInfo) GetEbiOk() (*int32, bool)

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

func (*EpsBearerInfo) GetPgwS8uFteid

func (o *EpsBearerInfo) GetPgwS8uFteid() string

GetPgwS8uFteid returns the PgwS8uFteid field value

func (*EpsBearerInfo) GetPgwS8uFteidOk

func (o *EpsBearerInfo) GetPgwS8uFteidOk() (*string, bool)

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

func (EpsBearerInfo) MarshalJSON

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

func (*EpsBearerInfo) SetBearerLevelQoS

func (o *EpsBearerInfo) SetBearerLevelQoS(v string)

SetBearerLevelQoS sets field value

func (*EpsBearerInfo) SetEbi

func (o *EpsBearerInfo) SetEbi(v int32)

SetEbi sets field value

func (*EpsBearerInfo) SetPgwS8uFteid

func (o *EpsBearerInfo) SetPgwS8uFteid(v string)

SetPgwS8uFteid sets field value

func (EpsBearerInfo) ToMap

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

type EpsInterworkingIndication

type EpsInterworkingIndication struct {
	String *string
}

EpsInterworkingIndication EPS Interworking Indication. Possible values are - NONE - WITH_N26 - WITHOUT_N26 - IWK_NON_3GPP

func (*EpsInterworkingIndication) MarshalJSON

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

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

func (*EpsInterworkingIndication) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type EpsPdnCnxInfo

type EpsPdnCnxInfo struct {
	// string with format 'bytes' as defined in OpenAPI
	PgwS8cFteid string `json:"pgwS8cFteid"`
	// string with format 'bytes' as defined in OpenAPI
	PgwNodeName *string `json:"pgwNodeName,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	PgwChangeInfo *string `json:"pgwChangeInfo,omitempty"`
	// EPS Bearer Identifier
	LinkedBearerId *int32 `json:"linkedBearerId,omitempty"`
}

EpsPdnCnxInfo EPS PDN Connection Information from H-SMF to V-SMF, or from SMF to I-SMF

func NewEpsPdnCnxInfo

func NewEpsPdnCnxInfo(pgwS8cFteid string) *EpsPdnCnxInfo

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

func NewEpsPdnCnxInfoWithDefaults

func NewEpsPdnCnxInfoWithDefaults() *EpsPdnCnxInfo

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

func (*EpsPdnCnxInfo) GetLinkedBearerId

func (o *EpsPdnCnxInfo) GetLinkedBearerId() int32

GetLinkedBearerId returns the LinkedBearerId field value if set, zero value otherwise.

func (*EpsPdnCnxInfo) GetLinkedBearerIdOk

func (o *EpsPdnCnxInfo) GetLinkedBearerIdOk() (*int32, bool)

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

func (*EpsPdnCnxInfo) GetPgwChangeInfo

func (o *EpsPdnCnxInfo) GetPgwChangeInfo() string

GetPgwChangeInfo returns the PgwChangeInfo field value if set, zero value otherwise.

func (*EpsPdnCnxInfo) GetPgwChangeInfoOk

func (o *EpsPdnCnxInfo) GetPgwChangeInfoOk() (*string, bool)

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

func (*EpsPdnCnxInfo) GetPgwNodeName

func (o *EpsPdnCnxInfo) GetPgwNodeName() string

GetPgwNodeName returns the PgwNodeName field value if set, zero value otherwise.

func (*EpsPdnCnxInfo) GetPgwNodeNameOk

func (o *EpsPdnCnxInfo) GetPgwNodeNameOk() (*string, bool)

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

func (*EpsPdnCnxInfo) GetPgwS8cFteid

func (o *EpsPdnCnxInfo) GetPgwS8cFteid() string

GetPgwS8cFteid returns the PgwS8cFteid field value

func (*EpsPdnCnxInfo) GetPgwS8cFteidOk

func (o *EpsPdnCnxInfo) GetPgwS8cFteidOk() (*string, bool)

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

func (*EpsPdnCnxInfo) HasLinkedBearerId

func (o *EpsPdnCnxInfo) HasLinkedBearerId() bool

HasLinkedBearerId returns a boolean if a field has been set.

func (*EpsPdnCnxInfo) HasPgwChangeInfo

func (o *EpsPdnCnxInfo) HasPgwChangeInfo() bool

HasPgwChangeInfo returns a boolean if a field has been set.

func (*EpsPdnCnxInfo) HasPgwNodeName

func (o *EpsPdnCnxInfo) HasPgwNodeName() bool

HasPgwNodeName returns a boolean if a field has been set.

func (EpsPdnCnxInfo) MarshalJSON

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

func (*EpsPdnCnxInfo) SetLinkedBearerId

func (o *EpsPdnCnxInfo) SetLinkedBearerId(v int32)

SetLinkedBearerId gets a reference to the given int32 and assigns it to the LinkedBearerId field.

func (*EpsPdnCnxInfo) SetPgwChangeInfo

func (o *EpsPdnCnxInfo) SetPgwChangeInfo(v string)

SetPgwChangeInfo gets a reference to the given string and assigns it to the PgwChangeInfo field.

func (*EpsPdnCnxInfo) SetPgwNodeName

func (o *EpsPdnCnxInfo) SetPgwNodeName(v string)

SetPgwNodeName gets a reference to the given string and assigns it to the PgwNodeName field.

func (*EpsPdnCnxInfo) SetPgwS8cFteid

func (o *EpsPdnCnxInfo) SetPgwS8cFteid(v string)

SetPgwS8cFteid sets field value

func (EpsPdnCnxInfo) ToMap

func (o EpsPdnCnxInfo) 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 ExemptionInd

type ExemptionInd struct {
	DnnCongestion        *bool `json:"dnnCongestion,omitempty"`
	SnssaiOnlyCongestion *bool `json:"snssaiOnlyCongestion,omitempty"`
	SnssaiDnnCongestion  *bool `json:"snssaiDnnCongestion,omitempty"`
}

ExemptionInd Exemption Indication

func NewExemptionInd

func NewExemptionInd() *ExemptionInd

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

func NewExemptionIndWithDefaults

func NewExemptionIndWithDefaults() *ExemptionInd

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

func (*ExemptionInd) GetDnnCongestion

func (o *ExemptionInd) GetDnnCongestion() bool

GetDnnCongestion returns the DnnCongestion field value if set, zero value otherwise.

func (*ExemptionInd) GetDnnCongestionOk

func (o *ExemptionInd) GetDnnCongestionOk() (*bool, bool)

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

func (*ExemptionInd) GetSnssaiDnnCongestion

func (o *ExemptionInd) GetSnssaiDnnCongestion() bool

GetSnssaiDnnCongestion returns the SnssaiDnnCongestion field value if set, zero value otherwise.

func (*ExemptionInd) GetSnssaiDnnCongestionOk

func (o *ExemptionInd) GetSnssaiDnnCongestionOk() (*bool, bool)

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

func (*ExemptionInd) GetSnssaiOnlyCongestion

func (o *ExemptionInd) GetSnssaiOnlyCongestion() bool

GetSnssaiOnlyCongestion returns the SnssaiOnlyCongestion field value if set, zero value otherwise.

func (*ExemptionInd) GetSnssaiOnlyCongestionOk

func (o *ExemptionInd) GetSnssaiOnlyCongestionOk() (*bool, bool)

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

func (*ExemptionInd) HasDnnCongestion

func (o *ExemptionInd) HasDnnCongestion() bool

HasDnnCongestion returns a boolean if a field has been set.

func (*ExemptionInd) HasSnssaiDnnCongestion

func (o *ExemptionInd) HasSnssaiDnnCongestion() bool

HasSnssaiDnnCongestion returns a boolean if a field has been set.

func (*ExemptionInd) HasSnssaiOnlyCongestion

func (o *ExemptionInd) HasSnssaiOnlyCongestion() bool

HasSnssaiOnlyCongestion returns a boolean if a field has been set.

func (ExemptionInd) MarshalJSON

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

func (*ExemptionInd) SetDnnCongestion

func (o *ExemptionInd) SetDnnCongestion(v bool)

SetDnnCongestion gets a reference to the given bool and assigns it to the DnnCongestion field.

func (*ExemptionInd) SetSnssaiDnnCongestion

func (o *ExemptionInd) SetSnssaiDnnCongestion(v bool)

SetSnssaiDnnCongestion gets a reference to the given bool and assigns it to the SnssaiDnnCongestion field.

func (*ExemptionInd) SetSnssaiOnlyCongestion

func (o *ExemptionInd) SetSnssaiOnlyCongestion(v bool)

SetSnssaiOnlyCongestion gets a reference to the given bool and assigns it to the SnssaiOnlyCongestion field.

func (ExemptionInd) ToMap

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

type ExtProblemDetails

type ExtProblemDetails struct {
	ProblemDetails
	RemoteError *bool `json:"remoteError,omitempty"`
}

ExtProblemDetails Extended Problem Details

func NewExtProblemDetails

func NewExtProblemDetails() *ExtProblemDetails

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

func NewExtProblemDetailsWithDefaults

func NewExtProblemDetailsWithDefaults() *ExtProblemDetails

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

func (*ExtProblemDetails) GetRemoteError

func (o *ExtProblemDetails) GetRemoteError() bool

GetRemoteError returns the RemoteError field value if set, zero value otherwise.

func (*ExtProblemDetails) GetRemoteErrorOk

func (o *ExtProblemDetails) GetRemoteErrorOk() (*bool, bool)

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

func (*ExtProblemDetails) HasRemoteError

func (o *ExtProblemDetails) HasRemoteError() bool

HasRemoteError returns a boolean if a field has been set.

func (ExtProblemDetails) MarshalJSON

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

func (*ExtProblemDetails) SetRemoteError

func (o *ExtProblemDetails) SetRemoteError(v bool)

SetRemoteError gets a reference to the given bool and assigns it to the RemoteError field.

func (ExtProblemDetails) ToMap

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

type GNbId

type GNbId struct {
	// Unsigned integer representing the bit length of the gNB ID as defined in clause 9.3.1.6 of 3GPP TS 38.413 [11], within the range 22 to 32.
	BitLength int32 `json:"bitLength"`
	// This represents the identifier of the gNB. The value of the gNB ID shall be encoded in hexadecimal representation. Each character in the string shall take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The padding 0 shall be added to make multiple nibbles,  the most significant character representing the padding 0 if required together with the 4 most significant bits of the gNB ID shall appear first in the string, and the character representing the 4 least significant bit of the gNB ID shall appear last in the string.
	GNBValue string `json:"gNBValue"`
}

GNbId Provides the G-NB identifier.

func NewGNbId

func NewGNbId(bitLength int32, gNBValue string) *GNbId

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

func NewGNbIdWithDefaults

func NewGNbIdWithDefaults() *GNbId

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

func (*GNbId) GetBitLength

func (o *GNbId) GetBitLength() int32

GetBitLength returns the BitLength field value

func (*GNbId) GetBitLengthOk

func (o *GNbId) GetBitLengthOk() (*int32, bool)

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

func (*GNbId) GetGNBValue

func (o *GNbId) GetGNBValue() string

GetGNBValue returns the GNBValue field value

func (*GNbId) GetGNBValueOk

func (o *GNbId) GetGNBValueOk() (*string, bool)

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

func (GNbId) MarshalJSON

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

func (*GNbId) SetBitLength

func (o *GNbId) SetBitLength(v int32)

SetBitLength sets field value

func (*GNbId) SetGNBValue

func (o *GNbId) SetGNBValue(v string)

SetGNBValue sets field value

func (GNbId) ToMap

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

type GbrQosFlowInformation

type GbrQosFlowInformation 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\".
	MaxFbrDl string `json:"maxFbrDl"`
	// 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\".
	MaxFbrUl string `json:"maxFbrUl"`
	// 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\".
	GuaFbrDl string `json:"guaFbrDl"`
	// 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\".
	GuaFbrUl     string               `json:"guaFbrUl"`
	NotifControl *NotificationControl `json:"notifControl,omitempty"`
	// Unsigned integer indicating Packet Loss Rate (see clauses 5.7.2.8 and 5.7.4 of 3GPP TS 23.501), expressed in tenth of percent.
	MaxPacketLossRateDl *int32 `json:"maxPacketLossRateDl,omitempty"`
	// Unsigned integer indicating Packet Loss Rate (see clauses 5.7.2.8 and 5.7.4 of 3GPP TS 23.501), expressed in tenth of percent.
	MaxPacketLossRateUl       *int32                  `json:"maxPacketLossRateUl,omitempty"`
	AlternativeQosProfileList []AlternativeQosProfile `json:"alternativeQosProfileList,omitempty"`
}

GbrQosFlowInformation GBR QoS flow information

func NewGbrQosFlowInformation

func NewGbrQosFlowInformation(maxFbrDl string, maxFbrUl string, guaFbrDl string, guaFbrUl string) *GbrQosFlowInformation

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

func NewGbrQosFlowInformationWithDefaults

func NewGbrQosFlowInformationWithDefaults() *GbrQosFlowInformation

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

func (*GbrQosFlowInformation) GetAlternativeQosProfileList

func (o *GbrQosFlowInformation) GetAlternativeQosProfileList() []AlternativeQosProfile

GetAlternativeQosProfileList returns the AlternativeQosProfileList field value if set, zero value otherwise.

func (*GbrQosFlowInformation) GetAlternativeQosProfileListOk

func (o *GbrQosFlowInformation) GetAlternativeQosProfileListOk() ([]AlternativeQosProfile, bool)

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

func (*GbrQosFlowInformation) GetGuaFbrDl

func (o *GbrQosFlowInformation) GetGuaFbrDl() string

GetGuaFbrDl returns the GuaFbrDl field value

func (*GbrQosFlowInformation) GetGuaFbrDlOk

func (o *GbrQosFlowInformation) GetGuaFbrDlOk() (*string, bool)

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

func (*GbrQosFlowInformation) GetGuaFbrUl

func (o *GbrQosFlowInformation) GetGuaFbrUl() string

GetGuaFbrUl returns the GuaFbrUl field value

func (*GbrQosFlowInformation) GetGuaFbrUlOk

func (o *GbrQosFlowInformation) GetGuaFbrUlOk() (*string, bool)

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

func (*GbrQosFlowInformation) GetMaxFbrDl

func (o *GbrQosFlowInformation) GetMaxFbrDl() string

GetMaxFbrDl returns the MaxFbrDl field value

func (*GbrQosFlowInformation) GetMaxFbrDlOk

func (o *GbrQosFlowInformation) GetMaxFbrDlOk() (*string, bool)

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

func (*GbrQosFlowInformation) GetMaxFbrUl

func (o *GbrQosFlowInformation) GetMaxFbrUl() string

GetMaxFbrUl returns the MaxFbrUl field value

func (*GbrQosFlowInformation) GetMaxFbrUlOk

func (o *GbrQosFlowInformation) GetMaxFbrUlOk() (*string, bool)

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

func (*GbrQosFlowInformation) GetMaxPacketLossRateDl

func (o *GbrQosFlowInformation) GetMaxPacketLossRateDl() int32

GetMaxPacketLossRateDl returns the MaxPacketLossRateDl field value if set, zero value otherwise.

func (*GbrQosFlowInformation) GetMaxPacketLossRateDlOk

func (o *GbrQosFlowInformation) 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.

func (*GbrQosFlowInformation) GetMaxPacketLossRateUl

func (o *GbrQosFlowInformation) GetMaxPacketLossRateUl() int32

GetMaxPacketLossRateUl returns the MaxPacketLossRateUl field value if set, zero value otherwise.

func (*GbrQosFlowInformation) GetMaxPacketLossRateUlOk

func (o *GbrQosFlowInformation) 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.

func (*GbrQosFlowInformation) GetNotifControl

func (o *GbrQosFlowInformation) GetNotifControl() NotificationControl

GetNotifControl returns the NotifControl field value if set, zero value otherwise.

func (*GbrQosFlowInformation) GetNotifControlOk

func (o *GbrQosFlowInformation) GetNotifControlOk() (*NotificationControl, bool)

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

func (*GbrQosFlowInformation) HasAlternativeQosProfileList

func (o *GbrQosFlowInformation) HasAlternativeQosProfileList() bool

HasAlternativeQosProfileList returns a boolean if a field has been set.

func (*GbrQosFlowInformation) HasMaxPacketLossRateDl

func (o *GbrQosFlowInformation) HasMaxPacketLossRateDl() bool

HasMaxPacketLossRateDl returns a boolean if a field has been set.

func (*GbrQosFlowInformation) HasMaxPacketLossRateUl

func (o *GbrQosFlowInformation) HasMaxPacketLossRateUl() bool

HasMaxPacketLossRateUl returns a boolean if a field has been set.

func (*GbrQosFlowInformation) HasNotifControl

func (o *GbrQosFlowInformation) HasNotifControl() bool

HasNotifControl returns a boolean if a field has been set.

func (GbrQosFlowInformation) MarshalJSON

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

func (*GbrQosFlowInformation) SetAlternativeQosProfileList

func (o *GbrQosFlowInformation) SetAlternativeQosProfileList(v []AlternativeQosProfile)

SetAlternativeQosProfileList gets a reference to the given []AlternativeQosProfile and assigns it to the AlternativeQosProfileList field.

func (*GbrQosFlowInformation) SetGuaFbrDl

func (o *GbrQosFlowInformation) SetGuaFbrDl(v string)

SetGuaFbrDl sets field value

func (*GbrQosFlowInformation) SetGuaFbrUl

func (o *GbrQosFlowInformation) SetGuaFbrUl(v string)

SetGuaFbrUl sets field value

func (*GbrQosFlowInformation) SetMaxFbrDl

func (o *GbrQosFlowInformation) SetMaxFbrDl(v string)

SetMaxFbrDl sets field value

func (*GbrQosFlowInformation) SetMaxFbrUl

func (o *GbrQosFlowInformation) SetMaxFbrUl(v string)

SetMaxFbrUl sets field value

func (*GbrQosFlowInformation) SetMaxPacketLossRateDl

func (o *GbrQosFlowInformation) SetMaxPacketLossRateDl(v int32)

SetMaxPacketLossRateDl gets a reference to the given int32 and assigns it to the MaxPacketLossRateDl field.

func (*GbrQosFlowInformation) SetMaxPacketLossRateUl

func (o *GbrQosFlowInformation) SetMaxPacketLossRateUl(v int32)

SetMaxPacketLossRateUl gets a reference to the given int32 and assigns it to the MaxPacketLossRateUl field.

func (*GbrQosFlowInformation) SetNotifControl

func (o *GbrQosFlowInformation) SetNotifControl(v NotificationControl)

SetNotifControl gets a reference to the given NotificationControl and assigns it to the NotifControl field.

func (GbrQosFlowInformation) ToMap

func (o GbrQosFlowInformation) 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 Guami

type Guami struct {
	PlmnId PlmnIdNid `json:"plmnId"`
	// String identifying the AMF ID composed of AMF Region ID (8 bits), AMF Set ID (10 bits) and AMF  Pointer (6 bits) as specified in clause 2.10.1 of 3GPP TS 23.003. It is encoded as a string of  6 hexadecimal characters (i.e., 24 bits).
	AmfId string `json:"amfId"`
}

Guami Globally Unique AMF Identifier constructed out of PLMN, Network and AMF identity.

func NewGuami

func NewGuami(plmnId PlmnIdNid, amfId string) *Guami

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

func NewGuamiWithDefaults

func NewGuamiWithDefaults() *Guami

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

func (*Guami) GetAmfId

func (o *Guami) GetAmfId() string

GetAmfId returns the AmfId field value

func (*Guami) GetAmfIdOk

func (o *Guami) GetAmfIdOk() (*string, bool)

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

func (*Guami) GetPlmnId

func (o *Guami) GetPlmnId() PlmnIdNid

GetPlmnId returns the PlmnId field value

func (*Guami) GetPlmnIdOk

func (o *Guami) GetPlmnIdOk() (*PlmnIdNid, bool)

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

func (Guami) MarshalJSON

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

func (*Guami) SetAmfId

func (o *Guami) SetAmfId(v string)

SetAmfId sets field value

func (*Guami) SetPlmnId

func (o *Guami) SetPlmnId(v PlmnIdNid)

SetPlmnId sets field value

func (Guami) ToMap

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

type 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 HoState

type HoState struct {
	String *string
}

HoState Handover state. Possible values are - NONE - PREPARING - PREPARED - COMPLETED - CANCELLED

func (*HoState) MarshalJSON

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

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

func (*HoState) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type HsmfUpdateData

type HsmfUpdateData struct {
	RequestIndication RequestIndication `json:"requestIndication"`
	// String representing a Permanent Equipment Identifier that may contain - an IMEI or IMEISV, as  specified in clause 6.2 of 3GPP TS 23.003; a MAC address for a 5G-RG or FN-RG via  wireline  access, with an indication that this address cannot be trusted for regulatory purpose if this  address cannot be used as an Equipment Identifier of the FN-RG, as specified in clause 4.7.7  of 3GPP TS23.316. Examples are imei-012345678901234 or imeisv-0123456789012345.
	Pei                    *string       `json:"pei,omitempty"`
	VcnTunnelInfo          *TunnelInfo   `json:"vcnTunnelInfo,omitempty"`
	IcnTunnelInfo          *TunnelInfo   `json:"icnTunnelInfo,omitempty"`
	AdditionalCnTunnelInfo *TunnelInfo   `json:"additionalCnTunnelInfo,omitempty"`
	ServingNetwork         *PlmnIdNid    `json:"servingNetwork,omitempty"`
	AnType                 *AccessType   `json:"anType,omitempty"`
	AdditionalAnType       *AccessType   `json:"additionalAnType,omitempty"`
	RatType                *RatType      `json:"ratType,omitempty"`
	UeLocation             *UserLocation `json:"ueLocation,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"`
	AddUeLocation *UserLocation `json:"addUeLocation,omitempty"`
	PauseCharging *bool         `json:"pauseCharging,omitempty"`
	// Procedure Transaction Identifier
	Pti                     *int32                 `json:"pti,omitempty"`
	N1SmInfoFromUe          *RefToBinaryData       `json:"n1SmInfoFromUe,omitempty"`
	UnknownN1SmInfo         *RefToBinaryData       `json:"unknownN1SmInfo,omitempty"`
	QosFlowsRelNotifyList   []QosFlowItem          `json:"qosFlowsRelNotifyList,omitempty"`
	QosFlowsNotifyList      []QosFlowNotifyItem    `json:"qosFlowsNotifyList,omitempty"`
	NotifyList              []PduSessionNotifyItem `json:"NotifyList,omitempty"`
	EpsBearerId             []int32                `json:"epsBearerId,omitempty"`
	HoPreparationIndication *bool                  `json:"hoPreparationIndication,omitempty"`
	RevokeEbiList           []int32                `json:"revokeEbiList,omitempty"`
	Cause                   *Cause                 `json:"cause,omitempty"`
	NgApCause               *NgApCause             `json:"ngApCause,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Var5gMmCauseValue       *int32                       `json:"5gMmCauseValue,omitempty"`
	AlwaysOnRequested       *bool                        `json:"alwaysOnRequested,omitempty"`
	EpsInterworkingInd      *EpsInterworkingIndication   `json:"epsInterworkingInd,omitempty"`
	SecondaryRatUsageReport []SecondaryRatUsageReport    `json:"secondaryRatUsageReport,omitempty"`
	SecondaryRatUsageInfo   []SecondaryRatUsageInfo      `json:"secondaryRatUsageInfo,omitempty"`
	AnTypeCanBeChanged      *bool                        `json:"anTypeCanBeChanged,omitempty"`
	MaReleaseInd            *MaReleaseIndication         `json:"maReleaseInd,omitempty"`
	MaNwUpgradeInd          *bool                        `json:"maNwUpgradeInd,omitempty"`
	MaRequestInd            *bool                        `json:"maRequestInd,omitempty"`
	UnavailableAccessInd    *UnavailableAccessIndication `json:"unavailableAccessInd,omitempty"`
	PsaInfo                 []PsaInformation             `json:"psaInfo,omitempty"`
	UlclBpInfo              *UlclBpInformation           `json:"ulclBpInfo,omitempty"`
	N4Info                  *N4Information               `json:"n4Info,omitempty"`
	N4InfoExt1              *N4Information               `json:"n4InfoExt1,omitempty"`
	N4InfoExt2              *N4Information               `json:"n4InfoExt2,omitempty"`
	PresenceInLadn          *PresenceState               `json:"presenceInLadn,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	VsmfPduSessionUri *string `json:"vsmfPduSessionUri,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.
	VsmfId                *string `json:"vsmfId,omitempty"`
	VSmfServiceInstanceId *string `json:"vSmfServiceInstanceId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	IsmfPduSessionUri *string `json:"ismfPduSessionUri,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.
	IsmfId                *string       `json:"ismfId,omitempty"`
	ISmfServiceInstanceId *string       `json:"iSmfServiceInstanceId,omitempty"`
	DlServingPlmnRateCtl  NullableInt32 `json:"dlServingPlmnRateCtl,omitempty"`
	DnaiList              []string      `json:"dnaiList,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"`
	RoamingChargingProfile *RoamingChargingProfile `json:"roamingChargingProfile,omitempty"`
	MoExpDataCounter       *MoExpDataCounter       `json:"moExpDataCounter,omitempty"`
	VplmnQos               *VplmnQos               `json:"vplmnQos,omitempty"`
	SecurityResult         *SecurityResult         `json:"securityResult,omitempty"`
	UpSecurityInfo         *UpSecurityInfo         `json:"upSecurityInfo,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.
	AmfNfId                              *string                        `json:"amfNfId,omitempty"`
	Guami                                *Guami                         `json:"guami,omitempty"`
	SecondaryRatUsageDataReportContainer []string                       `json:"secondaryRatUsageDataReportContainer,omitempty"`
	SmPolicyNotifyInd                    *bool                          `json:"smPolicyNotifyInd,omitempty"`
	PcfUeCallbackInfo                    NullablePcfUeCallbackInfo      `json:"pcfUeCallbackInfo,omitempty"`
	SatelliteBackhaulCat                 *SatelliteBackhaulCategory     `json:"satelliteBackhaulCat,omitempty"`
	MaxIntegrityProtectedDataRateUl      *MaxIntegrityProtectedDataRate `json:"maxIntegrityProtectedDataRateUl,omitempty"`
	MaxIntegrityProtectedDataRateDl      *MaxIntegrityProtectedDataRate `json:"maxIntegrityProtectedDataRateDl,omitempty"`
	UpCnxState                           *UpCnxState                    `json:"upCnxState,omitempty"`
}

HsmfUpdateData Data within Update Request towards H-SMF, or from I-SMF to SMF

func NewHsmfUpdateData

func NewHsmfUpdateData(requestIndication RequestIndication) *HsmfUpdateData

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

func NewHsmfUpdateDataWithDefaults

func NewHsmfUpdateDataWithDefaults() *HsmfUpdateData

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

func (*HsmfUpdateData) GetAddUeLocation

func (o *HsmfUpdateData) GetAddUeLocation() UserLocation

GetAddUeLocation returns the AddUeLocation field value if set, zero value otherwise.

func (*HsmfUpdateData) GetAddUeLocationOk

func (o *HsmfUpdateData) GetAddUeLocationOk() (*UserLocation, bool)

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

func (*HsmfUpdateData) GetAdditionalAnType

func (o *HsmfUpdateData) GetAdditionalAnType() AccessType

GetAdditionalAnType returns the AdditionalAnType field value if set, zero value otherwise.

func (*HsmfUpdateData) GetAdditionalAnTypeOk

func (o *HsmfUpdateData) GetAdditionalAnTypeOk() (*AccessType, bool)

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

func (*HsmfUpdateData) GetAdditionalCnTunnelInfo

func (o *HsmfUpdateData) GetAdditionalCnTunnelInfo() TunnelInfo

GetAdditionalCnTunnelInfo returns the AdditionalCnTunnelInfo field value if set, zero value otherwise.

func (*HsmfUpdateData) GetAdditionalCnTunnelInfoOk

func (o *HsmfUpdateData) GetAdditionalCnTunnelInfoOk() (*TunnelInfo, bool)

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

func (*HsmfUpdateData) GetAlwaysOnRequested

func (o *HsmfUpdateData) GetAlwaysOnRequested() bool

GetAlwaysOnRequested returns the AlwaysOnRequested field value if set, zero value otherwise.

func (*HsmfUpdateData) GetAlwaysOnRequestedOk

func (o *HsmfUpdateData) GetAlwaysOnRequestedOk() (*bool, bool)

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

func (*HsmfUpdateData) GetAmfNfId

func (o *HsmfUpdateData) GetAmfNfId() string

GetAmfNfId returns the AmfNfId field value if set, zero value otherwise.

func (*HsmfUpdateData) GetAmfNfIdOk

func (o *HsmfUpdateData) GetAmfNfIdOk() (*string, bool)

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

func (*HsmfUpdateData) GetAnType

func (o *HsmfUpdateData) GetAnType() AccessType

GetAnType returns the AnType field value if set, zero value otherwise.

func (*HsmfUpdateData) GetAnTypeCanBeChanged

func (o *HsmfUpdateData) GetAnTypeCanBeChanged() bool

GetAnTypeCanBeChanged returns the AnTypeCanBeChanged field value if set, zero value otherwise.

func (*HsmfUpdateData) GetAnTypeCanBeChangedOk

func (o *HsmfUpdateData) GetAnTypeCanBeChangedOk() (*bool, bool)

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

func (*HsmfUpdateData) GetAnTypeOk

func (o *HsmfUpdateData) GetAnTypeOk() (*AccessType, bool)

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

func (*HsmfUpdateData) GetCause

func (o *HsmfUpdateData) GetCause() Cause

GetCause returns the Cause field value if set, zero value otherwise.

func (*HsmfUpdateData) GetCauseOk

func (o *HsmfUpdateData) GetCauseOk() (*Cause, 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 (*HsmfUpdateData) GetDlServingPlmnRateCtl

func (o *HsmfUpdateData) GetDlServingPlmnRateCtl() int32

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

func (*HsmfUpdateData) GetDlServingPlmnRateCtlOk

func (o *HsmfUpdateData) GetDlServingPlmnRateCtlOk() (*int32, bool)

GetDlServingPlmnRateCtlOk returns a tuple with the DlServingPlmnRateCtl 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 (*HsmfUpdateData) GetDnaiList

func (o *HsmfUpdateData) GetDnaiList() []string

GetDnaiList returns the DnaiList field value if set, zero value otherwise.

func (*HsmfUpdateData) GetDnaiListOk

func (o *HsmfUpdateData) GetDnaiListOk() ([]string, bool)

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

func (*HsmfUpdateData) GetEpsBearerId

func (o *HsmfUpdateData) GetEpsBearerId() []int32

GetEpsBearerId returns the EpsBearerId field value if set, zero value otherwise.

func (*HsmfUpdateData) GetEpsBearerIdOk

func (o *HsmfUpdateData) GetEpsBearerIdOk() ([]int32, bool)

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

func (*HsmfUpdateData) GetEpsInterworkingInd

func (o *HsmfUpdateData) GetEpsInterworkingInd() EpsInterworkingIndication

GetEpsInterworkingInd returns the EpsInterworkingInd field value if set, zero value otherwise.

func (*HsmfUpdateData) GetEpsInterworkingIndOk

func (o *HsmfUpdateData) GetEpsInterworkingIndOk() (*EpsInterworkingIndication, bool)

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

func (*HsmfUpdateData) GetGuami

func (o *HsmfUpdateData) GetGuami() Guami

GetGuami returns the Guami field value if set, zero value otherwise.

func (*HsmfUpdateData) GetGuamiOk

func (o *HsmfUpdateData) GetGuamiOk() (*Guami, bool)

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

func (*HsmfUpdateData) GetHoPreparationIndication

func (o *HsmfUpdateData) GetHoPreparationIndication() bool

GetHoPreparationIndication returns the HoPreparationIndication field value if set, zero value otherwise.

func (*HsmfUpdateData) GetHoPreparationIndicationOk

func (o *HsmfUpdateData) GetHoPreparationIndicationOk() (*bool, bool)

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

func (*HsmfUpdateData) GetISmfServiceInstanceId

func (o *HsmfUpdateData) GetISmfServiceInstanceId() string

GetISmfServiceInstanceId returns the ISmfServiceInstanceId field value if set, zero value otherwise.

func (*HsmfUpdateData) GetISmfServiceInstanceIdOk

func (o *HsmfUpdateData) GetISmfServiceInstanceIdOk() (*string, bool)

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

func (*HsmfUpdateData) GetIcnTunnelInfo

func (o *HsmfUpdateData) GetIcnTunnelInfo() TunnelInfo

GetIcnTunnelInfo returns the IcnTunnelInfo field value if set, zero value otherwise.

func (*HsmfUpdateData) GetIcnTunnelInfoOk

func (o *HsmfUpdateData) GetIcnTunnelInfoOk() (*TunnelInfo, bool)

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

func (*HsmfUpdateData) GetIsmfId

func (o *HsmfUpdateData) GetIsmfId() string

GetIsmfId returns the IsmfId field value if set, zero value otherwise.

func (*HsmfUpdateData) GetIsmfIdOk

func (o *HsmfUpdateData) GetIsmfIdOk() (*string, bool)

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

func (*HsmfUpdateData) GetIsmfPduSessionUri

func (o *HsmfUpdateData) GetIsmfPduSessionUri() string

GetIsmfPduSessionUri returns the IsmfPduSessionUri field value if set, zero value otherwise.

func (*HsmfUpdateData) GetIsmfPduSessionUriOk

func (o *HsmfUpdateData) GetIsmfPduSessionUriOk() (*string, bool)

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

func (*HsmfUpdateData) GetMaNwUpgradeInd

func (o *HsmfUpdateData) GetMaNwUpgradeInd() bool

GetMaNwUpgradeInd returns the MaNwUpgradeInd field value if set, zero value otherwise.

func (*HsmfUpdateData) GetMaNwUpgradeIndOk

func (o *HsmfUpdateData) GetMaNwUpgradeIndOk() (*bool, bool)

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

func (*HsmfUpdateData) GetMaReleaseInd

func (o *HsmfUpdateData) GetMaReleaseInd() MaReleaseIndication

GetMaReleaseInd returns the MaReleaseInd field value if set, zero value otherwise.

func (*HsmfUpdateData) GetMaReleaseIndOk

func (o *HsmfUpdateData) GetMaReleaseIndOk() (*MaReleaseIndication, bool)

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

func (*HsmfUpdateData) GetMaRequestInd

func (o *HsmfUpdateData) GetMaRequestInd() bool

GetMaRequestInd returns the MaRequestInd field value if set, zero value otherwise.

func (*HsmfUpdateData) GetMaRequestIndOk

func (o *HsmfUpdateData) GetMaRequestIndOk() (*bool, bool)

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

func (*HsmfUpdateData) GetMaxIntegrityProtectedDataRateDl

func (o *HsmfUpdateData) GetMaxIntegrityProtectedDataRateDl() MaxIntegrityProtectedDataRate

GetMaxIntegrityProtectedDataRateDl returns the MaxIntegrityProtectedDataRateDl field value if set, zero value otherwise.

func (*HsmfUpdateData) GetMaxIntegrityProtectedDataRateDlOk

func (o *HsmfUpdateData) GetMaxIntegrityProtectedDataRateDlOk() (*MaxIntegrityProtectedDataRate, bool)

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

func (*HsmfUpdateData) GetMaxIntegrityProtectedDataRateUl

func (o *HsmfUpdateData) GetMaxIntegrityProtectedDataRateUl() MaxIntegrityProtectedDataRate

GetMaxIntegrityProtectedDataRateUl returns the MaxIntegrityProtectedDataRateUl field value if set, zero value otherwise.

func (*HsmfUpdateData) GetMaxIntegrityProtectedDataRateUlOk

func (o *HsmfUpdateData) GetMaxIntegrityProtectedDataRateUlOk() (*MaxIntegrityProtectedDataRate, bool)

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

func (*HsmfUpdateData) GetMoExpDataCounter

func (o *HsmfUpdateData) GetMoExpDataCounter() MoExpDataCounter

GetMoExpDataCounter returns the MoExpDataCounter field value if set, zero value otherwise.

func (*HsmfUpdateData) GetMoExpDataCounterOk

func (o *HsmfUpdateData) GetMoExpDataCounterOk() (*MoExpDataCounter, bool)

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

func (*HsmfUpdateData) GetN1SmInfoFromUe

func (o *HsmfUpdateData) GetN1SmInfoFromUe() RefToBinaryData

GetN1SmInfoFromUe returns the N1SmInfoFromUe field value if set, zero value otherwise.

func (*HsmfUpdateData) GetN1SmInfoFromUeOk

func (o *HsmfUpdateData) GetN1SmInfoFromUeOk() (*RefToBinaryData, bool)

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

func (*HsmfUpdateData) GetN4Info

func (o *HsmfUpdateData) GetN4Info() N4Information

GetN4Info returns the N4Info field value if set, zero value otherwise.

func (*HsmfUpdateData) GetN4InfoExt1

func (o *HsmfUpdateData) GetN4InfoExt1() N4Information

GetN4InfoExt1 returns the N4InfoExt1 field value if set, zero value otherwise.

func (*HsmfUpdateData) GetN4InfoExt1Ok

func (o *HsmfUpdateData) GetN4InfoExt1Ok() (*N4Information, bool)

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

func (*HsmfUpdateData) GetN4InfoExt2

func (o *HsmfUpdateData) GetN4InfoExt2() N4Information

GetN4InfoExt2 returns the N4InfoExt2 field value if set, zero value otherwise.

func (*HsmfUpdateData) GetN4InfoExt2Ok

func (o *HsmfUpdateData) GetN4InfoExt2Ok() (*N4Information, bool)

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

func (*HsmfUpdateData) GetN4InfoOk

func (o *HsmfUpdateData) GetN4InfoOk() (*N4Information, bool)

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

func (*HsmfUpdateData) GetNgApCause

func (o *HsmfUpdateData) GetNgApCause() NgApCause

GetNgApCause returns the NgApCause field value if set, zero value otherwise.

func (*HsmfUpdateData) GetNgApCauseOk

func (o *HsmfUpdateData) 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 (*HsmfUpdateData) GetNotifyList

func (o *HsmfUpdateData) GetNotifyList() []PduSessionNotifyItem

GetNotifyList returns the NotifyList field value if set, zero value otherwise.

func (*HsmfUpdateData) GetNotifyListOk

func (o *HsmfUpdateData) GetNotifyListOk() ([]PduSessionNotifyItem, bool)

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

func (*HsmfUpdateData) GetPauseCharging

func (o *HsmfUpdateData) GetPauseCharging() bool

GetPauseCharging returns the PauseCharging field value if set, zero value otherwise.

func (*HsmfUpdateData) GetPauseChargingOk

func (o *HsmfUpdateData) GetPauseChargingOk() (*bool, bool)

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

func (*HsmfUpdateData) GetPcfUeCallbackInfo

func (o *HsmfUpdateData) GetPcfUeCallbackInfo() PcfUeCallbackInfo

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

func (*HsmfUpdateData) GetPcfUeCallbackInfoOk

func (o *HsmfUpdateData) GetPcfUeCallbackInfoOk() (*PcfUeCallbackInfo, bool)

GetPcfUeCallbackInfoOk returns a tuple with the PcfUeCallbackInfo 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 (*HsmfUpdateData) GetPei

func (o *HsmfUpdateData) GetPei() string

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

func (*HsmfUpdateData) GetPeiOk

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

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

func (*HsmfUpdateData) GetPresenceInLadn

func (o *HsmfUpdateData) GetPresenceInLadn() PresenceState

GetPresenceInLadn returns the PresenceInLadn field value if set, zero value otherwise.

func (*HsmfUpdateData) GetPresenceInLadnOk

func (o *HsmfUpdateData) GetPresenceInLadnOk() (*PresenceState, bool)

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

func (*HsmfUpdateData) GetPsaInfo

func (o *HsmfUpdateData) GetPsaInfo() []PsaInformation

GetPsaInfo returns the PsaInfo field value if set, zero value otherwise.

func (*HsmfUpdateData) GetPsaInfoOk

func (o *HsmfUpdateData) GetPsaInfoOk() ([]PsaInformation, bool)

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

func (*HsmfUpdateData) GetPti

func (o *HsmfUpdateData) GetPti() int32

GetPti returns the Pti field value if set, zero value otherwise.

func (*HsmfUpdateData) GetPtiOk

func (o *HsmfUpdateData) GetPtiOk() (*int32, bool)

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

func (*HsmfUpdateData) GetQosFlowsNotifyList

func (o *HsmfUpdateData) GetQosFlowsNotifyList() []QosFlowNotifyItem

GetQosFlowsNotifyList returns the QosFlowsNotifyList field value if set, zero value otherwise.

func (*HsmfUpdateData) GetQosFlowsNotifyListOk

func (o *HsmfUpdateData) GetQosFlowsNotifyListOk() ([]QosFlowNotifyItem, bool)

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

func (*HsmfUpdateData) GetQosFlowsRelNotifyList

func (o *HsmfUpdateData) GetQosFlowsRelNotifyList() []QosFlowItem

GetQosFlowsRelNotifyList returns the QosFlowsRelNotifyList field value if set, zero value otherwise.

func (*HsmfUpdateData) GetQosFlowsRelNotifyListOk

func (o *HsmfUpdateData) GetQosFlowsRelNotifyListOk() ([]QosFlowItem, bool)

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

func (*HsmfUpdateData) GetRatType

func (o *HsmfUpdateData) GetRatType() RatType

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

func (*HsmfUpdateData) GetRatTypeOk

func (o *HsmfUpdateData) 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 (*HsmfUpdateData) GetRequestIndication

func (o *HsmfUpdateData) GetRequestIndication() RequestIndication

GetRequestIndication returns the RequestIndication field value

func (*HsmfUpdateData) GetRequestIndicationOk

func (o *HsmfUpdateData) GetRequestIndicationOk() (*RequestIndication, bool)

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

func (*HsmfUpdateData) GetRevokeEbiList

func (o *HsmfUpdateData) GetRevokeEbiList() []int32

GetRevokeEbiList returns the RevokeEbiList field value if set, zero value otherwise.

func (*HsmfUpdateData) GetRevokeEbiListOk

func (o *HsmfUpdateData) GetRevokeEbiListOk() ([]int32, bool)

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

func (*HsmfUpdateData) GetRoamingChargingProfile

func (o *HsmfUpdateData) GetRoamingChargingProfile() RoamingChargingProfile

GetRoamingChargingProfile returns the RoamingChargingProfile field value if set, zero value otherwise.

func (*HsmfUpdateData) GetRoamingChargingProfileOk

func (o *HsmfUpdateData) 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 (*HsmfUpdateData) GetSatelliteBackhaulCat

func (o *HsmfUpdateData) GetSatelliteBackhaulCat() SatelliteBackhaulCategory

GetSatelliteBackhaulCat returns the SatelliteBackhaulCat field value if set, zero value otherwise.

func (*HsmfUpdateData) GetSatelliteBackhaulCatOk

func (o *HsmfUpdateData) GetSatelliteBackhaulCatOk() (*SatelliteBackhaulCategory, bool)

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

func (*HsmfUpdateData) GetSecondaryRatUsageDataReportContainer

func (o *HsmfUpdateData) GetSecondaryRatUsageDataReportContainer() []string

GetSecondaryRatUsageDataReportContainer returns the SecondaryRatUsageDataReportContainer field value if set, zero value otherwise.

func (*HsmfUpdateData) GetSecondaryRatUsageDataReportContainerOk

func (o *HsmfUpdateData) GetSecondaryRatUsageDataReportContainerOk() ([]string, bool)

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

func (*HsmfUpdateData) GetSecondaryRatUsageInfo

func (o *HsmfUpdateData) GetSecondaryRatUsageInfo() []SecondaryRatUsageInfo

GetSecondaryRatUsageInfo returns the SecondaryRatUsageInfo field value if set, zero value otherwise.

func (*HsmfUpdateData) GetSecondaryRatUsageInfoOk

func (o *HsmfUpdateData) GetSecondaryRatUsageInfoOk() ([]SecondaryRatUsageInfo, bool)

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

func (*HsmfUpdateData) GetSecondaryRatUsageReport

func (o *HsmfUpdateData) GetSecondaryRatUsageReport() []SecondaryRatUsageReport

GetSecondaryRatUsageReport returns the SecondaryRatUsageReport field value if set, zero value otherwise.

func (*HsmfUpdateData) GetSecondaryRatUsageReportOk

func (o *HsmfUpdateData) GetSecondaryRatUsageReportOk() ([]SecondaryRatUsageReport, bool)

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

func (*HsmfUpdateData) GetSecurityResult

func (o *HsmfUpdateData) GetSecurityResult() SecurityResult

GetSecurityResult returns the SecurityResult field value if set, zero value otherwise.

func (*HsmfUpdateData) GetSecurityResultOk

func (o *HsmfUpdateData) GetSecurityResultOk() (*SecurityResult, bool)

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

func (*HsmfUpdateData) GetServingNetwork

func (o *HsmfUpdateData) GetServingNetwork() PlmnIdNid

GetServingNetwork returns the ServingNetwork field value if set, zero value otherwise.

func (*HsmfUpdateData) GetServingNetworkOk

func (o *HsmfUpdateData) GetServingNetworkOk() (*PlmnIdNid, bool)

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

func (*HsmfUpdateData) GetSmPolicyNotifyInd

func (o *HsmfUpdateData) GetSmPolicyNotifyInd() bool

GetSmPolicyNotifyInd returns the SmPolicyNotifyInd field value if set, zero value otherwise.

func (*HsmfUpdateData) GetSmPolicyNotifyIndOk

func (o *HsmfUpdateData) GetSmPolicyNotifyIndOk() (*bool, bool)

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

func (*HsmfUpdateData) GetSupportedFeatures

func (o *HsmfUpdateData) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*HsmfUpdateData) GetSupportedFeaturesOk

func (o *HsmfUpdateData) 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 (*HsmfUpdateData) GetUeLocation

func (o *HsmfUpdateData) GetUeLocation() UserLocation

GetUeLocation returns the UeLocation field value if set, zero value otherwise.

func (*HsmfUpdateData) GetUeLocationOk

func (o *HsmfUpdateData) GetUeLocationOk() (*UserLocation, bool)

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

func (*HsmfUpdateData) GetUeTimeZone

func (o *HsmfUpdateData) GetUeTimeZone() string

GetUeTimeZone returns the UeTimeZone field value if set, zero value otherwise.

func (*HsmfUpdateData) GetUeTimeZoneOk

func (o *HsmfUpdateData) 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 (*HsmfUpdateData) GetUlclBpInfo

func (o *HsmfUpdateData) GetUlclBpInfo() UlclBpInformation

GetUlclBpInfo returns the UlclBpInfo field value if set, zero value otherwise.

func (*HsmfUpdateData) GetUlclBpInfoOk

func (o *HsmfUpdateData) GetUlclBpInfoOk() (*UlclBpInformation, bool)

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

func (*HsmfUpdateData) GetUnavailableAccessInd

func (o *HsmfUpdateData) GetUnavailableAccessInd() UnavailableAccessIndication

GetUnavailableAccessInd returns the UnavailableAccessInd field value if set, zero value otherwise.

func (*HsmfUpdateData) GetUnavailableAccessIndOk

func (o *HsmfUpdateData) GetUnavailableAccessIndOk() (*UnavailableAccessIndication, bool)

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

func (*HsmfUpdateData) GetUnknownN1SmInfo

func (o *HsmfUpdateData) GetUnknownN1SmInfo() RefToBinaryData

GetUnknownN1SmInfo returns the UnknownN1SmInfo field value if set, zero value otherwise.

func (*HsmfUpdateData) GetUnknownN1SmInfoOk

func (o *HsmfUpdateData) GetUnknownN1SmInfoOk() (*RefToBinaryData, bool)

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

func (*HsmfUpdateData) GetUpCnxState

func (o *HsmfUpdateData) GetUpCnxState() UpCnxState

GetUpCnxState returns the UpCnxState field value if set, zero value otherwise.

func (*HsmfUpdateData) GetUpCnxStateOk

func (o *HsmfUpdateData) GetUpCnxStateOk() (*UpCnxState, bool)

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

func (*HsmfUpdateData) GetUpSecurityInfo

func (o *HsmfUpdateData) GetUpSecurityInfo() UpSecurityInfo

GetUpSecurityInfo returns the UpSecurityInfo field value if set, zero value otherwise.

func (*HsmfUpdateData) GetUpSecurityInfoOk

func (o *HsmfUpdateData) GetUpSecurityInfoOk() (*UpSecurityInfo, bool)

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

func (*HsmfUpdateData) GetVSmfServiceInstanceId

func (o *HsmfUpdateData) GetVSmfServiceInstanceId() string

GetVSmfServiceInstanceId returns the VSmfServiceInstanceId field value if set, zero value otherwise.

func (*HsmfUpdateData) GetVSmfServiceInstanceIdOk

func (o *HsmfUpdateData) GetVSmfServiceInstanceIdOk() (*string, bool)

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

func (*HsmfUpdateData) GetVar5gMmCauseValue

func (o *HsmfUpdateData) GetVar5gMmCauseValue() int32

GetVar5gMmCauseValue returns the Var5gMmCauseValue field value if set, zero value otherwise.

func (*HsmfUpdateData) GetVar5gMmCauseValueOk

func (o *HsmfUpdateData) GetVar5gMmCauseValueOk() (*int32, bool)

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

func (*HsmfUpdateData) GetVcnTunnelInfo

func (o *HsmfUpdateData) GetVcnTunnelInfo() TunnelInfo

GetVcnTunnelInfo returns the VcnTunnelInfo field value if set, zero value otherwise.

func (*HsmfUpdateData) GetVcnTunnelInfoOk

func (o *HsmfUpdateData) GetVcnTunnelInfoOk() (*TunnelInfo, bool)

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

func (*HsmfUpdateData) GetVplmnQos

func (o *HsmfUpdateData) GetVplmnQos() VplmnQos

GetVplmnQos returns the VplmnQos field value if set, zero value otherwise.

func (*HsmfUpdateData) GetVplmnQosOk

func (o *HsmfUpdateData) GetVplmnQosOk() (*VplmnQos, bool)

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

func (*HsmfUpdateData) GetVsmfId

func (o *HsmfUpdateData) GetVsmfId() string

GetVsmfId returns the VsmfId field value if set, zero value otherwise.

func (*HsmfUpdateData) GetVsmfIdOk

func (o *HsmfUpdateData) GetVsmfIdOk() (*string, bool)

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

func (*HsmfUpdateData) GetVsmfPduSessionUri

func (o *HsmfUpdateData) GetVsmfPduSessionUri() string

GetVsmfPduSessionUri returns the VsmfPduSessionUri field value if set, zero value otherwise.

func (*HsmfUpdateData) GetVsmfPduSessionUriOk

func (o *HsmfUpdateData) GetVsmfPduSessionUriOk() (*string, bool)

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

func (*HsmfUpdateData) HasAddUeLocation

func (o *HsmfUpdateData) HasAddUeLocation() bool

HasAddUeLocation returns a boolean if a field has been set.

func (*HsmfUpdateData) HasAdditionalAnType

func (o *HsmfUpdateData) HasAdditionalAnType() bool

HasAdditionalAnType returns a boolean if a field has been set.

func (*HsmfUpdateData) HasAdditionalCnTunnelInfo

func (o *HsmfUpdateData) HasAdditionalCnTunnelInfo() bool

HasAdditionalCnTunnelInfo returns a boolean if a field has been set.

func (*HsmfUpdateData) HasAlwaysOnRequested

func (o *HsmfUpdateData) HasAlwaysOnRequested() bool

HasAlwaysOnRequested returns a boolean if a field has been set.

func (*HsmfUpdateData) HasAmfNfId

func (o *HsmfUpdateData) HasAmfNfId() bool

HasAmfNfId returns a boolean if a field has been set.

func (*HsmfUpdateData) HasAnType

func (o *HsmfUpdateData) HasAnType() bool

HasAnType returns a boolean if a field has been set.

func (*HsmfUpdateData) HasAnTypeCanBeChanged

func (o *HsmfUpdateData) HasAnTypeCanBeChanged() bool

HasAnTypeCanBeChanged returns a boolean if a field has been set.

func (*HsmfUpdateData) HasCause

func (o *HsmfUpdateData) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*HsmfUpdateData) HasDlServingPlmnRateCtl

func (o *HsmfUpdateData) HasDlServingPlmnRateCtl() bool

HasDlServingPlmnRateCtl returns a boolean if a field has been set.

func (*HsmfUpdateData) HasDnaiList

func (o *HsmfUpdateData) HasDnaiList() bool

HasDnaiList returns a boolean if a field has been set.

func (*HsmfUpdateData) HasEpsBearerId

func (o *HsmfUpdateData) HasEpsBearerId() bool

HasEpsBearerId returns a boolean if a field has been set.

func (*HsmfUpdateData) HasEpsInterworkingInd

func (o *HsmfUpdateData) HasEpsInterworkingInd() bool

HasEpsInterworkingInd returns a boolean if a field has been set.

func (*HsmfUpdateData) HasGuami

func (o *HsmfUpdateData) HasGuami() bool

HasGuami returns a boolean if a field has been set.

func (*HsmfUpdateData) HasHoPreparationIndication

func (o *HsmfUpdateData) HasHoPreparationIndication() bool

HasHoPreparationIndication returns a boolean if a field has been set.

func (*HsmfUpdateData) HasISmfServiceInstanceId

func (o *HsmfUpdateData) HasISmfServiceInstanceId() bool

HasISmfServiceInstanceId returns a boolean if a field has been set.

func (*HsmfUpdateData) HasIcnTunnelInfo

func (o *HsmfUpdateData) HasIcnTunnelInfo() bool

HasIcnTunnelInfo returns a boolean if a field has been set.

func (*HsmfUpdateData) HasIsmfId

func (o *HsmfUpdateData) HasIsmfId() bool

HasIsmfId returns a boolean if a field has been set.

func (*HsmfUpdateData) HasIsmfPduSessionUri

func (o *HsmfUpdateData) HasIsmfPduSessionUri() bool

HasIsmfPduSessionUri returns a boolean if a field has been set.

func (*HsmfUpdateData) HasMaNwUpgradeInd

func (o *HsmfUpdateData) HasMaNwUpgradeInd() bool

HasMaNwUpgradeInd returns a boolean if a field has been set.

func (*HsmfUpdateData) HasMaReleaseInd

func (o *HsmfUpdateData) HasMaReleaseInd() bool

HasMaReleaseInd returns a boolean if a field has been set.

func (*HsmfUpdateData) HasMaRequestInd

func (o *HsmfUpdateData) HasMaRequestInd() bool

HasMaRequestInd returns a boolean if a field has been set.

func (*HsmfUpdateData) HasMaxIntegrityProtectedDataRateDl

func (o *HsmfUpdateData) HasMaxIntegrityProtectedDataRateDl() bool

HasMaxIntegrityProtectedDataRateDl returns a boolean if a field has been set.

func (*HsmfUpdateData) HasMaxIntegrityProtectedDataRateUl

func (o *HsmfUpdateData) HasMaxIntegrityProtectedDataRateUl() bool

HasMaxIntegrityProtectedDataRateUl returns a boolean if a field has been set.

func (*HsmfUpdateData) HasMoExpDataCounter

func (o *HsmfUpdateData) HasMoExpDataCounter() bool

HasMoExpDataCounter returns a boolean if a field has been set.

func (*HsmfUpdateData) HasN1SmInfoFromUe

func (o *HsmfUpdateData) HasN1SmInfoFromUe() bool

HasN1SmInfoFromUe returns a boolean if a field has been set.

func (*HsmfUpdateData) HasN4Info

func (o *HsmfUpdateData) HasN4Info() bool

HasN4Info returns a boolean if a field has been set.

func (*HsmfUpdateData) HasN4InfoExt1

func (o *HsmfUpdateData) HasN4InfoExt1() bool

HasN4InfoExt1 returns a boolean if a field has been set.

func (*HsmfUpdateData) HasN4InfoExt2

func (o *HsmfUpdateData) HasN4InfoExt2() bool

HasN4InfoExt2 returns a boolean if a field has been set.

func (*HsmfUpdateData) HasNgApCause

func (o *HsmfUpdateData) HasNgApCause() bool

HasNgApCause returns a boolean if a field has been set.

func (*HsmfUpdateData) HasNotifyList

func (o *HsmfUpdateData) HasNotifyList() bool

HasNotifyList returns a boolean if a field has been set.

func (*HsmfUpdateData) HasPauseCharging

func (o *HsmfUpdateData) HasPauseCharging() bool

HasPauseCharging returns a boolean if a field has been set.

func (*HsmfUpdateData) HasPcfUeCallbackInfo

func (o *HsmfUpdateData) HasPcfUeCallbackInfo() bool

HasPcfUeCallbackInfo returns a boolean if a field has been set.

func (*HsmfUpdateData) HasPei

func (o *HsmfUpdateData) HasPei() bool

HasPei returns a boolean if a field has been set.

func (*HsmfUpdateData) HasPresenceInLadn

func (o *HsmfUpdateData) HasPresenceInLadn() bool

HasPresenceInLadn returns a boolean if a field has been set.

func (*HsmfUpdateData) HasPsaInfo

func (o *HsmfUpdateData) HasPsaInfo() bool

HasPsaInfo returns a boolean if a field has been set.

func (*HsmfUpdateData) HasPti

func (o *HsmfUpdateData) HasPti() bool

HasPti returns a boolean if a field has been set.

func (*HsmfUpdateData) HasQosFlowsNotifyList

func (o *HsmfUpdateData) HasQosFlowsNotifyList() bool

HasQosFlowsNotifyList returns a boolean if a field has been set.

func (*HsmfUpdateData) HasQosFlowsRelNotifyList

func (o *HsmfUpdateData) HasQosFlowsRelNotifyList() bool

HasQosFlowsRelNotifyList returns a boolean if a field has been set.

func (*HsmfUpdateData) HasRatType

func (o *HsmfUpdateData) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (*HsmfUpdateData) HasRevokeEbiList

func (o *HsmfUpdateData) HasRevokeEbiList() bool

HasRevokeEbiList returns a boolean if a field has been set.

func (*HsmfUpdateData) HasRoamingChargingProfile

func (o *HsmfUpdateData) HasRoamingChargingProfile() bool

HasRoamingChargingProfile returns a boolean if a field has been set.

func (*HsmfUpdateData) HasSatelliteBackhaulCat

func (o *HsmfUpdateData) HasSatelliteBackhaulCat() bool

HasSatelliteBackhaulCat returns a boolean if a field has been set.

func (*HsmfUpdateData) HasSecondaryRatUsageDataReportContainer

func (o *HsmfUpdateData) HasSecondaryRatUsageDataReportContainer() bool

HasSecondaryRatUsageDataReportContainer returns a boolean if a field has been set.

func (*HsmfUpdateData) HasSecondaryRatUsageInfo

func (o *HsmfUpdateData) HasSecondaryRatUsageInfo() bool

HasSecondaryRatUsageInfo returns a boolean if a field has been set.

func (*HsmfUpdateData) HasSecondaryRatUsageReport

func (o *HsmfUpdateData) HasSecondaryRatUsageReport() bool

HasSecondaryRatUsageReport returns a boolean if a field has been set.

func (*HsmfUpdateData) HasSecurityResult

func (o *HsmfUpdateData) HasSecurityResult() bool

HasSecurityResult returns a boolean if a field has been set.

func (*HsmfUpdateData) HasServingNetwork

func (o *HsmfUpdateData) HasServingNetwork() bool

HasServingNetwork returns a boolean if a field has been set.

func (*HsmfUpdateData) HasSmPolicyNotifyInd

func (o *HsmfUpdateData) HasSmPolicyNotifyInd() bool

HasSmPolicyNotifyInd returns a boolean if a field has been set.

func (*HsmfUpdateData) HasSupportedFeatures

func (o *HsmfUpdateData) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*HsmfUpdateData) HasUeLocation

func (o *HsmfUpdateData) HasUeLocation() bool

HasUeLocation returns a boolean if a field has been set.

func (*HsmfUpdateData) HasUeTimeZone

func (o *HsmfUpdateData) HasUeTimeZone() bool

HasUeTimeZone returns a boolean if a field has been set.

func (*HsmfUpdateData) HasUlclBpInfo

func (o *HsmfUpdateData) HasUlclBpInfo() bool

HasUlclBpInfo returns a boolean if a field has been set.

func (*HsmfUpdateData) HasUnavailableAccessInd

func (o *HsmfUpdateData) HasUnavailableAccessInd() bool

HasUnavailableAccessInd returns a boolean if a field has been set.

func (*HsmfUpdateData) HasUnknownN1SmInfo

func (o *HsmfUpdateData) HasUnknownN1SmInfo() bool

HasUnknownN1SmInfo returns a boolean if a field has been set.

func (*HsmfUpdateData) HasUpCnxState

func (o *HsmfUpdateData) HasUpCnxState() bool

HasUpCnxState returns a boolean if a field has been set.

func (*HsmfUpdateData) HasUpSecurityInfo

func (o *HsmfUpdateData) HasUpSecurityInfo() bool

HasUpSecurityInfo returns a boolean if a field has been set.

func (*HsmfUpdateData) HasVSmfServiceInstanceId

func (o *HsmfUpdateData) HasVSmfServiceInstanceId() bool

HasVSmfServiceInstanceId returns a boolean if a field has been set.

func (*HsmfUpdateData) HasVar5gMmCauseValue

func (o *HsmfUpdateData) HasVar5gMmCauseValue() bool

HasVar5gMmCauseValue returns a boolean if a field has been set.

func (*HsmfUpdateData) HasVcnTunnelInfo

func (o *HsmfUpdateData) HasVcnTunnelInfo() bool

HasVcnTunnelInfo returns a boolean if a field has been set.

func (*HsmfUpdateData) HasVplmnQos

func (o *HsmfUpdateData) HasVplmnQos() bool

HasVplmnQos returns a boolean if a field has been set.

func (*HsmfUpdateData) HasVsmfId

func (o *HsmfUpdateData) HasVsmfId() bool

HasVsmfId returns a boolean if a field has been set.

func (*HsmfUpdateData) HasVsmfPduSessionUri

func (o *HsmfUpdateData) HasVsmfPduSessionUri() bool

HasVsmfPduSessionUri returns a boolean if a field has been set.

func (HsmfUpdateData) MarshalJSON

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

func (*HsmfUpdateData) SetAddUeLocation

func (o *HsmfUpdateData) SetAddUeLocation(v UserLocation)

SetAddUeLocation gets a reference to the given UserLocation and assigns it to the AddUeLocation field.

func (*HsmfUpdateData) SetAdditionalAnType

func (o *HsmfUpdateData) SetAdditionalAnType(v AccessType)

SetAdditionalAnType gets a reference to the given AccessType and assigns it to the AdditionalAnType field.

func (*HsmfUpdateData) SetAdditionalCnTunnelInfo

func (o *HsmfUpdateData) SetAdditionalCnTunnelInfo(v TunnelInfo)

SetAdditionalCnTunnelInfo gets a reference to the given TunnelInfo and assigns it to the AdditionalCnTunnelInfo field.

func (*HsmfUpdateData) SetAlwaysOnRequested

func (o *HsmfUpdateData) SetAlwaysOnRequested(v bool)

SetAlwaysOnRequested gets a reference to the given bool and assigns it to the AlwaysOnRequested field.

func (*HsmfUpdateData) SetAmfNfId

func (o *HsmfUpdateData) SetAmfNfId(v string)

SetAmfNfId gets a reference to the given string and assigns it to the AmfNfId field.

func (*HsmfUpdateData) SetAnType

func (o *HsmfUpdateData) SetAnType(v AccessType)

SetAnType gets a reference to the given AccessType and assigns it to the AnType field.

func (*HsmfUpdateData) SetAnTypeCanBeChanged

func (o *HsmfUpdateData) SetAnTypeCanBeChanged(v bool)

SetAnTypeCanBeChanged gets a reference to the given bool and assigns it to the AnTypeCanBeChanged field.

func (*HsmfUpdateData) SetCause

func (o *HsmfUpdateData) SetCause(v Cause)

SetCause gets a reference to the given Cause and assigns it to the Cause field.

func (*HsmfUpdateData) SetDlServingPlmnRateCtl

func (o *HsmfUpdateData) SetDlServingPlmnRateCtl(v int32)

SetDlServingPlmnRateCtl gets a reference to the given NullableInt32 and assigns it to the DlServingPlmnRateCtl field.

func (*HsmfUpdateData) SetDlServingPlmnRateCtlNil

func (o *HsmfUpdateData) SetDlServingPlmnRateCtlNil()

SetDlServingPlmnRateCtlNil sets the value for DlServingPlmnRateCtl to be an explicit nil

func (*HsmfUpdateData) SetDnaiList

func (o *HsmfUpdateData) SetDnaiList(v []string)

SetDnaiList gets a reference to the given []string and assigns it to the DnaiList field.

func (*HsmfUpdateData) SetEpsBearerId

func (o *HsmfUpdateData) SetEpsBearerId(v []int32)

SetEpsBearerId gets a reference to the given []int32 and assigns it to the EpsBearerId field.

func (*HsmfUpdateData) SetEpsInterworkingInd

func (o *HsmfUpdateData) SetEpsInterworkingInd(v EpsInterworkingIndication)

SetEpsInterworkingInd gets a reference to the given EpsInterworkingIndication and assigns it to the EpsInterworkingInd field.

func (*HsmfUpdateData) SetGuami

func (o *HsmfUpdateData) SetGuami(v Guami)

SetGuami gets a reference to the given Guami and assigns it to the Guami field.

func (*HsmfUpdateData) SetHoPreparationIndication

func (o *HsmfUpdateData) SetHoPreparationIndication(v bool)

SetHoPreparationIndication gets a reference to the given bool and assigns it to the HoPreparationIndication field.

func (*HsmfUpdateData) SetISmfServiceInstanceId

func (o *HsmfUpdateData) SetISmfServiceInstanceId(v string)

SetISmfServiceInstanceId gets a reference to the given string and assigns it to the ISmfServiceInstanceId field.

func (*HsmfUpdateData) SetIcnTunnelInfo

func (o *HsmfUpdateData) SetIcnTunnelInfo(v TunnelInfo)

SetIcnTunnelInfo gets a reference to the given TunnelInfo and assigns it to the IcnTunnelInfo field.

func (*HsmfUpdateData) SetIsmfId

func (o *HsmfUpdateData) SetIsmfId(v string)

SetIsmfId gets a reference to the given string and assigns it to the IsmfId field.

func (*HsmfUpdateData) SetIsmfPduSessionUri

func (o *HsmfUpdateData) SetIsmfPduSessionUri(v string)

SetIsmfPduSessionUri gets a reference to the given string and assigns it to the IsmfPduSessionUri field.

func (*HsmfUpdateData) SetMaNwUpgradeInd

func (o *HsmfUpdateData) SetMaNwUpgradeInd(v bool)

SetMaNwUpgradeInd gets a reference to the given bool and assigns it to the MaNwUpgradeInd field.

func (*HsmfUpdateData) SetMaReleaseInd

func (o *HsmfUpdateData) SetMaReleaseInd(v MaReleaseIndication)

SetMaReleaseInd gets a reference to the given MaReleaseIndication and assigns it to the MaReleaseInd field.

func (*HsmfUpdateData) SetMaRequestInd

func (o *HsmfUpdateData) SetMaRequestInd(v bool)

SetMaRequestInd gets a reference to the given bool and assigns it to the MaRequestInd field.

func (*HsmfUpdateData) SetMaxIntegrityProtectedDataRateDl

func (o *HsmfUpdateData) SetMaxIntegrityProtectedDataRateDl(v MaxIntegrityProtectedDataRate)

SetMaxIntegrityProtectedDataRateDl gets a reference to the given MaxIntegrityProtectedDataRate and assigns it to the MaxIntegrityProtectedDataRateDl field.

func (*HsmfUpdateData) SetMaxIntegrityProtectedDataRateUl

func (o *HsmfUpdateData) SetMaxIntegrityProtectedDataRateUl(v MaxIntegrityProtectedDataRate)

SetMaxIntegrityProtectedDataRateUl gets a reference to the given MaxIntegrityProtectedDataRate and assigns it to the MaxIntegrityProtectedDataRateUl field.

func (*HsmfUpdateData) SetMoExpDataCounter

func (o *HsmfUpdateData) SetMoExpDataCounter(v MoExpDataCounter)

SetMoExpDataCounter gets a reference to the given MoExpDataCounter and assigns it to the MoExpDataCounter field.

func (*HsmfUpdateData) SetN1SmInfoFromUe

func (o *HsmfUpdateData) SetN1SmInfoFromUe(v RefToBinaryData)

SetN1SmInfoFromUe gets a reference to the given RefToBinaryData and assigns it to the N1SmInfoFromUe field.

func (*HsmfUpdateData) SetN4Info

func (o *HsmfUpdateData) SetN4Info(v N4Information)

SetN4Info gets a reference to the given N4Information and assigns it to the N4Info field.

func (*HsmfUpdateData) SetN4InfoExt1

func (o *HsmfUpdateData) SetN4InfoExt1(v N4Information)

SetN4InfoExt1 gets a reference to the given N4Information and assigns it to the N4InfoExt1 field.

func (*HsmfUpdateData) SetN4InfoExt2

func (o *HsmfUpdateData) SetN4InfoExt2(v N4Information)

SetN4InfoExt2 gets a reference to the given N4Information and assigns it to the N4InfoExt2 field.

func (*HsmfUpdateData) SetNgApCause

func (o *HsmfUpdateData) SetNgApCause(v NgApCause)

SetNgApCause gets a reference to the given NgApCause and assigns it to the NgApCause field.

func (*HsmfUpdateData) SetNotifyList

func (o *HsmfUpdateData) SetNotifyList(v []PduSessionNotifyItem)

SetNotifyList gets a reference to the given []PduSessionNotifyItem and assigns it to the NotifyList field.

func (*HsmfUpdateData) SetPauseCharging

func (o *HsmfUpdateData) SetPauseCharging(v bool)

SetPauseCharging gets a reference to the given bool and assigns it to the PauseCharging field.

func (*HsmfUpdateData) SetPcfUeCallbackInfo

func (o *HsmfUpdateData) SetPcfUeCallbackInfo(v PcfUeCallbackInfo)

SetPcfUeCallbackInfo gets a reference to the given NullablePcfUeCallbackInfo and assigns it to the PcfUeCallbackInfo field.

func (*HsmfUpdateData) SetPcfUeCallbackInfoNil

func (o *HsmfUpdateData) SetPcfUeCallbackInfoNil()

SetPcfUeCallbackInfoNil sets the value for PcfUeCallbackInfo to be an explicit nil

func (*HsmfUpdateData) SetPei

func (o *HsmfUpdateData) SetPei(v string)

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

func (*HsmfUpdateData) SetPresenceInLadn

func (o *HsmfUpdateData) SetPresenceInLadn(v PresenceState)

SetPresenceInLadn gets a reference to the given PresenceState and assigns it to the PresenceInLadn field.

func (*HsmfUpdateData) SetPsaInfo

func (o *HsmfUpdateData) SetPsaInfo(v []PsaInformation)

SetPsaInfo gets a reference to the given []PsaInformation and assigns it to the PsaInfo field.

func (*HsmfUpdateData) SetPti

func (o *HsmfUpdateData) SetPti(v int32)

SetPti gets a reference to the given int32 and assigns it to the Pti field.

func (*HsmfUpdateData) SetQosFlowsNotifyList

func (o *HsmfUpdateData) SetQosFlowsNotifyList(v []QosFlowNotifyItem)

SetQosFlowsNotifyList gets a reference to the given []QosFlowNotifyItem and assigns it to the QosFlowsNotifyList field.

func (*HsmfUpdateData) SetQosFlowsRelNotifyList

func (o *HsmfUpdateData) SetQosFlowsRelNotifyList(v []QosFlowItem)

SetQosFlowsRelNotifyList gets a reference to the given []QosFlowItem and assigns it to the QosFlowsRelNotifyList field.

func (*HsmfUpdateData) SetRatType

func (o *HsmfUpdateData) SetRatType(v RatType)

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

func (*HsmfUpdateData) SetRequestIndication

func (o *HsmfUpdateData) SetRequestIndication(v RequestIndication)

SetRequestIndication sets field value

func (*HsmfUpdateData) SetRevokeEbiList

func (o *HsmfUpdateData) SetRevokeEbiList(v []int32)

SetRevokeEbiList gets a reference to the given []int32 and assigns it to the RevokeEbiList field.

func (*HsmfUpdateData) SetRoamingChargingProfile

func (o *HsmfUpdateData) SetRoamingChargingProfile(v RoamingChargingProfile)

SetRoamingChargingProfile gets a reference to the given RoamingChargingProfile and assigns it to the RoamingChargingProfile field.

func (*HsmfUpdateData) SetSatelliteBackhaulCat

func (o *HsmfUpdateData) SetSatelliteBackhaulCat(v SatelliteBackhaulCategory)

SetSatelliteBackhaulCat gets a reference to the given SatelliteBackhaulCategory and assigns it to the SatelliteBackhaulCat field.

func (*HsmfUpdateData) SetSecondaryRatUsageDataReportContainer

func (o *HsmfUpdateData) SetSecondaryRatUsageDataReportContainer(v []string)

SetSecondaryRatUsageDataReportContainer gets a reference to the given []string and assigns it to the SecondaryRatUsageDataReportContainer field.

func (*HsmfUpdateData) SetSecondaryRatUsageInfo

func (o *HsmfUpdateData) SetSecondaryRatUsageInfo(v []SecondaryRatUsageInfo)

SetSecondaryRatUsageInfo gets a reference to the given []SecondaryRatUsageInfo and assigns it to the SecondaryRatUsageInfo field.

func (*HsmfUpdateData) SetSecondaryRatUsageReport

func (o *HsmfUpdateData) SetSecondaryRatUsageReport(v []SecondaryRatUsageReport)

SetSecondaryRatUsageReport gets a reference to the given []SecondaryRatUsageReport and assigns it to the SecondaryRatUsageReport field.

func (*HsmfUpdateData) SetSecurityResult

func (o *HsmfUpdateData) SetSecurityResult(v SecurityResult)

SetSecurityResult gets a reference to the given SecurityResult and assigns it to the SecurityResult field.

func (*HsmfUpdateData) SetServingNetwork

func (o *HsmfUpdateData) SetServingNetwork(v PlmnIdNid)

SetServingNetwork gets a reference to the given PlmnIdNid and assigns it to the ServingNetwork field.

func (*HsmfUpdateData) SetSmPolicyNotifyInd

func (o *HsmfUpdateData) SetSmPolicyNotifyInd(v bool)

SetSmPolicyNotifyInd gets a reference to the given bool and assigns it to the SmPolicyNotifyInd field.

func (*HsmfUpdateData) SetSupportedFeatures

func (o *HsmfUpdateData) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*HsmfUpdateData) SetUeLocation

func (o *HsmfUpdateData) SetUeLocation(v UserLocation)

SetUeLocation gets a reference to the given UserLocation and assigns it to the UeLocation field.

func (*HsmfUpdateData) SetUeTimeZone

func (o *HsmfUpdateData) SetUeTimeZone(v string)

SetUeTimeZone gets a reference to the given string and assigns it to the UeTimeZone field.

func (*HsmfUpdateData) SetUlclBpInfo

func (o *HsmfUpdateData) SetUlclBpInfo(v UlclBpInformation)

SetUlclBpInfo gets a reference to the given UlclBpInformation and assigns it to the UlclBpInfo field.

func (*HsmfUpdateData) SetUnavailableAccessInd

func (o *HsmfUpdateData) SetUnavailableAccessInd(v UnavailableAccessIndication)

SetUnavailableAccessInd gets a reference to the given UnavailableAccessIndication and assigns it to the UnavailableAccessInd field.

func (*HsmfUpdateData) SetUnknownN1SmInfo

func (o *HsmfUpdateData) SetUnknownN1SmInfo(v RefToBinaryData)

SetUnknownN1SmInfo gets a reference to the given RefToBinaryData and assigns it to the UnknownN1SmInfo field.

func (*HsmfUpdateData) SetUpCnxState

func (o *HsmfUpdateData) SetUpCnxState(v UpCnxState)

SetUpCnxState gets a reference to the given UpCnxState and assigns it to the UpCnxState field.

func (*HsmfUpdateData) SetUpSecurityInfo

func (o *HsmfUpdateData) SetUpSecurityInfo(v UpSecurityInfo)

SetUpSecurityInfo gets a reference to the given UpSecurityInfo and assigns it to the UpSecurityInfo field.

func (*HsmfUpdateData) SetVSmfServiceInstanceId

func (o *HsmfUpdateData) SetVSmfServiceInstanceId(v string)

SetVSmfServiceInstanceId gets a reference to the given string and assigns it to the VSmfServiceInstanceId field.

func (*HsmfUpdateData) SetVar5gMmCauseValue

func (o *HsmfUpdateData) SetVar5gMmCauseValue(v int32)

SetVar5gMmCauseValue gets a reference to the given int32 and assigns it to the Var5gMmCauseValue field.

func (*HsmfUpdateData) SetVcnTunnelInfo

func (o *HsmfUpdateData) SetVcnTunnelInfo(v TunnelInfo)

SetVcnTunnelInfo gets a reference to the given TunnelInfo and assigns it to the VcnTunnelInfo field.

func (*HsmfUpdateData) SetVplmnQos

func (o *HsmfUpdateData) SetVplmnQos(v VplmnQos)

SetVplmnQos gets a reference to the given VplmnQos and assigns it to the VplmnQos field.

func (*HsmfUpdateData) SetVsmfId

func (o *HsmfUpdateData) SetVsmfId(v string)

SetVsmfId gets a reference to the given string and assigns it to the VsmfId field.

func (*HsmfUpdateData) SetVsmfPduSessionUri

func (o *HsmfUpdateData) SetVsmfPduSessionUri(v string)

SetVsmfPduSessionUri gets a reference to the given string and assigns it to the VsmfPduSessionUri field.

func (HsmfUpdateData) ToMap

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

func (*HsmfUpdateData) UnsetDlServingPlmnRateCtl

func (o *HsmfUpdateData) UnsetDlServingPlmnRateCtl()

UnsetDlServingPlmnRateCtl ensures that no value is present for DlServingPlmnRateCtl, not even an explicit nil

func (*HsmfUpdateData) UnsetPcfUeCallbackInfo

func (o *HsmfUpdateData) UnsetPcfUeCallbackInfo()

UnsetPcfUeCallbackInfo ensures that no value is present for PcfUeCallbackInfo, not even an explicit nil

type HsmfUpdateError

type HsmfUpdateError struct {
	Error ProblemDetails `json:"error"`
	// Procedure Transaction Identifier
	Pti          *int32           `json:"pti,omitempty"`
	N1smCause    *string          `json:"n1smCause,omitempty"`
	N1SmInfoToUe *RefToBinaryData `json:"n1SmInfoToUe,omitempty"`
	// indicating a time in seconds.
	BackOffTimer *int32 `json:"backOffTimer,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	RecoveryTime *time.Time `json:"recoveryTime,omitempty"`
}

HsmfUpdateError Error within Update Response from H-SMF, or from SMF to I-SMF

func NewHsmfUpdateError

func NewHsmfUpdateError(error_ ProblemDetails) *HsmfUpdateError

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

func NewHsmfUpdateErrorWithDefaults

func NewHsmfUpdateErrorWithDefaults() *HsmfUpdateError

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

func (*HsmfUpdateError) GetBackOffTimer

func (o *HsmfUpdateError) GetBackOffTimer() int32

GetBackOffTimer returns the BackOffTimer field value if set, zero value otherwise.

func (*HsmfUpdateError) GetBackOffTimerOk

func (o *HsmfUpdateError) GetBackOffTimerOk() (*int32, bool)

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

func (*HsmfUpdateError) GetError

func (o *HsmfUpdateError) GetError() ProblemDetails

GetError returns the Error field value

func (*HsmfUpdateError) GetErrorOk

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

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

func (*HsmfUpdateError) GetN1SmInfoToUe

func (o *HsmfUpdateError) GetN1SmInfoToUe() RefToBinaryData

GetN1SmInfoToUe returns the N1SmInfoToUe field value if set, zero value otherwise.

func (*HsmfUpdateError) GetN1SmInfoToUeOk

func (o *HsmfUpdateError) GetN1SmInfoToUeOk() (*RefToBinaryData, bool)

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

func (*HsmfUpdateError) GetN1smCause

func (o *HsmfUpdateError) GetN1smCause() string

GetN1smCause returns the N1smCause field value if set, zero value otherwise.

func (*HsmfUpdateError) GetN1smCauseOk

func (o *HsmfUpdateError) GetN1smCauseOk() (*string, bool)

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

func (*HsmfUpdateError) GetPti

func (o *HsmfUpdateError) GetPti() int32

GetPti returns the Pti field value if set, zero value otherwise.

func (*HsmfUpdateError) GetPtiOk

func (o *HsmfUpdateError) GetPtiOk() (*int32, bool)

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

func (*HsmfUpdateError) GetRecoveryTime

func (o *HsmfUpdateError) GetRecoveryTime() time.Time

GetRecoveryTime returns the RecoveryTime field value if set, zero value otherwise.

func (*HsmfUpdateError) GetRecoveryTimeOk

func (o *HsmfUpdateError) GetRecoveryTimeOk() (*time.Time, bool)

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

func (*HsmfUpdateError) HasBackOffTimer

func (o *HsmfUpdateError) HasBackOffTimer() bool

HasBackOffTimer returns a boolean if a field has been set.

func (*HsmfUpdateError) HasN1SmInfoToUe

func (o *HsmfUpdateError) HasN1SmInfoToUe() bool

HasN1SmInfoToUe returns a boolean if a field has been set.

func (*HsmfUpdateError) HasN1smCause

func (o *HsmfUpdateError) HasN1smCause() bool

HasN1smCause returns a boolean if a field has been set.

func (*HsmfUpdateError) HasPti

func (o *HsmfUpdateError) HasPti() bool

HasPti returns a boolean if a field has been set.

func (*HsmfUpdateError) HasRecoveryTime

func (o *HsmfUpdateError) HasRecoveryTime() bool

HasRecoveryTime returns a boolean if a field has been set.

func (HsmfUpdateError) MarshalJSON

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

func (*HsmfUpdateError) SetBackOffTimer

func (o *HsmfUpdateError) SetBackOffTimer(v int32)

SetBackOffTimer gets a reference to the given int32 and assigns it to the BackOffTimer field.

func (*HsmfUpdateError) SetError

func (o *HsmfUpdateError) SetError(v ProblemDetails)

SetError sets field value

func (*HsmfUpdateError) SetN1SmInfoToUe

func (o *HsmfUpdateError) SetN1SmInfoToUe(v RefToBinaryData)

SetN1SmInfoToUe gets a reference to the given RefToBinaryData and assigns it to the N1SmInfoToUe field.

func (*HsmfUpdateError) SetN1smCause

func (o *HsmfUpdateError) SetN1smCause(v string)

SetN1smCause gets a reference to the given string and assigns it to the N1smCause field.

func (*HsmfUpdateError) SetPti

func (o *HsmfUpdateError) SetPti(v int32)

SetPti gets a reference to the given int32 and assigns it to the Pti field.

func (*HsmfUpdateError) SetRecoveryTime

func (o *HsmfUpdateError) SetRecoveryTime(v time.Time)

SetRecoveryTime gets a reference to the given time.Time and assigns it to the RecoveryTime field.

func (HsmfUpdateError) ToMap

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

type HsmfUpdatedData

type HsmfUpdatedData struct {
	N1SmInfoToUe *RefToBinaryData `json:"n1SmInfoToUe,omitempty"`
	N4Info       *N4Information   `json:"n4Info,omitempty"`
	N4InfoExt1   *N4Information   `json:"n4InfoExt1,omitempty"`
	N4InfoExt2   *N4Information   `json:"n4InfoExt2,omitempty"`
	DnaiList     []string         `json:"dnaiList,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"`
	RoamingChargingProfile          *RoamingChargingProfile        `json:"roamingChargingProfile,omitempty"`
	HomeProvidedChargingId          *string                        `json:"homeProvidedChargingId,omitempty"`
	UpSecurity                      *UpSecurity                    `json:"upSecurity,omitempty"`
	MaxIntegrityProtectedDataRateUl *MaxIntegrityProtectedDataRate `json:"maxIntegrityProtectedDataRateUl,omitempty"`
	MaxIntegrityProtectedDataRateDl *MaxIntegrityProtectedDataRate `json:"maxIntegrityProtectedDataRateDl,omitempty"`
	Ipv6MultiHomingInd              *bool                          `json:"ipv6MultiHomingInd,omitempty"`
	QosFlowsSetupList               []QosFlowSetupItem             `json:"qosFlowsSetupList,omitempty"`
	SessionAmbr                     *Ambr                          `json:"sessionAmbr,omitempty"`
	EpsPdnCnxInfo                   *EpsPdnCnxInfo                 `json:"epsPdnCnxInfo,omitempty"`
	EpsBearerInfo                   []EpsBearerInfo                `json:"epsBearerInfo,omitempty"`
	// Procedure Transaction Identifier
	Pti *int32 `json:"pti,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	InterPlmnApiRoot *string `json:"interPlmnApiRoot,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	IntraPlmnApiRoot *string `json:"intraPlmnApiRoot,omitempty"`
}

HsmfUpdatedData Data within Update Response from H-SMF, or from SMF to I-SMF

func NewHsmfUpdatedData

func NewHsmfUpdatedData() *HsmfUpdatedData

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

func NewHsmfUpdatedDataWithDefaults

func NewHsmfUpdatedDataWithDefaults() *HsmfUpdatedData

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

func (*HsmfUpdatedData) GetDnaiList

func (o *HsmfUpdatedData) GetDnaiList() []string

GetDnaiList returns the DnaiList field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetDnaiListOk

func (o *HsmfUpdatedData) GetDnaiListOk() ([]string, bool)

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

func (*HsmfUpdatedData) GetEpsBearerInfo

func (o *HsmfUpdatedData) GetEpsBearerInfo() []EpsBearerInfo

GetEpsBearerInfo returns the EpsBearerInfo field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetEpsBearerInfoOk

func (o *HsmfUpdatedData) GetEpsBearerInfoOk() ([]EpsBearerInfo, bool)

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

func (*HsmfUpdatedData) GetEpsPdnCnxInfo

func (o *HsmfUpdatedData) GetEpsPdnCnxInfo() EpsPdnCnxInfo

GetEpsPdnCnxInfo returns the EpsPdnCnxInfo field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetEpsPdnCnxInfoOk

func (o *HsmfUpdatedData) GetEpsPdnCnxInfoOk() (*EpsPdnCnxInfo, bool)

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

func (*HsmfUpdatedData) GetHomeProvidedChargingId

func (o *HsmfUpdatedData) GetHomeProvidedChargingId() string

GetHomeProvidedChargingId returns the HomeProvidedChargingId field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetHomeProvidedChargingIdOk

func (o *HsmfUpdatedData) GetHomeProvidedChargingIdOk() (*string, bool)

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

func (*HsmfUpdatedData) GetInterPlmnApiRoot

func (o *HsmfUpdatedData) GetInterPlmnApiRoot() string

GetInterPlmnApiRoot returns the InterPlmnApiRoot field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetInterPlmnApiRootOk

func (o *HsmfUpdatedData) GetInterPlmnApiRootOk() (*string, bool)

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

func (*HsmfUpdatedData) GetIntraPlmnApiRoot

func (o *HsmfUpdatedData) GetIntraPlmnApiRoot() string

GetIntraPlmnApiRoot returns the IntraPlmnApiRoot field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetIntraPlmnApiRootOk

func (o *HsmfUpdatedData) GetIntraPlmnApiRootOk() (*string, bool)

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

func (*HsmfUpdatedData) GetIpv6MultiHomingInd

func (o *HsmfUpdatedData) GetIpv6MultiHomingInd() bool

GetIpv6MultiHomingInd returns the Ipv6MultiHomingInd field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetIpv6MultiHomingIndOk

func (o *HsmfUpdatedData) GetIpv6MultiHomingIndOk() (*bool, bool)

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

func (*HsmfUpdatedData) GetMaxIntegrityProtectedDataRateDl

func (o *HsmfUpdatedData) GetMaxIntegrityProtectedDataRateDl() MaxIntegrityProtectedDataRate

GetMaxIntegrityProtectedDataRateDl returns the MaxIntegrityProtectedDataRateDl field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetMaxIntegrityProtectedDataRateDlOk

func (o *HsmfUpdatedData) GetMaxIntegrityProtectedDataRateDlOk() (*MaxIntegrityProtectedDataRate, bool)

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

func (*HsmfUpdatedData) GetMaxIntegrityProtectedDataRateUl

func (o *HsmfUpdatedData) GetMaxIntegrityProtectedDataRateUl() MaxIntegrityProtectedDataRate

GetMaxIntegrityProtectedDataRateUl returns the MaxIntegrityProtectedDataRateUl field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetMaxIntegrityProtectedDataRateUlOk

func (o *HsmfUpdatedData) GetMaxIntegrityProtectedDataRateUlOk() (*MaxIntegrityProtectedDataRate, bool)

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

func (*HsmfUpdatedData) GetN1SmInfoToUe

func (o *HsmfUpdatedData) GetN1SmInfoToUe() RefToBinaryData

GetN1SmInfoToUe returns the N1SmInfoToUe field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetN1SmInfoToUeOk

func (o *HsmfUpdatedData) GetN1SmInfoToUeOk() (*RefToBinaryData, bool)

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

func (*HsmfUpdatedData) GetN4Info

func (o *HsmfUpdatedData) GetN4Info() N4Information

GetN4Info returns the N4Info field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetN4InfoExt1

func (o *HsmfUpdatedData) GetN4InfoExt1() N4Information

GetN4InfoExt1 returns the N4InfoExt1 field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetN4InfoExt1Ok

func (o *HsmfUpdatedData) GetN4InfoExt1Ok() (*N4Information, bool)

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

func (*HsmfUpdatedData) GetN4InfoExt2

func (o *HsmfUpdatedData) GetN4InfoExt2() N4Information

GetN4InfoExt2 returns the N4InfoExt2 field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetN4InfoExt2Ok

func (o *HsmfUpdatedData) GetN4InfoExt2Ok() (*N4Information, bool)

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

func (*HsmfUpdatedData) GetN4InfoOk

func (o *HsmfUpdatedData) GetN4InfoOk() (*N4Information, bool)

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

func (*HsmfUpdatedData) GetPti

func (o *HsmfUpdatedData) GetPti() int32

GetPti returns the Pti field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetPtiOk

func (o *HsmfUpdatedData) GetPtiOk() (*int32, bool)

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

func (*HsmfUpdatedData) GetQosFlowsSetupList

func (o *HsmfUpdatedData) GetQosFlowsSetupList() []QosFlowSetupItem

GetQosFlowsSetupList returns the QosFlowsSetupList field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetQosFlowsSetupListOk

func (o *HsmfUpdatedData) GetQosFlowsSetupListOk() ([]QosFlowSetupItem, bool)

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

func (*HsmfUpdatedData) GetRoamingChargingProfile

func (o *HsmfUpdatedData) GetRoamingChargingProfile() RoamingChargingProfile

GetRoamingChargingProfile returns the RoamingChargingProfile field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetRoamingChargingProfileOk

func (o *HsmfUpdatedData) 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 (*HsmfUpdatedData) GetSessionAmbr

func (o *HsmfUpdatedData) GetSessionAmbr() Ambr

GetSessionAmbr returns the SessionAmbr field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetSessionAmbrOk

func (o *HsmfUpdatedData) GetSessionAmbrOk() (*Ambr, bool)

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

func (*HsmfUpdatedData) GetSupportedFeatures

func (o *HsmfUpdatedData) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetSupportedFeaturesOk

func (o *HsmfUpdatedData) 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 (*HsmfUpdatedData) GetUpSecurity

func (o *HsmfUpdatedData) GetUpSecurity() UpSecurity

GetUpSecurity returns the UpSecurity field value if set, zero value otherwise.

func (*HsmfUpdatedData) GetUpSecurityOk

func (o *HsmfUpdatedData) GetUpSecurityOk() (*UpSecurity, bool)

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

func (*HsmfUpdatedData) HasDnaiList

func (o *HsmfUpdatedData) HasDnaiList() bool

HasDnaiList returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasEpsBearerInfo

func (o *HsmfUpdatedData) HasEpsBearerInfo() bool

HasEpsBearerInfo returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasEpsPdnCnxInfo

func (o *HsmfUpdatedData) HasEpsPdnCnxInfo() bool

HasEpsPdnCnxInfo returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasHomeProvidedChargingId

func (o *HsmfUpdatedData) HasHomeProvidedChargingId() bool

HasHomeProvidedChargingId returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasInterPlmnApiRoot

func (o *HsmfUpdatedData) HasInterPlmnApiRoot() bool

HasInterPlmnApiRoot returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasIntraPlmnApiRoot

func (o *HsmfUpdatedData) HasIntraPlmnApiRoot() bool

HasIntraPlmnApiRoot returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasIpv6MultiHomingInd

func (o *HsmfUpdatedData) HasIpv6MultiHomingInd() bool

HasIpv6MultiHomingInd returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasMaxIntegrityProtectedDataRateDl

func (o *HsmfUpdatedData) HasMaxIntegrityProtectedDataRateDl() bool

HasMaxIntegrityProtectedDataRateDl returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasMaxIntegrityProtectedDataRateUl

func (o *HsmfUpdatedData) HasMaxIntegrityProtectedDataRateUl() bool

HasMaxIntegrityProtectedDataRateUl returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasN1SmInfoToUe

func (o *HsmfUpdatedData) HasN1SmInfoToUe() bool

HasN1SmInfoToUe returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasN4Info

func (o *HsmfUpdatedData) HasN4Info() bool

HasN4Info returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasN4InfoExt1

func (o *HsmfUpdatedData) HasN4InfoExt1() bool

HasN4InfoExt1 returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasN4InfoExt2

func (o *HsmfUpdatedData) HasN4InfoExt2() bool

HasN4InfoExt2 returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasPti

func (o *HsmfUpdatedData) HasPti() bool

HasPti returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasQosFlowsSetupList

func (o *HsmfUpdatedData) HasQosFlowsSetupList() bool

HasQosFlowsSetupList returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasRoamingChargingProfile

func (o *HsmfUpdatedData) HasRoamingChargingProfile() bool

HasRoamingChargingProfile returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasSessionAmbr

func (o *HsmfUpdatedData) HasSessionAmbr() bool

HasSessionAmbr returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasSupportedFeatures

func (o *HsmfUpdatedData) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*HsmfUpdatedData) HasUpSecurity

func (o *HsmfUpdatedData) HasUpSecurity() bool

HasUpSecurity returns a boolean if a field has been set.

func (HsmfUpdatedData) MarshalJSON

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

func (*HsmfUpdatedData) SetDnaiList

func (o *HsmfUpdatedData) SetDnaiList(v []string)

SetDnaiList gets a reference to the given []string and assigns it to the DnaiList field.

func (*HsmfUpdatedData) SetEpsBearerInfo

func (o *HsmfUpdatedData) SetEpsBearerInfo(v []EpsBearerInfo)

SetEpsBearerInfo gets a reference to the given []EpsBearerInfo and assigns it to the EpsBearerInfo field.

func (*HsmfUpdatedData) SetEpsPdnCnxInfo

func (o *HsmfUpdatedData) SetEpsPdnCnxInfo(v EpsPdnCnxInfo)

SetEpsPdnCnxInfo gets a reference to the given EpsPdnCnxInfo and assigns it to the EpsPdnCnxInfo field.

func (*HsmfUpdatedData) SetHomeProvidedChargingId

func (o *HsmfUpdatedData) SetHomeProvidedChargingId(v string)

SetHomeProvidedChargingId gets a reference to the given string and assigns it to the HomeProvidedChargingId field.

func (*HsmfUpdatedData) SetInterPlmnApiRoot

func (o *HsmfUpdatedData) SetInterPlmnApiRoot(v string)

SetInterPlmnApiRoot gets a reference to the given string and assigns it to the InterPlmnApiRoot field.

func (*HsmfUpdatedData) SetIntraPlmnApiRoot

func (o *HsmfUpdatedData) SetIntraPlmnApiRoot(v string)

SetIntraPlmnApiRoot gets a reference to the given string and assigns it to the IntraPlmnApiRoot field.

func (*HsmfUpdatedData) SetIpv6MultiHomingInd

func (o *HsmfUpdatedData) SetIpv6MultiHomingInd(v bool)

SetIpv6MultiHomingInd gets a reference to the given bool and assigns it to the Ipv6MultiHomingInd field.

func (*HsmfUpdatedData) SetMaxIntegrityProtectedDataRateDl

func (o *HsmfUpdatedData) SetMaxIntegrityProtectedDataRateDl(v MaxIntegrityProtectedDataRate)

SetMaxIntegrityProtectedDataRateDl gets a reference to the given MaxIntegrityProtectedDataRate and assigns it to the MaxIntegrityProtectedDataRateDl field.

func (*HsmfUpdatedData) SetMaxIntegrityProtectedDataRateUl

func (o *HsmfUpdatedData) SetMaxIntegrityProtectedDataRateUl(v MaxIntegrityProtectedDataRate)

SetMaxIntegrityProtectedDataRateUl gets a reference to the given MaxIntegrityProtectedDataRate and assigns it to the MaxIntegrityProtectedDataRateUl field.

func (*HsmfUpdatedData) SetN1SmInfoToUe

func (o *HsmfUpdatedData) SetN1SmInfoToUe(v RefToBinaryData)

SetN1SmInfoToUe gets a reference to the given RefToBinaryData and assigns it to the N1SmInfoToUe field.

func (*HsmfUpdatedData) SetN4Info

func (o *HsmfUpdatedData) SetN4Info(v N4Information)

SetN4Info gets a reference to the given N4Information and assigns it to the N4Info field.

func (*HsmfUpdatedData) SetN4InfoExt1

func (o *HsmfUpdatedData) SetN4InfoExt1(v N4Information)

SetN4InfoExt1 gets a reference to the given N4Information and assigns it to the N4InfoExt1 field.

func (*HsmfUpdatedData) SetN4InfoExt2

func (o *HsmfUpdatedData) SetN4InfoExt2(v N4Information)

SetN4InfoExt2 gets a reference to the given N4Information and assigns it to the N4InfoExt2 field.

func (*HsmfUpdatedData) SetPti

func (o *HsmfUpdatedData) SetPti(v int32)

SetPti gets a reference to the given int32 and assigns it to the Pti field.

func (*HsmfUpdatedData) SetQosFlowsSetupList

func (o *HsmfUpdatedData) SetQosFlowsSetupList(v []QosFlowSetupItem)

SetQosFlowsSetupList gets a reference to the given []QosFlowSetupItem and assigns it to the QosFlowsSetupList field.

func (*HsmfUpdatedData) SetRoamingChargingProfile

func (o *HsmfUpdatedData) SetRoamingChargingProfile(v RoamingChargingProfile)

SetRoamingChargingProfile gets a reference to the given RoamingChargingProfile and assigns it to the RoamingChargingProfile field.

func (*HsmfUpdatedData) SetSessionAmbr

func (o *HsmfUpdatedData) SetSessionAmbr(v Ambr)

SetSessionAmbr gets a reference to the given Ambr and assigns it to the SessionAmbr field.

func (*HsmfUpdatedData) SetSupportedFeatures

func (o *HsmfUpdatedData) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*HsmfUpdatedData) SetUpSecurity

func (o *HsmfUpdatedData) SetUpSecurity(v UpSecurity)

SetUpSecurity gets a reference to the given UpSecurity and assigns it to the UpSecurity field.

func (HsmfUpdatedData) ToMap

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

type IndirectDataForwardingTunnelInfo

type IndirectDataForwardingTunnelInfo struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string   `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
	// GTP Tunnel Endpoint Identifier
	GtpTeid string `json:"gtpTeid"`
	// Data Radio Bearer Identity
	DrbId *int32 `json:"drbId,omitempty"`
	// indicates first, second or third additional indirect data forwarding tunnel
	AdditionalTnlNb *int32 `json:"additionalTnlNb,omitempty"`
}

IndirectDataForwardingTunnelInfo Indirect Data Forwarding Tunnel Information

func NewIndirectDataForwardingTunnelInfo

func NewIndirectDataForwardingTunnelInfo(gtpTeid string) *IndirectDataForwardingTunnelInfo

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

func NewIndirectDataForwardingTunnelInfoWithDefaults

func NewIndirectDataForwardingTunnelInfoWithDefaults() *IndirectDataForwardingTunnelInfo

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

func (*IndirectDataForwardingTunnelInfo) GetAdditionalTnlNb

func (o *IndirectDataForwardingTunnelInfo) GetAdditionalTnlNb() int32

GetAdditionalTnlNb returns the AdditionalTnlNb field value if set, zero value otherwise.

func (*IndirectDataForwardingTunnelInfo) GetAdditionalTnlNbOk

func (o *IndirectDataForwardingTunnelInfo) GetAdditionalTnlNbOk() (*int32, bool)

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

func (*IndirectDataForwardingTunnelInfo) GetDrbId

GetDrbId returns the DrbId field value if set, zero value otherwise.

func (*IndirectDataForwardingTunnelInfo) GetDrbIdOk

func (o *IndirectDataForwardingTunnelInfo) GetDrbIdOk() (*int32, bool)

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

func (*IndirectDataForwardingTunnelInfo) GetGtpTeid

func (o *IndirectDataForwardingTunnelInfo) GetGtpTeid() string

GetGtpTeid returns the GtpTeid field value

func (*IndirectDataForwardingTunnelInfo) GetGtpTeidOk

func (o *IndirectDataForwardingTunnelInfo) GetGtpTeidOk() (*string, bool)

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

func (*IndirectDataForwardingTunnelInfo) GetIpv4Addr

func (o *IndirectDataForwardingTunnelInfo) GetIpv4Addr() string

GetIpv4Addr returns the Ipv4Addr field value if set, zero value otherwise.

func (*IndirectDataForwardingTunnelInfo) GetIpv4AddrOk

func (o *IndirectDataForwardingTunnelInfo) GetIpv4AddrOk() (*string, bool)

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

func (*IndirectDataForwardingTunnelInfo) GetIpv6Addr

func (o *IndirectDataForwardingTunnelInfo) GetIpv6Addr() Ipv6Addr

GetIpv6Addr returns the Ipv6Addr field value if set, zero value otherwise.

func (*IndirectDataForwardingTunnelInfo) GetIpv6AddrOk

func (o *IndirectDataForwardingTunnelInfo) GetIpv6AddrOk() (*Ipv6Addr, bool)

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

func (*IndirectDataForwardingTunnelInfo) HasAdditionalTnlNb

func (o *IndirectDataForwardingTunnelInfo) HasAdditionalTnlNb() bool

HasAdditionalTnlNb returns a boolean if a field has been set.

func (*IndirectDataForwardingTunnelInfo) HasDrbId

func (o *IndirectDataForwardingTunnelInfo) HasDrbId() bool

HasDrbId returns a boolean if a field has been set.

func (*IndirectDataForwardingTunnelInfo) HasIpv4Addr

func (o *IndirectDataForwardingTunnelInfo) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*IndirectDataForwardingTunnelInfo) HasIpv6Addr

func (o *IndirectDataForwardingTunnelInfo) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (IndirectDataForwardingTunnelInfo) MarshalJSON

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

func (*IndirectDataForwardingTunnelInfo) SetAdditionalTnlNb

func (o *IndirectDataForwardingTunnelInfo) SetAdditionalTnlNb(v int32)

SetAdditionalTnlNb gets a reference to the given int32 and assigns it to the AdditionalTnlNb field.

func (*IndirectDataForwardingTunnelInfo) SetDrbId

func (o *IndirectDataForwardingTunnelInfo) SetDrbId(v int32)

SetDrbId gets a reference to the given int32 and assigns it to the DrbId field.

func (*IndirectDataForwardingTunnelInfo) SetGtpTeid

func (o *IndirectDataForwardingTunnelInfo) SetGtpTeid(v string)

SetGtpTeid sets field value

func (*IndirectDataForwardingTunnelInfo) SetIpv4Addr

func (o *IndirectDataForwardingTunnelInfo) SetIpv4Addr(v string)

SetIpv4Addr gets a reference to the given string and assigns it to the Ipv4Addr field.

func (*IndirectDataForwardingTunnelInfo) SetIpv6Addr

func (o *IndirectDataForwardingTunnelInfo) SetIpv6Addr(v Ipv6Addr)

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

func (IndirectDataForwardingTunnelInfo) ToMap

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

type IndividualPDUSessionHSMFOrSMFApiService

type IndividualPDUSessionHSMFOrSMFApiService service

IndividualPDUSessionHSMFOrSMFApiService IndividualPDUSessionHSMFOrSMFApi service

func (*IndividualPDUSessionHSMFOrSMFApiService) ReleasePduSession

ReleasePduSession Release

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

func (*IndividualPDUSessionHSMFOrSMFApiService) ReleasePduSessionExecute

Execute executes the request

@return ReleasedData

func (*IndividualPDUSessionHSMFOrSMFApiService) RetrievePduSession

RetrievePduSession Retrieve

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

func (*IndividualPDUSessionHSMFOrSMFApiService) RetrievePduSessionExecute

Execute executes the request

@return RetrievedData

func (*IndividualPDUSessionHSMFOrSMFApiService) TransferMoData

TransferMoData Transfer MO Data

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

func (*IndividualPDUSessionHSMFOrSMFApiService) TransferMoDataExecute

Execute executes the request

func (*IndividualPDUSessionHSMFOrSMFApiService) UpdatePduSession

UpdatePduSession Update (initiated by V-SMF or I-SMF)

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

func (*IndividualPDUSessionHSMFOrSMFApiService) UpdatePduSessionExecute

Execute executes the request

@return HsmfUpdatedData

type IndividualSMContextApiService

type IndividualSMContextApiService service

IndividualSMContextApiService IndividualSMContextApi service

func (*IndividualSMContextApiService) ReleaseSmContext

func (a *IndividualSMContextApiService) ReleaseSmContext(ctx context.Context, smContextRef string) ApiReleaseSmContextRequest

ReleaseSmContext Release SM Context

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

func (*IndividualSMContextApiService) ReleaseSmContextExecute

Execute executes the request

@return SmContextReleasedData

func (*IndividualSMContextApiService) RetrieveSmContext

func (a *IndividualSMContextApiService) RetrieveSmContext(ctx context.Context, smContextRef string) ApiRetrieveSmContextRequest

RetrieveSmContext Retrieve SM Context

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

func (*IndividualSMContextApiService) RetrieveSmContextExecute

Execute executes the request

@return SmContextRetrievedData

func (*IndividualSMContextApiService) SendMoData

func (a *IndividualSMContextApiService) SendMoData(ctx context.Context, smContextRef string) ApiSendMoDataRequest

SendMoData Send MO Data

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

func (*IndividualSMContextApiService) SendMoDataExecute

Execute executes the request

func (*IndividualSMContextApiService) UpdateSmContext

func (a *IndividualSMContextApiService) UpdateSmContext(ctx context.Context, smContextRef string) ApiUpdateSmContextRequest

UpdateSmContext Update SM Context

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

func (*IndividualSMContextApiService) UpdateSmContextExecute

Execute executes the request

@return SmContextUpdatedData

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 IpAddress

type IpAddress struct {
	Interface *interface{}
}

IpAddress - IP Address

func InterfaceAsIpAddress

func InterfaceAsIpAddress(v *interface{}) IpAddress

interface{}AsIpAddress is a convenience function that returns interface{} wrapped in IpAddress

func (*IpAddress) GetActualInstance

func (obj *IpAddress) GetActualInstance() interface{}

Get the actual instance

func (IpAddress) MarshalJSON

func (src IpAddress) MarshalJSON() ([]byte, error)

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

func (*IpAddress) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type Ipv6Addr

type Ipv6Addr struct {
}

Ipv6Addr String identifying an IPv6 address formatted according to clause 4 of RFC5952. The mixed IPv4 IPv6 notation according to clause 5 of RFC5952 shall not be used.

func NewIpv6Addr

func NewIpv6Addr() *Ipv6Addr

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

func NewIpv6AddrWithDefaults

func NewIpv6AddrWithDefaults() *Ipv6Addr

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

func (Ipv6Addr) MarshalJSON

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

func (Ipv6Addr) ToMap

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

type Ipv6Prefix

type Ipv6Prefix struct {
}

Ipv6Prefix String identifying an IPv6 address prefix formatted according to clause 4 of RFC 5952. IPv6Prefix data type may contain an individual /128 IPv6 address.

func NewIpv6Prefix

func NewIpv6Prefix() *Ipv6Prefix

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

func NewIpv6PrefixWithDefaults

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

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

func (Ipv6Prefix) MarshalJSON

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

func (Ipv6Prefix) ToMap

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

type 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 MaReleaseIndication

type MaReleaseIndication struct {
	String *string
}

MaReleaseIndication Multi-Access PDU session release Indication. Possible values are - REL_MAPDU_OVER_3GPP - REL_MAPDU_OVER_N3GPP

func (*MaReleaseIndication) MarshalJSON

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

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

func (*MaReleaseIndication) UnmarshalJSON

func (dst *MaReleaseIndication) 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 MaxIntegrityProtectedDataRate

type MaxIntegrityProtectedDataRate struct {
	String *string
}

MaxIntegrityProtectedDataRate Maximum Integrity Protected Data Rate. Possible values are - 64_KBPS - MAX_UE_RATE

func (*MaxIntegrityProtectedDataRate) MarshalJSON

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

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

func (*MaxIntegrityProtectedDataRate) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MmeCapabilities

type MmeCapabilities struct {
	NonIpSupported    *bool `json:"nonIpSupported,omitempty"`
	EthernetSupported *bool `json:"ethernetSupported,omitempty"`
	UpipSupported     *bool `json:"upipSupported,omitempty"`
}

MmeCapabilities MME capabilities

func NewMmeCapabilities

func NewMmeCapabilities() *MmeCapabilities

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

func NewMmeCapabilitiesWithDefaults

func NewMmeCapabilitiesWithDefaults() *MmeCapabilities

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

func (*MmeCapabilities) GetEthernetSupported

func (o *MmeCapabilities) GetEthernetSupported() bool

GetEthernetSupported returns the EthernetSupported field value if set, zero value otherwise.

func (*MmeCapabilities) GetEthernetSupportedOk

func (o *MmeCapabilities) GetEthernetSupportedOk() (*bool, bool)

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

func (*MmeCapabilities) GetNonIpSupported

func (o *MmeCapabilities) GetNonIpSupported() bool

GetNonIpSupported returns the NonIpSupported field value if set, zero value otherwise.

func (*MmeCapabilities) GetNonIpSupportedOk

func (o *MmeCapabilities) GetNonIpSupportedOk() (*bool, bool)

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

func (*MmeCapabilities) GetUpipSupported

func (o *MmeCapabilities) GetUpipSupported() bool

GetUpipSupported returns the UpipSupported field value if set, zero value otherwise.

func (*MmeCapabilities) GetUpipSupportedOk

func (o *MmeCapabilities) GetUpipSupportedOk() (*bool, bool)

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

func (*MmeCapabilities) HasEthernetSupported

func (o *MmeCapabilities) HasEthernetSupported() bool

HasEthernetSupported returns a boolean if a field has been set.

func (*MmeCapabilities) HasNonIpSupported

func (o *MmeCapabilities) HasNonIpSupported() bool

HasNonIpSupported returns a boolean if a field has been set.

func (*MmeCapabilities) HasUpipSupported

func (o *MmeCapabilities) HasUpipSupported() bool

HasUpipSupported returns a boolean if a field has been set.

func (MmeCapabilities) MarshalJSON

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

func (*MmeCapabilities) SetEthernetSupported

func (o *MmeCapabilities) SetEthernetSupported(v bool)

SetEthernetSupported gets a reference to the given bool and assigns it to the EthernetSupported field.

func (*MmeCapabilities) SetNonIpSupported

func (o *MmeCapabilities) SetNonIpSupported(v bool)

SetNonIpSupported gets a reference to the given bool and assigns it to the NonIpSupported field.

func (*MmeCapabilities) SetUpipSupported

func (o *MmeCapabilities) SetUpipSupported(v bool)

SetUpipSupported gets a reference to the given bool and assigns it to the UpipSupported field.

func (MmeCapabilities) ToMap

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

type MoExpDataCounter

type MoExpDataCounter struct {
	// Unsigned integer identifying the MO Exception Data Counter, as specified in clause 5.31.14.3 of 3GPP TS 23.501.
	Counter int32 `json:"counter"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp *time.Time `json:"timeStamp,omitempty"`
}

MoExpDataCounter Contain the MO Exception Data Counter.

func NewMoExpDataCounter

func NewMoExpDataCounter(counter int32) *MoExpDataCounter

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

func NewMoExpDataCounterWithDefaults

func NewMoExpDataCounterWithDefaults() *MoExpDataCounter

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

func (*MoExpDataCounter) GetCounter

func (o *MoExpDataCounter) GetCounter() int32

GetCounter returns the Counter field value

func (*MoExpDataCounter) GetCounterOk

func (o *MoExpDataCounter) GetCounterOk() (*int32, bool)

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

func (*MoExpDataCounter) GetTimeStamp

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

GetTimeStamp returns the TimeStamp field value if set, zero value otherwise.

func (*MoExpDataCounter) GetTimeStampOk

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

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

func (*MoExpDataCounter) HasTimeStamp

func (o *MoExpDataCounter) HasTimeStamp() bool

HasTimeStamp returns a boolean if a field has been set.

func (MoExpDataCounter) MarshalJSON

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

func (*MoExpDataCounter) SetCounter

func (o *MoExpDataCounter) SetCounter(v int32)

SetCounter sets field value

func (*MoExpDataCounter) SetTimeStamp

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

SetTimeStamp gets a reference to the given time.Time and assigns it to the TimeStamp field.

func (MoExpDataCounter) ToMap

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

type N2SmInfoType

type N2SmInfoType struct {
	String *string
}

N2SmInfoType N2 SM Information Type. Possible values are - PDU_RES_SETUP_REQ - PDU_RES_SETUP_RSP - PDU_RES_SETUP_FAIL - PDU_RES_REL_CMD - PDU_RES_REL_RSP - PDU_RES_MOD_REQ - PDU_RES_MOD_RSP - PDU_RES_MOD_FAIL - PDU_RES_NTY - PDU_RES_NTY_REL - PDU_RES_MOD_IND - PDU_RES_MOD_CFM - PATH_SWITCH_REQ - PATH_SWITCH_SETUP_FAIL - PATH_SWITCH_REQ_ACK - PATH_SWITCH_REQ_FAIL - HANDOVER_REQUIRED - HANDOVER_CMD - HANDOVER_PREP_FAIL - HANDOVER_REQ_ACK - HANDOVER_RES_ALLOC_FAIL - SECONDARY_RAT_USAGE - PDU_RES_MOD_IND_FAIL - UE_CONTEXT_RESUME_REQ - UE_CONTEXT_RESUME_RSP - UE_CONTEXT_SUSPEND_REQ

func (*N2SmInfoType) MarshalJSON

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

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

func (*N2SmInfoType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type N3gaLocation

type N3gaLocation struct {
	N3gppTai *Tai `json:"n3gppTai,omitempty"`
	// This IE shall contain the N3IWF identifier received over NGAP and shall be encoded as a  string of hexadecimal characters. Each character in the string shall take a value of \"0\"  to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant  character representing the 4 most significant bits of the N3IWF ID shall appear first in  the string, and the character representing the 4 least significant bit of the N3IWF ID  shall appear last in the string.
	N3IwfId *string `json:"n3IwfId,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	UeIpv4Addr *string   `json:"ueIpv4Addr,omitempty"`
	UeIpv6Addr *Ipv6Addr `json:"ueIpv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber *int32             `json:"portNumber,omitempty"`
	Protocol   *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 N4Information

type N4Information struct {
	N4MessageType    N4MessageType    `json:"n4MessageType"`
	N4MessagePayload RefToBinaryData  `json:"n4MessagePayload"`
	N4DnaiInfo       *DnaiInformation `json:"n4DnaiInfo,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.
	PsaUpfId *string `json:"psaUpfId,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.
	UlClBpId      *string `json:"ulClBpId,omitempty"`
	N9UlPdrIdList []int32 `json:"n9UlPdrIdList,omitempty"`
}

N4Information N4 Information

func NewN4Information

func NewN4Information(n4MessageType N4MessageType, n4MessagePayload RefToBinaryData) *N4Information

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

func NewN4InformationWithDefaults

func NewN4InformationWithDefaults() *N4Information

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

func (*N4Information) GetN4DnaiInfo

func (o *N4Information) GetN4DnaiInfo() DnaiInformation

GetN4DnaiInfo returns the N4DnaiInfo field value if set, zero value otherwise.

func (*N4Information) GetN4DnaiInfoOk

func (o *N4Information) GetN4DnaiInfoOk() (*DnaiInformation, bool)

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

func (*N4Information) GetN4MessagePayload

func (o *N4Information) GetN4MessagePayload() RefToBinaryData

GetN4MessagePayload returns the N4MessagePayload field value

func (*N4Information) GetN4MessagePayloadOk

func (o *N4Information) GetN4MessagePayloadOk() (*RefToBinaryData, bool)

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

func (*N4Information) GetN4MessageType

func (o *N4Information) GetN4MessageType() N4MessageType

GetN4MessageType returns the N4MessageType field value

func (*N4Information) GetN4MessageTypeOk

func (o *N4Information) GetN4MessageTypeOk() (*N4MessageType, bool)

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

func (*N4Information) GetN9UlPdrIdList

func (o *N4Information) GetN9UlPdrIdList() []int32

GetN9UlPdrIdList returns the N9UlPdrIdList field value if set, zero value otherwise.

func (*N4Information) GetN9UlPdrIdListOk

func (o *N4Information) GetN9UlPdrIdListOk() ([]int32, bool)

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

func (*N4Information) GetPsaUpfId

func (o *N4Information) GetPsaUpfId() string

GetPsaUpfId returns the PsaUpfId field value if set, zero value otherwise.

func (*N4Information) GetPsaUpfIdOk

func (o *N4Information) GetPsaUpfIdOk() (*string, bool)

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

func (*N4Information) GetUlClBpId

func (o *N4Information) GetUlClBpId() string

GetUlClBpId returns the UlClBpId field value if set, zero value otherwise.

func (*N4Information) GetUlClBpIdOk

func (o *N4Information) GetUlClBpIdOk() (*string, bool)

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

func (*N4Information) HasN4DnaiInfo

func (o *N4Information) HasN4DnaiInfo() bool

HasN4DnaiInfo returns a boolean if a field has been set.

func (*N4Information) HasN9UlPdrIdList

func (o *N4Information) HasN9UlPdrIdList() bool

HasN9UlPdrIdList returns a boolean if a field has been set.

func (*N4Information) HasPsaUpfId

func (o *N4Information) HasPsaUpfId() bool

HasPsaUpfId returns a boolean if a field has been set.

func (*N4Information) HasUlClBpId

func (o *N4Information) HasUlClBpId() bool

HasUlClBpId returns a boolean if a field has been set.

func (N4Information) MarshalJSON

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

func (*N4Information) SetN4DnaiInfo

func (o *N4Information) SetN4DnaiInfo(v DnaiInformation)

SetN4DnaiInfo gets a reference to the given DnaiInformation and assigns it to the N4DnaiInfo field.

func (*N4Information) SetN4MessagePayload

func (o *N4Information) SetN4MessagePayload(v RefToBinaryData)

SetN4MessagePayload sets field value

func (*N4Information) SetN4MessageType

func (o *N4Information) SetN4MessageType(v N4MessageType)

SetN4MessageType sets field value

func (*N4Information) SetN9UlPdrIdList

func (o *N4Information) SetN9UlPdrIdList(v []int32)

SetN9UlPdrIdList gets a reference to the given []int32 and assigns it to the N9UlPdrIdList field.

func (*N4Information) SetPsaUpfId

func (o *N4Information) SetPsaUpfId(v string)

SetPsaUpfId gets a reference to the given string and assigns it to the PsaUpfId field.

func (*N4Information) SetUlClBpId

func (o *N4Information) SetUlClBpId(v string)

SetUlClBpId gets a reference to the given string and assigns it to the UlClBpId field.

func (N4Information) ToMap

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

type N4MessageType

type N4MessageType struct {
	String *string
}

N4MessageType N4 Message Type. Possible values are - PFCP_SES_EST_REQ - PFCP_SES_EST_RSP - PFCP_SES_MOD_REQ - PFCP_SES_MOD_RSP - PFCP_SES_DEL_REQ - PFCP_SES_DEL_RSP - PFCP_SES_REP_REQ - PFCP_SES_REP_RSP

func (*N4MessageType) MarshalJSON

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

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

func (*N4MessageType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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

type NgRanTargetId struct {
	RanNodeId GlobalRanNodeId `json:"ranNodeId"`
	Tai       Tai             `json:"tai"`
}

NgRanTargetId Indicates a NG RAN as target of the handover

func NewNgRanTargetId

func NewNgRanTargetId(ranNodeId GlobalRanNodeId, tai Tai) *NgRanTargetId

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

func NewNgRanTargetIdWithDefaults

func NewNgRanTargetIdWithDefaults() *NgRanTargetId

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

func (*NgRanTargetId) GetRanNodeId

func (o *NgRanTargetId) GetRanNodeId() GlobalRanNodeId

GetRanNodeId returns the RanNodeId field value

func (*NgRanTargetId) GetRanNodeIdOk

func (o *NgRanTargetId) GetRanNodeIdOk() (*GlobalRanNodeId, bool)

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

func (*NgRanTargetId) GetTai

func (o *NgRanTargetId) GetTai() Tai

GetTai returns the Tai field value

func (*NgRanTargetId) GetTaiOk

func (o *NgRanTargetId) GetTaiOk() (*Tai, bool)

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

func (NgRanTargetId) MarshalJSON

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

func (*NgRanTargetId) SetRanNodeId

func (o *NgRanTargetId) SetRanNodeId(v GlobalRanNodeId)

SetRanNodeId sets field value

func (*NgRanTargetId) SetTai

func (o *NgRanTargetId) SetTai(v Tai)

SetTai sets field value

func (NgRanTargetId) ToMap

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

type NonDynamic5Qi

type NonDynamic5Qi struct {
	// 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"`
	// Unsigned integer indicating Averaging Window (see clause 5.7.3.6 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	AverWindow *int32 `json:"averWindow,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"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501 [8])), expressed in 0.01 milliseconds.
	CnPacketDelayBudgetDl *int32 `json:"cnPacketDelayBudgetDl,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501 [8])), expressed in 0.01 milliseconds.
	CnPacketDelayBudgetUl *int32 `json:"cnPacketDelayBudgetUl,omitempty"`
}

NonDynamic5Qi It indicates the QoS Characteristics for a standardized or pre-configured 5QI for downlink and uplink.

func NewNonDynamic5Qi

func NewNonDynamic5Qi() *NonDynamic5Qi

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

func NewNonDynamic5QiWithDefaults

func NewNonDynamic5QiWithDefaults() *NonDynamic5Qi

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

func (*NonDynamic5Qi) GetAverWindow

func (o *NonDynamic5Qi) GetAverWindow() int32

GetAverWindow returns the AverWindow field value if set, zero value otherwise.

func (*NonDynamic5Qi) GetAverWindowOk

func (o *NonDynamic5Qi) 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.

func (*NonDynamic5Qi) GetCnPacketDelayBudgetDl

func (o *NonDynamic5Qi) GetCnPacketDelayBudgetDl() int32

GetCnPacketDelayBudgetDl returns the CnPacketDelayBudgetDl field value if set, zero value otherwise.

func (*NonDynamic5Qi) GetCnPacketDelayBudgetDlOk

func (o *NonDynamic5Qi) GetCnPacketDelayBudgetDlOk() (*int32, bool)

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

func (*NonDynamic5Qi) GetCnPacketDelayBudgetUl

func (o *NonDynamic5Qi) GetCnPacketDelayBudgetUl() int32

GetCnPacketDelayBudgetUl returns the CnPacketDelayBudgetUl field value if set, zero value otherwise.

func (*NonDynamic5Qi) GetCnPacketDelayBudgetUlOk

func (o *NonDynamic5Qi) GetCnPacketDelayBudgetUlOk() (*int32, bool)

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

func (*NonDynamic5Qi) GetExtMaxDataBurstVol

func (o *NonDynamic5Qi) GetExtMaxDataBurstVol() int32

GetExtMaxDataBurstVol returns the ExtMaxDataBurstVol field value if set, zero value otherwise.

func (*NonDynamic5Qi) GetExtMaxDataBurstVolOk

func (o *NonDynamic5Qi) 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 (*NonDynamic5Qi) GetMaxDataBurstVol

func (o *NonDynamic5Qi) GetMaxDataBurstVol() int32

GetMaxDataBurstVol returns the MaxDataBurstVol field value if set, zero value otherwise.

func (*NonDynamic5Qi) GetMaxDataBurstVolOk

func (o *NonDynamic5Qi) 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 (*NonDynamic5Qi) GetPriorityLevel

func (o *NonDynamic5Qi) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value if set, zero value otherwise.

func (*NonDynamic5Qi) GetPriorityLevelOk

func (o *NonDynamic5Qi) 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 (*NonDynamic5Qi) HasAverWindow

func (o *NonDynamic5Qi) HasAverWindow() bool

HasAverWindow returns a boolean if a field has been set.

func (*NonDynamic5Qi) HasCnPacketDelayBudgetDl

func (o *NonDynamic5Qi) HasCnPacketDelayBudgetDl() bool

HasCnPacketDelayBudgetDl returns a boolean if a field has been set.

func (*NonDynamic5Qi) HasCnPacketDelayBudgetUl

func (o *NonDynamic5Qi) HasCnPacketDelayBudgetUl() bool

HasCnPacketDelayBudgetUl returns a boolean if a field has been set.

func (*NonDynamic5Qi) HasExtMaxDataBurstVol

func (o *NonDynamic5Qi) HasExtMaxDataBurstVol() bool

HasExtMaxDataBurstVol returns a boolean if a field has been set.

func (*NonDynamic5Qi) HasMaxDataBurstVol

func (o *NonDynamic5Qi) HasMaxDataBurstVol() bool

HasMaxDataBurstVol returns a boolean if a field has been set.

func (*NonDynamic5Qi) HasPriorityLevel

func (o *NonDynamic5Qi) HasPriorityLevel() bool

HasPriorityLevel returns a boolean if a field has been set.

func (NonDynamic5Qi) MarshalJSON

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

func (*NonDynamic5Qi) SetAverWindow

func (o *NonDynamic5Qi) SetAverWindow(v int32)

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

func (*NonDynamic5Qi) SetCnPacketDelayBudgetDl

func (o *NonDynamic5Qi) SetCnPacketDelayBudgetDl(v int32)

SetCnPacketDelayBudgetDl gets a reference to the given int32 and assigns it to the CnPacketDelayBudgetDl field.

func (*NonDynamic5Qi) SetCnPacketDelayBudgetUl

func (o *NonDynamic5Qi) SetCnPacketDelayBudgetUl(v int32)

SetCnPacketDelayBudgetUl gets a reference to the given int32 and assigns it to the CnPacketDelayBudgetUl field.

func (*NonDynamic5Qi) SetExtMaxDataBurstVol

func (o *NonDynamic5Qi) SetExtMaxDataBurstVol(v int32)

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

func (*NonDynamic5Qi) SetMaxDataBurstVol

func (o *NonDynamic5Qi) SetMaxDataBurstVol(v int32)

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

func (*NonDynamic5Qi) SetPriorityLevel

func (o *NonDynamic5Qi) SetPriorityLevel(v int32)

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

func (NonDynamic5Qi) ToMap

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

type NotificationCause

type NotificationCause struct {
	String *string
}

NotificationCause Cause for generating a notification. Possible values are - QOS_FULFILLED - QOS_NOT_FULFILLED - UP_SEC_FULFILLED - UP_SEC_NOT_FULFILLED

func (*NotificationCause) MarshalJSON

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

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

func (*NotificationCause) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NotificationControl

type NotificationControl struct {
	String *string
}

NotificationControl The enumeration NotificationControl indicates whether notifications are requested from the RAN when the GFBR can no longer (or again) be fulfilled for a QoS Flow during the lifetime of the QoS Flow (see clause 5.7.2.4 of 3GPP TS 23.501). It shall comply with the provisions defined in table 5.5.3.5-1.

func (*NotificationControl) MarshalJSON

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

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

func (*NotificationControl) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NotificationInfo

type NotificationInfo struct {
	NotifId string `json:"notifId"`
	// String providing an URI formatted according to RFC 3986.
	NotifUri    string `json:"notifUri"`
	UpBufferInd *bool  `json:"upBufferInd,omitempty"`
}

NotificationInfo Notification Correlation ID and Notification URI provided by the NF service consumer

func NewNotificationInfo

func NewNotificationInfo(notifId string, notifUri string) *NotificationInfo

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

func NewNotificationInfoWithDefaults

func NewNotificationInfoWithDefaults() *NotificationInfo

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

func (*NotificationInfo) GetNotifId

func (o *NotificationInfo) GetNotifId() string

GetNotifId returns the NotifId field value

func (*NotificationInfo) GetNotifIdOk

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

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

func (*NotificationInfo) GetNotifUri

func (o *NotificationInfo) GetNotifUri() string

GetNotifUri returns the NotifUri field value

func (*NotificationInfo) GetNotifUriOk

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

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

func (*NotificationInfo) GetUpBufferInd

func (o *NotificationInfo) GetUpBufferInd() bool

GetUpBufferInd returns the UpBufferInd field value if set, zero value otherwise.

func (*NotificationInfo) GetUpBufferIndOk

func (o *NotificationInfo) GetUpBufferIndOk() (*bool, bool)

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

func (*NotificationInfo) HasUpBufferInd

func (o *NotificationInfo) HasUpBufferInd() bool

HasUpBufferInd returns a boolean if a field has been set.

func (NotificationInfo) MarshalJSON

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

func (*NotificationInfo) SetNotifId

func (o *NotificationInfo) SetNotifId(v string)

SetNotifId sets field value

func (*NotificationInfo) SetNotifUri

func (o *NotificationInfo) SetNotifUri(v string)

SetNotifUri sets field value

func (*NotificationInfo) SetUpBufferInd

func (o *NotificationInfo) SetUpBufferInd(v bool)

SetUpBufferInd gets a reference to the given bool and assigns it to the UpBufferInd field.

func (NotificationInfo) ToMap

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

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 NullableAdditionalQosFlowInfo

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

func (NullableAdditionalQosFlowInfo) Get

func (NullableAdditionalQosFlowInfo) IsSet

func (NullableAdditionalQosFlowInfo) MarshalJSON

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

func (*NullableAdditionalQosFlowInfo) Set

func (*NullableAdditionalQosFlowInfo) UnmarshalJSON

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

func (*NullableAdditionalQosFlowInfo) Unset

func (v *NullableAdditionalQosFlowInfo) Unset()

type NullableAdditionalQosFlowInfoAnyOf

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

func (NullableAdditionalQosFlowInfoAnyOf) Get

func (NullableAdditionalQosFlowInfoAnyOf) IsSet

func (NullableAdditionalQosFlowInfoAnyOf) MarshalJSON

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

func (*NullableAdditionalQosFlowInfoAnyOf) Set

func (*NullableAdditionalQosFlowInfoAnyOf) UnmarshalJSON

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

func (*NullableAdditionalQosFlowInfoAnyOf) Unset

type NullableAfCoordinationInfo

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

func NewNullableAfCoordinationInfo

func NewNullableAfCoordinationInfo(val *AfCoordinationInfo) *NullableAfCoordinationInfo

func (NullableAfCoordinationInfo) Get

func (NullableAfCoordinationInfo) IsSet

func (v NullableAfCoordinationInfo) IsSet() bool

func (NullableAfCoordinationInfo) MarshalJSON

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

func (*NullableAfCoordinationInfo) Set

func (*NullableAfCoordinationInfo) UnmarshalJSON

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

func (*NullableAfCoordinationInfo) Unset

func (v *NullableAfCoordinationInfo) Unset()

type NullableAlternativeQosProfile

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

func (NullableAlternativeQosProfile) Get

func (NullableAlternativeQosProfile) IsSet

func (NullableAlternativeQosProfile) MarshalJSON

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

func (*NullableAlternativeQosProfile) Set

func (*NullableAlternativeQosProfile) UnmarshalJSON

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

func (*NullableAlternativeQosProfile) Unset

func (v *NullableAlternativeQosProfile) 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 NullableAnchorSmfFeatures

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

func NewNullableAnchorSmfFeatures

func NewNullableAnchorSmfFeatures(val *AnchorSmfFeatures) *NullableAnchorSmfFeatures

func (NullableAnchorSmfFeatures) Get

func (NullableAnchorSmfFeatures) IsSet

func (v NullableAnchorSmfFeatures) IsSet() bool

func (NullableAnchorSmfFeatures) MarshalJSON

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

func (*NullableAnchorSmfFeatures) Set

func (*NullableAnchorSmfFeatures) UnmarshalJSON

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

func (*NullableAnchorSmfFeatures) Unset

func (v *NullableAnchorSmfFeatures) Unset()

type NullableApnRateStatus

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

func NewNullableApnRateStatus

func NewNullableApnRateStatus(val *ApnRateStatus) *NullableApnRateStatus

func (NullableApnRateStatus) Get

func (NullableApnRateStatus) IsSet

func (v NullableApnRateStatus) IsSet() bool

func (NullableApnRateStatus) MarshalJSON

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

func (*NullableApnRateStatus) Set

func (v *NullableApnRateStatus) Set(val *ApnRateStatus)

func (*NullableApnRateStatus) UnmarshalJSON

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

func (*NullableApnRateStatus) Unset

func (v *NullableApnRateStatus) 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 NullableBackupAmfInfo

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

func NewNullableBackupAmfInfo

func NewNullableBackupAmfInfo(val *BackupAmfInfo) *NullableBackupAmfInfo

func (NullableBackupAmfInfo) Get

func (NullableBackupAmfInfo) IsSet

func (v NullableBackupAmfInfo) IsSet() bool

func (NullableBackupAmfInfo) MarshalJSON

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

func (*NullableBackupAmfInfo) Set

func (v *NullableBackupAmfInfo) Set(val *BackupAmfInfo)

func (*NullableBackupAmfInfo) UnmarshalJSON

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

func (*NullableBackupAmfInfo) Unset

func (v *NullableBackupAmfInfo) Unset()

type NullableBatteryIndication

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

func NewNullableBatteryIndication

func NewNullableBatteryIndication(val *BatteryIndication) *NullableBatteryIndication

func (NullableBatteryIndication) Get

func (NullableBatteryIndication) IsSet

func (v NullableBatteryIndication) IsSet() bool

func (NullableBatteryIndication) MarshalJSON

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

func (*NullableBatteryIndication) Set

func (*NullableBatteryIndication) UnmarshalJSON

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

func (*NullableBatteryIndication) Unset

func (v *NullableBatteryIndication) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCause

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

func NewNullableCause

func NewNullableCause(val *Cause) *NullableCause

func (NullableCause) Get

func (v NullableCause) Get() *Cause

func (NullableCause) IsSet

func (v NullableCause) IsSet() bool

func (NullableCause) MarshalJSON

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

func (*NullableCause) Set

func (v *NullableCause) Set(val *Cause)

func (*NullableCause) UnmarshalJSON

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

func (*NullableCause) Unset

func (v *NullableCause) 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 NullableChargingInformation

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

func NewNullableChargingInformation

func NewNullableChargingInformation(val *ChargingInformation) *NullableChargingInformation

func (NullableChargingInformation) Get

func (NullableChargingInformation) IsSet

func (NullableChargingInformation) MarshalJSON

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

func (*NullableChargingInformation) Set

func (*NullableChargingInformation) UnmarshalJSON

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

func (*NullableChargingInformation) Unset

func (v *NullableChargingInformation) Unset()

type NullableCnAssistedRanPara

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

func NewNullableCnAssistedRanPara

func NewNullableCnAssistedRanPara(val *CnAssistedRanPara) *NullableCnAssistedRanPara

func (NullableCnAssistedRanPara) Get

func (NullableCnAssistedRanPara) IsSet

func (v NullableCnAssistedRanPara) IsSet() bool

func (NullableCnAssistedRanPara) MarshalJSON

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

func (*NullableCnAssistedRanPara) Set

func (*NullableCnAssistedRanPara) UnmarshalJSON

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

func (*NullableCnAssistedRanPara) Unset

func (v *NullableCnAssistedRanPara) Unset()

type NullableDddTrafficDescriptor

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

func NewNullableDddTrafficDescriptor

func NewNullableDddTrafficDescriptor(val *DddTrafficDescriptor) *NullableDddTrafficDescriptor

func (NullableDddTrafficDescriptor) Get

func (NullableDddTrafficDescriptor) IsSet

func (NullableDddTrafficDescriptor) MarshalJSON

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

func (*NullableDddTrafficDescriptor) Set

func (*NullableDddTrafficDescriptor) UnmarshalJSON

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

func (*NullableDddTrafficDescriptor) Unset

func (v *NullableDddTrafficDescriptor) Unset()

type NullableDdnFailureSubInfo

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

func NewNullableDdnFailureSubInfo

func NewNullableDdnFailureSubInfo(val *DdnFailureSubInfo) *NullableDdnFailureSubInfo

func (NullableDdnFailureSubInfo) Get

func (NullableDdnFailureSubInfo) IsSet

func (v NullableDdnFailureSubInfo) IsSet() bool

func (NullableDdnFailureSubInfo) MarshalJSON

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

func (*NullableDdnFailureSubInfo) Set

func (*NullableDdnFailureSubInfo) UnmarshalJSON

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

func (*NullableDdnFailureSubInfo) Unset

func (v *NullableDdnFailureSubInfo) Unset()

type NullableDdnFailureSubs

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

func NewNullableDdnFailureSubs

func NewNullableDdnFailureSubs(val *DdnFailureSubs) *NullableDdnFailureSubs

func (NullableDdnFailureSubs) Get

func (NullableDdnFailureSubs) IsSet

func (v NullableDdnFailureSubs) IsSet() bool

func (NullableDdnFailureSubs) MarshalJSON

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

func (*NullableDdnFailureSubs) Set

func (*NullableDdnFailureSubs) UnmarshalJSON

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

func (*NullableDdnFailureSubs) Unset

func (v *NullableDdnFailureSubs) Unset()

type NullableDnaiInformation

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

func NewNullableDnaiInformation

func NewNullableDnaiInformation(val *DnaiInformation) *NullableDnaiInformation

func (NullableDnaiInformation) Get

func (NullableDnaiInformation) IsSet

func (v NullableDnaiInformation) IsSet() bool

func (NullableDnaiInformation) MarshalJSON

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

func (*NullableDnaiInformation) Set

func (*NullableDnaiInformation) UnmarshalJSON

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

func (*NullableDnaiInformation) Unset

func (v *NullableDnaiInformation) Unset()

type NullableDnnSelectionMode

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

func NewNullableDnnSelectionMode

func NewNullableDnnSelectionMode(val *DnnSelectionMode) *NullableDnnSelectionMode

func (NullableDnnSelectionMode) Get

func (NullableDnnSelectionMode) IsSet

func (v NullableDnnSelectionMode) IsSet() bool

func (NullableDnnSelectionMode) MarshalJSON

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

func (*NullableDnnSelectionMode) Set

func (*NullableDnnSelectionMode) UnmarshalJSON

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

func (*NullableDnnSelectionMode) Unset

func (v *NullableDnnSelectionMode) Unset()

type NullableDynamic5Qi

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

func NewNullableDynamic5Qi

func NewNullableDynamic5Qi(val *Dynamic5Qi) *NullableDynamic5Qi

func (NullableDynamic5Qi) Get

func (v NullableDynamic5Qi) Get() *Dynamic5Qi

func (NullableDynamic5Qi) IsSet

func (v NullableDynamic5Qi) IsSet() bool

func (NullableDynamic5Qi) MarshalJSON

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

func (*NullableDynamic5Qi) Set

func (v *NullableDynamic5Qi) Set(val *Dynamic5Qi)

func (*NullableDynamic5Qi) UnmarshalJSON

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

func (*NullableDynamic5Qi) Unset

func (v *NullableDynamic5Qi) Unset()

type NullableEbiArpMapping

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

func NewNullableEbiArpMapping

func NewNullableEbiArpMapping(val *EbiArpMapping) *NullableEbiArpMapping

func (NullableEbiArpMapping) Get

func (NullableEbiArpMapping) IsSet

func (v NullableEbiArpMapping) IsSet() bool

func (NullableEbiArpMapping) MarshalJSON

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

func (*NullableEbiArpMapping) Set

func (v *NullableEbiArpMapping) Set(val *EbiArpMapping)

func (*NullableEbiArpMapping) UnmarshalJSON

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

func (*NullableEbiArpMapping) Unset

func (v *NullableEbiArpMapping) 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 NullableEpsBearerInfo

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

func NewNullableEpsBearerInfo

func NewNullableEpsBearerInfo(val *EpsBearerInfo) *NullableEpsBearerInfo

func (NullableEpsBearerInfo) Get

func (NullableEpsBearerInfo) IsSet

func (v NullableEpsBearerInfo) IsSet() bool

func (NullableEpsBearerInfo) MarshalJSON

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

func (*NullableEpsBearerInfo) Set

func (v *NullableEpsBearerInfo) Set(val *EpsBearerInfo)

func (*NullableEpsBearerInfo) UnmarshalJSON

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

func (*NullableEpsBearerInfo) Unset

func (v *NullableEpsBearerInfo) Unset()

type NullableEpsInterworkingIndication

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

func (NullableEpsInterworkingIndication) Get

func (NullableEpsInterworkingIndication) IsSet

func (NullableEpsInterworkingIndication) MarshalJSON

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

func (*NullableEpsInterworkingIndication) Set

func (*NullableEpsInterworkingIndication) UnmarshalJSON

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

func (*NullableEpsInterworkingIndication) Unset

type NullableEpsPdnCnxInfo

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

func NewNullableEpsPdnCnxInfo

func NewNullableEpsPdnCnxInfo(val *EpsPdnCnxInfo) *NullableEpsPdnCnxInfo

func (NullableEpsPdnCnxInfo) Get

func (NullableEpsPdnCnxInfo) IsSet

func (v NullableEpsPdnCnxInfo) IsSet() bool

func (NullableEpsPdnCnxInfo) MarshalJSON

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

func (*NullableEpsPdnCnxInfo) Set

func (v *NullableEpsPdnCnxInfo) Set(val *EpsPdnCnxInfo)

func (*NullableEpsPdnCnxInfo) UnmarshalJSON

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

func (*NullableEpsPdnCnxInfo) Unset

func (v *NullableEpsPdnCnxInfo) 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 NullableExemptionInd

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

func NewNullableExemptionInd

func NewNullableExemptionInd(val *ExemptionInd) *NullableExemptionInd

func (NullableExemptionInd) Get

func (NullableExemptionInd) IsSet

func (v NullableExemptionInd) IsSet() bool

func (NullableExemptionInd) MarshalJSON

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

func (*NullableExemptionInd) Set

func (v *NullableExemptionInd) Set(val *ExemptionInd)

func (*NullableExemptionInd) UnmarshalJSON

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

func (*NullableExemptionInd) Unset

func (v *NullableExemptionInd) Unset()

type NullableExtProblemDetails

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

func NewNullableExtProblemDetails

func NewNullableExtProblemDetails(val *ExtProblemDetails) *NullableExtProblemDetails

func (NullableExtProblemDetails) Get

func (NullableExtProblemDetails) IsSet

func (v NullableExtProblemDetails) IsSet() bool

func (NullableExtProblemDetails) MarshalJSON

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

func (*NullableExtProblemDetails) Set

func (*NullableExtProblemDetails) UnmarshalJSON

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

func (*NullableExtProblemDetails) Unset

func (v *NullableExtProblemDetails) 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 NullableGbrQosFlowInformation

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

func (NullableGbrQosFlowInformation) Get

func (NullableGbrQosFlowInformation) IsSet

func (NullableGbrQosFlowInformation) MarshalJSON

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

func (*NullableGbrQosFlowInformation) Set

func (*NullableGbrQosFlowInformation) UnmarshalJSON

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

func (*NullableGbrQosFlowInformation) Unset

func (v *NullableGbrQosFlowInformation) 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 NullableGuami

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

func NewNullableGuami

func NewNullableGuami(val *Guami) *NullableGuami

func (NullableGuami) Get

func (v NullableGuami) Get() *Guami

func (NullableGuami) IsSet

func (v NullableGuami) IsSet() bool

func (NullableGuami) MarshalJSON

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

func (*NullableGuami) Set

func (v *NullableGuami) Set(val *Guami)

func (*NullableGuami) UnmarshalJSON

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

func (*NullableGuami) Unset

func (v *NullableGuami) Unset()

type 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 NullableHoState

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

func NewNullableHoState

func NewNullableHoState(val *HoState) *NullableHoState

func (NullableHoState) Get

func (v NullableHoState) Get() *HoState

func (NullableHoState) IsSet

func (v NullableHoState) IsSet() bool

func (NullableHoState) MarshalJSON

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

func (*NullableHoState) Set

func (v *NullableHoState) Set(val *HoState)

func (*NullableHoState) UnmarshalJSON

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

func (*NullableHoState) Unset

func (v *NullableHoState) Unset()

type NullableHsmfUpdateData

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

func NewNullableHsmfUpdateData

func NewNullableHsmfUpdateData(val *HsmfUpdateData) *NullableHsmfUpdateData

func (NullableHsmfUpdateData) Get

func (NullableHsmfUpdateData) IsSet

func (v NullableHsmfUpdateData) IsSet() bool

func (NullableHsmfUpdateData) MarshalJSON

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

func (*NullableHsmfUpdateData) Set

func (*NullableHsmfUpdateData) UnmarshalJSON

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

func (*NullableHsmfUpdateData) Unset

func (v *NullableHsmfUpdateData) Unset()

type NullableHsmfUpdateError

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

func NewNullableHsmfUpdateError

func NewNullableHsmfUpdateError(val *HsmfUpdateError) *NullableHsmfUpdateError

func (NullableHsmfUpdateError) Get

func (NullableHsmfUpdateError) IsSet

func (v NullableHsmfUpdateError) IsSet() bool

func (NullableHsmfUpdateError) MarshalJSON

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

func (*NullableHsmfUpdateError) Set

func (*NullableHsmfUpdateError) UnmarshalJSON

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

func (*NullableHsmfUpdateError) Unset

func (v *NullableHsmfUpdateError) Unset()

type NullableHsmfUpdatedData

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

func NewNullableHsmfUpdatedData

func NewNullableHsmfUpdatedData(val *HsmfUpdatedData) *NullableHsmfUpdatedData

func (NullableHsmfUpdatedData) Get

func (NullableHsmfUpdatedData) IsSet

func (v NullableHsmfUpdatedData) IsSet() bool

func (NullableHsmfUpdatedData) MarshalJSON

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

func (*NullableHsmfUpdatedData) Set

func (*NullableHsmfUpdatedData) UnmarshalJSON

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

func (*NullableHsmfUpdatedData) Unset

func (v *NullableHsmfUpdatedData) Unset()

type NullableIndirectDataForwardingTunnelInfo

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

func (NullableIndirectDataForwardingTunnelInfo) Get

func (NullableIndirectDataForwardingTunnelInfo) IsSet

func (NullableIndirectDataForwardingTunnelInfo) MarshalJSON

func (*NullableIndirectDataForwardingTunnelInfo) Set

func (*NullableIndirectDataForwardingTunnelInfo) UnmarshalJSON

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

func (*NullableIndirectDataForwardingTunnelInfo) 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 NullableIpAddress

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

func NewNullableIpAddress

func NewNullableIpAddress(val *IpAddress) *NullableIpAddress

func (NullableIpAddress) Get

func (v NullableIpAddress) Get() *IpAddress

func (NullableIpAddress) IsSet

func (v NullableIpAddress) IsSet() bool

func (NullableIpAddress) MarshalJSON

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

func (*NullableIpAddress) Set

func (v *NullableIpAddress) Set(val *IpAddress)

func (*NullableIpAddress) UnmarshalJSON

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

func (*NullableIpAddress) Unset

func (v *NullableIpAddress) Unset()

type NullableIpv6Addr

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

func NewNullableIpv6Addr

func NewNullableIpv6Addr(val *Ipv6Addr) *NullableIpv6Addr

func (NullableIpv6Addr) Get

func (v NullableIpv6Addr) Get() *Ipv6Addr

func (NullableIpv6Addr) IsSet

func (v NullableIpv6Addr) IsSet() bool

func (NullableIpv6Addr) MarshalJSON

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

func (*NullableIpv6Addr) Set

func (v *NullableIpv6Addr) Set(val *Ipv6Addr)

func (*NullableIpv6Addr) UnmarshalJSON

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

func (*NullableIpv6Addr) Unset

func (v *NullableIpv6Addr) Unset()

type NullableIpv6Prefix

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

func NewNullableIpv6Prefix

func NewNullableIpv6Prefix(val *Ipv6Prefix) *NullableIpv6Prefix

func (NullableIpv6Prefix) Get

func (v NullableIpv6Prefix) Get() *Ipv6Prefix

func (NullableIpv6Prefix) IsSet

func (v NullableIpv6Prefix) IsSet() bool

func (NullableIpv6Prefix) MarshalJSON

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

func (*NullableIpv6Prefix) Set

func (v *NullableIpv6Prefix) Set(val *Ipv6Prefix)

func (*NullableIpv6Prefix) UnmarshalJSON

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

func (*NullableIpv6Prefix) Unset

func (v *NullableIpv6Prefix) Unset()

type 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 NullableMaReleaseIndication

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

func NewNullableMaReleaseIndication

func NewNullableMaReleaseIndication(val *MaReleaseIndication) *NullableMaReleaseIndication

func (NullableMaReleaseIndication) Get

func (NullableMaReleaseIndication) IsSet

func (NullableMaReleaseIndication) MarshalJSON

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

func (*NullableMaReleaseIndication) Set

func (*NullableMaReleaseIndication) UnmarshalJSON

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

func (*NullableMaReleaseIndication) Unset

func (v *NullableMaReleaseIndication) Unset()

type NullableMaxIntegrityProtectedDataRate

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

func (NullableMaxIntegrityProtectedDataRate) Get

func (NullableMaxIntegrityProtectedDataRate) IsSet

func (NullableMaxIntegrityProtectedDataRate) MarshalJSON

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

func (*NullableMaxIntegrityProtectedDataRate) Set

func (*NullableMaxIntegrityProtectedDataRate) UnmarshalJSON

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

func (*NullableMaxIntegrityProtectedDataRate) Unset

type NullableMmeCapabilities

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

func NewNullableMmeCapabilities

func NewNullableMmeCapabilities(val *MmeCapabilities) *NullableMmeCapabilities

func (NullableMmeCapabilities) Get

func (NullableMmeCapabilities) IsSet

func (v NullableMmeCapabilities) IsSet() bool

func (NullableMmeCapabilities) MarshalJSON

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

func (*NullableMmeCapabilities) Set

func (*NullableMmeCapabilities) UnmarshalJSON

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

func (*NullableMmeCapabilities) Unset

func (v *NullableMmeCapabilities) Unset()

type NullableMoExpDataCounter

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

func NewNullableMoExpDataCounter

func NewNullableMoExpDataCounter(val *MoExpDataCounter) *NullableMoExpDataCounter

func (NullableMoExpDataCounter) Get

func (NullableMoExpDataCounter) IsSet

func (v NullableMoExpDataCounter) IsSet() bool

func (NullableMoExpDataCounter) MarshalJSON

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

func (*NullableMoExpDataCounter) Set

func (*NullableMoExpDataCounter) UnmarshalJSON

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

func (*NullableMoExpDataCounter) Unset

func (v *NullableMoExpDataCounter) Unset()

type NullableN2SmInfoType

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

func NewNullableN2SmInfoType

func NewNullableN2SmInfoType(val *N2SmInfoType) *NullableN2SmInfoType

func (NullableN2SmInfoType) Get

func (NullableN2SmInfoType) IsSet

func (v NullableN2SmInfoType) IsSet() bool

func (NullableN2SmInfoType) MarshalJSON

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

func (*NullableN2SmInfoType) Set

func (v *NullableN2SmInfoType) Set(val *N2SmInfoType)

func (*NullableN2SmInfoType) UnmarshalJSON

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

func (*NullableN2SmInfoType) Unset

func (v *NullableN2SmInfoType) 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 NullableN4Information

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

func NewNullableN4Information

func NewNullableN4Information(val *N4Information) *NullableN4Information

func (NullableN4Information) Get

func (NullableN4Information) IsSet

func (v NullableN4Information) IsSet() bool

func (NullableN4Information) MarshalJSON

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

func (*NullableN4Information) Set

func (v *NullableN4Information) Set(val *N4Information)

func (*NullableN4Information) UnmarshalJSON

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

func (*NullableN4Information) Unset

func (v *NullableN4Information) Unset()

type NullableN4MessageType

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

func NewNullableN4MessageType

func NewNullableN4MessageType(val *N4MessageType) *NullableN4MessageType

func (NullableN4MessageType) Get

func (NullableN4MessageType) IsSet

func (v NullableN4MessageType) IsSet() bool

func (NullableN4MessageType) MarshalJSON

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

func (*NullableN4MessageType) Set

func (v *NullableN4MessageType) Set(val *N4MessageType)

func (*NullableN4MessageType) UnmarshalJSON

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

func (*NullableN4MessageType) Unset

func (v *NullableN4MessageType) 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 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 NullableNgRanTargetId

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

func NewNullableNgRanTargetId

func NewNullableNgRanTargetId(val *NgRanTargetId) *NullableNgRanTargetId

func (NullableNgRanTargetId) Get

func (NullableNgRanTargetId) IsSet

func (v NullableNgRanTargetId) IsSet() bool

func (NullableNgRanTargetId) MarshalJSON

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

func (*NullableNgRanTargetId) Set

func (v *NullableNgRanTargetId) Set(val *NgRanTargetId)

func (*NullableNgRanTargetId) UnmarshalJSON

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

func (*NullableNgRanTargetId) Unset

func (v *NullableNgRanTargetId) Unset()

type NullableNonDynamic5Qi

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

func NewNullableNonDynamic5Qi

func NewNullableNonDynamic5Qi(val *NonDynamic5Qi) *NullableNonDynamic5Qi

func (NullableNonDynamic5Qi) Get

func (NullableNonDynamic5Qi) IsSet

func (v NullableNonDynamic5Qi) IsSet() bool

func (NullableNonDynamic5Qi) MarshalJSON

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

func (*NullableNonDynamic5Qi) Set

func (v *NullableNonDynamic5Qi) Set(val *NonDynamic5Qi)

func (*NullableNonDynamic5Qi) UnmarshalJSON

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

func (*NullableNonDynamic5Qi) Unset

func (v *NullableNonDynamic5Qi) Unset()

type NullableNotificationCause

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

func NewNullableNotificationCause

func NewNullableNotificationCause(val *NotificationCause) *NullableNotificationCause

func (NullableNotificationCause) Get

func (NullableNotificationCause) IsSet

func (v NullableNotificationCause) IsSet() bool

func (NullableNotificationCause) MarshalJSON

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

func (*NullableNotificationCause) Set

func (*NullableNotificationCause) UnmarshalJSON

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

func (*NullableNotificationCause) Unset

func (v *NullableNotificationCause) Unset()

type NullableNotificationControl

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

func NewNullableNotificationControl

func NewNullableNotificationControl(val *NotificationControl) *NullableNotificationControl

func (NullableNotificationControl) Get

func (NullableNotificationControl) IsSet

func (NullableNotificationControl) MarshalJSON

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

func (*NullableNotificationControl) Set

func (*NullableNotificationControl) UnmarshalJSON

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

func (*NullableNotificationControl) Unset

func (v *NullableNotificationControl) Unset()

type NullableNotificationInfo

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

func NewNullableNotificationInfo

func NewNullableNotificationInfo(val *NotificationInfo) *NullableNotificationInfo

func (NullableNotificationInfo) Get

func (NullableNotificationInfo) IsSet

func (v NullableNotificationInfo) IsSet() bool

func (NullableNotificationInfo) MarshalJSON

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

func (*NullableNotificationInfo) Set

func (*NullableNotificationInfo) UnmarshalJSON

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

func (*NullableNotificationInfo) Unset

func (v *NullableNotificationInfo) 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 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 NullablePcfUeCallbackInfo

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

func NewNullablePcfUeCallbackInfo

func NewNullablePcfUeCallbackInfo(val *PcfUeCallbackInfo) *NullablePcfUeCallbackInfo

func (NullablePcfUeCallbackInfo) Get

func (NullablePcfUeCallbackInfo) IsSet

func (v NullablePcfUeCallbackInfo) IsSet() bool

func (NullablePcfUeCallbackInfo) MarshalJSON

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

func (*NullablePcfUeCallbackInfo) Set

func (*NullablePcfUeCallbackInfo) UnmarshalJSON

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

func (*NullablePcfUeCallbackInfo) Unset

func (v *NullablePcfUeCallbackInfo) Unset()

type NullablePduSessionContextType

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

func (NullablePduSessionContextType) Get

func (NullablePduSessionContextType) IsSet

func (NullablePduSessionContextType) MarshalJSON

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

func (*NullablePduSessionContextType) Set

func (*NullablePduSessionContextType) UnmarshalJSON

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

func (*NullablePduSessionContextType) Unset

func (v *NullablePduSessionContextType) Unset()

type NullablePduSessionCreateData

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

func NewNullablePduSessionCreateData

func NewNullablePduSessionCreateData(val *PduSessionCreateData) *NullablePduSessionCreateData

func (NullablePduSessionCreateData) Get

func (NullablePduSessionCreateData) IsSet

func (NullablePduSessionCreateData) MarshalJSON

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

func (*NullablePduSessionCreateData) Set

func (*NullablePduSessionCreateData) UnmarshalJSON

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

func (*NullablePduSessionCreateData) Unset

func (v *NullablePduSessionCreateData) Unset()

type NullablePduSessionCreateError

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

func (NullablePduSessionCreateError) Get

func (NullablePduSessionCreateError) IsSet

func (NullablePduSessionCreateError) MarshalJSON

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

func (*NullablePduSessionCreateError) Set

func (*NullablePduSessionCreateError) UnmarshalJSON

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

func (*NullablePduSessionCreateError) Unset

func (v *NullablePduSessionCreateError) Unset()

type NullablePduSessionCreatedData

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

func (NullablePduSessionCreatedData) Get

func (NullablePduSessionCreatedData) IsSet

func (NullablePduSessionCreatedData) MarshalJSON

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

func (*NullablePduSessionCreatedData) Set

func (*NullablePduSessionCreatedData) UnmarshalJSON

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

func (*NullablePduSessionCreatedData) Unset

func (v *NullablePduSessionCreatedData) Unset()

type NullablePduSessionNotifyItem

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

func NewNullablePduSessionNotifyItem

func NewNullablePduSessionNotifyItem(val *PduSessionNotifyItem) *NullablePduSessionNotifyItem

func (NullablePduSessionNotifyItem) Get

func (NullablePduSessionNotifyItem) IsSet

func (NullablePduSessionNotifyItem) MarshalJSON

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

func (*NullablePduSessionNotifyItem) Set

func (*NullablePduSessionNotifyItem) UnmarshalJSON

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

func (*NullablePduSessionNotifyItem) Unset

func (v *NullablePduSessionNotifyItem) 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 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 NullableProblemDetailsAddInfo

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

func (NullableProblemDetailsAddInfo) Get

func (NullableProblemDetailsAddInfo) IsSet

func (NullableProblemDetailsAddInfo) MarshalJSON

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

func (*NullableProblemDetailsAddInfo) Set

func (*NullableProblemDetailsAddInfo) UnmarshalJSON

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

func (*NullableProblemDetailsAddInfo) Unset

func (v *NullableProblemDetailsAddInfo) Unset()

type NullableProtectionResult

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

func NewNullableProtectionResult

func NewNullableProtectionResult(val *ProtectionResult) *NullableProtectionResult

func (NullableProtectionResult) Get

func (NullableProtectionResult) IsSet

func (v NullableProtectionResult) IsSet() bool

func (NullableProtectionResult) MarshalJSON

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

func (*NullableProtectionResult) Set

func (*NullableProtectionResult) UnmarshalJSON

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

func (*NullableProtectionResult) Unset

func (v *NullableProtectionResult) Unset()

type NullablePsaIndication

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

func NewNullablePsaIndication

func NewNullablePsaIndication(val *PsaIndication) *NullablePsaIndication

func (NullablePsaIndication) Get

func (NullablePsaIndication) IsSet

func (v NullablePsaIndication) IsSet() bool

func (NullablePsaIndication) MarshalJSON

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

func (*NullablePsaIndication) Set

func (v *NullablePsaIndication) Set(val *PsaIndication)

func (*NullablePsaIndication) UnmarshalJSON

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

func (*NullablePsaIndication) Unset

func (v *NullablePsaIndication) Unset()

type NullablePsaInformation

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

func NewNullablePsaInformation

func NewNullablePsaInformation(val *PsaInformation) *NullablePsaInformation

func (NullablePsaInformation) Get

func (NullablePsaInformation) IsSet

func (v NullablePsaInformation) IsSet() bool

func (NullablePsaInformation) MarshalJSON

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

func (*NullablePsaInformation) Set

func (*NullablePsaInformation) UnmarshalJSON

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

func (*NullablePsaInformation) Unset

func (v *NullablePsaInformation) Unset()

type NullableQosFlowAccessType

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

func NewNullableQosFlowAccessType

func NewNullableQosFlowAccessType(val *QosFlowAccessType) *NullableQosFlowAccessType

func (NullableQosFlowAccessType) Get

func (NullableQosFlowAccessType) IsSet

func (v NullableQosFlowAccessType) IsSet() bool

func (NullableQosFlowAccessType) MarshalJSON

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

func (*NullableQosFlowAccessType) Set

func (*NullableQosFlowAccessType) UnmarshalJSON

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

func (*NullableQosFlowAccessType) Unset

func (v *NullableQosFlowAccessType) Unset()

type NullableQosFlowAddModifyRequestItem

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

func (NullableQosFlowAddModifyRequestItem) Get

func (NullableQosFlowAddModifyRequestItem) IsSet

func (NullableQosFlowAddModifyRequestItem) MarshalJSON

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

func (*NullableQosFlowAddModifyRequestItem) Set

func (*NullableQosFlowAddModifyRequestItem) UnmarshalJSON

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

func (*NullableQosFlowAddModifyRequestItem) Unset

type NullableQosFlowItem

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

func NewNullableQosFlowItem

func NewNullableQosFlowItem(val *QosFlowItem) *NullableQosFlowItem

func (NullableQosFlowItem) Get

func (NullableQosFlowItem) IsSet

func (v NullableQosFlowItem) IsSet() bool

func (NullableQosFlowItem) MarshalJSON

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

func (*NullableQosFlowItem) Set

func (v *NullableQosFlowItem) Set(val *QosFlowItem)

func (*NullableQosFlowItem) UnmarshalJSON

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

func (*NullableQosFlowItem) Unset

func (v *NullableQosFlowItem) Unset()

type NullableQosFlowNotifyItem

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

func NewNullableQosFlowNotifyItem

func NewNullableQosFlowNotifyItem(val *QosFlowNotifyItem) *NullableQosFlowNotifyItem

func (NullableQosFlowNotifyItem) Get

func (NullableQosFlowNotifyItem) IsSet

func (v NullableQosFlowNotifyItem) IsSet() bool

func (NullableQosFlowNotifyItem) MarshalJSON

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

func (*NullableQosFlowNotifyItem) Set

func (*NullableQosFlowNotifyItem) UnmarshalJSON

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

func (*NullableQosFlowNotifyItem) Unset

func (v *NullableQosFlowNotifyItem) Unset()

type NullableQosFlowProfile

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

func NewNullableQosFlowProfile

func NewNullableQosFlowProfile(val *QosFlowProfile) *NullableQosFlowProfile

func (NullableQosFlowProfile) Get

func (NullableQosFlowProfile) IsSet

func (v NullableQosFlowProfile) IsSet() bool

func (NullableQosFlowProfile) MarshalJSON

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

func (*NullableQosFlowProfile) Set

func (*NullableQosFlowProfile) UnmarshalJSON

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

func (*NullableQosFlowProfile) Unset

func (v *NullableQosFlowProfile) Unset()

type NullableQosFlowReleaseRequestItem

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

func (NullableQosFlowReleaseRequestItem) Get

func (NullableQosFlowReleaseRequestItem) IsSet

func (NullableQosFlowReleaseRequestItem) MarshalJSON

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

func (*NullableQosFlowReleaseRequestItem) Set

func (*NullableQosFlowReleaseRequestItem) UnmarshalJSON

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

func (*NullableQosFlowReleaseRequestItem) Unset

type NullableQosFlowSetupItem

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

func NewNullableQosFlowSetupItem

func NewNullableQosFlowSetupItem(val *QosFlowSetupItem) *NullableQosFlowSetupItem

func (NullableQosFlowSetupItem) Get

func (NullableQosFlowSetupItem) IsSet

func (v NullableQosFlowSetupItem) IsSet() bool

func (NullableQosFlowSetupItem) MarshalJSON

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

func (*NullableQosFlowSetupItem) Set

func (*NullableQosFlowSetupItem) UnmarshalJSON

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

func (*NullableQosFlowSetupItem) Unset

func (v *NullableQosFlowSetupItem) Unset()

type NullableQosFlowTunnel

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

func NewNullableQosFlowTunnel

func NewNullableQosFlowTunnel(val *QosFlowTunnel) *NullableQosFlowTunnel

func (NullableQosFlowTunnel) Get

func (NullableQosFlowTunnel) IsSet

func (v NullableQosFlowTunnel) IsSet() bool

func (NullableQosFlowTunnel) MarshalJSON

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

func (*NullableQosFlowTunnel) Set

func (v *NullableQosFlowTunnel) Set(val *QosFlowTunnel)

func (*NullableQosFlowTunnel) UnmarshalJSON

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

func (*NullableQosFlowTunnel) Unset

func (v *NullableQosFlowTunnel) Unset()

type NullableQosFlowUsageReport

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

func NewNullableQosFlowUsageReport

func NewNullableQosFlowUsageReport(val *QosFlowUsageReport) *NullableQosFlowUsageReport

func (NullableQosFlowUsageReport) Get

func (NullableQosFlowUsageReport) IsSet

func (v NullableQosFlowUsageReport) IsSet() bool

func (NullableQosFlowUsageReport) MarshalJSON

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

func (*NullableQosFlowUsageReport) Set

func (*NullableQosFlowUsageReport) UnmarshalJSON

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

func (*NullableQosFlowUsageReport) Unset

func (v *NullableQosFlowUsageReport) Unset()

type NullableQosMonitoringInfo

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

func NewNullableQosMonitoringInfo

func NewNullableQosMonitoringInfo(val *QosMonitoringInfo) *NullableQosMonitoringInfo

func (NullableQosMonitoringInfo) Get

func (NullableQosMonitoringInfo) IsSet

func (v NullableQosMonitoringInfo) IsSet() bool

func (NullableQosMonitoringInfo) MarshalJSON

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

func (*NullableQosMonitoringInfo) Set

func (*NullableQosMonitoringInfo) UnmarshalJSON

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

func (*NullableQosMonitoringInfo) Unset

func (v *NullableQosMonitoringInfo) Unset()

type NullableQosMonitoringReq

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

func NewNullableQosMonitoringReq

func NewNullableQosMonitoringReq(val *QosMonitoringReq) *NullableQosMonitoringReq

func (NullableQosMonitoringReq) Get

func (NullableQosMonitoringReq) IsSet

func (v NullableQosMonitoringReq) IsSet() bool

func (NullableQosMonitoringReq) MarshalJSON

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

func (*NullableQosMonitoringReq) Set

func (*NullableQosMonitoringReq) UnmarshalJSON

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

func (*NullableQosMonitoringReq) Unset

func (v *NullableQosMonitoringReq) 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 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 NullableRedirectResponse

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

func NewNullableRedirectResponse

func NewNullableRedirectResponse(val *RedirectResponse) *NullableRedirectResponse

func (NullableRedirectResponse) Get

func (NullableRedirectResponse) IsSet

func (v NullableRedirectResponse) IsSet() bool

func (NullableRedirectResponse) MarshalJSON

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

func (*NullableRedirectResponse) Set

func (*NullableRedirectResponse) UnmarshalJSON

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

func (*NullableRedirectResponse) Unset

func (v *NullableRedirectResponse) Unset()

type NullableRedundantPduSessionInformation

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

func (NullableRedundantPduSessionInformation) Get

func (NullableRedundantPduSessionInformation) IsSet

func (NullableRedundantPduSessionInformation) MarshalJSON

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

func (*NullableRedundantPduSessionInformation) Set

func (*NullableRedundantPduSessionInformation) UnmarshalJSON

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

func (*NullableRedundantPduSessionInformation) Unset

type NullableRefToBinaryData

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

func NewNullableRefToBinaryData

func NewNullableRefToBinaryData(val *RefToBinaryData) *NullableRefToBinaryData

func (NullableRefToBinaryData) Get

func (NullableRefToBinaryData) IsSet

func (v NullableRefToBinaryData) IsSet() bool

func (NullableRefToBinaryData) MarshalJSON

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

func (*NullableRefToBinaryData) Set

func (*NullableRefToBinaryData) UnmarshalJSON

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

func (*NullableRefToBinaryData) Unset

func (v *NullableRefToBinaryData) Unset()

type NullableReflectiveQoSAttribute

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

func (NullableReflectiveQoSAttribute) Get

func (NullableReflectiveQoSAttribute) IsSet

func (NullableReflectiveQoSAttribute) MarshalJSON

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

func (*NullableReflectiveQoSAttribute) Set

func (*NullableReflectiveQoSAttribute) UnmarshalJSON

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

func (*NullableReflectiveQoSAttribute) Unset

func (v *NullableReflectiveQoSAttribute) Unset()

type NullableReleaseData

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

func NewNullableReleaseData

func NewNullableReleaseData(val *ReleaseData) *NullableReleaseData

func (NullableReleaseData) Get

func (NullableReleaseData) IsSet

func (v NullableReleaseData) IsSet() bool

func (NullableReleaseData) MarshalJSON

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

func (*NullableReleaseData) Set

func (v *NullableReleaseData) Set(val *ReleaseData)

func (*NullableReleaseData) UnmarshalJSON

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

func (*NullableReleaseData) Unset

func (v *NullableReleaseData) Unset()

type NullableReleasePduSession200Response

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

func (NullableReleasePduSession200Response) Get

func (NullableReleasePduSession200Response) IsSet

func (NullableReleasePduSession200Response) MarshalJSON

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

func (*NullableReleasePduSession200Response) Set

func (*NullableReleasePduSession200Response) UnmarshalJSON

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

func (*NullableReleasePduSession200Response) Unset

type NullableReleasePduSessionRequest

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

func (NullableReleasePduSessionRequest) Get

func (NullableReleasePduSessionRequest) IsSet

func (NullableReleasePduSessionRequest) MarshalJSON

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

func (*NullableReleasePduSessionRequest) Set

func (*NullableReleasePduSessionRequest) UnmarshalJSON

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

func (*NullableReleasePduSessionRequest) Unset

type NullableReleaseSmContextRequest

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

func (NullableReleaseSmContextRequest) Get

func (NullableReleaseSmContextRequest) IsSet

func (NullableReleaseSmContextRequest) MarshalJSON

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

func (*NullableReleaseSmContextRequest) Set

func (*NullableReleaseSmContextRequest) UnmarshalJSON

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

func (*NullableReleaseSmContextRequest) Unset

type NullableReleasedData

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

func NewNullableReleasedData

func NewNullableReleasedData(val *ReleasedData) *NullableReleasedData

func (NullableReleasedData) Get

func (NullableReleasedData) IsSet

func (v NullableReleasedData) IsSet() bool

func (NullableReleasedData) MarshalJSON

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

func (*NullableReleasedData) Set

func (v *NullableReleasedData) Set(val *ReleasedData)

func (*NullableReleasedData) UnmarshalJSON

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

func (*NullableReleasedData) Unset

func (v *NullableReleasedData) Unset()

type NullableRequestIndication

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

func NewNullableRequestIndication

func NewNullableRequestIndication(val *RequestIndication) *NullableRequestIndication

func (NullableRequestIndication) Get

func (NullableRequestIndication) IsSet

func (v NullableRequestIndication) IsSet() bool

func (NullableRequestIndication) MarshalJSON

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

func (*NullableRequestIndication) Set

func (*NullableRequestIndication) UnmarshalJSON

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

func (*NullableRequestIndication) Unset

func (v *NullableRequestIndication) Unset()

type NullableRequestType

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

func NewNullableRequestType

func NewNullableRequestType(val *RequestType) *NullableRequestType

func (NullableRequestType) Get

func (NullableRequestType) IsSet

func (v NullableRequestType) IsSet() bool

func (NullableRequestType) MarshalJSON

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

func (*NullableRequestType) Set

func (v *NullableRequestType) Set(val *RequestType)

func (*NullableRequestType) UnmarshalJSON

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

func (*NullableRequestType) Unset

func (v *NullableRequestType) Unset()

type NullableResourceStatus

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

func NewNullableResourceStatus

func NewNullableResourceStatus(val *ResourceStatus) *NullableResourceStatus

func (NullableResourceStatus) Get

func (NullableResourceStatus) IsSet

func (v NullableResourceStatus) IsSet() bool

func (NullableResourceStatus) MarshalJSON

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

func (*NullableResourceStatus) Set

func (*NullableResourceStatus) UnmarshalJSON

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

func (*NullableResourceStatus) Unset

func (v *NullableResourceStatus) Unset()

type NullableRetrieveData

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

func NewNullableRetrieveData

func NewNullableRetrieveData(val *RetrieveData) *NullableRetrieveData

func (NullableRetrieveData) Get

func (NullableRetrieveData) IsSet

func (v NullableRetrieveData) IsSet() bool

func (NullableRetrieveData) MarshalJSON

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

func (*NullableRetrieveData) Set

func (v *NullableRetrieveData) Set(val *RetrieveData)

func (*NullableRetrieveData) UnmarshalJSON

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

func (*NullableRetrieveData) Unset

func (v *NullableRetrieveData) Unset()

type NullableRetrievedData

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

func NewNullableRetrievedData

func NewNullableRetrievedData(val *RetrievedData) *NullableRetrievedData

func (NullableRetrievedData) Get

func (NullableRetrievedData) IsSet

func (v NullableRetrievedData) IsSet() bool

func (NullableRetrievedData) MarshalJSON

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

func (*NullableRetrievedData) Set

func (v *NullableRetrievedData) Set(val *RetrievedData)

func (*NullableRetrievedData) UnmarshalJSON

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

func (*NullableRetrievedData) Unset

func (v *NullableRetrievedData) 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 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 NullableRsn

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

func NewNullableRsn

func NewNullableRsn(val *Rsn) *NullableRsn

func (NullableRsn) Get

func (v NullableRsn) Get() *Rsn

func (NullableRsn) IsSet

func (v NullableRsn) IsSet() bool

func (NullableRsn) MarshalJSON

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

func (*NullableRsn) Set

func (v *NullableRsn) Set(val *Rsn)

func (*NullableRsn) UnmarshalJSON

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

func (*NullableRsn) Unset

func (v *NullableRsn) Unset()

type NullableSatelliteBackhaulCategory

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

func (NullableSatelliteBackhaulCategory) Get

func (NullableSatelliteBackhaulCategory) IsSet

func (NullableSatelliteBackhaulCategory) MarshalJSON

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

func (*NullableSatelliteBackhaulCategory) Set

func (*NullableSatelliteBackhaulCategory) UnmarshalJSON

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

func (*NullableSatelliteBackhaulCategory) Unset

type NullableSbiBindingLevel

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

func NewNullableSbiBindingLevel

func NewNullableSbiBindingLevel(val *SbiBindingLevel) *NullableSbiBindingLevel

func (NullableSbiBindingLevel) Get

func (NullableSbiBindingLevel) IsSet

func (v NullableSbiBindingLevel) IsSet() bool

func (NullableSbiBindingLevel) MarshalJSON

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

func (*NullableSbiBindingLevel) Set

func (*NullableSbiBindingLevel) UnmarshalJSON

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

func (*NullableSbiBindingLevel) Unset

func (v *NullableSbiBindingLevel) Unset()

type NullableScheduledCommunicationTime

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

func (NullableScheduledCommunicationTime) Get

func (NullableScheduledCommunicationTime) IsSet

func (NullableScheduledCommunicationTime) MarshalJSON

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

func (*NullableScheduledCommunicationTime) Set

func (*NullableScheduledCommunicationTime) UnmarshalJSON

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

func (*NullableScheduledCommunicationTime) Unset

type NullableScheduledCommunicationType

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

func (NullableScheduledCommunicationType) Get

func (NullableScheduledCommunicationType) IsSet

func (NullableScheduledCommunicationType) MarshalJSON

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

func (*NullableScheduledCommunicationType) Set

func (*NullableScheduledCommunicationType) UnmarshalJSON

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

func (*NullableScheduledCommunicationType) Unset

type NullableSecondaryRatUsageInfo

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

func (NullableSecondaryRatUsageInfo) Get

func (NullableSecondaryRatUsageInfo) IsSet

func (NullableSecondaryRatUsageInfo) MarshalJSON

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

func (*NullableSecondaryRatUsageInfo) Set

func (*NullableSecondaryRatUsageInfo) UnmarshalJSON

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

func (*NullableSecondaryRatUsageInfo) Unset

func (v *NullableSecondaryRatUsageInfo) Unset()

type NullableSecondaryRatUsageReport

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

func (NullableSecondaryRatUsageReport) Get

func (NullableSecondaryRatUsageReport) IsSet

func (NullableSecondaryRatUsageReport) MarshalJSON

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

func (*NullableSecondaryRatUsageReport) Set

func (*NullableSecondaryRatUsageReport) UnmarshalJSON

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

func (*NullableSecondaryRatUsageReport) Unset

type NullableSecurityResult

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

func NewNullableSecurityResult

func NewNullableSecurityResult(val *SecurityResult) *NullableSecurityResult

func (NullableSecurityResult) Get

func (NullableSecurityResult) IsSet

func (v NullableSecurityResult) IsSet() bool

func (NullableSecurityResult) MarshalJSON

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

func (*NullableSecurityResult) Set

func (*NullableSecurityResult) UnmarshalJSON

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

func (*NullableSecurityResult) Unset

func (v *NullableSecurityResult) Unset()

type NullableSendMoDataReqData

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

func NewNullableSendMoDataReqData

func NewNullableSendMoDataReqData(val *SendMoDataReqData) *NullableSendMoDataReqData

func (NullableSendMoDataReqData) Get

func (NullableSendMoDataReqData) IsSet

func (v NullableSendMoDataReqData) IsSet() bool

func (NullableSendMoDataReqData) MarshalJSON

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

func (*NullableSendMoDataReqData) Set

func (*NullableSendMoDataReqData) UnmarshalJSON

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

func (*NullableSendMoDataReqData) Unset

func (v *NullableSendMoDataReqData) Unset()

type NullableSendMoDataRequest

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

func NewNullableSendMoDataRequest

func NewNullableSendMoDataRequest(val *SendMoDataRequest) *NullableSendMoDataRequest

func (NullableSendMoDataRequest) Get

func (NullableSendMoDataRequest) IsSet

func (v NullableSendMoDataRequest) IsSet() bool

func (NullableSendMoDataRequest) MarshalJSON

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

func (*NullableSendMoDataRequest) Set

func (*NullableSendMoDataRequest) UnmarshalJSON

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

func (*NullableSendMoDataRequest) Unset

func (v *NullableSendMoDataRequest) Unset()

type NullableServerAddressingInfo

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

func NewNullableServerAddressingInfo

func NewNullableServerAddressingInfo(val *ServerAddressingInfo) *NullableServerAddressingInfo

func (NullableServerAddressingInfo) Get

func (NullableServerAddressingInfo) IsSet

func (NullableServerAddressingInfo) MarshalJSON

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

func (*NullableServerAddressingInfo) Set

func (*NullableServerAddressingInfo) UnmarshalJSON

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

func (*NullableServerAddressingInfo) Unset

func (v *NullableServerAddressingInfo) 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 NullableServiceName

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

func NewNullableServiceName

func NewNullableServiceName(val *ServiceName) *NullableServiceName

func (NullableServiceName) Get

func (NullableServiceName) IsSet

func (v NullableServiceName) IsSet() bool

func (NullableServiceName) MarshalJSON

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

func (*NullableServiceName) Set

func (v *NullableServiceName) Set(val *ServiceName)

func (*NullableServiceName) UnmarshalJSON

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

func (*NullableServiceName) Unset

func (v *NullableServiceName) Unset()

type NullableSmContext

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

func NewNullableSmContext

func NewNullableSmContext(val *SmContext) *NullableSmContext

func (NullableSmContext) Get

func (v NullableSmContext) Get() *SmContext

func (NullableSmContext) IsSet

func (v NullableSmContext) IsSet() bool

func (NullableSmContext) MarshalJSON

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

func (*NullableSmContext) Set

func (v *NullableSmContext) Set(val *SmContext)

func (*NullableSmContext) UnmarshalJSON

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

func (*NullableSmContext) Unset

func (v *NullableSmContext) Unset()

type NullableSmContextCreateData

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

func NewNullableSmContextCreateData

func NewNullableSmContextCreateData(val *SmContextCreateData) *NullableSmContextCreateData

func (NullableSmContextCreateData) Get

func (NullableSmContextCreateData) IsSet

func (NullableSmContextCreateData) MarshalJSON

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

func (*NullableSmContextCreateData) Set

func (*NullableSmContextCreateData) UnmarshalJSON

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

func (*NullableSmContextCreateData) Unset

func (v *NullableSmContextCreateData) Unset()

type NullableSmContextCreateError

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

func NewNullableSmContextCreateError

func NewNullableSmContextCreateError(val *SmContextCreateError) *NullableSmContextCreateError

func (NullableSmContextCreateError) Get

func (NullableSmContextCreateError) IsSet

func (NullableSmContextCreateError) MarshalJSON

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

func (*NullableSmContextCreateError) Set

func (*NullableSmContextCreateError) UnmarshalJSON

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

func (*NullableSmContextCreateError) Unset

func (v *NullableSmContextCreateError) Unset()

type NullableSmContextCreatedData

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

func NewNullableSmContextCreatedData

func NewNullableSmContextCreatedData(val *SmContextCreatedData) *NullableSmContextCreatedData

func (NullableSmContextCreatedData) Get

func (NullableSmContextCreatedData) IsSet

func (NullableSmContextCreatedData) MarshalJSON

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

func (*NullableSmContextCreatedData) Set

func (*NullableSmContextCreatedData) UnmarshalJSON

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

func (*NullableSmContextCreatedData) Unset

func (v *NullableSmContextCreatedData) Unset()

type NullableSmContextReleaseData

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

func NewNullableSmContextReleaseData

func NewNullableSmContextReleaseData(val *SmContextReleaseData) *NullableSmContextReleaseData

func (NullableSmContextReleaseData) Get

func (NullableSmContextReleaseData) IsSet

func (NullableSmContextReleaseData) MarshalJSON

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

func (*NullableSmContextReleaseData) Set

func (*NullableSmContextReleaseData) UnmarshalJSON

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

func (*NullableSmContextReleaseData) Unset

func (v *NullableSmContextReleaseData) Unset()

type NullableSmContextReleasedData

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

func (NullableSmContextReleasedData) Get

func (NullableSmContextReleasedData) IsSet

func (NullableSmContextReleasedData) MarshalJSON

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

func (*NullableSmContextReleasedData) Set

func (*NullableSmContextReleasedData) UnmarshalJSON

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

func (*NullableSmContextReleasedData) Unset

func (v *NullableSmContextReleasedData) Unset()

type NullableSmContextRetrieveData

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

func (NullableSmContextRetrieveData) Get

func (NullableSmContextRetrieveData) IsSet

func (NullableSmContextRetrieveData) MarshalJSON

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

func (*NullableSmContextRetrieveData) Set

func (*NullableSmContextRetrieveData) UnmarshalJSON

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

func (*NullableSmContextRetrieveData) Unset

func (v *NullableSmContextRetrieveData) Unset()

type NullableSmContextRetrievedData

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

func (NullableSmContextRetrievedData) Get

func (NullableSmContextRetrievedData) IsSet

func (NullableSmContextRetrievedData) MarshalJSON

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

func (*NullableSmContextRetrievedData) Set

func (*NullableSmContextRetrievedData) UnmarshalJSON

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

func (*NullableSmContextRetrievedData) Unset

func (v *NullableSmContextRetrievedData) Unset()

type NullableSmContextStatusNotification

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

func (NullableSmContextStatusNotification) Get

func (NullableSmContextStatusNotification) IsSet

func (NullableSmContextStatusNotification) MarshalJSON

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

func (*NullableSmContextStatusNotification) Set

func (*NullableSmContextStatusNotification) UnmarshalJSON

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

func (*NullableSmContextStatusNotification) Unset

type NullableSmContextType

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

func NewNullableSmContextType

func NewNullableSmContextType(val *SmContextType) *NullableSmContextType

func (NullableSmContextType) Get

func (NullableSmContextType) IsSet

func (v NullableSmContextType) IsSet() bool

func (NullableSmContextType) MarshalJSON

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

func (*NullableSmContextType) Set

func (v *NullableSmContextType) Set(val *SmContextType)

func (*NullableSmContextType) UnmarshalJSON

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

func (*NullableSmContextType) Unset

func (v *NullableSmContextType) Unset()

type NullableSmContextUpdateData

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

func NewNullableSmContextUpdateData

func NewNullableSmContextUpdateData(val *SmContextUpdateData) *NullableSmContextUpdateData

func (NullableSmContextUpdateData) Get

func (NullableSmContextUpdateData) IsSet

func (NullableSmContextUpdateData) MarshalJSON

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

func (*NullableSmContextUpdateData) Set

func (*NullableSmContextUpdateData) UnmarshalJSON

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

func (*NullableSmContextUpdateData) Unset

func (v *NullableSmContextUpdateData) Unset()

type NullableSmContextUpdateError

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

func NewNullableSmContextUpdateError

func NewNullableSmContextUpdateError(val *SmContextUpdateError) *NullableSmContextUpdateError

func (NullableSmContextUpdateError) Get

func (NullableSmContextUpdateError) IsSet

func (NullableSmContextUpdateError) MarshalJSON

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

func (*NullableSmContextUpdateError) Set

func (*NullableSmContextUpdateError) UnmarshalJSON

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

func (*NullableSmContextUpdateError) Unset

func (v *NullableSmContextUpdateError) Unset()

type NullableSmContextUpdatedData

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

func NewNullableSmContextUpdatedData

func NewNullableSmContextUpdatedData(val *SmContextUpdatedData) *NullableSmContextUpdatedData

func (NullableSmContextUpdatedData) Get

func (NullableSmContextUpdatedData) IsSet

func (NullableSmContextUpdatedData) MarshalJSON

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

func (*NullableSmContextUpdatedData) Set

func (*NullableSmContextUpdatedData) UnmarshalJSON

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

func (*NullableSmContextUpdatedData) Unset

func (v *NullableSmContextUpdatedData) Unset()

type NullableSmallDataRateStatus

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

func NewNullableSmallDataRateStatus

func NewNullableSmallDataRateStatus(val *SmallDataRateStatus) *NullableSmallDataRateStatus

func (NullableSmallDataRateStatus) Get

func (NullableSmallDataRateStatus) IsSet

func (NullableSmallDataRateStatus) MarshalJSON

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

func (*NullableSmallDataRateStatus) Set

func (*NullableSmallDataRateStatus) UnmarshalJSON

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

func (*NullableSmallDataRateStatus) Unset

func (v *NullableSmallDataRateStatus) Unset()

type NullableSmfSelectionType

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

func NewNullableSmfSelectionType

func NewNullableSmfSelectionType(val *SmfSelectionType) *NullableSmfSelectionType

func (NullableSmfSelectionType) Get

func (NullableSmfSelectionType) IsSet

func (v NullableSmfSelectionType) IsSet() bool

func (NullableSmfSelectionType) MarshalJSON

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

func (*NullableSmfSelectionType) Set

func (*NullableSmfSelectionType) UnmarshalJSON

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

func (*NullableSmfSelectionType) Unset

func (v *NullableSmfSelectionType) 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 NullableStationaryIndication

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

func NewNullableStationaryIndication

func NewNullableStationaryIndication(val *StationaryIndication) *NullableStationaryIndication

func (NullableStationaryIndication) Get

func (NullableStationaryIndication) IsSet

func (NullableStationaryIndication) MarshalJSON

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

func (*NullableStationaryIndication) Set

func (*NullableStationaryIndication) UnmarshalJSON

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

func (*NullableStationaryIndication) Unset

func (v *NullableStationaryIndication) Unset()

type NullableStatusInfo

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

func NewNullableStatusInfo

func NewNullableStatusInfo(val *StatusInfo) *NullableStatusInfo

func (NullableStatusInfo) Get

func (v NullableStatusInfo) Get() *StatusInfo

func (NullableStatusInfo) IsSet

func (v NullableStatusInfo) IsSet() bool

func (NullableStatusInfo) MarshalJSON

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

func (*NullableStatusInfo) Set

func (v *NullableStatusInfo) Set(val *StatusInfo)

func (*NullableStatusInfo) UnmarshalJSON

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

func (*NullableStatusInfo) Unset

func (v *NullableStatusInfo) Unset()

type NullableStatusNotification

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

func NewNullableStatusNotification

func NewNullableStatusNotification(val *StatusNotification) *NullableStatusNotification

func (NullableStatusNotification) Get

func (NullableStatusNotification) IsSet

func (v NullableStatusNotification) IsSet() bool

func (NullableStatusNotification) MarshalJSON

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

func (*NullableStatusNotification) Set

func (*NullableStatusNotification) UnmarshalJSON

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

func (*NullableStatusNotification) Unset

func (v *NullableStatusNotification) 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 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 NullableTargetDnaiInfo

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

func NewNullableTargetDnaiInfo

func NewNullableTargetDnaiInfo(val *TargetDnaiInfo) *NullableTargetDnaiInfo

func (NullableTargetDnaiInfo) Get

func (NullableTargetDnaiInfo) IsSet

func (v NullableTargetDnaiInfo) IsSet() bool

func (NullableTargetDnaiInfo) MarshalJSON

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

func (*NullableTargetDnaiInfo) Set

func (*NullableTargetDnaiInfo) UnmarshalJSON

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

func (*NullableTargetDnaiInfo) Unset

func (v *NullableTargetDnaiInfo) 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 NullableTngfInfo

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

func NewNullableTngfInfo

func NewNullableTngfInfo(val *TngfInfo) *NullableTngfInfo

func (NullableTngfInfo) Get

func (v NullableTngfInfo) Get() *TngfInfo

func (NullableTngfInfo) IsSet

func (v NullableTngfInfo) IsSet() bool

func (NullableTngfInfo) MarshalJSON

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

func (*NullableTngfInfo) Set

func (v *NullableTngfInfo) Set(val *TngfInfo)

func (*NullableTngfInfo) UnmarshalJSON

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

func (*NullableTngfInfo) Unset

func (v *NullableTngfInfo) Unset()

type NullableTraceData

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

func NewNullableTraceData

func NewNullableTraceData(val *TraceData) *NullableTraceData

func (NullableTraceData) Get

func (v NullableTraceData) Get() *TraceData

func (NullableTraceData) IsSet

func (v NullableTraceData) IsSet() bool

func (NullableTraceData) MarshalJSON

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

func (*NullableTraceData) Set

func (v *NullableTraceData) Set(val *TraceData)

func (*NullableTraceData) UnmarshalJSON

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

func (*NullableTraceData) Unset

func (v *NullableTraceData) Unset()

type NullableTraceDepth

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

func NewNullableTraceDepth

func NewNullableTraceDepth(val *TraceDepth) *NullableTraceDepth

func (NullableTraceDepth) Get

func (v NullableTraceDepth) Get() *TraceDepth

func (NullableTraceDepth) IsSet

func (v NullableTraceDepth) IsSet() bool

func (NullableTraceDepth) MarshalJSON

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

func (*NullableTraceDepth) Set

func (v *NullableTraceDepth) Set(val *TraceDepth)

func (*NullableTraceDepth) UnmarshalJSON

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

func (*NullableTraceDepth) Unset

func (v *NullableTraceDepth) Unset()

type NullableTrafficProfile

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

func NewNullableTrafficProfile

func NewNullableTrafficProfile(val *TrafficProfile) *NullableTrafficProfile

func (NullableTrafficProfile) Get

func (NullableTrafficProfile) IsSet

func (v NullableTrafficProfile) IsSet() bool

func (NullableTrafficProfile) MarshalJSON

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

func (*NullableTrafficProfile) Set

func (*NullableTrafficProfile) UnmarshalJSON

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

func (*NullableTrafficProfile) Unset

func (v *NullableTrafficProfile) Unset()

type NullableTransferMoDataReqData

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

func (NullableTransferMoDataReqData) Get

func (NullableTransferMoDataReqData) IsSet

func (NullableTransferMoDataReqData) MarshalJSON

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

func (*NullableTransferMoDataReqData) Set

func (*NullableTransferMoDataReqData) UnmarshalJSON

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

func (*NullableTransferMoDataReqData) Unset

func (v *NullableTransferMoDataReqData) Unset()

type NullableTransferMoDataRequest

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

func (NullableTransferMoDataRequest) Get

func (NullableTransferMoDataRequest) IsSet

func (NullableTransferMoDataRequest) MarshalJSON

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

func (*NullableTransferMoDataRequest) Set

func (*NullableTransferMoDataRequest) UnmarshalJSON

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

func (*NullableTransferMoDataRequest) Unset

func (v *NullableTransferMoDataRequest) Unset()

type NullableTransferMtDataAddInfo

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

func (NullableTransferMtDataAddInfo) Get

func (NullableTransferMtDataAddInfo) IsSet

func (NullableTransferMtDataAddInfo) MarshalJSON

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

func (*NullableTransferMtDataAddInfo) Set

func (*NullableTransferMtDataAddInfo) UnmarshalJSON

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

func (*NullableTransferMtDataAddInfo) Unset

func (v *NullableTransferMtDataAddInfo) Unset()

type NullableTransferMtDataError

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

func NewNullableTransferMtDataError

func NewNullableTransferMtDataError(val *TransferMtDataError) *NullableTransferMtDataError

func (NullableTransferMtDataError) Get

func (NullableTransferMtDataError) IsSet

func (NullableTransferMtDataError) MarshalJSON

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

func (*NullableTransferMtDataError) Set

func (*NullableTransferMtDataError) UnmarshalJSON

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

func (*NullableTransferMtDataError) Unset

func (v *NullableTransferMtDataError) Unset()

type NullableTransferMtDataIsmfRequest

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

func (NullableTransferMtDataIsmfRequest) Get

func (NullableTransferMtDataIsmfRequest) IsSet

func (NullableTransferMtDataIsmfRequest) MarshalJSON

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

func (*NullableTransferMtDataIsmfRequest) Set

func (*NullableTransferMtDataIsmfRequest) UnmarshalJSON

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

func (*NullableTransferMtDataIsmfRequest) Unset

type NullableTransferMtDataReqData

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

func (NullableTransferMtDataReqData) Get

func (NullableTransferMtDataReqData) IsSet

func (NullableTransferMtDataReqData) MarshalJSON

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

func (*NullableTransferMtDataReqData) Set

func (*NullableTransferMtDataReqData) UnmarshalJSON

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

func (*NullableTransferMtDataReqData) Unset

func (v *NullableTransferMtDataReqData) 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 NullableTunnelInfo

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

func NewNullableTunnelInfo

func NewNullableTunnelInfo(val *TunnelInfo) *NullableTunnelInfo

func (NullableTunnelInfo) Get

func (v NullableTunnelInfo) Get() *TunnelInfo

func (NullableTunnelInfo) IsSet

func (v NullableTunnelInfo) IsSet() bool

func (NullableTunnelInfo) MarshalJSON

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

func (*NullableTunnelInfo) Set

func (v *NullableTunnelInfo) Set(val *TunnelInfo)

func (*NullableTunnelInfo) UnmarshalJSON

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

func (*NullableTunnelInfo) Unset

func (v *NullableTunnelInfo) Unset()

type NullableTwapId

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

func NewNullableTwapId

func NewNullableTwapId(val *TwapId) *NullableTwapId

func (NullableTwapId) Get

func (v NullableTwapId) Get() *TwapId

func (NullableTwapId) IsSet

func (v NullableTwapId) IsSet() bool

func (NullableTwapId) MarshalJSON

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

func (*NullableTwapId) Set

func (v *NullableTwapId) Set(val *TwapId)

func (*NullableTwapId) UnmarshalJSON

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

func (*NullableTwapId) Unset

func (v *NullableTwapId) Unset()

type NullableTwifInfo

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

func NewNullableTwifInfo

func NewNullableTwifInfo(val *TwifInfo) *NullableTwifInfo

func (NullableTwifInfo) Get

func (v NullableTwifInfo) Get() *TwifInfo

func (NullableTwifInfo) IsSet

func (v NullableTwifInfo) IsSet() bool

func (NullableTwifInfo) MarshalJSON

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

func (*NullableTwifInfo) Set

func (v *NullableTwifInfo) Set(val *TwifInfo)

func (*NullableTwifInfo) UnmarshalJSON

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

func (*NullableTwifInfo) Unset

func (v *NullableTwifInfo) Unset()

type NullableUlclBpInformation

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

func NewNullableUlclBpInformation

func NewNullableUlclBpInformation(val *UlclBpInformation) *NullableUlclBpInformation

func (NullableUlclBpInformation) Get

func (NullableUlclBpInformation) IsSet

func (v NullableUlclBpInformation) IsSet() bool

func (NullableUlclBpInformation) MarshalJSON

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

func (*NullableUlclBpInformation) Set

func (*NullableUlclBpInformation) UnmarshalJSON

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

func (*NullableUlclBpInformation) Unset

func (v *NullableUlclBpInformation) Unset()

type NullableUnavailableAccessIndication

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

func (NullableUnavailableAccessIndication) Get

func (NullableUnavailableAccessIndication) IsSet

func (NullableUnavailableAccessIndication) MarshalJSON

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

func (*NullableUnavailableAccessIndication) Set

func (*NullableUnavailableAccessIndication) UnmarshalJSON

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

func (*NullableUnavailableAccessIndication) Unset

type NullableUpCnxState

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

func NewNullableUpCnxState

func NewNullableUpCnxState(val *UpCnxState) *NullableUpCnxState

func (NullableUpCnxState) Get

func (v NullableUpCnxState) Get() *UpCnxState

func (NullableUpCnxState) IsSet

func (v NullableUpCnxState) IsSet() bool

func (NullableUpCnxState) MarshalJSON

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

func (*NullableUpCnxState) Set

func (v *NullableUpCnxState) Set(val *UpCnxState)

func (*NullableUpCnxState) UnmarshalJSON

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

func (*NullableUpCnxState) Unset

func (v *NullableUpCnxState) Unset()

type NullableUpConfidentiality

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

func NewNullableUpConfidentiality

func NewNullableUpConfidentiality(val *UpConfidentiality) *NullableUpConfidentiality

func (NullableUpConfidentiality) Get

func (NullableUpConfidentiality) IsSet

func (v NullableUpConfidentiality) IsSet() bool

func (NullableUpConfidentiality) MarshalJSON

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

func (*NullableUpConfidentiality) Set

func (*NullableUpConfidentiality) UnmarshalJSON

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

func (*NullableUpConfidentiality) Unset

func (v *NullableUpConfidentiality) Unset()

type NullableUpIntegrity

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

func NewNullableUpIntegrity

func NewNullableUpIntegrity(val *UpIntegrity) *NullableUpIntegrity

func (NullableUpIntegrity) Get

func (NullableUpIntegrity) IsSet

func (v NullableUpIntegrity) IsSet() bool

func (NullableUpIntegrity) MarshalJSON

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

func (*NullableUpIntegrity) Set

func (v *NullableUpIntegrity) Set(val *UpIntegrity)

func (*NullableUpIntegrity) UnmarshalJSON

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

func (*NullableUpIntegrity) Unset

func (v *NullableUpIntegrity) Unset()

type NullableUpSecurity

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

func NewNullableUpSecurity

func NewNullableUpSecurity(val *UpSecurity) *NullableUpSecurity

func (NullableUpSecurity) Get

func (v NullableUpSecurity) Get() *UpSecurity

func (NullableUpSecurity) IsSet

func (v NullableUpSecurity) IsSet() bool

func (NullableUpSecurity) MarshalJSON

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

func (*NullableUpSecurity) Set

func (v *NullableUpSecurity) Set(val *UpSecurity)

func (*NullableUpSecurity) UnmarshalJSON

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

func (*NullableUpSecurity) Unset

func (v *NullableUpSecurity) Unset()

type NullableUpSecurityInfo

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

func NewNullableUpSecurityInfo

func NewNullableUpSecurityInfo(val *UpSecurityInfo) *NullableUpSecurityInfo

func (NullableUpSecurityInfo) Get

func (NullableUpSecurityInfo) IsSet

func (v NullableUpSecurityInfo) IsSet() bool

func (NullableUpSecurityInfo) MarshalJSON

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

func (*NullableUpSecurityInfo) Set

func (*NullableUpSecurityInfo) UnmarshalJSON

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

func (*NullableUpSecurityInfo) Unset

func (v *NullableUpSecurityInfo) Unset()

type NullableUpdatePduSession200Response

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

func (NullableUpdatePduSession200Response) Get

func (NullableUpdatePduSession200Response) IsSet

func (NullableUpdatePduSession200Response) MarshalJSON

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

func (*NullableUpdatePduSession200Response) Set

func (*NullableUpdatePduSession200Response) UnmarshalJSON

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

func (*NullableUpdatePduSession200Response) Unset

type NullableUpdatePduSession400Response

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

func (NullableUpdatePduSession400Response) Get

func (NullableUpdatePduSession400Response) IsSet

func (NullableUpdatePduSession400Response) MarshalJSON

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

func (*NullableUpdatePduSession400Response) Set

func (*NullableUpdatePduSession400Response) UnmarshalJSON

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

func (*NullableUpdatePduSession400Response) Unset

type NullableUpdatePduSessionRequest

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

func (NullableUpdatePduSessionRequest) Get

func (NullableUpdatePduSessionRequest) IsSet

func (NullableUpdatePduSessionRequest) MarshalJSON

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

func (*NullableUpdatePduSessionRequest) Set

func (*NullableUpdatePduSessionRequest) UnmarshalJSON

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

func (*NullableUpdatePduSessionRequest) Unset

type NullableUpdateSmContext200Response

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

func (NullableUpdateSmContext200Response) Get

func (NullableUpdateSmContext200Response) IsSet

func (NullableUpdateSmContext200Response) MarshalJSON

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

func (*NullableUpdateSmContext200Response) Set

func (*NullableUpdateSmContext200Response) UnmarshalJSON

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

func (*NullableUpdateSmContext200Response) Unset

type NullableUpdateSmContext400Response

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

func (NullableUpdateSmContext400Response) Get

func (NullableUpdateSmContext400Response) IsSet

func (NullableUpdateSmContext400Response) MarshalJSON

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

func (*NullableUpdateSmContext400Response) Set

func (*NullableUpdateSmContext400Response) UnmarshalJSON

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

func (*NullableUpdateSmContext400Response) Unset

type NullableUpdateSmContextRequest

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

func (NullableUpdateSmContextRequest) Get

func (NullableUpdateSmContextRequest) IsSet

func (NullableUpdateSmContextRequest) MarshalJSON

func (v NullableUpdateSmContextRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateSmContextRequest) Set

func (*NullableUpdateSmContextRequest) UnmarshalJSON

func (v *NullableUpdateSmContextRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateSmContextRequest) Unset

func (v *NullableUpdateSmContextRequest) 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 NullableVolumeTimedReport

type NullableVolumeTimedReport struct {
	// contains filtered or unexported fields
}

func NewNullableVolumeTimedReport

func NewNullableVolumeTimedReport(val *VolumeTimedReport) *NullableVolumeTimedReport

func (NullableVolumeTimedReport) Get

func (NullableVolumeTimedReport) IsSet

func (v NullableVolumeTimedReport) IsSet() bool

func (NullableVolumeTimedReport) MarshalJSON

func (v NullableVolumeTimedReport) MarshalJSON() ([]byte, error)

func (*NullableVolumeTimedReport) Set

func (*NullableVolumeTimedReport) UnmarshalJSON

func (v *NullableVolumeTimedReport) UnmarshalJSON(src []byte) error

func (*NullableVolumeTimedReport) Unset

func (v *NullableVolumeTimedReport) Unset()

type NullableVplmnQos

type NullableVplmnQos struct {
	// contains filtered or unexported fields
}

func NewNullableVplmnQos

func NewNullableVplmnQos(val *VplmnQos) *NullableVplmnQos

func (NullableVplmnQos) Get

func (v NullableVplmnQos) Get() *VplmnQos

func (NullableVplmnQos) IsSet

func (v NullableVplmnQos) IsSet() bool

func (NullableVplmnQos) MarshalJSON

func (v NullableVplmnQos) MarshalJSON() ([]byte, error)

func (*NullableVplmnQos) Set

func (v *NullableVplmnQos) Set(val *VplmnQos)

func (*NullableVplmnQos) UnmarshalJSON

func (v *NullableVplmnQos) UnmarshalJSON(src []byte) error

func (*NullableVplmnQos) Unset

func (v *NullableVplmnQos) Unset()

type NullableVsmfUpdateData

type NullableVsmfUpdateData struct {
	// contains filtered or unexported fields
}

func NewNullableVsmfUpdateData

func NewNullableVsmfUpdateData(val *VsmfUpdateData) *NullableVsmfUpdateData

func (NullableVsmfUpdateData) Get

func (NullableVsmfUpdateData) IsSet

func (v NullableVsmfUpdateData) IsSet() bool

func (NullableVsmfUpdateData) MarshalJSON

func (v NullableVsmfUpdateData) MarshalJSON() ([]byte, error)

func (*NullableVsmfUpdateData) Set

func (*NullableVsmfUpdateData) UnmarshalJSON

func (v *NullableVsmfUpdateData) UnmarshalJSON(src []byte) error

func (*NullableVsmfUpdateData) Unset

func (v *NullableVsmfUpdateData) Unset()

type NullableVsmfUpdateError

type NullableVsmfUpdateError struct {
	// contains filtered or unexported fields
}

func NewNullableVsmfUpdateError

func NewNullableVsmfUpdateError(val *VsmfUpdateError) *NullableVsmfUpdateError

func (NullableVsmfUpdateError) Get

func (NullableVsmfUpdateError) IsSet

func (v NullableVsmfUpdateError) IsSet() bool

func (NullableVsmfUpdateError) MarshalJSON

func (v NullableVsmfUpdateError) MarshalJSON() ([]byte, error)

func (*NullableVsmfUpdateError) Set

func (*NullableVsmfUpdateError) UnmarshalJSON

func (v *NullableVsmfUpdateError) UnmarshalJSON(src []byte) error

func (*NullableVsmfUpdateError) Unset

func (v *NullableVsmfUpdateError) Unset()

type NullableVsmfUpdatedData

type NullableVsmfUpdatedData struct {
	// contains filtered or unexported fields
}

func NewNullableVsmfUpdatedData

func NewNullableVsmfUpdatedData(val *VsmfUpdatedData) *NullableVsmfUpdatedData

func (NullableVsmfUpdatedData) Get

func (NullableVsmfUpdatedData) IsSet

func (v NullableVsmfUpdatedData) IsSet() bool

func (NullableVsmfUpdatedData) MarshalJSON

func (v NullableVsmfUpdatedData) MarshalJSON() ([]byte, error)

func (*NullableVsmfUpdatedData) Set

func (*NullableVsmfUpdatedData) UnmarshalJSON

func (v *NullableVsmfUpdatedData) UnmarshalJSON(src []byte) error

func (*NullableVsmfUpdatedData) Unset

func (v *NullableVsmfUpdatedData) Unset()

type NullableWAgfInfo

type NullableWAgfInfo struct {
	// contains filtered or unexported fields
}

func NewNullableWAgfInfo

func NewNullableWAgfInfo(val *WAgfInfo) *NullableWAgfInfo

func (NullableWAgfInfo) Get

func (v NullableWAgfInfo) Get() *WAgfInfo

func (NullableWAgfInfo) IsSet

func (v NullableWAgfInfo) IsSet() bool

func (NullableWAgfInfo) MarshalJSON

func (v NullableWAgfInfo) MarshalJSON() ([]byte, error)

func (*NullableWAgfInfo) Set

func (v *NullableWAgfInfo) Set(val *WAgfInfo)

func (*NullableWAgfInfo) UnmarshalJSON

func (v *NullableWAgfInfo) UnmarshalJSON(src []byte) error

func (*NullableWAgfInfo) Unset

func (v *NullableWAgfInfo) Unset()

type PDUSessionsCollectionApiService

type PDUSessionsCollectionApiService service

PDUSessionsCollectionApiService PDUSessionsCollectionApi service

func (*PDUSessionsCollectionApiService) PostPduSessions

PostPduSessions Create

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPostPduSessionsRequest

func (*PDUSessionsCollectionApiService) PostPduSessionsExecute

Execute executes the request

@return PduSessionCreatedData

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 PcfUeCallbackInfo

type PcfUeCallbackInfo struct {
	// String providing an URI formatted according to RFC 3986.
	CallbackUri string  `json:"callbackUri"`
	BindingInfo *string `json:"bindingInfo,omitempty"`
}

PcfUeCallbackInfo Contains the PCF for the UE information necessary for the PCF for the PDU session to send SM Policy Association Establishment and Termination events.

func NewPcfUeCallbackInfo

func NewPcfUeCallbackInfo(callbackUri string) *PcfUeCallbackInfo

NewPcfUeCallbackInfo instantiates a new PcfUeCallbackInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPcfUeCallbackInfoWithDefaults

func NewPcfUeCallbackInfoWithDefaults() *PcfUeCallbackInfo

NewPcfUeCallbackInfoWithDefaults instantiates a new PcfUeCallbackInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PcfUeCallbackInfo) GetBindingInfo

func (o *PcfUeCallbackInfo) GetBindingInfo() string

GetBindingInfo returns the BindingInfo field value if set, zero value otherwise.

func (*PcfUeCallbackInfo) GetBindingInfoOk

func (o *PcfUeCallbackInfo) GetBindingInfoOk() (*string, bool)

GetBindingInfoOk returns a tuple with the BindingInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfUeCallbackInfo) GetCallbackUri

func (o *PcfUeCallbackInfo) GetCallbackUri() string

GetCallbackUri returns the CallbackUri field value

func (*PcfUeCallbackInfo) GetCallbackUriOk

func (o *PcfUeCallbackInfo) GetCallbackUriOk() (*string, bool)

GetCallbackUriOk returns a tuple with the CallbackUri field value and a boolean to check if the value has been set.

func (*PcfUeCallbackInfo) HasBindingInfo

func (o *PcfUeCallbackInfo) HasBindingInfo() bool

HasBindingInfo returns a boolean if a field has been set.

func (PcfUeCallbackInfo) MarshalJSON

func (o PcfUeCallbackInfo) MarshalJSON() ([]byte, error)

func (*PcfUeCallbackInfo) SetBindingInfo

func (o *PcfUeCallbackInfo) SetBindingInfo(v string)

SetBindingInfo gets a reference to the given string and assigns it to the BindingInfo field.

func (*PcfUeCallbackInfo) SetCallbackUri

func (o *PcfUeCallbackInfo) SetCallbackUri(v string)

SetCallbackUri sets field value

func (PcfUeCallbackInfo) ToMap

func (o PcfUeCallbackInfo) ToMap() (map[string]interface{}, error)

type PduSessionContextType

type PduSessionContextType struct {
	String *string
}

PduSessionContextType Type of PDU Session information. Possible values are - AF_COORDINATION_INFO

func (*PduSessionContextType) MarshalJSON

func (src *PduSessionContextType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PduSessionContextType) UnmarshalJSON

func (dst *PduSessionContextType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PduSessionCreateData

type PduSessionCreateData struct {
	Interface *interface{}
}

PduSessionCreateData - Data within Create Request

func InterfaceAsPduSessionCreateData

func InterfaceAsPduSessionCreateData(v *interface{}) PduSessionCreateData

interface{}AsPduSessionCreateData is a convenience function that returns interface{} wrapped in PduSessionCreateData

func (*PduSessionCreateData) GetActualInstance

func (obj *PduSessionCreateData) GetActualInstance() interface{}

Get the actual instance

func (PduSessionCreateData) MarshalJSON

func (src PduSessionCreateData) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PduSessionCreateData) UnmarshalJSON

func (dst *PduSessionCreateData) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PduSessionCreateError

type PduSessionCreateError struct {
	Error        ProblemDetails   `json:"error"`
	N1smCause    *string          `json:"n1smCause,omitempty"`
	N1SmInfoToUe *RefToBinaryData `json:"n1SmInfoToUe,omitempty"`
	// indicating a time in seconds.
	BackOffTimer *int32 `json:"backOffTimer,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	RecoveryTime *time.Time `json:"recoveryTime,omitempty"`
}

PduSessionCreateError Error within Create Response

func NewPduSessionCreateError

func NewPduSessionCreateError(error_ ProblemDetails) *PduSessionCreateError

NewPduSessionCreateError instantiates a new PduSessionCreateError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPduSessionCreateErrorWithDefaults

func NewPduSessionCreateErrorWithDefaults() *PduSessionCreateError

NewPduSessionCreateErrorWithDefaults instantiates a new PduSessionCreateError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PduSessionCreateError) GetBackOffTimer

func (o *PduSessionCreateError) GetBackOffTimer() int32

GetBackOffTimer returns the BackOffTimer field value if set, zero value otherwise.

func (*PduSessionCreateError) GetBackOffTimerOk

func (o *PduSessionCreateError) GetBackOffTimerOk() (*int32, bool)

GetBackOffTimerOk returns a tuple with the BackOffTimer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionCreateError) GetError

func (o *PduSessionCreateError) GetError() ProblemDetails

GetError returns the Error field value

func (*PduSessionCreateError) GetErrorOk

func (o *PduSessionCreateError) GetErrorOk() (*ProblemDetails, bool)

GetErrorOk returns a tuple with the Error field value and a boolean to check if the value has been set.

func (*PduSessionCreateError) GetN1SmInfoToUe

func (o *PduSessionCreateError) GetN1SmInfoToUe() RefToBinaryData

GetN1SmInfoToUe returns the N1SmInfoToUe field value if set, zero value otherwise.

func (*PduSessionCreateError) GetN1SmInfoToUeOk

func (o *PduSessionCreateError) GetN1SmInfoToUeOk() (*RefToBinaryData, bool)

GetN1SmInfoToUeOk returns a tuple with the N1SmInfoToUe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionCreateError) GetN1smCause

func (o *PduSessionCreateError) GetN1smCause() string

GetN1smCause returns the N1smCause field value if set, zero value otherwise.

func (*PduSessionCreateError) GetN1smCauseOk

func (o *PduSessionCreateError) GetN1smCauseOk() (*string, bool)

GetN1smCauseOk returns a tuple with the N1smCause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionCreateError) GetRecoveryTime

func (o *PduSessionCreateError) GetRecoveryTime() time.Time

GetRecoveryTime returns the RecoveryTime field value if set, zero value otherwise.

func (*PduSessionCreateError) GetRecoveryTimeOk

func (o *PduSessionCreateError) GetRecoveryTimeOk() (*time.Time, bool)

GetRecoveryTimeOk returns a tuple with the RecoveryTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionCreateError) HasBackOffTimer

func (o *PduSessionCreateError) HasBackOffTimer() bool

HasBackOffTimer returns a boolean if a field has been set.

func (*PduSessionCreateError) HasN1SmInfoToUe

func (o *PduSessionCreateError) HasN1SmInfoToUe() bool

HasN1SmInfoToUe returns a boolean if a field has been set.

func (*PduSessionCreateError) HasN1smCause

func (o *PduSessionCreateError) HasN1smCause() bool

HasN1smCause returns a boolean if a field has been set.

func (*PduSessionCreateError) HasRecoveryTime

func (o *PduSessionCreateError) HasRecoveryTime() bool

HasRecoveryTime returns a boolean if a field has been set.

func (PduSessionCreateError) MarshalJSON

func (o PduSessionCreateError) MarshalJSON() ([]byte, error)

func (*PduSessionCreateError) SetBackOffTimer

func (o *PduSessionCreateError) SetBackOffTimer(v int32)

SetBackOffTimer gets a reference to the given int32 and assigns it to the BackOffTimer field.

func (*PduSessionCreateError) SetError

func (o *PduSessionCreateError) SetError(v ProblemDetails)

SetError sets field value

func (*PduSessionCreateError) SetN1SmInfoToUe

func (o *PduSessionCreateError) SetN1SmInfoToUe(v RefToBinaryData)

SetN1SmInfoToUe gets a reference to the given RefToBinaryData and assigns it to the N1SmInfoToUe field.

func (*PduSessionCreateError) SetN1smCause

func (o *PduSessionCreateError) SetN1smCause(v string)

SetN1smCause gets a reference to the given string and assigns it to the N1smCause field.

func (*PduSessionCreateError) SetRecoveryTime

func (o *PduSessionCreateError) SetRecoveryTime(v time.Time)

SetRecoveryTime gets a reference to the given time.Time and assigns it to the RecoveryTime field.

func (PduSessionCreateError) ToMap

func (o PduSessionCreateError) ToMap() (map[string]interface{}, error)

type PduSessionCreatedData

type PduSessionCreatedData struct {
	Interface *interface{}
}

PduSessionCreatedData - Data within Create Response

func InterfaceAsPduSessionCreatedData

func InterfaceAsPduSessionCreatedData(v *interface{}) PduSessionCreatedData

interface{}AsPduSessionCreatedData is a convenience function that returns interface{} wrapped in PduSessionCreatedData

func (*PduSessionCreatedData) GetActualInstance

func (obj *PduSessionCreatedData) GetActualInstance() interface{}

Get the actual instance

func (PduSessionCreatedData) MarshalJSON

func (src PduSessionCreatedData) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PduSessionCreatedData) UnmarshalJSON

func (dst *PduSessionCreatedData) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PduSessionNotifyItem

type PduSessionNotifyItem struct {
	NotificationCause NotificationCause `json:"notificationCause"`
}

PduSessionNotifyItem Notification related to a PDU session

func NewPduSessionNotifyItem

func NewPduSessionNotifyItem(notificationCause NotificationCause) *PduSessionNotifyItem

NewPduSessionNotifyItem instantiates a new PduSessionNotifyItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPduSessionNotifyItemWithDefaults

func NewPduSessionNotifyItemWithDefaults() *PduSessionNotifyItem

NewPduSessionNotifyItemWithDefaults instantiates a new PduSessionNotifyItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PduSessionNotifyItem) GetNotificationCause

func (o *PduSessionNotifyItem) GetNotificationCause() NotificationCause

GetNotificationCause returns the NotificationCause field value

func (*PduSessionNotifyItem) GetNotificationCauseOk

func (o *PduSessionNotifyItem) GetNotificationCauseOk() (*NotificationCause, bool)

GetNotificationCauseOk returns a tuple with the NotificationCause field value and a boolean to check if the value has been set.

func (PduSessionNotifyItem) MarshalJSON

func (o PduSessionNotifyItem) MarshalJSON() ([]byte, error)

func (*PduSessionNotifyItem) SetNotificationCause

func (o *PduSessionNotifyItem) SetNotificationCause(v NotificationCause)

SetNotificationCause sets field value

func (PduSessionNotifyItem) ToMap

func (o PduSessionNotifyItem) ToMap() (map[string]interface{}, error)

type PduSessionType

type PduSessionType struct {
	String *string
}

PduSessionType PduSessionType indicates the type of a PDU session. It shall comply with the provisions defined in table 5.4.3.3-1.

func (*PduSessionType) MarshalJSON

func (src *PduSessionType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PduSessionType) UnmarshalJSON

func (dst *PduSessionType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type 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 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 ProblemDetailsAddInfo

type ProblemDetailsAddInfo struct {
	RemoteError *bool `json:"remoteError,omitempty"`
}

ProblemDetailsAddInfo Problem Details Additional Information

func NewProblemDetailsAddInfo

func NewProblemDetailsAddInfo() *ProblemDetailsAddInfo

NewProblemDetailsAddInfo instantiates a new ProblemDetailsAddInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProblemDetailsAddInfoWithDefaults

func NewProblemDetailsAddInfoWithDefaults() *ProblemDetailsAddInfo

NewProblemDetailsAddInfoWithDefaults instantiates a new ProblemDetailsAddInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProblemDetailsAddInfo) GetRemoteError

func (o *ProblemDetailsAddInfo) GetRemoteError() bool

GetRemoteError returns the RemoteError field value if set, zero value otherwise.

func (*ProblemDetailsAddInfo) GetRemoteErrorOk

func (o *ProblemDetailsAddInfo) GetRemoteErrorOk() (*bool, bool)

GetRemoteErrorOk returns a tuple with the RemoteError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetailsAddInfo) HasRemoteError

func (o *ProblemDetailsAddInfo) HasRemoteError() bool

HasRemoteError returns a boolean if a field has been set.

func (ProblemDetailsAddInfo) MarshalJSON

func (o ProblemDetailsAddInfo) MarshalJSON() ([]byte, error)

func (*ProblemDetailsAddInfo) SetRemoteError

func (o *ProblemDetailsAddInfo) SetRemoteError(v bool)

SetRemoteError gets a reference to the given bool and assigns it to the RemoteError field.

func (ProblemDetailsAddInfo) ToMap

func (o ProblemDetailsAddInfo) ToMap() (map[string]interface{}, error)

type ProtectionResult

type ProtectionResult struct {
	String *string
}

ProtectionResult Protection Result of the security policy indicated as \"preferred\". Possible values are - PERFORMED - NOT_PERFORMED

func (*ProtectionResult) MarshalJSON

func (src *ProtectionResult) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ProtectionResult) UnmarshalJSON

func (dst *ProtectionResult) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PsaIndication

type PsaIndication struct {
	String *string
}

PsaIndication Indication of whether a PSA is inserted or removed. Possible values are - PSA_INSERTED - PSA_REMOVED - PSA_INSERTED_ONLY - PSA_REMOVED_ONLY

func (*PsaIndication) MarshalJSON

func (src *PsaIndication) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PsaIndication) UnmarshalJSON

func (dst *PsaIndication) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PsaInformation

type PsaInformation struct {
	PsaInd       *PsaIndication `json:"psaInd,omitempty"`
	DnaiList     []string       `json:"dnaiList,omitempty"`
	UeIpv6Prefix *Ipv6Prefix    `json:"ueIpv6Prefix,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.
	PsaUpfId *string `json:"psaUpfId,omitempty"`
}

PsaInformation PSA Information

func NewPsaInformation

func NewPsaInformation() *PsaInformation

NewPsaInformation instantiates a new PsaInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPsaInformationWithDefaults

func NewPsaInformationWithDefaults() *PsaInformation

NewPsaInformationWithDefaults instantiates a new PsaInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PsaInformation) GetDnaiList

func (o *PsaInformation) GetDnaiList() []string

GetDnaiList returns the DnaiList field value if set, zero value otherwise.

func (*PsaInformation) GetDnaiListOk

func (o *PsaInformation) GetDnaiListOk() ([]string, bool)

GetDnaiListOk returns a tuple with the DnaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PsaInformation) GetPsaInd

func (o *PsaInformation) GetPsaInd() PsaIndication

GetPsaInd returns the PsaInd field value if set, zero value otherwise.

func (*PsaInformation) GetPsaIndOk

func (o *PsaInformation) GetPsaIndOk() (*PsaIndication, bool)

GetPsaIndOk returns a tuple with the PsaInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PsaInformation) GetPsaUpfId

func (o *PsaInformation) GetPsaUpfId() string

GetPsaUpfId returns the PsaUpfId field value if set, zero value otherwise.

func (*PsaInformation) GetPsaUpfIdOk

func (o *PsaInformation) GetPsaUpfIdOk() (*string, bool)

GetPsaUpfIdOk returns a tuple with the PsaUpfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PsaInformation) GetUeIpv6Prefix

func (o *PsaInformation) GetUeIpv6Prefix() Ipv6Prefix

GetUeIpv6Prefix returns the UeIpv6Prefix field value if set, zero value otherwise.

func (*PsaInformation) GetUeIpv6PrefixOk

func (o *PsaInformation) GetUeIpv6PrefixOk() (*Ipv6Prefix, bool)

GetUeIpv6PrefixOk returns a tuple with the UeIpv6Prefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PsaInformation) HasDnaiList

func (o *PsaInformation) HasDnaiList() bool

HasDnaiList returns a boolean if a field has been set.

func (*PsaInformation) HasPsaInd

func (o *PsaInformation) HasPsaInd() bool

HasPsaInd returns a boolean if a field has been set.

func (*PsaInformation) HasPsaUpfId

func (o *PsaInformation) HasPsaUpfId() bool

HasPsaUpfId returns a boolean if a field has been set.

func (*PsaInformation) HasUeIpv6Prefix

func (o *PsaInformation) HasUeIpv6Prefix() bool

HasUeIpv6Prefix returns a boolean if a field has been set.

func (PsaInformation) MarshalJSON

func (o PsaInformation) MarshalJSON() ([]byte, error)

func (*PsaInformation) SetDnaiList

func (o *PsaInformation) SetDnaiList(v []string)

SetDnaiList gets a reference to the given []string and assigns it to the DnaiList field.

func (*PsaInformation) SetPsaInd

func (o *PsaInformation) SetPsaInd(v PsaIndication)

SetPsaInd gets a reference to the given PsaIndication and assigns it to the PsaInd field.

func (*PsaInformation) SetPsaUpfId

func (o *PsaInformation) SetPsaUpfId(v string)

SetPsaUpfId gets a reference to the given string and assigns it to the PsaUpfId field.

func (*PsaInformation) SetUeIpv6Prefix

func (o *PsaInformation) SetUeIpv6Prefix(v Ipv6Prefix)

SetUeIpv6Prefix gets a reference to the given Ipv6Prefix and assigns it to the UeIpv6Prefix field.

func (PsaInformation) ToMap

func (o PsaInformation) ToMap() (map[string]interface{}, error)

type QosFlowAccessType

type QosFlowAccessType struct {
	String *string
}

QosFlowAccessType Access type associated with a QoS Flow. Possible values are - 3GPP - NON_3GPP - 3GPP_AND_NON_3GPP

func (*QosFlowAccessType) MarshalJSON

func (src *QosFlowAccessType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*QosFlowAccessType) UnmarshalJSON

func (dst *QosFlowAccessType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type QosFlowAddModifyRequestItem

type QosFlowAddModifyRequestItem struct {
	// Unsigned integer identifying a QoS flow, within the range 0 to 63.
	Qfi int32 `json:"qfi"`
	// EPS Bearer Identifier
	Ebi *int32 `json:"ebi,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	QosRules *string `json:"qosRules,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	QosFlowDescription *string            `json:"qosFlowDescription,omitempty"`
	QosFlowProfile     *QosFlowProfile    `json:"qosFlowProfile,omitempty"`
	AssociatedAnType   *QosFlowAccessType `json:"associatedAnType,omitempty"`
}

QosFlowAddModifyRequestItem Individual QoS flow requested to be created or modified

func NewQosFlowAddModifyRequestItem

func NewQosFlowAddModifyRequestItem(qfi int32) *QosFlowAddModifyRequestItem

NewQosFlowAddModifyRequestItem instantiates a new QosFlowAddModifyRequestItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosFlowAddModifyRequestItemWithDefaults

func NewQosFlowAddModifyRequestItemWithDefaults() *QosFlowAddModifyRequestItem

NewQosFlowAddModifyRequestItemWithDefaults instantiates a new QosFlowAddModifyRequestItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosFlowAddModifyRequestItem) GetAssociatedAnType

func (o *QosFlowAddModifyRequestItem) GetAssociatedAnType() QosFlowAccessType

GetAssociatedAnType returns the AssociatedAnType field value if set, zero value otherwise.

func (*QosFlowAddModifyRequestItem) GetAssociatedAnTypeOk

func (o *QosFlowAddModifyRequestItem) GetAssociatedAnTypeOk() (*QosFlowAccessType, bool)

GetAssociatedAnTypeOk returns a tuple with the AssociatedAnType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowAddModifyRequestItem) GetEbi

func (o *QosFlowAddModifyRequestItem) GetEbi() int32

GetEbi returns the Ebi field value if set, zero value otherwise.

func (*QosFlowAddModifyRequestItem) GetEbiOk

func (o *QosFlowAddModifyRequestItem) GetEbiOk() (*int32, bool)

GetEbiOk returns a tuple with the Ebi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowAddModifyRequestItem) GetQfi

func (o *QosFlowAddModifyRequestItem) GetQfi() int32

GetQfi returns the Qfi field value

func (*QosFlowAddModifyRequestItem) GetQfiOk

func (o *QosFlowAddModifyRequestItem) GetQfiOk() (*int32, bool)

GetQfiOk returns a tuple with the Qfi field value and a boolean to check if the value has been set.

func (*QosFlowAddModifyRequestItem) GetQosFlowDescription

func (o *QosFlowAddModifyRequestItem) GetQosFlowDescription() string

GetQosFlowDescription returns the QosFlowDescription field value if set, zero value otherwise.

func (*QosFlowAddModifyRequestItem) GetQosFlowDescriptionOk

func (o *QosFlowAddModifyRequestItem) GetQosFlowDescriptionOk() (*string, bool)

GetQosFlowDescriptionOk returns a tuple with the QosFlowDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowAddModifyRequestItem) GetQosFlowProfile

func (o *QosFlowAddModifyRequestItem) GetQosFlowProfile() QosFlowProfile

GetQosFlowProfile returns the QosFlowProfile field value if set, zero value otherwise.

func (*QosFlowAddModifyRequestItem) GetQosFlowProfileOk

func (o *QosFlowAddModifyRequestItem) GetQosFlowProfileOk() (*QosFlowProfile, bool)

GetQosFlowProfileOk returns a tuple with the QosFlowProfile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowAddModifyRequestItem) GetQosRules

func (o *QosFlowAddModifyRequestItem) GetQosRules() string

GetQosRules returns the QosRules field value if set, zero value otherwise.

func (*QosFlowAddModifyRequestItem) GetQosRulesOk

func (o *QosFlowAddModifyRequestItem) GetQosRulesOk() (*string, bool)

GetQosRulesOk returns a tuple with the QosRules field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowAddModifyRequestItem) HasAssociatedAnType

func (o *QosFlowAddModifyRequestItem) HasAssociatedAnType() bool

HasAssociatedAnType returns a boolean if a field has been set.

func (*QosFlowAddModifyRequestItem) HasEbi

func (o *QosFlowAddModifyRequestItem) HasEbi() bool

HasEbi returns a boolean if a field has been set.

func (*QosFlowAddModifyRequestItem) HasQosFlowDescription

func (o *QosFlowAddModifyRequestItem) HasQosFlowDescription() bool

HasQosFlowDescription returns a boolean if a field has been set.

func (*QosFlowAddModifyRequestItem) HasQosFlowProfile

func (o *QosFlowAddModifyRequestItem) HasQosFlowProfile() bool

HasQosFlowProfile returns a boolean if a field has been set.

func (*QosFlowAddModifyRequestItem) HasQosRules

func (o *QosFlowAddModifyRequestItem) HasQosRules() bool

HasQosRules returns a boolean if a field has been set.

func (QosFlowAddModifyRequestItem) MarshalJSON

func (o QosFlowAddModifyRequestItem) MarshalJSON() ([]byte, error)

func (*QosFlowAddModifyRequestItem) SetAssociatedAnType

func (o *QosFlowAddModifyRequestItem) SetAssociatedAnType(v QosFlowAccessType)

SetAssociatedAnType gets a reference to the given QosFlowAccessType and assigns it to the AssociatedAnType field.

func (*QosFlowAddModifyRequestItem) SetEbi

func (o *QosFlowAddModifyRequestItem) SetEbi(v int32)

SetEbi gets a reference to the given int32 and assigns it to the Ebi field.

func (*QosFlowAddModifyRequestItem) SetQfi

func (o *QosFlowAddModifyRequestItem) SetQfi(v int32)

SetQfi sets field value

func (*QosFlowAddModifyRequestItem) SetQosFlowDescription

func (o *QosFlowAddModifyRequestItem) SetQosFlowDescription(v string)

SetQosFlowDescription gets a reference to the given string and assigns it to the QosFlowDescription field.

func (*QosFlowAddModifyRequestItem) SetQosFlowProfile

func (o *QosFlowAddModifyRequestItem) SetQosFlowProfile(v QosFlowProfile)

SetQosFlowProfile gets a reference to the given QosFlowProfile and assigns it to the QosFlowProfile field.

func (*QosFlowAddModifyRequestItem) SetQosRules

func (o *QosFlowAddModifyRequestItem) SetQosRules(v string)

SetQosRules gets a reference to the given string and assigns it to the QosRules field.

func (QosFlowAddModifyRequestItem) ToMap

func (o QosFlowAddModifyRequestItem) ToMap() (map[string]interface{}, error)

type QosFlowItem

type QosFlowItem struct {
	// Unsigned integer identifying a QoS flow, within the range 0 to 63.
	Qfi                    int32      `json:"qfi"`
	Cause                  *Cause     `json:"cause,omitempty"`
	CurrentQosProfileIndex *int32     `json:"currentQosProfileIndex,omitempty"`
	NullQoSProfileIndex    *bool      `json:"nullQoSProfileIndex,omitempty"`
	NgApCause              *NgApCause `json:"ngApCause,omitempty"`
}

QosFlowItem Individual QoS flow

func NewQosFlowItem

func NewQosFlowItem(qfi int32) *QosFlowItem

NewQosFlowItem instantiates a new QosFlowItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosFlowItemWithDefaults

func NewQosFlowItemWithDefaults() *QosFlowItem

NewQosFlowItemWithDefaults instantiates a new QosFlowItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosFlowItem) GetCause

func (o *QosFlowItem) GetCause() Cause

GetCause returns the Cause field value if set, zero value otherwise.

func (*QosFlowItem) GetCauseOk

func (o *QosFlowItem) GetCauseOk() (*Cause, 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 (*QosFlowItem) GetCurrentQosProfileIndex

func (o *QosFlowItem) GetCurrentQosProfileIndex() int32

GetCurrentQosProfileIndex returns the CurrentQosProfileIndex field value if set, zero value otherwise.

func (*QosFlowItem) GetCurrentQosProfileIndexOk

func (o *QosFlowItem) GetCurrentQosProfileIndexOk() (*int32, bool)

GetCurrentQosProfileIndexOk returns a tuple with the CurrentQosProfileIndex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowItem) GetNgApCause

func (o *QosFlowItem) GetNgApCause() NgApCause

GetNgApCause returns the NgApCause field value if set, zero value otherwise.

func (*QosFlowItem) GetNgApCauseOk

func (o *QosFlowItem) 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 (*QosFlowItem) GetNullQoSProfileIndex

func (o *QosFlowItem) GetNullQoSProfileIndex() bool

GetNullQoSProfileIndex returns the NullQoSProfileIndex field value if set, zero value otherwise.

func (*QosFlowItem) GetNullQoSProfileIndexOk

func (o *QosFlowItem) GetNullQoSProfileIndexOk() (*bool, bool)

GetNullQoSProfileIndexOk returns a tuple with the NullQoSProfileIndex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowItem) GetQfi

func (o *QosFlowItem) GetQfi() int32

GetQfi returns the Qfi field value

func (*QosFlowItem) GetQfiOk

func (o *QosFlowItem) GetQfiOk() (*int32, bool)

GetQfiOk returns a tuple with the Qfi field value and a boolean to check if the value has been set.

func (*QosFlowItem) HasCause

func (o *QosFlowItem) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*QosFlowItem) HasCurrentQosProfileIndex

func (o *QosFlowItem) HasCurrentQosProfileIndex() bool

HasCurrentQosProfileIndex returns a boolean if a field has been set.

func (*QosFlowItem) HasNgApCause

func (o *QosFlowItem) HasNgApCause() bool

HasNgApCause returns a boolean if a field has been set.

func (*QosFlowItem) HasNullQoSProfileIndex

func (o *QosFlowItem) HasNullQoSProfileIndex() bool

HasNullQoSProfileIndex returns a boolean if a field has been set.

func (QosFlowItem) MarshalJSON

func (o QosFlowItem) MarshalJSON() ([]byte, error)

func (*QosFlowItem) SetCause

func (o *QosFlowItem) SetCause(v Cause)

SetCause gets a reference to the given Cause and assigns it to the Cause field.

func (*QosFlowItem) SetCurrentQosProfileIndex

func (o *QosFlowItem) SetCurrentQosProfileIndex(v int32)

SetCurrentQosProfileIndex gets a reference to the given int32 and assigns it to the CurrentQosProfileIndex field.

func (*QosFlowItem) SetNgApCause

func (o *QosFlowItem) SetNgApCause(v NgApCause)

SetNgApCause gets a reference to the given NgApCause and assigns it to the NgApCause field.

func (*QosFlowItem) SetNullQoSProfileIndex

func (o *QosFlowItem) SetNullQoSProfileIndex(v bool)

SetNullQoSProfileIndex gets a reference to the given bool and assigns it to the NullQoSProfileIndex field.

func (*QosFlowItem) SetQfi

func (o *QosFlowItem) SetQfi(v int32)

SetQfi sets field value

func (QosFlowItem) ToMap

func (o QosFlowItem) ToMap() (map[string]interface{}, error)

type QosFlowNotifyItem

type QosFlowNotifyItem struct {
	// Unsigned integer identifying a QoS flow, within the range 0 to 63.
	Qfi                    int32             `json:"qfi"`
	NotificationCause      NotificationCause `json:"notificationCause"`
	CurrentQosProfileIndex *int32            `json:"currentQosProfileIndex,omitempty"`
	NullQoSProfileIndex    *bool             `json:"nullQoSProfileIndex,omitempty"`
}

QosFlowNotifyItem Notification related to a QoS flow

func NewQosFlowNotifyItem

func NewQosFlowNotifyItem(qfi int32, notificationCause NotificationCause) *QosFlowNotifyItem

NewQosFlowNotifyItem instantiates a new QosFlowNotifyItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosFlowNotifyItemWithDefaults

func NewQosFlowNotifyItemWithDefaults() *QosFlowNotifyItem

NewQosFlowNotifyItemWithDefaults instantiates a new QosFlowNotifyItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosFlowNotifyItem) GetCurrentQosProfileIndex

func (o *QosFlowNotifyItem) GetCurrentQosProfileIndex() int32

GetCurrentQosProfileIndex returns the CurrentQosProfileIndex field value if set, zero value otherwise.

func (*QosFlowNotifyItem) GetCurrentQosProfileIndexOk

func (o *QosFlowNotifyItem) GetCurrentQosProfileIndexOk() (*int32, bool)

GetCurrentQosProfileIndexOk returns a tuple with the CurrentQosProfileIndex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowNotifyItem) GetNotificationCause

func (o *QosFlowNotifyItem) GetNotificationCause() NotificationCause

GetNotificationCause returns the NotificationCause field value

func (*QosFlowNotifyItem) GetNotificationCauseOk

func (o *QosFlowNotifyItem) GetNotificationCauseOk() (*NotificationCause, bool)

GetNotificationCauseOk returns a tuple with the NotificationCause field value and a boolean to check if the value has been set.

func (*QosFlowNotifyItem) GetNullQoSProfileIndex

func (o *QosFlowNotifyItem) GetNullQoSProfileIndex() bool

GetNullQoSProfileIndex returns the NullQoSProfileIndex field value if set, zero value otherwise.

func (*QosFlowNotifyItem) GetNullQoSProfileIndexOk

func (o *QosFlowNotifyItem) GetNullQoSProfileIndexOk() (*bool, bool)

GetNullQoSProfileIndexOk returns a tuple with the NullQoSProfileIndex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowNotifyItem) GetQfi

func (o *QosFlowNotifyItem) GetQfi() int32

GetQfi returns the Qfi field value

func (*QosFlowNotifyItem) GetQfiOk

func (o *QosFlowNotifyItem) GetQfiOk() (*int32, bool)

GetQfiOk returns a tuple with the Qfi field value and a boolean to check if the value has been set.

func (*QosFlowNotifyItem) HasCurrentQosProfileIndex

func (o *QosFlowNotifyItem) HasCurrentQosProfileIndex() bool

HasCurrentQosProfileIndex returns a boolean if a field has been set.

func (*QosFlowNotifyItem) HasNullQoSProfileIndex

func (o *QosFlowNotifyItem) HasNullQoSProfileIndex() bool

HasNullQoSProfileIndex returns a boolean if a field has been set.

func (QosFlowNotifyItem) MarshalJSON

func (o QosFlowNotifyItem) MarshalJSON() ([]byte, error)

func (*QosFlowNotifyItem) SetCurrentQosProfileIndex

func (o *QosFlowNotifyItem) SetCurrentQosProfileIndex(v int32)

SetCurrentQosProfileIndex gets a reference to the given int32 and assigns it to the CurrentQosProfileIndex field.

func (*QosFlowNotifyItem) SetNotificationCause

func (o *QosFlowNotifyItem) SetNotificationCause(v NotificationCause)

SetNotificationCause sets field value

func (*QosFlowNotifyItem) SetNullQoSProfileIndex

func (o *QosFlowNotifyItem) SetNullQoSProfileIndex(v bool)

SetNullQoSProfileIndex gets a reference to the given bool and assigns it to the NullQoSProfileIndex field.

func (*QosFlowNotifyItem) SetQfi

func (o *QosFlowNotifyItem) SetQfi(v int32)

SetQfi sets field value

func (QosFlowNotifyItem) ToMap

func (o QosFlowNotifyItem) ToMap() (map[string]interface{}, error)

type QosFlowProfile

type QosFlowProfile 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"`
	NonDynamic5Qi         *NonDynamic5Qi          `json:"nonDynamic5Qi,omitempty"`
	Dynamic5Qi            *Dynamic5Qi             `json:"dynamic5Qi,omitempty"`
	Arp                   *Arp                    `json:"arp,omitempty"`
	GbrQosFlowInfo        *GbrQosFlowInformation  `json:"gbrQosFlowInfo,omitempty"`
	Rqa                   *ReflectiveQoSAttribute `json:"rqa,omitempty"`
	AdditionalQosFlowInfo *AdditionalQosFlowInfo  `json:"additionalQosFlowInfo,omitempty"`
	QosMonitoringReq      *QosMonitoringReq       `json:"qosMonitoringReq,omitempty"`
	// indicating a time in seconds.
	QosRepPeriod *int32 `json:"qosRepPeriod,omitempty"`
}

QosFlowProfile QoS flow profile

func NewQosFlowProfile

func NewQosFlowProfile(var5qi int32) *QosFlowProfile

NewQosFlowProfile instantiates a new QosFlowProfile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosFlowProfileWithDefaults

func NewQosFlowProfileWithDefaults() *QosFlowProfile

NewQosFlowProfileWithDefaults instantiates a new QosFlowProfile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosFlowProfile) GetAdditionalQosFlowInfo

func (o *QosFlowProfile) GetAdditionalQosFlowInfo() AdditionalQosFlowInfo

GetAdditionalQosFlowInfo returns the AdditionalQosFlowInfo field value if set, zero value otherwise.

func (*QosFlowProfile) GetAdditionalQosFlowInfoOk

func (o *QosFlowProfile) GetAdditionalQosFlowInfoOk() (*AdditionalQosFlowInfo, bool)

GetAdditionalQosFlowInfoOk returns a tuple with the AdditionalQosFlowInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowProfile) GetArp

func (o *QosFlowProfile) GetArp() Arp

GetArp returns the Arp field value if set, zero value otherwise.

func (*QosFlowProfile) GetArpOk

func (o *QosFlowProfile) 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 (*QosFlowProfile) GetDynamic5Qi

func (o *QosFlowProfile) GetDynamic5Qi() Dynamic5Qi

GetDynamic5Qi returns the Dynamic5Qi field value if set, zero value otherwise.

func (*QosFlowProfile) GetDynamic5QiOk

func (o *QosFlowProfile) GetDynamic5QiOk() (*Dynamic5Qi, bool)

GetDynamic5QiOk returns a tuple with the Dynamic5Qi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowProfile) GetGbrQosFlowInfo

func (o *QosFlowProfile) GetGbrQosFlowInfo() GbrQosFlowInformation

GetGbrQosFlowInfo returns the GbrQosFlowInfo field value if set, zero value otherwise.

func (*QosFlowProfile) GetGbrQosFlowInfoOk

func (o *QosFlowProfile) GetGbrQosFlowInfoOk() (*GbrQosFlowInformation, bool)

GetGbrQosFlowInfoOk returns a tuple with the GbrQosFlowInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowProfile) GetNonDynamic5Qi

func (o *QosFlowProfile) GetNonDynamic5Qi() NonDynamic5Qi

GetNonDynamic5Qi returns the NonDynamic5Qi field value if set, zero value otherwise.

func (*QosFlowProfile) GetNonDynamic5QiOk

func (o *QosFlowProfile) GetNonDynamic5QiOk() (*NonDynamic5Qi, bool)

GetNonDynamic5QiOk returns a tuple with the NonDynamic5Qi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowProfile) GetQosMonitoringReq

func (o *QosFlowProfile) GetQosMonitoringReq() QosMonitoringReq

GetQosMonitoringReq returns the QosMonitoringReq field value if set, zero value otherwise.

func (*QosFlowProfile) GetQosMonitoringReqOk

func (o *QosFlowProfile) GetQosMonitoringReqOk() (*QosMonitoringReq, bool)

GetQosMonitoringReqOk returns a tuple with the QosMonitoringReq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowProfile) GetQosRepPeriod

func (o *QosFlowProfile) GetQosRepPeriod() int32

GetQosRepPeriod returns the QosRepPeriod field value if set, zero value otherwise.

func (*QosFlowProfile) GetQosRepPeriodOk

func (o *QosFlowProfile) GetQosRepPeriodOk() (*int32, bool)

GetQosRepPeriodOk returns a tuple with the QosRepPeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowProfile) GetRqa

GetRqa returns the Rqa field value if set, zero value otherwise.

func (*QosFlowProfile) GetRqaOk

func (o *QosFlowProfile) GetRqaOk() (*ReflectiveQoSAttribute, bool)

GetRqaOk returns a tuple with the Rqa field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowProfile) GetVar5qi

func (o *QosFlowProfile) GetVar5qi() int32

GetVar5qi returns the Var5qi field value

func (*QosFlowProfile) GetVar5qiOk

func (o *QosFlowProfile) GetVar5qiOk() (*int32, bool)

GetVar5qiOk returns a tuple with the Var5qi field value and a boolean to check if the value has been set.

func (*QosFlowProfile) HasAdditionalQosFlowInfo

func (o *QosFlowProfile) HasAdditionalQosFlowInfo() bool

HasAdditionalQosFlowInfo returns a boolean if a field has been set.

func (*QosFlowProfile) HasArp

func (o *QosFlowProfile) HasArp() bool

HasArp returns a boolean if a field has been set.

func (*QosFlowProfile) HasDynamic5Qi

func (o *QosFlowProfile) HasDynamic5Qi() bool

HasDynamic5Qi returns a boolean if a field has been set.

func (*QosFlowProfile) HasGbrQosFlowInfo

func (o *QosFlowProfile) HasGbrQosFlowInfo() bool

HasGbrQosFlowInfo returns a boolean if a field has been set.

func (*QosFlowProfile) HasNonDynamic5Qi

func (o *QosFlowProfile) HasNonDynamic5Qi() bool

HasNonDynamic5Qi returns a boolean if a field has been set.

func (*QosFlowProfile) HasQosMonitoringReq

func (o *QosFlowProfile) HasQosMonitoringReq() bool

HasQosMonitoringReq returns a boolean if a field has been set.

func (*QosFlowProfile) HasQosRepPeriod

func (o *QosFlowProfile) HasQosRepPeriod() bool

HasQosRepPeriod returns a boolean if a field has been set.

func (*QosFlowProfile) HasRqa

func (o *QosFlowProfile) HasRqa() bool

HasRqa returns a boolean if a field has been set.

func (QosFlowProfile) MarshalJSON

func (o QosFlowProfile) MarshalJSON() ([]byte, error)

func (*QosFlowProfile) SetAdditionalQosFlowInfo

func (o *QosFlowProfile) SetAdditionalQosFlowInfo(v AdditionalQosFlowInfo)

SetAdditionalQosFlowInfo gets a reference to the given AdditionalQosFlowInfo and assigns it to the AdditionalQosFlowInfo field.

func (*QosFlowProfile) SetArp

func (o *QosFlowProfile) SetArp(v Arp)

SetArp gets a reference to the given Arp and assigns it to the Arp field.

func (*QosFlowProfile) SetDynamic5Qi

func (o *QosFlowProfile) SetDynamic5Qi(v Dynamic5Qi)

SetDynamic5Qi gets a reference to the given Dynamic5Qi and assigns it to the Dynamic5Qi field.

func (*QosFlowProfile) SetGbrQosFlowInfo

func (o *QosFlowProfile) SetGbrQosFlowInfo(v GbrQosFlowInformation)

SetGbrQosFlowInfo gets a reference to the given GbrQosFlowInformation and assigns it to the GbrQosFlowInfo field.

func (*QosFlowProfile) SetNonDynamic5Qi

func (o *QosFlowProfile) SetNonDynamic5Qi(v NonDynamic5Qi)

SetNonDynamic5Qi gets a reference to the given NonDynamic5Qi and assigns it to the NonDynamic5Qi field.

func (*QosFlowProfile) SetQosMonitoringReq

func (o *QosFlowProfile) SetQosMonitoringReq(v QosMonitoringReq)

SetQosMonitoringReq gets a reference to the given QosMonitoringReq and assigns it to the QosMonitoringReq field.

func (*QosFlowProfile) SetQosRepPeriod

func (o *QosFlowProfile) SetQosRepPeriod(v int32)

SetQosRepPeriod gets a reference to the given int32 and assigns it to the QosRepPeriod field.

func (*QosFlowProfile) SetRqa

SetRqa gets a reference to the given ReflectiveQoSAttribute and assigns it to the Rqa field.

func (*QosFlowProfile) SetVar5qi

func (o *QosFlowProfile) SetVar5qi(v int32)

SetVar5qi sets field value

func (QosFlowProfile) ToMap

func (o QosFlowProfile) ToMap() (map[string]interface{}, error)

type QosFlowReleaseRequestItem

type QosFlowReleaseRequestItem struct {
	// Unsigned integer identifying a QoS flow, within the range 0 to 63.
	Qfi int32 `json:"qfi"`
	// string with format 'bytes' as defined in OpenAPI
	QosRules *string `json:"qosRules,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	QosFlowDescription *string `json:"qosFlowDescription,omitempty"`
}

QosFlowReleaseRequestItem Individual QoS flow requested to be released

func NewQosFlowReleaseRequestItem

func NewQosFlowReleaseRequestItem(qfi int32) *QosFlowReleaseRequestItem

NewQosFlowReleaseRequestItem instantiates a new QosFlowReleaseRequestItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosFlowReleaseRequestItemWithDefaults

func NewQosFlowReleaseRequestItemWithDefaults() *QosFlowReleaseRequestItem

NewQosFlowReleaseRequestItemWithDefaults instantiates a new QosFlowReleaseRequestItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosFlowReleaseRequestItem) GetQfi

func (o *QosFlowReleaseRequestItem) GetQfi() int32

GetQfi returns the Qfi field value

func (*QosFlowReleaseRequestItem) GetQfiOk

func (o *QosFlowReleaseRequestItem) GetQfiOk() (*int32, bool)

GetQfiOk returns a tuple with the Qfi field value and a boolean to check if the value has been set.

func (*QosFlowReleaseRequestItem) GetQosFlowDescription

func (o *QosFlowReleaseRequestItem) GetQosFlowDescription() string

GetQosFlowDescription returns the QosFlowDescription field value if set, zero value otherwise.

func (*QosFlowReleaseRequestItem) GetQosFlowDescriptionOk

func (o *QosFlowReleaseRequestItem) GetQosFlowDescriptionOk() (*string, bool)

GetQosFlowDescriptionOk returns a tuple with the QosFlowDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowReleaseRequestItem) GetQosRules

func (o *QosFlowReleaseRequestItem) GetQosRules() string

GetQosRules returns the QosRules field value if set, zero value otherwise.

func (*QosFlowReleaseRequestItem) GetQosRulesOk

func (o *QosFlowReleaseRequestItem) GetQosRulesOk() (*string, bool)

GetQosRulesOk returns a tuple with the QosRules field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowReleaseRequestItem) HasQosFlowDescription

func (o *QosFlowReleaseRequestItem) HasQosFlowDescription() bool

HasQosFlowDescription returns a boolean if a field has been set.

func (*QosFlowReleaseRequestItem) HasQosRules

func (o *QosFlowReleaseRequestItem) HasQosRules() bool

HasQosRules returns a boolean if a field has been set.

func (QosFlowReleaseRequestItem) MarshalJSON

func (o QosFlowReleaseRequestItem) MarshalJSON() ([]byte, error)

func (*QosFlowReleaseRequestItem) SetQfi

func (o *QosFlowReleaseRequestItem) SetQfi(v int32)

SetQfi sets field value

func (*QosFlowReleaseRequestItem) SetQosFlowDescription

func (o *QosFlowReleaseRequestItem) SetQosFlowDescription(v string)

SetQosFlowDescription gets a reference to the given string and assigns it to the QosFlowDescription field.

func (*QosFlowReleaseRequestItem) SetQosRules

func (o *QosFlowReleaseRequestItem) SetQosRules(v string)

SetQosRules gets a reference to the given string and assigns it to the QosRules field.

func (QosFlowReleaseRequestItem) ToMap

func (o QosFlowReleaseRequestItem) ToMap() (map[string]interface{}, error)

type QosFlowSetupItem

type QosFlowSetupItem struct {
	// Unsigned integer identifying a QoS flow, within the range 0 to 63.
	Qfi int32 `json:"qfi"`
	// string with format 'bytes' as defined in OpenAPI
	QosRules string `json:"qosRules"`
	// EPS Bearer Identifier
	Ebi *int32 `json:"ebi,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	QosFlowDescription *string            `json:"qosFlowDescription,omitempty"`
	QosFlowProfile     *QosFlowProfile    `json:"qosFlowProfile,omitempty"`
	AssociatedAnType   *QosFlowAccessType `json:"associatedAnType,omitempty"`
	DefaultQosRuleInd  *bool              `json:"defaultQosRuleInd,omitempty"`
}

QosFlowSetupItem Individual QoS flow to setup

func NewQosFlowSetupItem

func NewQosFlowSetupItem(qfi int32, qosRules string) *QosFlowSetupItem

NewQosFlowSetupItem instantiates a new QosFlowSetupItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosFlowSetupItemWithDefaults

func NewQosFlowSetupItemWithDefaults() *QosFlowSetupItem

NewQosFlowSetupItemWithDefaults instantiates a new QosFlowSetupItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosFlowSetupItem) GetAssociatedAnType

func (o *QosFlowSetupItem) GetAssociatedAnType() QosFlowAccessType

GetAssociatedAnType returns the AssociatedAnType field value if set, zero value otherwise.

func (*QosFlowSetupItem) GetAssociatedAnTypeOk

func (o *QosFlowSetupItem) GetAssociatedAnTypeOk() (*QosFlowAccessType, bool)

GetAssociatedAnTypeOk returns a tuple with the AssociatedAnType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowSetupItem) GetDefaultQosRuleInd

func (o *QosFlowSetupItem) GetDefaultQosRuleInd() bool

GetDefaultQosRuleInd returns the DefaultQosRuleInd field value if set, zero value otherwise.

func (*QosFlowSetupItem) GetDefaultQosRuleIndOk

func (o *QosFlowSetupItem) GetDefaultQosRuleIndOk() (*bool, bool)

GetDefaultQosRuleIndOk returns a tuple with the DefaultQosRuleInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowSetupItem) GetEbi

func (o *QosFlowSetupItem) GetEbi() int32

GetEbi returns the Ebi field value if set, zero value otherwise.

func (*QosFlowSetupItem) GetEbiOk

func (o *QosFlowSetupItem) GetEbiOk() (*int32, bool)

GetEbiOk returns a tuple with the Ebi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowSetupItem) GetQfi

func (o *QosFlowSetupItem) GetQfi() int32

GetQfi returns the Qfi field value

func (*QosFlowSetupItem) GetQfiOk

func (o *QosFlowSetupItem) GetQfiOk() (*int32, bool)

GetQfiOk returns a tuple with the Qfi field value and a boolean to check if the value has been set.

func (*QosFlowSetupItem) GetQosFlowDescription

func (o *QosFlowSetupItem) GetQosFlowDescription() string

GetQosFlowDescription returns the QosFlowDescription field value if set, zero value otherwise.

func (*QosFlowSetupItem) GetQosFlowDescriptionOk

func (o *QosFlowSetupItem) GetQosFlowDescriptionOk() (*string, bool)

GetQosFlowDescriptionOk returns a tuple with the QosFlowDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowSetupItem) GetQosFlowProfile

func (o *QosFlowSetupItem) GetQosFlowProfile() QosFlowProfile

GetQosFlowProfile returns the QosFlowProfile field value if set, zero value otherwise.

func (*QosFlowSetupItem) GetQosFlowProfileOk

func (o *QosFlowSetupItem) GetQosFlowProfileOk() (*QosFlowProfile, bool)

GetQosFlowProfileOk returns a tuple with the QosFlowProfile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowSetupItem) GetQosRules

func (o *QosFlowSetupItem) GetQosRules() string

GetQosRules returns the QosRules field value

func (*QosFlowSetupItem) GetQosRulesOk

func (o *QosFlowSetupItem) GetQosRulesOk() (*string, bool)

GetQosRulesOk returns a tuple with the QosRules field value and a boolean to check if the value has been set.

func (*QosFlowSetupItem) HasAssociatedAnType

func (o *QosFlowSetupItem) HasAssociatedAnType() bool

HasAssociatedAnType returns a boolean if a field has been set.

func (*QosFlowSetupItem) HasDefaultQosRuleInd

func (o *QosFlowSetupItem) HasDefaultQosRuleInd() bool

HasDefaultQosRuleInd returns a boolean if a field has been set.

func (*QosFlowSetupItem) HasEbi

func (o *QosFlowSetupItem) HasEbi() bool

HasEbi returns a boolean if a field has been set.

func (*QosFlowSetupItem) HasQosFlowDescription

func (o *QosFlowSetupItem) HasQosFlowDescription() bool

HasQosFlowDescription returns a boolean if a field has been set.

func (*QosFlowSetupItem) HasQosFlowProfile

func (o *QosFlowSetupItem) HasQosFlowProfile() bool

HasQosFlowProfile returns a boolean if a field has been set.

func (QosFlowSetupItem) MarshalJSON

func (o QosFlowSetupItem) MarshalJSON() ([]byte, error)

func (*QosFlowSetupItem) SetAssociatedAnType

func (o *QosFlowSetupItem) SetAssociatedAnType(v QosFlowAccessType)

SetAssociatedAnType gets a reference to the given QosFlowAccessType and assigns it to the AssociatedAnType field.

func (*QosFlowSetupItem) SetDefaultQosRuleInd

func (o *QosFlowSetupItem) SetDefaultQosRuleInd(v bool)

SetDefaultQosRuleInd gets a reference to the given bool and assigns it to the DefaultQosRuleInd field.

func (*QosFlowSetupItem) SetEbi

func (o *QosFlowSetupItem) SetEbi(v int32)

SetEbi gets a reference to the given int32 and assigns it to the Ebi field.

func (*QosFlowSetupItem) SetQfi

func (o *QosFlowSetupItem) SetQfi(v int32)

SetQfi sets field value

func (*QosFlowSetupItem) SetQosFlowDescription

func (o *QosFlowSetupItem) SetQosFlowDescription(v string)

SetQosFlowDescription gets a reference to the given string and assigns it to the QosFlowDescription field.

func (*QosFlowSetupItem) SetQosFlowProfile

func (o *QosFlowSetupItem) SetQosFlowProfile(v QosFlowProfile)

SetQosFlowProfile gets a reference to the given QosFlowProfile and assigns it to the QosFlowProfile field.

func (*QosFlowSetupItem) SetQosRules

func (o *QosFlowSetupItem) SetQosRules(v string)

SetQosRules sets field value

func (QosFlowSetupItem) ToMap

func (o QosFlowSetupItem) ToMap() (map[string]interface{}, error)

type QosFlowTunnel

type QosFlowTunnel struct {
	QfiList    []int32    `json:"qfiList"`
	TunnelInfo TunnelInfo `json:"tunnelInfo"`
}

QosFlowTunnel Tunnel Information per QoS Flow

func NewQosFlowTunnel

func NewQosFlowTunnel(qfiList []int32, tunnelInfo TunnelInfo) *QosFlowTunnel

NewQosFlowTunnel instantiates a new QosFlowTunnel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosFlowTunnelWithDefaults

func NewQosFlowTunnelWithDefaults() *QosFlowTunnel

NewQosFlowTunnelWithDefaults instantiates a new QosFlowTunnel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosFlowTunnel) GetQfiList

func (o *QosFlowTunnel) GetQfiList() []int32

GetQfiList returns the QfiList field value

func (*QosFlowTunnel) GetQfiListOk

func (o *QosFlowTunnel) GetQfiListOk() ([]int32, bool)

GetQfiListOk returns a tuple with the QfiList field value and a boolean to check if the value has been set.

func (*QosFlowTunnel) GetTunnelInfo

func (o *QosFlowTunnel) GetTunnelInfo() TunnelInfo

GetTunnelInfo returns the TunnelInfo field value

func (*QosFlowTunnel) GetTunnelInfoOk

func (o *QosFlowTunnel) GetTunnelInfoOk() (*TunnelInfo, bool)

GetTunnelInfoOk returns a tuple with the TunnelInfo field value and a boolean to check if the value has been set.

func (QosFlowTunnel) MarshalJSON

func (o QosFlowTunnel) MarshalJSON() ([]byte, error)

func (*QosFlowTunnel) SetQfiList

func (o *QosFlowTunnel) SetQfiList(v []int32)

SetQfiList sets field value

func (*QosFlowTunnel) SetTunnelInfo

func (o *QosFlowTunnel) SetTunnelInfo(v TunnelInfo)

SetTunnelInfo sets field value

func (QosFlowTunnel) ToMap

func (o QosFlowTunnel) ToMap() (map[string]interface{}, error)

type QosFlowUsageReport

type QosFlowUsageReport struct {
	// Unsigned integer identifying a QoS flow, within the range 0 to 63.
	Qfi int32 `json:"qfi"`
	// string with format 'date-time' as defined in OpenAPI.
	StartTimeStamp time.Time `json:"startTimeStamp"`
	// string with format 'date-time' as defined in OpenAPI.
	EndTimeStamp time.Time `json:"endTimeStamp"`
	// string with format 'int64' as defined in OpenAPI.
	DownlinkVolume int64 `json:"downlinkVolume"`
	// string with format 'int64' as defined in OpenAPI.
	UplinkVolume int64 `json:"uplinkVolume"`
}

QosFlowUsageReport Contains QoS flows usage data information.

func NewQosFlowUsageReport

func NewQosFlowUsageReport(qfi int32, startTimeStamp time.Time, endTimeStamp time.Time, downlinkVolume int64, uplinkVolume int64) *QosFlowUsageReport

NewQosFlowUsageReport instantiates a new QosFlowUsageReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosFlowUsageReportWithDefaults

func NewQosFlowUsageReportWithDefaults() *QosFlowUsageReport

NewQosFlowUsageReportWithDefaults instantiates a new QosFlowUsageReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosFlowUsageReport) GetDownlinkVolume

func (o *QosFlowUsageReport) GetDownlinkVolume() int64

GetDownlinkVolume returns the DownlinkVolume field value

func (*QosFlowUsageReport) GetDownlinkVolumeOk

func (o *QosFlowUsageReport) GetDownlinkVolumeOk() (*int64, bool)

GetDownlinkVolumeOk returns a tuple with the DownlinkVolume field value and a boolean to check if the value has been set.

func (*QosFlowUsageReport) GetEndTimeStamp

func (o *QosFlowUsageReport) GetEndTimeStamp() time.Time

GetEndTimeStamp returns the EndTimeStamp field value

func (*QosFlowUsageReport) GetEndTimeStampOk

func (o *QosFlowUsageReport) GetEndTimeStampOk() (*time.Time, bool)

GetEndTimeStampOk returns a tuple with the EndTimeStamp field value and a boolean to check if the value has been set.

func (*QosFlowUsageReport) GetQfi

func (o *QosFlowUsageReport) GetQfi() int32

GetQfi returns the Qfi field value

func (*QosFlowUsageReport) GetQfiOk

func (o *QosFlowUsageReport) GetQfiOk() (*int32, bool)

GetQfiOk returns a tuple with the Qfi field value and a boolean to check if the value has been set.

func (*QosFlowUsageReport) GetStartTimeStamp

func (o *QosFlowUsageReport) GetStartTimeStamp() time.Time

GetStartTimeStamp returns the StartTimeStamp field value

func (*QosFlowUsageReport) GetStartTimeStampOk

func (o *QosFlowUsageReport) GetStartTimeStampOk() (*time.Time, bool)

GetStartTimeStampOk returns a tuple with the StartTimeStamp field value and a boolean to check if the value has been set.

func (*QosFlowUsageReport) GetUplinkVolume

func (o *QosFlowUsageReport) GetUplinkVolume() int64

GetUplinkVolume returns the UplinkVolume field value

func (*QosFlowUsageReport) GetUplinkVolumeOk

func (o *QosFlowUsageReport) GetUplinkVolumeOk() (*int64, bool)

GetUplinkVolumeOk returns a tuple with the UplinkVolume field value and a boolean to check if the value has been set.

func (QosFlowUsageReport) MarshalJSON

func (o QosFlowUsageReport) MarshalJSON() ([]byte, error)

func (*QosFlowUsageReport) SetDownlinkVolume

func (o *QosFlowUsageReport) SetDownlinkVolume(v int64)

SetDownlinkVolume sets field value

func (*QosFlowUsageReport) SetEndTimeStamp

func (o *QosFlowUsageReport) SetEndTimeStamp(v time.Time)

SetEndTimeStamp sets field value

func (*QosFlowUsageReport) SetQfi

func (o *QosFlowUsageReport) SetQfi(v int32)

SetQfi sets field value

func (*QosFlowUsageReport) SetStartTimeStamp

func (o *QosFlowUsageReport) SetStartTimeStamp(v time.Time)

SetStartTimeStamp sets field value

func (*QosFlowUsageReport) SetUplinkVolume

func (o *QosFlowUsageReport) SetUplinkVolume(v int64)

SetUplinkVolume sets field value

func (QosFlowUsageReport) ToMap

func (o QosFlowUsageReport) ToMap() (map[string]interface{}, error)

type QosMonitoringInfo

type QosMonitoringInfo struct {
	QosMonitoringInd *bool `json:"qosMonitoringInd,omitempty"`
}

QosMonitoringInfo QoS Monitoring Information

func NewQosMonitoringInfo

func NewQosMonitoringInfo() *QosMonitoringInfo

NewQosMonitoringInfo instantiates a new QosMonitoringInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosMonitoringInfoWithDefaults

func NewQosMonitoringInfoWithDefaults() *QosMonitoringInfo

NewQosMonitoringInfoWithDefaults instantiates a new QosMonitoringInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosMonitoringInfo) GetQosMonitoringInd

func (o *QosMonitoringInfo) GetQosMonitoringInd() bool

GetQosMonitoringInd returns the QosMonitoringInd field value if set, zero value otherwise.

func (*QosMonitoringInfo) GetQosMonitoringIndOk

func (o *QosMonitoringInfo) GetQosMonitoringIndOk() (*bool, bool)

GetQosMonitoringIndOk returns a tuple with the QosMonitoringInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosMonitoringInfo) HasQosMonitoringInd

func (o *QosMonitoringInfo) HasQosMonitoringInd() bool

HasQosMonitoringInd returns a boolean if a field has been set.

func (QosMonitoringInfo) MarshalJSON

func (o QosMonitoringInfo) MarshalJSON() ([]byte, error)

func (*QosMonitoringInfo) SetQosMonitoringInd

func (o *QosMonitoringInfo) SetQosMonitoringInd(v bool)

SetQosMonitoringInd gets a reference to the given bool and assigns it to the QosMonitoringInd field.

func (QosMonitoringInfo) ToMap

func (o QosMonitoringInfo) ToMap() (map[string]interface{}, error)

type QosMonitoringReq

type QosMonitoringReq struct {
	String *string
}

QosMonitoringReq QoS monitoring request. Possible values are - UL - DL - BOTH - NONE

func (*QosMonitoringReq) MarshalJSON

func (src *QosMonitoringReq) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*QosMonitoringReq) UnmarshalJSON

func (dst *QosMonitoringReq) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type QosResourceType

type QosResourceType struct {
	String *string
}

QosResourceType The enumeration QosResourceType indicates whether a QoS Flow is non-GBR, delay critical GBR, or non-delay critical GBR (see clauses 5.7.3.4 and 5.7.3.5 of 3GPP TS 23.501). It shall comply with the provisions defined in table 5.5.3.6-1.

func (*QosResourceType) MarshalJSON

func (src *QosResourceType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*QosResourceType) UnmarshalJSON

func (dst *QosResourceType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type 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 RedirectResponse

type RedirectResponse struct {
	Cause *string `json:"cause,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetScp *string `json:"targetScp,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetSepp *string `json:"targetSepp,omitempty"`
}

RedirectResponse The response shall include a Location header field containing a different URI (pointing to a different URI of an other service instance), or the same URI if a request is redirected to the same target resource via a different SCP.

func NewRedirectResponse

func NewRedirectResponse() *RedirectResponse

NewRedirectResponse instantiates a new RedirectResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRedirectResponseWithDefaults

func NewRedirectResponseWithDefaults() *RedirectResponse

NewRedirectResponseWithDefaults instantiates a new RedirectResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RedirectResponse) GetCause

func (o *RedirectResponse) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*RedirectResponse) GetCauseOk

func (o *RedirectResponse) GetCauseOk() (*string, bool)

GetCauseOk returns a tuple with the Cause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectResponse) GetTargetScp

func (o *RedirectResponse) GetTargetScp() string

GetTargetScp returns the TargetScp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetScpOk

func (o *RedirectResponse) GetTargetScpOk() (*string, bool)

GetTargetScpOk returns a tuple with the TargetScp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectResponse) GetTargetSepp

func (o *RedirectResponse) GetTargetSepp() string

GetTargetSepp returns the TargetSepp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetSeppOk

func (o *RedirectResponse) GetTargetSeppOk() (*string, bool)

GetTargetSeppOk returns a tuple with the TargetSepp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectResponse) HasCause

func (o *RedirectResponse) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetScp

func (o *RedirectResponse) HasTargetScp() bool

HasTargetScp returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetSepp

func (o *RedirectResponse) HasTargetSepp() bool

HasTargetSepp returns a boolean if a field has been set.

func (RedirectResponse) MarshalJSON

func (o RedirectResponse) MarshalJSON() ([]byte, error)

func (*RedirectResponse) SetCause

func (o *RedirectResponse) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*RedirectResponse) SetTargetScp

func (o *RedirectResponse) SetTargetScp(v string)

SetTargetScp gets a reference to the given string and assigns it to the TargetScp field.

func (*RedirectResponse) SetTargetSepp

func (o *RedirectResponse) SetTargetSepp(v string)

SetTargetSepp gets a reference to the given string and assigns it to the TargetSepp field.

func (RedirectResponse) ToMap

func (o RedirectResponse) ToMap() (map[string]interface{}, error)

type RedundantPduSessionInformation

type RedundantPduSessionInformation struct {
	Rsn              Rsn    `json:"rsn"`
	PduSessionPairId *int32 `json:"pduSessionPairId,omitempty"`
}

RedundantPduSessionInformation Redundant PDU Session Information

func NewRedundantPduSessionInformation

func NewRedundantPduSessionInformation(rsn Rsn) *RedundantPduSessionInformation

NewRedundantPduSessionInformation instantiates a new RedundantPduSessionInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRedundantPduSessionInformationWithDefaults

func NewRedundantPduSessionInformationWithDefaults() *RedundantPduSessionInformation

NewRedundantPduSessionInformationWithDefaults instantiates a new RedundantPduSessionInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RedundantPduSessionInformation) GetPduSessionPairId

func (o *RedundantPduSessionInformation) GetPduSessionPairId() int32

GetPduSessionPairId returns the PduSessionPairId field value if set, zero value otherwise.

func (*RedundantPduSessionInformation) GetPduSessionPairIdOk

func (o *RedundantPduSessionInformation) GetPduSessionPairIdOk() (*int32, bool)

GetPduSessionPairIdOk returns a tuple with the PduSessionPairId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedundantPduSessionInformation) GetRsn

func (o *RedundantPduSessionInformation) GetRsn() Rsn

GetRsn returns the Rsn field value

func (*RedundantPduSessionInformation) GetRsnOk

func (o *RedundantPduSessionInformation) GetRsnOk() (*Rsn, bool)

GetRsnOk returns a tuple with the Rsn field value and a boolean to check if the value has been set.

func (*RedundantPduSessionInformation) HasPduSessionPairId

func (o *RedundantPduSessionInformation) HasPduSessionPairId() bool

HasPduSessionPairId returns a boolean if a field has been set.

func (RedundantPduSessionInformation) MarshalJSON

func (o RedundantPduSessionInformation) MarshalJSON() ([]byte, error)

func (*RedundantPduSessionInformation) SetPduSessionPairId

func (o *RedundantPduSessionInformation) SetPduSessionPairId(v int32)

SetPduSessionPairId gets a reference to the given int32 and assigns it to the PduSessionPairId field.

func (*RedundantPduSessionInformation) SetRsn

func (o *RedundantPduSessionInformation) SetRsn(v Rsn)

SetRsn sets field value

func (RedundantPduSessionInformation) ToMap

func (o RedundantPduSessionInformation) ToMap() (map[string]interface{}, error)

type RefToBinaryData

type RefToBinaryData struct {
	// This IE shall contain the value of the Content-ID header of the referenced binary body part.
	ContentId string `json:"contentId"`
}

RefToBinaryData This parameter provides information about the referenced binary body data.

func NewRefToBinaryData

func NewRefToBinaryData(contentId string) *RefToBinaryData

NewRefToBinaryData instantiates a new RefToBinaryData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRefToBinaryDataWithDefaults

func NewRefToBinaryDataWithDefaults() *RefToBinaryData

NewRefToBinaryDataWithDefaults instantiates a new RefToBinaryData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RefToBinaryData) GetContentId

func (o *RefToBinaryData) GetContentId() string

GetContentId returns the ContentId field value

func (*RefToBinaryData) GetContentIdOk

func (o *RefToBinaryData) GetContentIdOk() (*string, bool)

GetContentIdOk returns a tuple with the ContentId field value and a boolean to check if the value has been set.

func (RefToBinaryData) MarshalJSON

func (o RefToBinaryData) MarshalJSON() ([]byte, error)

func (*RefToBinaryData) SetContentId

func (o *RefToBinaryData) SetContentId(v string)

SetContentId sets field value

func (RefToBinaryData) ToMap

func (o RefToBinaryData) ToMap() (map[string]interface{}, error)

type ReflectiveQoSAttribute

type ReflectiveQoSAttribute struct {
	String *string
}

ReflectiveQoSAttribute The enumeration ReflectiveQosAttribute indicates whether certain traffic of the QoS flow may be subject to Reflective QoS (see clause 5.7.2.3 of 3GPP TS 23.501). It shall comply with the provisions defined in table 5.5.3.3-1.

func (*ReflectiveQoSAttribute) MarshalJSON

func (src *ReflectiveQoSAttribute) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ReflectiveQoSAttribute) UnmarshalJSON

func (dst *ReflectiveQoSAttribute) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ReleaseData

type ReleaseData struct {
	Cause     *Cause     `json:"cause,omitempty"`
	NgApCause *NgApCause `json:"ngApCause,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Var5gMmCauseValue *int32        `json:"5gMmCauseValue,omitempty"`
	UeLocation        *UserLocation `json:"ueLocation,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"`
	AddUeLocation           *UserLocation             `json:"addUeLocation,omitempty"`
	SecondaryRatUsageReport []SecondaryRatUsageReport `json:"secondaryRatUsageReport,omitempty"`
	SecondaryRatUsageInfo   []SecondaryRatUsageInfo   `json:"secondaryRatUsageInfo,omitempty"`
	N4Info                  *N4Information            `json:"n4Info,omitempty"`
	N4InfoExt1              *N4Information            `json:"n4InfoExt1,omitempty"`
	N4InfoExt2              *N4Information            `json:"n4InfoExt2,omitempty"`
}

ReleaseData Data within Release Request

func NewReleaseData

func NewReleaseData() *ReleaseData

NewReleaseData instantiates a new ReleaseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseDataWithDefaults

func NewReleaseDataWithDefaults() *ReleaseData

NewReleaseDataWithDefaults instantiates a new ReleaseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseData) GetAddUeLocation

func (o *ReleaseData) GetAddUeLocation() UserLocation

GetAddUeLocation returns the AddUeLocation field value if set, zero value otherwise.

func (*ReleaseData) GetAddUeLocationOk

func (o *ReleaseData) GetAddUeLocationOk() (*UserLocation, bool)

GetAddUeLocationOk returns a tuple with the AddUeLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseData) GetCause

func (o *ReleaseData) GetCause() Cause

GetCause returns the Cause field value if set, zero value otherwise.

func (*ReleaseData) GetCauseOk

func (o *ReleaseData) GetCauseOk() (*Cause, 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 (*ReleaseData) GetN4Info

func (o *ReleaseData) GetN4Info() N4Information

GetN4Info returns the N4Info field value if set, zero value otherwise.

func (*ReleaseData) GetN4InfoExt1

func (o *ReleaseData) GetN4InfoExt1() N4Information

GetN4InfoExt1 returns the N4InfoExt1 field value if set, zero value otherwise.

func (*ReleaseData) GetN4InfoExt1Ok

func (o *ReleaseData) GetN4InfoExt1Ok() (*N4Information, bool)

GetN4InfoExt1Ok returns a tuple with the N4InfoExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseData) GetN4InfoExt2

func (o *ReleaseData) GetN4InfoExt2() N4Information

GetN4InfoExt2 returns the N4InfoExt2 field value if set, zero value otherwise.

func (*ReleaseData) GetN4InfoExt2Ok

func (o *ReleaseData) GetN4InfoExt2Ok() (*N4Information, bool)

GetN4InfoExt2Ok returns a tuple with the N4InfoExt2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseData) GetN4InfoOk

func (o *ReleaseData) GetN4InfoOk() (*N4Information, bool)

GetN4InfoOk returns a tuple with the N4Info field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseData) GetNgApCause

func (o *ReleaseData) GetNgApCause() NgApCause

GetNgApCause returns the NgApCause field value if set, zero value otherwise.

func (*ReleaseData) GetNgApCauseOk

func (o *ReleaseData) 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 (*ReleaseData) GetSecondaryRatUsageInfo

func (o *ReleaseData) GetSecondaryRatUsageInfo() []SecondaryRatUsageInfo

GetSecondaryRatUsageInfo returns the SecondaryRatUsageInfo field value if set, zero value otherwise.

func (*ReleaseData) GetSecondaryRatUsageInfoOk

func (o *ReleaseData) GetSecondaryRatUsageInfoOk() ([]SecondaryRatUsageInfo, bool)

GetSecondaryRatUsageInfoOk returns a tuple with the SecondaryRatUsageInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseData) GetSecondaryRatUsageReport

func (o *ReleaseData) GetSecondaryRatUsageReport() []SecondaryRatUsageReport

GetSecondaryRatUsageReport returns the SecondaryRatUsageReport field value if set, zero value otherwise.

func (*ReleaseData) GetSecondaryRatUsageReportOk

func (o *ReleaseData) GetSecondaryRatUsageReportOk() ([]SecondaryRatUsageReport, bool)

GetSecondaryRatUsageReportOk returns a tuple with the SecondaryRatUsageReport field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseData) GetUeLocation

func (o *ReleaseData) GetUeLocation() UserLocation

GetUeLocation returns the UeLocation field value if set, zero value otherwise.

func (*ReleaseData) GetUeLocationOk

func (o *ReleaseData) GetUeLocationOk() (*UserLocation, bool)

GetUeLocationOk returns a tuple with the UeLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseData) GetUeTimeZone

func (o *ReleaseData) GetUeTimeZone() string

GetUeTimeZone returns the UeTimeZone field value if set, zero value otherwise.

func (*ReleaseData) GetUeTimeZoneOk

func (o *ReleaseData) 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 (*ReleaseData) GetVar5gMmCauseValue

func (o *ReleaseData) GetVar5gMmCauseValue() int32

GetVar5gMmCauseValue returns the Var5gMmCauseValue field value if set, zero value otherwise.

func (*ReleaseData) GetVar5gMmCauseValueOk

func (o *ReleaseData) GetVar5gMmCauseValueOk() (*int32, bool)

GetVar5gMmCauseValueOk returns a tuple with the Var5gMmCauseValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseData) HasAddUeLocation

func (o *ReleaseData) HasAddUeLocation() bool

HasAddUeLocation returns a boolean if a field has been set.

func (*ReleaseData) HasCause

func (o *ReleaseData) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ReleaseData) HasN4Info

func (o *ReleaseData) HasN4Info() bool

HasN4Info returns a boolean if a field has been set.

func (*ReleaseData) HasN4InfoExt1

func (o *ReleaseData) HasN4InfoExt1() bool

HasN4InfoExt1 returns a boolean if a field has been set.

func (*ReleaseData) HasN4InfoExt2

func (o *ReleaseData) HasN4InfoExt2() bool

HasN4InfoExt2 returns a boolean if a field has been set.

func (*ReleaseData) HasNgApCause

func (o *ReleaseData) HasNgApCause() bool

HasNgApCause returns a boolean if a field has been set.

func (*ReleaseData) HasSecondaryRatUsageInfo

func (o *ReleaseData) HasSecondaryRatUsageInfo() bool

HasSecondaryRatUsageInfo returns a boolean if a field has been set.

func (*ReleaseData) HasSecondaryRatUsageReport

func (o *ReleaseData) HasSecondaryRatUsageReport() bool

HasSecondaryRatUsageReport returns a boolean if a field has been set.

func (*ReleaseData) HasUeLocation

func (o *ReleaseData) HasUeLocation() bool

HasUeLocation returns a boolean if a field has been set.

func (*ReleaseData) HasUeTimeZone

func (o *ReleaseData) HasUeTimeZone() bool

HasUeTimeZone returns a boolean if a field has been set.

func (*ReleaseData) HasVar5gMmCauseValue

func (o *ReleaseData) HasVar5gMmCauseValue() bool

HasVar5gMmCauseValue returns a boolean if a field has been set.

func (ReleaseData) MarshalJSON

func (o ReleaseData) MarshalJSON() ([]byte, error)

func (*ReleaseData) SetAddUeLocation

func (o *ReleaseData) SetAddUeLocation(v UserLocation)

SetAddUeLocation gets a reference to the given UserLocation and assigns it to the AddUeLocation field.

func (*ReleaseData) SetCause

func (o *ReleaseData) SetCause(v Cause)

SetCause gets a reference to the given Cause and assigns it to the Cause field.

func (*ReleaseData) SetN4Info

func (o *ReleaseData) SetN4Info(v N4Information)

SetN4Info gets a reference to the given N4Information and assigns it to the N4Info field.

func (*ReleaseData) SetN4InfoExt1

func (o *ReleaseData) SetN4InfoExt1(v N4Information)

SetN4InfoExt1 gets a reference to the given N4Information and assigns it to the N4InfoExt1 field.

func (*ReleaseData) SetN4InfoExt2

func (o *ReleaseData) SetN4InfoExt2(v N4Information)

SetN4InfoExt2 gets a reference to the given N4Information and assigns it to the N4InfoExt2 field.

func (*ReleaseData) SetNgApCause

func (o *ReleaseData) SetNgApCause(v NgApCause)

SetNgApCause gets a reference to the given NgApCause and assigns it to the NgApCause field.

func (*ReleaseData) SetSecondaryRatUsageInfo

func (o *ReleaseData) SetSecondaryRatUsageInfo(v []SecondaryRatUsageInfo)

SetSecondaryRatUsageInfo gets a reference to the given []SecondaryRatUsageInfo and assigns it to the SecondaryRatUsageInfo field.

func (*ReleaseData) SetSecondaryRatUsageReport

func (o *ReleaseData) SetSecondaryRatUsageReport(v []SecondaryRatUsageReport)

SetSecondaryRatUsageReport gets a reference to the given []SecondaryRatUsageReport and assigns it to the SecondaryRatUsageReport field.

func (*ReleaseData) SetUeLocation

func (o *ReleaseData) SetUeLocation(v UserLocation)

SetUeLocation gets a reference to the given UserLocation and assigns it to the UeLocation field.

func (*ReleaseData) SetUeTimeZone

func (o *ReleaseData) SetUeTimeZone(v string)

SetUeTimeZone gets a reference to the given string and assigns it to the UeTimeZone field.

func (*ReleaseData) SetVar5gMmCauseValue

func (o *ReleaseData) SetVar5gMmCauseValue(v int32)

SetVar5gMmCauseValue gets a reference to the given int32 and assigns it to the Var5gMmCauseValue field.

func (ReleaseData) ToMap

func (o ReleaseData) ToMap() (map[string]interface{}, error)

type ReleasePduSession200Response

type ReleasePduSession200Response struct {
	JsonData                    *ReleasedData `json:"jsonData,omitempty"`
	BinaryDataN4Information     **os.File     `json:"binaryDataN4Information,omitempty"`
	BinaryDataN4InformationExt1 **os.File     `json:"binaryDataN4InformationExt1,omitempty"`
	BinaryDataN4InformationExt2 **os.File     `json:"binaryDataN4InformationExt2,omitempty"`
}

ReleasePduSession200Response struct for ReleasePduSession200Response

func NewReleasePduSession200Response

func NewReleasePduSession200Response() *ReleasePduSession200Response

NewReleasePduSession200Response instantiates a new ReleasePduSession200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleasePduSession200ResponseWithDefaults

func NewReleasePduSession200ResponseWithDefaults() *ReleasePduSession200Response

NewReleasePduSession200ResponseWithDefaults instantiates a new ReleasePduSession200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleasePduSession200Response) GetBinaryDataN4Information

func (o *ReleasePduSession200Response) GetBinaryDataN4Information() *os.File

GetBinaryDataN4Information returns the BinaryDataN4Information field value if set, zero value otherwise.

func (*ReleasePduSession200Response) GetBinaryDataN4InformationExt1

func (o *ReleasePduSession200Response) GetBinaryDataN4InformationExt1() *os.File

GetBinaryDataN4InformationExt1 returns the BinaryDataN4InformationExt1 field value if set, zero value otherwise.

func (*ReleasePduSession200Response) GetBinaryDataN4InformationExt1Ok

func (o *ReleasePduSession200Response) GetBinaryDataN4InformationExt1Ok() (**os.File, bool)

GetBinaryDataN4InformationExt1Ok returns a tuple with the BinaryDataN4InformationExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasePduSession200Response) GetBinaryDataN4InformationExt2

func (o *ReleasePduSession200Response) GetBinaryDataN4InformationExt2() *os.File

GetBinaryDataN4InformationExt2 returns the BinaryDataN4InformationExt2 field value if set, zero value otherwise.

func (*ReleasePduSession200Response) GetBinaryDataN4InformationExt2Ok

func (o *ReleasePduSession200Response) GetBinaryDataN4InformationExt2Ok() (**os.File, bool)

GetBinaryDataN4InformationExt2Ok returns a tuple with the BinaryDataN4InformationExt2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasePduSession200Response) GetBinaryDataN4InformationOk

func (o *ReleasePduSession200Response) GetBinaryDataN4InformationOk() (**os.File, bool)

GetBinaryDataN4InformationOk returns a tuple with the BinaryDataN4Information field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasePduSession200Response) GetJsonData

func (o *ReleasePduSession200Response) GetJsonData() ReleasedData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*ReleasePduSession200Response) GetJsonDataOk

func (o *ReleasePduSession200Response) GetJsonDataOk() (*ReleasedData, bool)

GetJsonDataOk returns a tuple with the JsonData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasePduSession200Response) HasBinaryDataN4Information

func (o *ReleasePduSession200Response) HasBinaryDataN4Information() bool

HasBinaryDataN4Information returns a boolean if a field has been set.

func (*ReleasePduSession200Response) HasBinaryDataN4InformationExt1

func (o *ReleasePduSession200Response) HasBinaryDataN4InformationExt1() bool

HasBinaryDataN4InformationExt1 returns a boolean if a field has been set.

func (*ReleasePduSession200Response) HasBinaryDataN4InformationExt2

func (o *ReleasePduSession200Response) HasBinaryDataN4InformationExt2() bool

HasBinaryDataN4InformationExt2 returns a boolean if a field has been set.

func (*ReleasePduSession200Response) HasJsonData

func (o *ReleasePduSession200Response) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (ReleasePduSession200Response) MarshalJSON

func (o ReleasePduSession200Response) MarshalJSON() ([]byte, error)

func (*ReleasePduSession200Response) SetBinaryDataN4Information

func (o *ReleasePduSession200Response) SetBinaryDataN4Information(v *os.File)

SetBinaryDataN4Information gets a reference to the given *os.File and assigns it to the BinaryDataN4Information field.

func (*ReleasePduSession200Response) SetBinaryDataN4InformationExt1

func (o *ReleasePduSession200Response) SetBinaryDataN4InformationExt1(v *os.File)

SetBinaryDataN4InformationExt1 gets a reference to the given *os.File and assigns it to the BinaryDataN4InformationExt1 field.

func (*ReleasePduSession200Response) SetBinaryDataN4InformationExt2

func (o *ReleasePduSession200Response) SetBinaryDataN4InformationExt2(v *os.File)

SetBinaryDataN4InformationExt2 gets a reference to the given *os.File and assigns it to the BinaryDataN4InformationExt2 field.

func (*ReleasePduSession200Response) SetJsonData

func (o *ReleasePduSession200Response) SetJsonData(v ReleasedData)

SetJsonData gets a reference to the given ReleasedData and assigns it to the JsonData field.

func (ReleasePduSession200Response) ToMap

func (o ReleasePduSession200Response) ToMap() (map[string]interface{}, error)

type ReleasePduSessionRequest

type ReleasePduSessionRequest struct {
	JsonData                    *ReleaseData `json:"jsonData,omitempty"`
	BinaryDataN4Information     **os.File    `json:"binaryDataN4Information,omitempty"`
	BinaryDataN4InformationExt1 **os.File    `json:"binaryDataN4InformationExt1,omitempty"`
	BinaryDataN4InformationExt2 **os.File    `json:"binaryDataN4InformationExt2,omitempty"`
}

ReleasePduSessionRequest struct for ReleasePduSessionRequest

func NewReleasePduSessionRequest

func NewReleasePduSessionRequest() *ReleasePduSessionRequest

NewReleasePduSessionRequest instantiates a new ReleasePduSessionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleasePduSessionRequestWithDefaults

func NewReleasePduSessionRequestWithDefaults() *ReleasePduSessionRequest

NewReleasePduSessionRequestWithDefaults instantiates a new ReleasePduSessionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleasePduSessionRequest) GetBinaryDataN4Information

func (o *ReleasePduSessionRequest) GetBinaryDataN4Information() *os.File

GetBinaryDataN4Information returns the BinaryDataN4Information field value if set, zero value otherwise.

func (*ReleasePduSessionRequest) GetBinaryDataN4InformationExt1

func (o *ReleasePduSessionRequest) GetBinaryDataN4InformationExt1() *os.File

GetBinaryDataN4InformationExt1 returns the BinaryDataN4InformationExt1 field value if set, zero value otherwise.

func (*ReleasePduSessionRequest) GetBinaryDataN4InformationExt1Ok

func (o *ReleasePduSessionRequest) GetBinaryDataN4InformationExt1Ok() (**os.File, bool)

GetBinaryDataN4InformationExt1Ok returns a tuple with the BinaryDataN4InformationExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasePduSessionRequest) GetBinaryDataN4InformationExt2

func (o *ReleasePduSessionRequest) GetBinaryDataN4InformationExt2() *os.File

GetBinaryDataN4InformationExt2 returns the BinaryDataN4InformationExt2 field value if set, zero value otherwise.

func (*ReleasePduSessionRequest) GetBinaryDataN4InformationExt2Ok

func (o *ReleasePduSessionRequest) GetBinaryDataN4InformationExt2Ok() (**os.File, bool)

GetBinaryDataN4InformationExt2Ok returns a tuple with the BinaryDataN4InformationExt2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasePduSessionRequest) GetBinaryDataN4InformationOk

func (o *ReleasePduSessionRequest) GetBinaryDataN4InformationOk() (**os.File, bool)

GetBinaryDataN4InformationOk returns a tuple with the BinaryDataN4Information field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasePduSessionRequest) GetJsonData

func (o *ReleasePduSessionRequest) GetJsonData() ReleaseData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*ReleasePduSessionRequest) GetJsonDataOk

func (o *ReleasePduSessionRequest) GetJsonDataOk() (*ReleaseData, bool)

GetJsonDataOk returns a tuple with the JsonData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasePduSessionRequest) HasBinaryDataN4Information

func (o *ReleasePduSessionRequest) HasBinaryDataN4Information() bool

HasBinaryDataN4Information returns a boolean if a field has been set.

func (*ReleasePduSessionRequest) HasBinaryDataN4InformationExt1

func (o *ReleasePduSessionRequest) HasBinaryDataN4InformationExt1() bool

HasBinaryDataN4InformationExt1 returns a boolean if a field has been set.

func (*ReleasePduSessionRequest) HasBinaryDataN4InformationExt2

func (o *ReleasePduSessionRequest) HasBinaryDataN4InformationExt2() bool

HasBinaryDataN4InformationExt2 returns a boolean if a field has been set.

func (*ReleasePduSessionRequest) HasJsonData

func (o *ReleasePduSessionRequest) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (ReleasePduSessionRequest) MarshalJSON

func (o ReleasePduSessionRequest) MarshalJSON() ([]byte, error)

func (*ReleasePduSessionRequest) SetBinaryDataN4Information

func (o *ReleasePduSessionRequest) SetBinaryDataN4Information(v *os.File)

SetBinaryDataN4Information gets a reference to the given *os.File and assigns it to the BinaryDataN4Information field.

func (*ReleasePduSessionRequest) SetBinaryDataN4InformationExt1

func (o *ReleasePduSessionRequest) SetBinaryDataN4InformationExt1(v *os.File)

SetBinaryDataN4InformationExt1 gets a reference to the given *os.File and assigns it to the BinaryDataN4InformationExt1 field.

func (*ReleasePduSessionRequest) SetBinaryDataN4InformationExt2

func (o *ReleasePduSessionRequest) SetBinaryDataN4InformationExt2(v *os.File)

SetBinaryDataN4InformationExt2 gets a reference to the given *os.File and assigns it to the BinaryDataN4InformationExt2 field.

func (*ReleasePduSessionRequest) SetJsonData

func (o *ReleasePduSessionRequest) SetJsonData(v ReleaseData)

SetJsonData gets a reference to the given ReleaseData and assigns it to the JsonData field.

func (ReleasePduSessionRequest) ToMap

func (o ReleasePduSessionRequest) ToMap() (map[string]interface{}, error)

type ReleaseSmContextRequest

type ReleaseSmContextRequest struct {
	JsonData                  *SmContextReleaseData `json:"jsonData,omitempty"`
	BinaryDataN2SmInformation **os.File             `json:"binaryDataN2SmInformation,omitempty"`
}

ReleaseSmContextRequest struct for ReleaseSmContextRequest

func NewReleaseSmContextRequest

func NewReleaseSmContextRequest() *ReleaseSmContextRequest

NewReleaseSmContextRequest instantiates a new ReleaseSmContextRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseSmContextRequestWithDefaults

func NewReleaseSmContextRequestWithDefaults() *ReleaseSmContextRequest

NewReleaseSmContextRequestWithDefaults instantiates a new ReleaseSmContextRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseSmContextRequest) GetBinaryDataN2SmInformation

func (o *ReleaseSmContextRequest) GetBinaryDataN2SmInformation() *os.File

GetBinaryDataN2SmInformation returns the BinaryDataN2SmInformation field value if set, zero value otherwise.

func (*ReleaseSmContextRequest) GetBinaryDataN2SmInformationOk

func (o *ReleaseSmContextRequest) GetBinaryDataN2SmInformationOk() (**os.File, bool)

GetBinaryDataN2SmInformationOk returns a tuple with the BinaryDataN2SmInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSmContextRequest) GetJsonData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*ReleaseSmContextRequest) GetJsonDataOk

func (o *ReleaseSmContextRequest) GetJsonDataOk() (*SmContextReleaseData, bool)

GetJsonDataOk returns a tuple with the JsonData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSmContextRequest) HasBinaryDataN2SmInformation

func (o *ReleaseSmContextRequest) HasBinaryDataN2SmInformation() bool

HasBinaryDataN2SmInformation returns a boolean if a field has been set.

func (*ReleaseSmContextRequest) HasJsonData

func (o *ReleaseSmContextRequest) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (ReleaseSmContextRequest) MarshalJSON

func (o ReleaseSmContextRequest) MarshalJSON() ([]byte, error)

func (*ReleaseSmContextRequest) SetBinaryDataN2SmInformation

func (o *ReleaseSmContextRequest) SetBinaryDataN2SmInformation(v *os.File)

SetBinaryDataN2SmInformation gets a reference to the given *os.File and assigns it to the BinaryDataN2SmInformation field.

func (*ReleaseSmContextRequest) SetJsonData

SetJsonData gets a reference to the given SmContextReleaseData and assigns it to the JsonData field.

func (ReleaseSmContextRequest) ToMap

func (o ReleaseSmContextRequest) ToMap() (map[string]interface{}, error)

type ReleasedData

type ReleasedData struct {
	SmallDataRateStatus *SmallDataRateStatus `json:"smallDataRateStatus,omitempty"`
	ApnRateStatus       *ApnRateStatus       `json:"apnRateStatus,omitempty"`
	N4Info              *N4Information       `json:"n4Info,omitempty"`
	N4InfoExt1          *N4Information       `json:"n4InfoExt1,omitempty"`
	N4InfoExt2          *N4Information       `json:"n4InfoExt2,omitempty"`
}

ReleasedData Data within Release Response

func NewReleasedData

func NewReleasedData() *ReleasedData

NewReleasedData instantiates a new ReleasedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleasedDataWithDefaults

func NewReleasedDataWithDefaults() *ReleasedData

NewReleasedDataWithDefaults instantiates a new ReleasedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleasedData) GetApnRateStatus

func (o *ReleasedData) GetApnRateStatus() ApnRateStatus

GetApnRateStatus returns the ApnRateStatus field value if set, zero value otherwise.

func (*ReleasedData) GetApnRateStatusOk

func (o *ReleasedData) GetApnRateStatusOk() (*ApnRateStatus, bool)

GetApnRateStatusOk returns a tuple with the ApnRateStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasedData) GetN4Info

func (o *ReleasedData) GetN4Info() N4Information

GetN4Info returns the N4Info field value if set, zero value otherwise.

func (*ReleasedData) GetN4InfoExt1

func (o *ReleasedData) GetN4InfoExt1() N4Information

GetN4InfoExt1 returns the N4InfoExt1 field value if set, zero value otherwise.

func (*ReleasedData) GetN4InfoExt1Ok

func (o *ReleasedData) GetN4InfoExt1Ok() (*N4Information, bool)

GetN4InfoExt1Ok returns a tuple with the N4InfoExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasedData) GetN4InfoExt2

func (o *ReleasedData) GetN4InfoExt2() N4Information

GetN4InfoExt2 returns the N4InfoExt2 field value if set, zero value otherwise.

func (*ReleasedData) GetN4InfoExt2Ok

func (o *ReleasedData) GetN4InfoExt2Ok() (*N4Information, bool)

GetN4InfoExt2Ok returns a tuple with the N4InfoExt2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasedData) GetN4InfoOk

func (o *ReleasedData) GetN4InfoOk() (*N4Information, bool)

GetN4InfoOk returns a tuple with the N4Info field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasedData) GetSmallDataRateStatus

func (o *ReleasedData) GetSmallDataRateStatus() SmallDataRateStatus

GetSmallDataRateStatus returns the SmallDataRateStatus field value if set, zero value otherwise.

func (*ReleasedData) GetSmallDataRateStatusOk

func (o *ReleasedData) GetSmallDataRateStatusOk() (*SmallDataRateStatus, bool)

GetSmallDataRateStatusOk returns a tuple with the SmallDataRateStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasedData) HasApnRateStatus

func (o *ReleasedData) HasApnRateStatus() bool

HasApnRateStatus returns a boolean if a field has been set.

func (*ReleasedData) HasN4Info

func (o *ReleasedData) HasN4Info() bool

HasN4Info returns a boolean if a field has been set.

func (*ReleasedData) HasN4InfoExt1

func (o *ReleasedData) HasN4InfoExt1() bool

HasN4InfoExt1 returns a boolean if a field has been set.

func (*ReleasedData) HasN4InfoExt2

func (o *ReleasedData) HasN4InfoExt2() bool

HasN4InfoExt2 returns a boolean if a field has been set.

func (*ReleasedData) HasSmallDataRateStatus

func (o *ReleasedData) HasSmallDataRateStatus() bool

HasSmallDataRateStatus returns a boolean if a field has been set.

func (ReleasedData) MarshalJSON

func (o ReleasedData) MarshalJSON() ([]byte, error)

func (*ReleasedData) SetApnRateStatus

func (o *ReleasedData) SetApnRateStatus(v ApnRateStatus)

SetApnRateStatus gets a reference to the given ApnRateStatus and assigns it to the ApnRateStatus field.

func (*ReleasedData) SetN4Info

func (o *ReleasedData) SetN4Info(v N4Information)

SetN4Info gets a reference to the given N4Information and assigns it to the N4Info field.

func (*ReleasedData) SetN4InfoExt1

func (o *ReleasedData) SetN4InfoExt1(v N4Information)

SetN4InfoExt1 gets a reference to the given N4Information and assigns it to the N4InfoExt1 field.

func (*ReleasedData) SetN4InfoExt2

func (o *ReleasedData) SetN4InfoExt2(v N4Information)

SetN4InfoExt2 gets a reference to the given N4Information and assigns it to the N4InfoExt2 field.

func (*ReleasedData) SetSmallDataRateStatus

func (o *ReleasedData) SetSmallDataRateStatus(v SmallDataRateStatus)

SetSmallDataRateStatus gets a reference to the given SmallDataRateStatus and assigns it to the SmallDataRateStatus field.

func (ReleasedData) ToMap

func (o ReleasedData) ToMap() (map[string]interface{}, error)

type RequestIndication

type RequestIndication struct {
	String *string
}

RequestIndication Request Indication in Update (SM context) service operation. Possible values are - UE_REQ_PDU_SES_MOD - UE_REQ_PDU_SES_REL - PDU_SES_MOB - NW_REQ_PDU_SES_AUTH - NW_REQ_PDU_SES_MOD - NW_REQ_PDU_SES_REL - EBI_ASSIGNMENT_REQ - REL_DUE_TO_5G_AN_REQUEST

func (*RequestIndication) MarshalJSON

func (src *RequestIndication) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RequestIndication) UnmarshalJSON

func (dst *RequestIndication) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RequestType

type RequestType struct {
	String *string
}

RequestType Request Type in Create (SM context) service operation. Possible values are - INITIAL_REQUEST - EXISTING_PDU_SESSION - INITIAL_EMERGENCY_REQUEST - EXISTING_EMERGENCY_PDU_SESSION

func (*RequestType) MarshalJSON

func (src *RequestType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RequestType) UnmarshalJSON

func (dst *RequestType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ResourceStatus

type ResourceStatus struct {
	String *string
}

ResourceStatus Status of SM context or PDU session resource. Possible values are - RELEASED - UNCHANGED - TRANSFERRED - UPDATED - ALT_ANCHOR_SMF

func (*ResourceStatus) MarshalJSON

func (src *ResourceStatus) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ResourceStatus) UnmarshalJSON

func (dst *ResourceStatus) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RetrieveData

type RetrieveData struct {
	SmallDataRateStatusReq *bool                  `json:"smallDataRateStatusReq,omitempty"`
	PduSessionContextType  *PduSessionContextType `json:"pduSessionContextType,omitempty"`
}

RetrieveData Data within Retrieve Request

func NewRetrieveData

func NewRetrieveData() *RetrieveData

NewRetrieveData instantiates a new RetrieveData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRetrieveDataWithDefaults

func NewRetrieveDataWithDefaults() *RetrieveData

NewRetrieveDataWithDefaults instantiates a new RetrieveData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RetrieveData) GetPduSessionContextType

func (o *RetrieveData) GetPduSessionContextType() PduSessionContextType

GetPduSessionContextType returns the PduSessionContextType field value if set, zero value otherwise.

func (*RetrieveData) GetPduSessionContextTypeOk

func (o *RetrieveData) GetPduSessionContextTypeOk() (*PduSessionContextType, bool)

GetPduSessionContextTypeOk returns a tuple with the PduSessionContextType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RetrieveData) GetSmallDataRateStatusReq

func (o *RetrieveData) GetSmallDataRateStatusReq() bool

GetSmallDataRateStatusReq returns the SmallDataRateStatusReq field value if set, zero value otherwise.

func (*RetrieveData) GetSmallDataRateStatusReqOk

func (o *RetrieveData) GetSmallDataRateStatusReqOk() (*bool, bool)

GetSmallDataRateStatusReqOk returns a tuple with the SmallDataRateStatusReq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RetrieveData) HasPduSessionContextType

func (o *RetrieveData) HasPduSessionContextType() bool

HasPduSessionContextType returns a boolean if a field has been set.

func (*RetrieveData) HasSmallDataRateStatusReq

func (o *RetrieveData) HasSmallDataRateStatusReq() bool

HasSmallDataRateStatusReq returns a boolean if a field has been set.

func (RetrieveData) MarshalJSON

func (o RetrieveData) MarshalJSON() ([]byte, error)

func (*RetrieveData) SetPduSessionContextType

func (o *RetrieveData) SetPduSessionContextType(v PduSessionContextType)

SetPduSessionContextType gets a reference to the given PduSessionContextType and assigns it to the PduSessionContextType field.

func (*RetrieveData) SetSmallDataRateStatusReq

func (o *RetrieveData) SetSmallDataRateStatusReq(v bool)

SetSmallDataRateStatusReq gets a reference to the given bool and assigns it to the SmallDataRateStatusReq field.

func (RetrieveData) ToMap

func (o RetrieveData) ToMap() (map[string]interface{}, error)

type RetrievedData

type RetrievedData struct {
	SmallDataRateStatus *SmallDataRateStatus `json:"smallDataRateStatus,omitempty"`
	AfCoordinationInfo  *AfCoordinationInfo  `json:"afCoordinationInfo,omitempty"`
}

RetrievedData Data within Retrieve Response

func NewRetrievedData

func NewRetrievedData() *RetrievedData

NewRetrievedData instantiates a new RetrievedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRetrievedDataWithDefaults

func NewRetrievedDataWithDefaults() *RetrievedData

NewRetrievedDataWithDefaults instantiates a new RetrievedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RetrievedData) GetAfCoordinationInfo

func (o *RetrievedData) GetAfCoordinationInfo() AfCoordinationInfo

GetAfCoordinationInfo returns the AfCoordinationInfo field value if set, zero value otherwise.

func (*RetrievedData) GetAfCoordinationInfoOk

func (o *RetrievedData) GetAfCoordinationInfoOk() (*AfCoordinationInfo, bool)

GetAfCoordinationInfoOk returns a tuple with the AfCoordinationInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RetrievedData) GetSmallDataRateStatus

func (o *RetrievedData) GetSmallDataRateStatus() SmallDataRateStatus

GetSmallDataRateStatus returns the SmallDataRateStatus field value if set, zero value otherwise.

func (*RetrievedData) GetSmallDataRateStatusOk

func (o *RetrievedData) GetSmallDataRateStatusOk() (*SmallDataRateStatus, bool)

GetSmallDataRateStatusOk returns a tuple with the SmallDataRateStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RetrievedData) HasAfCoordinationInfo

func (o *RetrievedData) HasAfCoordinationInfo() bool

HasAfCoordinationInfo returns a boolean if a field has been set.

func (*RetrievedData) HasSmallDataRateStatus

func (o *RetrievedData) HasSmallDataRateStatus() bool

HasSmallDataRateStatus returns a boolean if a field has been set.

func (RetrievedData) MarshalJSON

func (o RetrievedData) MarshalJSON() ([]byte, error)

func (*RetrievedData) SetAfCoordinationInfo

func (o *RetrievedData) SetAfCoordinationInfo(v AfCoordinationInfo)

SetAfCoordinationInfo gets a reference to the given AfCoordinationInfo and assigns it to the AfCoordinationInfo field.

func (*RetrievedData) SetSmallDataRateStatus

func (o *RetrievedData) SetSmallDataRateStatus(v SmallDataRateStatus)

SetSmallDataRateStatus gets a reference to the given SmallDataRateStatus and assigns it to the SmallDataRateStatus field.

func (RetrievedData) ToMap

func (o RetrievedData) ToMap() (map[string]interface{}, error)

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 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 Rsn

type Rsn struct {
	String *string
}

Rsn Redundancy Sequence Number. Possible values are - V1 - V2 - NONE

func (*Rsn) MarshalJSON

func (src *Rsn) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Rsn) UnmarshalJSON

func (dst *Rsn) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SMContextsCollectionApiService

type SMContextsCollectionApiService service

SMContextsCollectionApiService SMContextsCollectionApi service

func (*SMContextsCollectionApiService) PostSmContexts

PostSmContexts Create SM Context

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPostSmContextsRequest

func (*SMContextsCollectionApiService) PostSmContextsExecute

Execute executes the request

@return SmContextCreatedData

type SatelliteBackhaulCategory

type SatelliteBackhaulCategory struct {
	String *string
}

SatelliteBackhaulCategory Indicates the satellite backhaul used.

func (*SatelliteBackhaulCategory) MarshalJSON

func (src *SatelliteBackhaulCategory) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SatelliteBackhaulCategory) UnmarshalJSON

func (dst *SatelliteBackhaulCategory) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SbiBindingLevel

type SbiBindingLevel struct {
	String *string
}

SbiBindingLevel SBI Binding Level

func (*SbiBindingLevel) MarshalJSON

func (src *SbiBindingLevel) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SbiBindingLevel) UnmarshalJSON

func (dst *SbiBindingLevel) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ScheduledCommunicationTime

type ScheduledCommunicationTime struct {
	// Identifies the day(s) of the week. If absent, it indicates every day of the week.
	DaysOfWeek []int32 `json:"daysOfWeek,omitempty"`
	// String with format partial-time or full-time as defined in clause 5.6 of IETF RFC 3339. Examples, 20:15:00, 20:15:00-08:00 (for 8 hours behind UTC).
	TimeOfDayStart *string `json:"timeOfDayStart,omitempty"`
	// String with format partial-time or full-time as defined in clause 5.6 of IETF RFC 3339. Examples, 20:15:00, 20:15:00-08:00 (for 8 hours behind UTC).
	TimeOfDayEnd *string `json:"timeOfDayEnd,omitempty"`
}

ScheduledCommunicationTime Identifies time and day of the week when the UE is available for communication.

func NewScheduledCommunicationTime

func NewScheduledCommunicationTime() *ScheduledCommunicationTime

NewScheduledCommunicationTime instantiates a new ScheduledCommunicationTime object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScheduledCommunicationTimeWithDefaults

func NewScheduledCommunicationTimeWithDefaults() *ScheduledCommunicationTime

NewScheduledCommunicationTimeWithDefaults instantiates a new ScheduledCommunicationTime object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScheduledCommunicationTime) GetDaysOfWeek

func (o *ScheduledCommunicationTime) GetDaysOfWeek() []int32

GetDaysOfWeek returns the DaysOfWeek field value if set, zero value otherwise.

func (*ScheduledCommunicationTime) GetDaysOfWeekOk

func (o *ScheduledCommunicationTime) GetDaysOfWeekOk() ([]int32, bool)

GetDaysOfWeekOk returns a tuple with the DaysOfWeek field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScheduledCommunicationTime) GetTimeOfDayEnd

func (o *ScheduledCommunicationTime) GetTimeOfDayEnd() string

GetTimeOfDayEnd returns the TimeOfDayEnd field value if set, zero value otherwise.

func (*ScheduledCommunicationTime) GetTimeOfDayEndOk

func (o *ScheduledCommunicationTime) GetTimeOfDayEndOk() (*string, bool)

GetTimeOfDayEndOk returns a tuple with the TimeOfDayEnd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScheduledCommunicationTime) GetTimeOfDayStart

func (o *ScheduledCommunicationTime) GetTimeOfDayStart() string

GetTimeOfDayStart returns the TimeOfDayStart field value if set, zero value otherwise.

func (*ScheduledCommunicationTime) GetTimeOfDayStartOk

func (o *ScheduledCommunicationTime) GetTimeOfDayStartOk() (*string, bool)

GetTimeOfDayStartOk returns a tuple with the TimeOfDayStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScheduledCommunicationTime) HasDaysOfWeek

func (o *ScheduledCommunicationTime) HasDaysOfWeek() bool

HasDaysOfWeek returns a boolean if a field has been set.

func (*ScheduledCommunicationTime) HasTimeOfDayEnd

func (o *ScheduledCommunicationTime) HasTimeOfDayEnd() bool

HasTimeOfDayEnd returns a boolean if a field has been set.

func (*ScheduledCommunicationTime) HasTimeOfDayStart

func (o *ScheduledCommunicationTime) HasTimeOfDayStart() bool

HasTimeOfDayStart returns a boolean if a field has been set.

func (ScheduledCommunicationTime) MarshalJSON

func (o ScheduledCommunicationTime) MarshalJSON() ([]byte, error)

func (*ScheduledCommunicationTime) SetDaysOfWeek

func (o *ScheduledCommunicationTime) SetDaysOfWeek(v []int32)

SetDaysOfWeek gets a reference to the given []int32 and assigns it to the DaysOfWeek field.

func (*ScheduledCommunicationTime) SetTimeOfDayEnd

func (o *ScheduledCommunicationTime) SetTimeOfDayEnd(v string)

SetTimeOfDayEnd gets a reference to the given string and assigns it to the TimeOfDayEnd field.

func (*ScheduledCommunicationTime) SetTimeOfDayStart

func (o *ScheduledCommunicationTime) SetTimeOfDayStart(v string)

SetTimeOfDayStart gets a reference to the given string and assigns it to the TimeOfDayStart field.

func (ScheduledCommunicationTime) ToMap

func (o ScheduledCommunicationTime) ToMap() (map[string]interface{}, error)

type ScheduledCommunicationType

type ScheduledCommunicationType struct {
	String *string
}

ScheduledCommunicationType Possible values are: -DOWNLINK_ONLY: Downlink only -UPLINK_ONLY: Uplink only -BIDIRECTIONA: Bi-directional

func (*ScheduledCommunicationType) MarshalJSON

func (src *ScheduledCommunicationType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ScheduledCommunicationType) UnmarshalJSON

func (dst *ScheduledCommunicationType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SecondaryRatUsageInfo

type SecondaryRatUsageInfo struct {
	SecondaryRatType    RatType              `json:"secondaryRatType"`
	QosFlowsUsageData   []QosFlowUsageReport `json:"qosFlowsUsageData,omitempty"`
	PduSessionUsageData []VolumeTimedReport  `json:"pduSessionUsageData,omitempty"`
}

SecondaryRatUsageInfo Secondary RAT Usage Information to report usage data for a secondary RAT for QoS flows and/or the whole PDU session.

func NewSecondaryRatUsageInfo

func NewSecondaryRatUsageInfo(secondaryRatType RatType) *SecondaryRatUsageInfo

NewSecondaryRatUsageInfo instantiates a new SecondaryRatUsageInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecondaryRatUsageInfoWithDefaults

func NewSecondaryRatUsageInfoWithDefaults() *SecondaryRatUsageInfo

NewSecondaryRatUsageInfoWithDefaults instantiates a new SecondaryRatUsageInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecondaryRatUsageInfo) GetPduSessionUsageData

func (o *SecondaryRatUsageInfo) GetPduSessionUsageData() []VolumeTimedReport

GetPduSessionUsageData returns the PduSessionUsageData field value if set, zero value otherwise.

func (*SecondaryRatUsageInfo) GetPduSessionUsageDataOk

func (o *SecondaryRatUsageInfo) GetPduSessionUsageDataOk() ([]VolumeTimedReport, bool)

GetPduSessionUsageDataOk returns a tuple with the PduSessionUsageData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecondaryRatUsageInfo) GetQosFlowsUsageData

func (o *SecondaryRatUsageInfo) GetQosFlowsUsageData() []QosFlowUsageReport

GetQosFlowsUsageData returns the QosFlowsUsageData field value if set, zero value otherwise.

func (*SecondaryRatUsageInfo) GetQosFlowsUsageDataOk

func (o *SecondaryRatUsageInfo) GetQosFlowsUsageDataOk() ([]QosFlowUsageReport, bool)

GetQosFlowsUsageDataOk returns a tuple with the QosFlowsUsageData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecondaryRatUsageInfo) GetSecondaryRatType

func (o *SecondaryRatUsageInfo) GetSecondaryRatType() RatType

GetSecondaryRatType returns the SecondaryRatType field value

func (*SecondaryRatUsageInfo) GetSecondaryRatTypeOk

func (o *SecondaryRatUsageInfo) GetSecondaryRatTypeOk() (*RatType, bool)

GetSecondaryRatTypeOk returns a tuple with the SecondaryRatType field value and a boolean to check if the value has been set.

func (*SecondaryRatUsageInfo) HasPduSessionUsageData

func (o *SecondaryRatUsageInfo) HasPduSessionUsageData() bool

HasPduSessionUsageData returns a boolean if a field has been set.

func (*SecondaryRatUsageInfo) HasQosFlowsUsageData

func (o *SecondaryRatUsageInfo) HasQosFlowsUsageData() bool

HasQosFlowsUsageData returns a boolean if a field has been set.

func (SecondaryRatUsageInfo) MarshalJSON

func (o SecondaryRatUsageInfo) MarshalJSON() ([]byte, error)

func (*SecondaryRatUsageInfo) SetPduSessionUsageData

func (o *SecondaryRatUsageInfo) SetPduSessionUsageData(v []VolumeTimedReport)

SetPduSessionUsageData gets a reference to the given []VolumeTimedReport and assigns it to the PduSessionUsageData field.

func (*SecondaryRatUsageInfo) SetQosFlowsUsageData

func (o *SecondaryRatUsageInfo) SetQosFlowsUsageData(v []QosFlowUsageReport)

SetQosFlowsUsageData gets a reference to the given []QosFlowUsageReport and assigns it to the QosFlowsUsageData field.

func (*SecondaryRatUsageInfo) SetSecondaryRatType

func (o *SecondaryRatUsageInfo) SetSecondaryRatType(v RatType)

SetSecondaryRatType sets field value

func (SecondaryRatUsageInfo) ToMap

func (o SecondaryRatUsageInfo) ToMap() (map[string]interface{}, error)

type SecondaryRatUsageReport

type SecondaryRatUsageReport struct {
	SecondaryRatType  RatType              `json:"secondaryRatType"`
	QosFlowsUsageData []QosFlowUsageReport `json:"qosFlowsUsageData"`
}

SecondaryRatUsageReport Secondary RAT Usage Report to report usage data for a secondary RAT for QoS flows.

func NewSecondaryRatUsageReport

func NewSecondaryRatUsageReport(secondaryRatType RatType, qosFlowsUsageData []QosFlowUsageReport) *SecondaryRatUsageReport

NewSecondaryRatUsageReport instantiates a new SecondaryRatUsageReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecondaryRatUsageReportWithDefaults

func NewSecondaryRatUsageReportWithDefaults() *SecondaryRatUsageReport

NewSecondaryRatUsageReportWithDefaults instantiates a new SecondaryRatUsageReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecondaryRatUsageReport) GetQosFlowsUsageData

func (o *SecondaryRatUsageReport) GetQosFlowsUsageData() []QosFlowUsageReport

GetQosFlowsUsageData returns the QosFlowsUsageData field value

func (*SecondaryRatUsageReport) GetQosFlowsUsageDataOk

func (o *SecondaryRatUsageReport) GetQosFlowsUsageDataOk() ([]QosFlowUsageReport, bool)

GetQosFlowsUsageDataOk returns a tuple with the QosFlowsUsageData field value and a boolean to check if the value has been set.

func (*SecondaryRatUsageReport) GetSecondaryRatType

func (o *SecondaryRatUsageReport) GetSecondaryRatType() RatType

GetSecondaryRatType returns the SecondaryRatType field value

func (*SecondaryRatUsageReport) GetSecondaryRatTypeOk

func (o *SecondaryRatUsageReport) GetSecondaryRatTypeOk() (*RatType, bool)

GetSecondaryRatTypeOk returns a tuple with the SecondaryRatType field value and a boolean to check if the value has been set.

func (SecondaryRatUsageReport) MarshalJSON

func (o SecondaryRatUsageReport) MarshalJSON() ([]byte, error)

func (*SecondaryRatUsageReport) SetQosFlowsUsageData

func (o *SecondaryRatUsageReport) SetQosFlowsUsageData(v []QosFlowUsageReport)

SetQosFlowsUsageData sets field value

func (*SecondaryRatUsageReport) SetSecondaryRatType

func (o *SecondaryRatUsageReport) SetSecondaryRatType(v RatType)

SetSecondaryRatType sets field value

func (SecondaryRatUsageReport) ToMap

func (o SecondaryRatUsageReport) ToMap() (map[string]interface{}, error)

type SecurityResult

type SecurityResult struct {
	IntegrityProtectionResult       *ProtectionResult `json:"integrityProtectionResult,omitempty"`
	ConfidentialityProtectionResult *ProtectionResult `json:"confidentialityProtectionResult,omitempty"`
}

SecurityResult Security Result

func NewSecurityResult

func NewSecurityResult() *SecurityResult

NewSecurityResult instantiates a new SecurityResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecurityResultWithDefaults

func NewSecurityResultWithDefaults() *SecurityResult

NewSecurityResultWithDefaults instantiates a new SecurityResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecurityResult) GetConfidentialityProtectionResult

func (o *SecurityResult) GetConfidentialityProtectionResult() ProtectionResult

GetConfidentialityProtectionResult returns the ConfidentialityProtectionResult field value if set, zero value otherwise.

func (*SecurityResult) GetConfidentialityProtectionResultOk

func (o *SecurityResult) GetConfidentialityProtectionResultOk() (*ProtectionResult, bool)

GetConfidentialityProtectionResultOk returns a tuple with the ConfidentialityProtectionResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecurityResult) GetIntegrityProtectionResult

func (o *SecurityResult) GetIntegrityProtectionResult() ProtectionResult

GetIntegrityProtectionResult returns the IntegrityProtectionResult field value if set, zero value otherwise.

func (*SecurityResult) GetIntegrityProtectionResultOk

func (o *SecurityResult) GetIntegrityProtectionResultOk() (*ProtectionResult, bool)

GetIntegrityProtectionResultOk returns a tuple with the IntegrityProtectionResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecurityResult) HasConfidentialityProtectionResult

func (o *SecurityResult) HasConfidentialityProtectionResult() bool

HasConfidentialityProtectionResult returns a boolean if a field has been set.

func (*SecurityResult) HasIntegrityProtectionResult

func (o *SecurityResult) HasIntegrityProtectionResult() bool

HasIntegrityProtectionResult returns a boolean if a field has been set.

func (SecurityResult) MarshalJSON

func (o SecurityResult) MarshalJSON() ([]byte, error)

func (*SecurityResult) SetConfidentialityProtectionResult

func (o *SecurityResult) SetConfidentialityProtectionResult(v ProtectionResult)

SetConfidentialityProtectionResult gets a reference to the given ProtectionResult and assigns it to the ConfidentialityProtectionResult field.

func (*SecurityResult) SetIntegrityProtectionResult

func (o *SecurityResult) SetIntegrityProtectionResult(v ProtectionResult)

SetIntegrityProtectionResult gets a reference to the given ProtectionResult and assigns it to the IntegrityProtectionResult field.

func (SecurityResult) ToMap

func (o SecurityResult) ToMap() (map[string]interface{}, error)

type SendMoDataReqData

type SendMoDataReqData struct {
	MoData           RefToBinaryData   `json:"moData"`
	MoExpDataCounter *MoExpDataCounter `json:"moExpDataCounter,omitempty"`
	UeLocation       *UserLocation     `json:"ueLocation,omitempty"`
}

SendMoDataReqData Data within Send MO Data Request

func NewSendMoDataReqData

func NewSendMoDataReqData(moData RefToBinaryData) *SendMoDataReqData

NewSendMoDataReqData instantiates a new SendMoDataReqData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSendMoDataReqDataWithDefaults

func NewSendMoDataReqDataWithDefaults() *SendMoDataReqData

NewSendMoDataReqDataWithDefaults instantiates a new SendMoDataReqData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SendMoDataReqData) GetMoData

func (o *SendMoDataReqData) GetMoData() RefToBinaryData

GetMoData returns the MoData field value

func (*SendMoDataReqData) GetMoDataOk

func (o *SendMoDataReqData) GetMoDataOk() (*RefToBinaryData, bool)

GetMoDataOk returns a tuple with the MoData field value and a boolean to check if the value has been set.

func (*SendMoDataReqData) GetMoExpDataCounter

func (o *SendMoDataReqData) GetMoExpDataCounter() MoExpDataCounter

GetMoExpDataCounter returns the MoExpDataCounter field value if set, zero value otherwise.

func (*SendMoDataReqData) GetMoExpDataCounterOk

func (o *SendMoDataReqData) GetMoExpDataCounterOk() (*MoExpDataCounter, bool)

GetMoExpDataCounterOk returns a tuple with the MoExpDataCounter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SendMoDataReqData) GetUeLocation

func (o *SendMoDataReqData) GetUeLocation() UserLocation

GetUeLocation returns the UeLocation field value if set, zero value otherwise.

func (*SendMoDataReqData) GetUeLocationOk

func (o *SendMoDataReqData) GetUeLocationOk() (*UserLocation, bool)

GetUeLocationOk returns a tuple with the UeLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SendMoDataReqData) HasMoExpDataCounter

func (o *SendMoDataReqData) HasMoExpDataCounter() bool

HasMoExpDataCounter returns a boolean if a field has been set.

func (*SendMoDataReqData) HasUeLocation

func (o *SendMoDataReqData) HasUeLocation() bool

HasUeLocation returns a boolean if a field has been set.

func (SendMoDataReqData) MarshalJSON

func (o SendMoDataReqData) MarshalJSON() ([]byte, error)

func (*SendMoDataReqData) SetMoData

func (o *SendMoDataReqData) SetMoData(v RefToBinaryData)

SetMoData sets field value

func (*SendMoDataReqData) SetMoExpDataCounter

func (o *SendMoDataReqData) SetMoExpDataCounter(v MoExpDataCounter)

SetMoExpDataCounter gets a reference to the given MoExpDataCounter and assigns it to the MoExpDataCounter field.

func (*SendMoDataReqData) SetUeLocation

func (o *SendMoDataReqData) SetUeLocation(v UserLocation)

SetUeLocation gets a reference to the given UserLocation and assigns it to the UeLocation field.

func (SendMoDataReqData) ToMap

func (o SendMoDataReqData) ToMap() (map[string]interface{}, error)

type SendMoDataRequest

type SendMoDataRequest struct {
	JsonData     *SendMoDataReqData `json:"jsonData,omitempty"`
	BinaryMoData **os.File          `json:"binaryMoData,omitempty"`
}

SendMoDataRequest struct for SendMoDataRequest

func NewSendMoDataRequest

func NewSendMoDataRequest() *SendMoDataRequest

NewSendMoDataRequest instantiates a new SendMoDataRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSendMoDataRequestWithDefaults

func NewSendMoDataRequestWithDefaults() *SendMoDataRequest

NewSendMoDataRequestWithDefaults instantiates a new SendMoDataRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SendMoDataRequest) GetBinaryMoData

func (o *SendMoDataRequest) GetBinaryMoData() *os.File

GetBinaryMoData returns the BinaryMoData field value if set, zero value otherwise.

func (*SendMoDataRequest) GetBinaryMoDataOk

func (o *SendMoDataRequest) GetBinaryMoDataOk() (**os.File, bool)

GetBinaryMoDataOk returns a tuple with the BinaryMoData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SendMoDataRequest) GetJsonData

func (o *SendMoDataRequest) GetJsonData() SendMoDataReqData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*SendMoDataRequest) GetJsonDataOk

func (o *SendMoDataRequest) GetJsonDataOk() (*SendMoDataReqData, bool)

GetJsonDataOk returns a tuple with the JsonData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SendMoDataRequest) HasBinaryMoData

func (o *SendMoDataRequest) HasBinaryMoData() bool

HasBinaryMoData returns a boolean if a field has been set.

func (*SendMoDataRequest) HasJsonData

func (o *SendMoDataRequest) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (SendMoDataRequest) MarshalJSON

func (o SendMoDataRequest) MarshalJSON() ([]byte, error)

func (*SendMoDataRequest) SetBinaryMoData

func (o *SendMoDataRequest) SetBinaryMoData(v *os.File)

SetBinaryMoData gets a reference to the given *os.File and assigns it to the BinaryMoData field.

func (*SendMoDataRequest) SetJsonData

func (o *SendMoDataRequest) SetJsonData(v SendMoDataReqData)

SetJsonData gets a reference to the given SendMoDataReqData and assigns it to the JsonData field.

func (SendMoDataRequest) ToMap

func (o SendMoDataRequest) ToMap() (map[string]interface{}, error)

type ServerAddressingInfo

type ServerAddressingInfo struct {
	Interface *interface{}
}

ServerAddressingInfo Contains addressing information (IP addresses and/or FQDNs) of a server.

func (*ServerAddressingInfo) MarshalJSON

func (src *ServerAddressingInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ServerAddressingInfo) UnmarshalJSON

func (dst *ServerAddressingInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

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 ServiceName

type ServiceName struct {
	String *string
}

ServiceName Service names known to NRF

func (*ServiceName) MarshalJSON

func (src *ServiceName) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ServiceName) UnmarshalJSON

func (dst *ServiceName) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SmContext

type SmContext struct {
	// Unsigned integer identifying a PDU session, within the range 0 to 255, as specified in  clause 11.2.3.1b, bits 1 to 8, of 3GPP TS 24.007. If the PDU Session ID is allocated by the  Core Network for UEs not supporting N1 mode, reserved range 64 to 95 is used. PDU Session ID  within the reserved range is only visible in the Core Network.
	PduSessionId int32 `json:"pduSessionId"`
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn string `json:"dnn"`
	// 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\").
	SelectedDnn    *string        `json:"selectedDnn,omitempty"`
	SNssai         Snssai         `json:"sNssai"`
	HplmnSnssai    *Snssai        `json:"hplmnSnssai,omitempty"`
	PduSessionType PduSessionType `json:"pduSessionType"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi *string `json:"gpsi,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	HSmfUri *string `json:"hSmfUri,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	SmfUri *string `json:"smfUri,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	PduSessionRef *string `json:"pduSessionRef,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	InterPlmnApiRoot *string `json:"interPlmnApiRoot,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	IntraPlmnApiRoot *string `json:"intraPlmnApiRoot,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.
	PcfId *string `json:"pcfId,omitempty"`
	// Identifier of a group of NFs.
	PcfGroupId *string `json:"pcfGroupId,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.
	PcfSetId *string           `json:"pcfSetId,omitempty"`
	SelMode  *DnnSelectionMode `json:"selMode,omitempty"`
	// Identifier of a group of NFs.
	UdmGroupId       *string            `json:"udmGroupId,omitempty"`
	RoutingIndicator *string            `json:"routingIndicator,omitempty"`
	HNwPubKeyId      *int32             `json:"hNwPubKeyId,omitempty"`
	SessionAmbr      Ambr               `json:"sessionAmbr"`
	QosFlowsList     []QosFlowSetupItem `json:"qosFlowsList"`
	// 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.
	HSmfInstanceId *string `json:"hSmfInstanceId,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.
	SmfInstanceId *string `json:"smfInstanceId,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.
	PduSessionSmfSetId *string `json:"pduSessionSmfSetId,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.
	PduSessionSmfServiceSetId *string          `json:"pduSessionSmfServiceSetId,omitempty"`
	PduSessionSmfBinding      *SbiBindingLevel `json:"pduSessionSmfBinding,omitempty"`
	EnablePauseCharging       *bool            `json:"enablePauseCharging,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	UeIpv4Address                   *string                        `json:"ueIpv4Address,omitempty"`
	UeIpv6Prefix                    *Ipv6Prefix                    `json:"ueIpv6Prefix,omitempty"`
	EpsPdnCnxInfo                   *EpsPdnCnxInfo                 `json:"epsPdnCnxInfo,omitempty"`
	EpsBearerInfo                   []EpsBearerInfo                `json:"epsBearerInfo,omitempty"`
	MaxIntegrityProtectedDataRate   *MaxIntegrityProtectedDataRate `json:"maxIntegrityProtectedDataRate,omitempty"`
	MaxIntegrityProtectedDataRateDl *MaxIntegrityProtectedDataRate `json:"maxIntegrityProtectedDataRateDl,omitempty"`
	AlwaysOnGranted                 *bool                          `json:"alwaysOnGranted,omitempty"`
	UpSecurity                      *UpSecurity                    `json:"upSecurity,omitempty"`
	HSmfServiceInstanceId           *string                        `json:"hSmfServiceInstanceId,omitempty"`
	SmfServiceInstanceId            *string                        `json:"smfServiceInstanceId,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	RecoveryTime           *time.Time              `json:"recoveryTime,omitempty"`
	ForwardingInd          *bool                   `json:"forwardingInd,omitempty"`
	PsaTunnelInfo          *TunnelInfo             `json:"psaTunnelInfo,omitempty"`
	ChargingId             *string                 `json:"chargingId,omitempty"`
	ChargingInfo           *ChargingInformation    `json:"chargingInfo,omitempty"`
	RoamingChargingProfile *RoamingChargingProfile `json:"roamingChargingProfile,omitempty"`
	NefExtBufSupportInd    *bool                   `json:"nefExtBufSupportInd,omitempty"`
	// Represents information that identifies which IP pool or external server is used to allocate the IP address.
	Ipv6Index               *int32                          `json:"ipv6Index,omitempty"`
	DnAaaAddress            *IpAddress                      `json:"dnAaaAddress,omitempty"`
	RedundantPduSessionInfo *RedundantPduSessionInformation `json:"redundantPduSessionInfo,omitempty"`
	RanTunnelInfo           *QosFlowTunnel                  `json:"ranTunnelInfo,omitempty"`
	AddRanTunnelInfo        []QosFlowTunnel                 `json:"addRanTunnelInfo,omitempty"`
	RedRanTunnelInfo        *QosFlowTunnel                  `json:"redRanTunnelInfo,omitempty"`
	AddRedRanTunnelInfo     []QosFlowTunnel                 `json:"addRedRanTunnelInfo,omitempty"`
	NspuSupportInd          *bool                           `json:"nspuSupportInd,omitempty"`
	SmfBindingInfo          *string                         `json:"smfBindingInfo,omitempty"`
	SatelliteBackhaulCat    *SatelliteBackhaulCategory      `json:"satelliteBackhaulCat,omitempty"`
	SscMode                 *string                         `json:"sscMode,omitempty"`
	DlsetSupportInd         *bool                           `json:"dlsetSupportInd,omitempty"`
	N9fscSupportInd         *bool                           `json:"n9fscSupportInd,omitempty"`
	DisasterRoamingInd      *bool                           `json:"disasterRoamingInd,omitempty"`
	AnchorSmfOauth2Required *bool                           `json:"anchorSmfOauth2Required,omitempty"`
	FullDnaiList            []string                        `json:"fullDnaiList,omitempty"`
}

SmContext Complete SM Context

func NewSmContext

func NewSmContext(pduSessionId int32, dnn string, sNssai Snssai, pduSessionType PduSessionType, sessionAmbr Ambr, qosFlowsList []QosFlowSetupItem) *SmContext

NewSmContext instantiates a new SmContext object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmContextWithDefaults

func NewSmContextWithDefaults() *SmContext

NewSmContextWithDefaults instantiates a new SmContext object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmContext) GetAddRanTunnelInfo

func (o *SmContext) GetAddRanTunnelInfo() []QosFlowTunnel

GetAddRanTunnelInfo returns the AddRanTunnelInfo field value if set, zero value otherwise.

func (*SmContext) GetAddRanTunnelInfoOk

func (o *SmContext) GetAddRanTunnelInfoOk() ([]QosFlowTunnel, bool)

GetAddRanTunnelInfoOk returns a tuple with the AddRanTunnelInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetAddRedRanTunnelInfo

func (o *SmContext) GetAddRedRanTunnelInfo() []QosFlowTunnel

GetAddRedRanTunnelInfo returns the AddRedRanTunnelInfo field value if set, zero value otherwise.

func (*SmContext) GetAddRedRanTunnelInfoOk

func (o *SmContext) GetAddRedRanTunnelInfoOk() ([]QosFlowTunnel, bool)

GetAddRedRanTunnelInfoOk returns a tuple with the AddRedRanTunnelInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetAlwaysOnGranted

func (o *SmContext) GetAlwaysOnGranted() bool

GetAlwaysOnGranted returns the AlwaysOnGranted field value if set, zero value otherwise.

func (*SmContext) GetAlwaysOnGrantedOk

func (o *SmContext) GetAlwaysOnGrantedOk() (*bool, bool)

GetAlwaysOnGrantedOk returns a tuple with the AlwaysOnGranted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetAnchorSmfOauth2Required

func (o *SmContext) GetAnchorSmfOauth2Required() bool

GetAnchorSmfOauth2Required returns the AnchorSmfOauth2Required field value if set, zero value otherwise.

func (*SmContext) GetAnchorSmfOauth2RequiredOk

func (o *SmContext) GetAnchorSmfOauth2RequiredOk() (*bool, bool)

GetAnchorSmfOauth2RequiredOk returns a tuple with the AnchorSmfOauth2Required field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetChargingId

func (o *SmContext) GetChargingId() string

GetChargingId returns the ChargingId field value if set, zero value otherwise.

func (*SmContext) GetChargingIdOk

func (o *SmContext) GetChargingIdOk() (*string, 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.

func (*SmContext) GetChargingInfo

func (o *SmContext) GetChargingInfo() ChargingInformation

GetChargingInfo returns the ChargingInfo field value if set, zero value otherwise.

func (*SmContext) GetChargingInfoOk

func (o *SmContext) GetChargingInfoOk() (*ChargingInformation, bool)

GetChargingInfoOk returns a tuple with the ChargingInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetDisasterRoamingInd

func (o *SmContext) GetDisasterRoamingInd() bool

GetDisasterRoamingInd returns the DisasterRoamingInd field value if set, zero value otherwise.

func (*SmContext) GetDisasterRoamingIndOk

func (o *SmContext) GetDisasterRoamingIndOk() (*bool, bool)

GetDisasterRoamingIndOk returns a tuple with the DisasterRoamingInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetDlsetSupportInd

func (o *SmContext) GetDlsetSupportInd() bool

GetDlsetSupportInd returns the DlsetSupportInd field value if set, zero value otherwise.

func (*SmContext) GetDlsetSupportIndOk

func (o *SmContext) GetDlsetSupportIndOk() (*bool, bool)

GetDlsetSupportIndOk returns a tuple with the DlsetSupportInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetDnAaaAddress

func (o *SmContext) GetDnAaaAddress() IpAddress

GetDnAaaAddress returns the DnAaaAddress field value if set, zero value otherwise.

func (*SmContext) GetDnAaaAddressOk

func (o *SmContext) GetDnAaaAddressOk() (*IpAddress, bool)

GetDnAaaAddressOk returns a tuple with the DnAaaAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetDnn

func (o *SmContext) GetDnn() string

GetDnn returns the Dnn field value

func (*SmContext) GetDnnOk

func (o *SmContext) GetDnnOk() (*string, bool)

GetDnnOk returns a tuple with the Dnn field value and a boolean to check if the value has been set.

func (*SmContext) GetEnablePauseCharging

func (o *SmContext) GetEnablePauseCharging() bool

GetEnablePauseCharging returns the EnablePauseCharging field value if set, zero value otherwise.

func (*SmContext) GetEnablePauseChargingOk

func (o *SmContext) GetEnablePauseChargingOk() (*bool, bool)

GetEnablePauseChargingOk returns a tuple with the EnablePauseCharging field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetEpsBearerInfo

func (o *SmContext) GetEpsBearerInfo() []EpsBearerInfo

GetEpsBearerInfo returns the EpsBearerInfo field value if set, zero value otherwise.

func (*SmContext) GetEpsBearerInfoOk

func (o *SmContext) GetEpsBearerInfoOk() ([]EpsBearerInfo, bool)

GetEpsBearerInfoOk returns a tuple with the EpsBearerInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetEpsPdnCnxInfo

func (o *SmContext) GetEpsPdnCnxInfo() EpsPdnCnxInfo

GetEpsPdnCnxInfo returns the EpsPdnCnxInfo field value if set, zero value otherwise.

func (*SmContext) GetEpsPdnCnxInfoOk

func (o *SmContext) GetEpsPdnCnxInfoOk() (*EpsPdnCnxInfo, bool)

GetEpsPdnCnxInfoOk returns a tuple with the EpsPdnCnxInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetForwardingInd

func (o *SmContext) GetForwardingInd() bool

GetForwardingInd returns the ForwardingInd field value if set, zero value otherwise.

func (*SmContext) GetForwardingIndOk

func (o *SmContext) GetForwardingIndOk() (*bool, bool)

GetForwardingIndOk returns a tuple with the ForwardingInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetFullDnaiList

func (o *SmContext) GetFullDnaiList() []string

GetFullDnaiList returns the FullDnaiList field value if set, zero value otherwise.

func (*SmContext) GetFullDnaiListOk

func (o *SmContext) GetFullDnaiListOk() ([]string, bool)

GetFullDnaiListOk returns a tuple with the FullDnaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetGpsi

func (o *SmContext) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*SmContext) GetGpsiOk

func (o *SmContext) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetHNwPubKeyId

func (o *SmContext) GetHNwPubKeyId() int32

GetHNwPubKeyId returns the HNwPubKeyId field value if set, zero value otherwise.

func (*SmContext) GetHNwPubKeyIdOk

func (o *SmContext) GetHNwPubKeyIdOk() (*int32, bool)

GetHNwPubKeyIdOk returns a tuple with the HNwPubKeyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetHSmfInstanceId

func (o *SmContext) GetHSmfInstanceId() string

GetHSmfInstanceId returns the HSmfInstanceId field value if set, zero value otherwise.

func (*SmContext) GetHSmfInstanceIdOk

func (o *SmContext) GetHSmfInstanceIdOk() (*string, bool)

GetHSmfInstanceIdOk returns a tuple with the HSmfInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetHSmfServiceInstanceId

func (o *SmContext) GetHSmfServiceInstanceId() string

GetHSmfServiceInstanceId returns the HSmfServiceInstanceId field value if set, zero value otherwise.

func (*SmContext) GetHSmfServiceInstanceIdOk

func (o *SmContext) GetHSmfServiceInstanceIdOk() (*string, bool)

GetHSmfServiceInstanceIdOk returns a tuple with the HSmfServiceInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetHSmfUri

func (o *SmContext) GetHSmfUri() string

GetHSmfUri returns the HSmfUri field value if set, zero value otherwise.

func (*SmContext) GetHSmfUriOk

func (o *SmContext) GetHSmfUriOk() (*string, bool)

GetHSmfUriOk returns a tuple with the HSmfUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetHplmnSnssai

func (o *SmContext) GetHplmnSnssai() Snssai

GetHplmnSnssai returns the HplmnSnssai field value if set, zero value otherwise.

func (*SmContext) GetHplmnSnssaiOk

func (o *SmContext) GetHplmnSnssaiOk() (*Snssai, bool)

GetHplmnSnssaiOk returns a tuple with the HplmnSnssai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetInterPlmnApiRoot

func (o *SmContext) GetInterPlmnApiRoot() string

GetInterPlmnApiRoot returns the InterPlmnApiRoot field value if set, zero value otherwise.

func (*SmContext) GetInterPlmnApiRootOk

func (o *SmContext) GetInterPlmnApiRootOk() (*string, bool)

GetInterPlmnApiRootOk returns a tuple with the InterPlmnApiRoot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetIntraPlmnApiRoot

func (o *SmContext) GetIntraPlmnApiRoot() string

GetIntraPlmnApiRoot returns the IntraPlmnApiRoot field value if set, zero value otherwise.

func (*SmContext) GetIntraPlmnApiRootOk

func (o *SmContext) GetIntraPlmnApiRootOk() (*string, bool)

GetIntraPlmnApiRootOk returns a tuple with the IntraPlmnApiRoot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetIpv6Index

func (o *SmContext) GetIpv6Index() int32

GetIpv6Index returns the Ipv6Index field value if set, zero value otherwise.

func (*SmContext) GetIpv6IndexOk

func (o *SmContext) GetIpv6IndexOk() (*int32, bool)

GetIpv6IndexOk returns a tuple with the Ipv6Index field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetMaxIntegrityProtectedDataRate

func (o *SmContext) GetMaxIntegrityProtectedDataRate() MaxIntegrityProtectedDataRate

GetMaxIntegrityProtectedDataRate returns the MaxIntegrityProtectedDataRate field value if set, zero value otherwise.

func (*SmContext) GetMaxIntegrityProtectedDataRateDl

func (o *SmContext) GetMaxIntegrityProtectedDataRateDl() MaxIntegrityProtectedDataRate

GetMaxIntegrityProtectedDataRateDl returns the MaxIntegrityProtectedDataRateDl field value if set, zero value otherwise.

func (*SmContext) GetMaxIntegrityProtectedDataRateDlOk

func (o *SmContext) GetMaxIntegrityProtectedDataRateDlOk() (*MaxIntegrityProtectedDataRate, bool)

GetMaxIntegrityProtectedDataRateDlOk returns a tuple with the MaxIntegrityProtectedDataRateDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetMaxIntegrityProtectedDataRateOk

func (o *SmContext) GetMaxIntegrityProtectedDataRateOk() (*MaxIntegrityProtectedDataRate, bool)

GetMaxIntegrityProtectedDataRateOk returns a tuple with the MaxIntegrityProtectedDataRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetN9fscSupportInd

func (o *SmContext) GetN9fscSupportInd() bool

GetN9fscSupportInd returns the N9fscSupportInd field value if set, zero value otherwise.

func (*SmContext) GetN9fscSupportIndOk

func (o *SmContext) GetN9fscSupportIndOk() (*bool, bool)

GetN9fscSupportIndOk returns a tuple with the N9fscSupportInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetNefExtBufSupportInd

func (o *SmContext) GetNefExtBufSupportInd() bool

GetNefExtBufSupportInd returns the NefExtBufSupportInd field value if set, zero value otherwise.

func (*SmContext) GetNefExtBufSupportIndOk

func (o *SmContext) GetNefExtBufSupportIndOk() (*bool, bool)

GetNefExtBufSupportIndOk returns a tuple with the NefExtBufSupportInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetNspuSupportInd

func (o *SmContext) GetNspuSupportInd() bool

GetNspuSupportInd returns the NspuSupportInd field value if set, zero value otherwise.

func (*SmContext) GetNspuSupportIndOk

func (o *SmContext) GetNspuSupportIndOk() (*bool, bool)

GetNspuSupportIndOk returns a tuple with the NspuSupportInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetPcfGroupId

func (o *SmContext) GetPcfGroupId() string

GetPcfGroupId returns the PcfGroupId field value if set, zero value otherwise.

func (*SmContext) GetPcfGroupIdOk

func (o *SmContext) GetPcfGroupIdOk() (*string, bool)

GetPcfGroupIdOk returns a tuple with the PcfGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetPcfId

func (o *SmContext) GetPcfId() string

GetPcfId returns the PcfId field value if set, zero value otherwise.

func (*SmContext) GetPcfIdOk

func (o *SmContext) GetPcfIdOk() (*string, bool)

GetPcfIdOk returns a tuple with the PcfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetPcfSetId

func (o *SmContext) GetPcfSetId() string

GetPcfSetId returns the PcfSetId field value if set, zero value otherwise.

func (*SmContext) GetPcfSetIdOk

func (o *SmContext) GetPcfSetIdOk() (*string, bool)

GetPcfSetIdOk returns a tuple with the PcfSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetPduSessionId

func (o *SmContext) GetPduSessionId() int32

GetPduSessionId returns the PduSessionId field value

func (*SmContext) GetPduSessionIdOk

func (o *SmContext) GetPduSessionIdOk() (*int32, bool)

GetPduSessionIdOk returns a tuple with the PduSessionId field value and a boolean to check if the value has been set.

func (*SmContext) GetPduSessionRef

func (o *SmContext) GetPduSessionRef() string

GetPduSessionRef returns the PduSessionRef field value if set, zero value otherwise.

func (*SmContext) GetPduSessionRefOk

func (o *SmContext) GetPduSessionRefOk() (*string, bool)

GetPduSessionRefOk returns a tuple with the PduSessionRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetPduSessionSmfBinding

func (o *SmContext) GetPduSessionSmfBinding() SbiBindingLevel

GetPduSessionSmfBinding returns the PduSessionSmfBinding field value if set, zero value otherwise.

func (*SmContext) GetPduSessionSmfBindingOk

func (o *SmContext) GetPduSessionSmfBindingOk() (*SbiBindingLevel, bool)

GetPduSessionSmfBindingOk returns a tuple with the PduSessionSmfBinding field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetPduSessionSmfServiceSetId

func (o *SmContext) GetPduSessionSmfServiceSetId() string

GetPduSessionSmfServiceSetId returns the PduSessionSmfServiceSetId field value if set, zero value otherwise.

func (*SmContext) GetPduSessionSmfServiceSetIdOk

func (o *SmContext) GetPduSessionSmfServiceSetIdOk() (*string, bool)

GetPduSessionSmfServiceSetIdOk returns a tuple with the PduSessionSmfServiceSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetPduSessionSmfSetId

func (o *SmContext) GetPduSessionSmfSetId() string

GetPduSessionSmfSetId returns the PduSessionSmfSetId field value if set, zero value otherwise.

func (*SmContext) GetPduSessionSmfSetIdOk

func (o *SmContext) GetPduSessionSmfSetIdOk() (*string, bool)

GetPduSessionSmfSetIdOk returns a tuple with the PduSessionSmfSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetPduSessionType

func (o *SmContext) GetPduSessionType() PduSessionType

GetPduSessionType returns the PduSessionType field value

func (*SmContext) GetPduSessionTypeOk

func (o *SmContext) GetPduSessionTypeOk() (*PduSessionType, bool)

GetPduSessionTypeOk returns a tuple with the PduSessionType field value and a boolean to check if the value has been set.

func (*SmContext) GetPsaTunnelInfo

func (o *SmContext) GetPsaTunnelInfo() TunnelInfo

GetPsaTunnelInfo returns the PsaTunnelInfo field value if set, zero value otherwise.

func (*SmContext) GetPsaTunnelInfoOk

func (o *SmContext) GetPsaTunnelInfoOk() (*TunnelInfo, bool)

GetPsaTunnelInfoOk returns a tuple with the PsaTunnelInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetQosFlowsList

func (o *SmContext) GetQosFlowsList() []QosFlowSetupItem

GetQosFlowsList returns the QosFlowsList field value

func (*SmContext) GetQosFlowsListOk

func (o *SmContext) GetQosFlowsListOk() ([]QosFlowSetupItem, bool)

GetQosFlowsListOk returns a tuple with the QosFlowsList field value and a boolean to check if the value has been set.

func (*SmContext) GetRanTunnelInfo

func (o *SmContext) GetRanTunnelInfo() QosFlowTunnel

GetRanTunnelInfo returns the RanTunnelInfo field value if set, zero value otherwise.

func (*SmContext) GetRanTunnelInfoOk

func (o *SmContext) GetRanTunnelInfoOk() (*QosFlowTunnel, bool)

GetRanTunnelInfoOk returns a tuple with the RanTunnelInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetRecoveryTime

func (o *SmContext) GetRecoveryTime() time.Time

GetRecoveryTime returns the RecoveryTime field value if set, zero value otherwise.

func (*SmContext) GetRecoveryTimeOk

func (o *SmContext) GetRecoveryTimeOk() (*time.Time, bool)

GetRecoveryTimeOk returns a tuple with the RecoveryTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetRedRanTunnelInfo

func (o *SmContext) GetRedRanTunnelInfo() QosFlowTunnel

GetRedRanTunnelInfo returns the RedRanTunnelInfo field value if set, zero value otherwise.

func (*SmContext) GetRedRanTunnelInfoOk

func (o *SmContext) GetRedRanTunnelInfoOk() (*QosFlowTunnel, bool)

GetRedRanTunnelInfoOk returns a tuple with the RedRanTunnelInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetRedundantPduSessionInfo

func (o *SmContext) GetRedundantPduSessionInfo() RedundantPduSessionInformation

GetRedundantPduSessionInfo returns the RedundantPduSessionInfo field value if set, zero value otherwise.

func (*SmContext) GetRedundantPduSessionInfoOk

func (o *SmContext) GetRedundantPduSessionInfoOk() (*RedundantPduSessionInformation, bool)

GetRedundantPduSessionInfoOk returns a tuple with the RedundantPduSessionInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetRoamingChargingProfile

func (o *SmContext) GetRoamingChargingProfile() RoamingChargingProfile

GetRoamingChargingProfile returns the RoamingChargingProfile field value if set, zero value otherwise.

func (*SmContext) GetRoamingChargingProfileOk

func (o *SmContext) 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 (*SmContext) GetRoutingIndicator

func (o *SmContext) GetRoutingIndicator() string

GetRoutingIndicator returns the RoutingIndicator field value if set, zero value otherwise.

func (*SmContext) GetRoutingIndicatorOk

func (o *SmContext) GetRoutingIndicatorOk() (*string, bool)

GetRoutingIndicatorOk returns a tuple with the RoutingIndicator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetSNssai

func (o *SmContext) GetSNssai() Snssai

GetSNssai returns the SNssai field value

func (*SmContext) GetSNssaiOk

func (o *SmContext) GetSNssaiOk() (*Snssai, bool)

GetSNssaiOk returns a tuple with the SNssai field value and a boolean to check if the value has been set.

func (*SmContext) GetSatelliteBackhaulCat

func (o *SmContext) GetSatelliteBackhaulCat() SatelliteBackhaulCategory

GetSatelliteBackhaulCat returns the SatelliteBackhaulCat field value if set, zero value otherwise.

func (*SmContext) GetSatelliteBackhaulCatOk

func (o *SmContext) GetSatelliteBackhaulCatOk() (*SatelliteBackhaulCategory, bool)

GetSatelliteBackhaulCatOk returns a tuple with the SatelliteBackhaulCat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetSelMode

func (o *SmContext) GetSelMode() DnnSelectionMode

GetSelMode returns the SelMode field value if set, zero value otherwise.

func (*SmContext) GetSelModeOk

func (o *SmContext) GetSelModeOk() (*DnnSelectionMode, bool)

GetSelModeOk returns a tuple with the SelMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetSelectedDnn

func (o *SmContext) GetSelectedDnn() string

GetSelectedDnn returns the SelectedDnn field value if set, zero value otherwise.

func (*SmContext) GetSelectedDnnOk

func (o *SmContext) GetSelectedDnnOk() (*string, bool)

GetSelectedDnnOk returns a tuple with the SelectedDnn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetSessionAmbr

func (o *SmContext) GetSessionAmbr() Ambr

GetSessionAmbr returns the SessionAmbr field value

func (*SmContext) GetSessionAmbrOk

func (o *SmContext) GetSessionAmbrOk() (*Ambr, bool)

GetSessionAmbrOk returns a tuple with the SessionAmbr field value and a boolean to check if the value has been set.

func (*SmContext) GetSmfBindingInfo

func (o *SmContext) GetSmfBindingInfo() string

GetSmfBindingInfo returns the SmfBindingInfo field value if set, zero value otherwise.

func (*SmContext) GetSmfBindingInfoOk

func (o *SmContext) GetSmfBindingInfoOk() (*string, bool)

GetSmfBindingInfoOk returns a tuple with the SmfBindingInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetSmfInstanceId

func (o *SmContext) GetSmfInstanceId() string

GetSmfInstanceId returns the SmfInstanceId field value if set, zero value otherwise.

func (*SmContext) GetSmfInstanceIdOk

func (o *SmContext) GetSmfInstanceIdOk() (*string, bool)

GetSmfInstanceIdOk returns a tuple with the SmfInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetSmfServiceInstanceId

func (o *SmContext) GetSmfServiceInstanceId() string

GetSmfServiceInstanceId returns the SmfServiceInstanceId field value if set, zero value otherwise.

func (*SmContext) GetSmfServiceInstanceIdOk

func (o *SmContext) GetSmfServiceInstanceIdOk() (*string, bool)

GetSmfServiceInstanceIdOk returns a tuple with the SmfServiceInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetSmfUri

func (o *SmContext) GetSmfUri() string

GetSmfUri returns the SmfUri field value if set, zero value otherwise.

func (*SmContext) GetSmfUriOk

func (o *SmContext) GetSmfUriOk() (*string, bool)

GetSmfUriOk returns a tuple with the SmfUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetSscMode

func (o *SmContext) GetSscMode() string

GetSscMode returns the SscMode field value if set, zero value otherwise.

func (*SmContext) GetSscModeOk

func (o *SmContext) GetSscModeOk() (*string, 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 (*SmContext) GetUdmGroupId

func (o *SmContext) GetUdmGroupId() string

GetUdmGroupId returns the UdmGroupId field value if set, zero value otherwise.

func (*SmContext) GetUdmGroupIdOk

func (o *SmContext) GetUdmGroupIdOk() (*string, bool)

GetUdmGroupIdOk returns a tuple with the UdmGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetUeIpv4Address

func (o *SmContext) GetUeIpv4Address() string

GetUeIpv4Address returns the UeIpv4Address field value if set, zero value otherwise.

func (*SmContext) GetUeIpv4AddressOk

func (o *SmContext) GetUeIpv4AddressOk() (*string, bool)

GetUeIpv4AddressOk returns a tuple with the UeIpv4Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetUeIpv6Prefix

func (o *SmContext) GetUeIpv6Prefix() Ipv6Prefix

GetUeIpv6Prefix returns the UeIpv6Prefix field value if set, zero value otherwise.

func (*SmContext) GetUeIpv6PrefixOk

func (o *SmContext) GetUeIpv6PrefixOk() (*Ipv6Prefix, bool)

GetUeIpv6PrefixOk returns a tuple with the UeIpv6Prefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) GetUpSecurity

func (o *SmContext) GetUpSecurity() UpSecurity

GetUpSecurity returns the UpSecurity field value if set, zero value otherwise.

func (*SmContext) GetUpSecurityOk

func (o *SmContext) GetUpSecurityOk() (*UpSecurity, bool)

GetUpSecurityOk returns a tuple with the UpSecurity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContext) HasAddRanTunnelInfo

func (o *SmContext) HasAddRanTunnelInfo() bool

HasAddRanTunnelInfo returns a boolean if a field has been set.

func (*SmContext) HasAddRedRanTunnelInfo

func (o *SmContext) HasAddRedRanTunnelInfo() bool

HasAddRedRanTunnelInfo returns a boolean if a field has been set.

func (*SmContext) HasAlwaysOnGranted

func (o *SmContext) HasAlwaysOnGranted() bool

HasAlwaysOnGranted returns a boolean if a field has been set.

func (*SmContext) HasAnchorSmfOauth2Required

func (o *SmContext) HasAnchorSmfOauth2Required() bool

HasAnchorSmfOauth2Required returns a boolean if a field has been set.

func (*SmContext) HasChargingId

func (o *SmContext) HasChargingId() bool

HasChargingId returns a boolean if a field has been set.

func (*SmContext) HasChargingInfo

func (o *SmContext) HasChargingInfo() bool

HasChargingInfo returns a boolean if a field has been set.

func (*SmContext) HasDisasterRoamingInd

func (o *SmContext) HasDisasterRoamingInd() bool

HasDisasterRoamingInd returns a boolean if a field has been set.

func (*SmContext) HasDlsetSupportInd

func (o *SmContext) HasDlsetSupportInd() bool

HasDlsetSupportInd returns a boolean if a field has been set.

func (*SmContext) HasDnAaaAddress

func (o *SmContext) HasDnAaaAddress() bool

HasDnAaaAddress returns a boolean if a field has been set.

func (*SmContext) HasEnablePauseCharging

func (o *SmContext) HasEnablePauseCharging() bool

HasEnablePauseCharging returns a boolean if a field has been set.

func (*SmContext) HasEpsBearerInfo

func (o *SmContext) HasEpsBearerInfo() bool

HasEpsBearerInfo returns a boolean if a field has been set.

func (*SmContext) HasEpsPdnCnxInfo

func (o *SmContext) HasEpsPdnCnxInfo() bool

HasEpsPdnCnxInfo returns a boolean if a field has been set.

func (*SmContext) HasForwardingInd

func (o *SmContext) HasForwardingInd() bool

HasForwardingInd returns a boolean if a field has been set.

func (*SmContext) HasFullDnaiList

func (o *SmContext) HasFullDnaiList() bool

HasFullDnaiList returns a boolean if a field has been set.

func (*SmContext) HasGpsi

func (o *SmContext) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*SmContext) HasHNwPubKeyId

func (o *SmContext) HasHNwPubKeyId() bool

HasHNwPubKeyId returns a boolean if a field has been set.

func (*SmContext) HasHSmfInstanceId

func (o *SmContext) HasHSmfInstanceId() bool

HasHSmfInstanceId returns a boolean if a field has been set.

func (*SmContext) HasHSmfServiceInstanceId

func (o *SmContext) HasHSmfServiceInstanceId() bool

HasHSmfServiceInstanceId returns a boolean if a field has been set.

func (*SmContext) HasHSmfUri

func (o *SmContext) HasHSmfUri() bool

HasHSmfUri returns a boolean if a field has been set.

func (*SmContext) HasHplmnSnssai

func (o *SmContext) HasHplmnSnssai() bool

HasHplmnSnssai returns a boolean if a field has been set.

func (*SmContext) HasInterPlmnApiRoot

func (o *SmContext) HasInterPlmnApiRoot() bool

HasInterPlmnApiRoot returns a boolean if a field has been set.

func (*SmContext) HasIntraPlmnApiRoot

func (o *SmContext) HasIntraPlmnApiRoot() bool

HasIntraPlmnApiRoot returns a boolean if a field has been set.

func (*SmContext) HasIpv6Index

func (o *SmContext) HasIpv6Index() bool

HasIpv6Index returns a boolean if a field has been set.

func (*SmContext) HasMaxIntegrityProtectedDataRate

func (o *SmContext) HasMaxIntegrityProtectedDataRate() bool

HasMaxIntegrityProtectedDataRate returns a boolean if a field has been set.

func (*SmContext) HasMaxIntegrityProtectedDataRateDl

func (o *SmContext) HasMaxIntegrityProtectedDataRateDl() bool

HasMaxIntegrityProtectedDataRateDl returns a boolean if a field has been set.

func (*SmContext) HasN9fscSupportInd

func (o *SmContext) HasN9fscSupportInd() bool

HasN9fscSupportInd returns a boolean if a field has been set.

func (*SmContext) HasNefExtBufSupportInd

func (o *SmContext) HasNefExtBufSupportInd() bool

HasNefExtBufSupportInd returns a boolean if a field has been set.

func (*SmContext) HasNspuSupportInd

func (o *SmContext) HasNspuSupportInd() bool

HasNspuSupportInd returns a boolean if a field has been set.

func (*SmContext) HasPcfGroupId

func (o *SmContext) HasPcfGroupId() bool

HasPcfGroupId returns a boolean if a field has been set.

func (*SmContext) HasPcfId

func (o *SmContext) HasPcfId() bool

HasPcfId returns a boolean if a field has been set.

func (*SmContext) HasPcfSetId

func (o *SmContext) HasPcfSetId() bool

HasPcfSetId returns a boolean if a field has been set.

func (*SmContext) HasPduSessionRef

func (o *SmContext) HasPduSessionRef() bool

HasPduSessionRef returns a boolean if a field has been set.

func (*SmContext) HasPduSessionSmfBinding

func (o *SmContext) HasPduSessionSmfBinding() bool

HasPduSessionSmfBinding returns a boolean if a field has been set.

func (*SmContext) HasPduSessionSmfServiceSetId

func (o *SmContext) HasPduSessionSmfServiceSetId() bool

HasPduSessionSmfServiceSetId returns a boolean if a field has been set.

func (*SmContext) HasPduSessionSmfSetId

func (o *SmContext) HasPduSessionSmfSetId() bool

HasPduSessionSmfSetId returns a boolean if a field has been set.

func (*SmContext) HasPsaTunnelInfo

func (o *SmContext) HasPsaTunnelInfo() bool

HasPsaTunnelInfo returns a boolean if a field has been set.

func (*SmContext) HasRanTunnelInfo

func (o *SmContext) HasRanTunnelInfo() bool

HasRanTunnelInfo returns a boolean if a field has been set.

func (*SmContext) HasRecoveryTime

func (o *SmContext) HasRecoveryTime() bool

HasRecoveryTime returns a boolean if a field has been set.

func (*SmContext) HasRedRanTunnelInfo

func (o *SmContext) HasRedRanTunnelInfo() bool

HasRedRanTunnelInfo returns a boolean if a field has been set.

func (*SmContext) HasRedundantPduSessionInfo

func (o *SmContext) HasRedundantPduSessionInfo() bool

HasRedundantPduSessionInfo returns a boolean if a field has been set.

func (*SmContext) HasRoamingChargingProfile

func (o *SmContext) HasRoamingChargingProfile() bool

HasRoamingChargingProfile returns a boolean if a field has been set.

func (*SmContext) HasRoutingIndicator

func (o *SmContext) HasRoutingIndicator() bool

HasRoutingIndicator returns a boolean if a field has been set.

func (*SmContext) HasSatelliteBackhaulCat

func (o *SmContext) HasSatelliteBackhaulCat() bool

HasSatelliteBackhaulCat returns a boolean if a field has been set.

func (*SmContext) HasSelMode

func (o *SmContext) HasSelMode() bool

HasSelMode returns a boolean if a field has been set.

func (*SmContext) HasSelectedDnn

func (o *SmContext) HasSelectedDnn() bool

HasSelectedDnn returns a boolean if a field has been set.

func (*SmContext) HasSmfBindingInfo

func (o *SmContext) HasSmfBindingInfo() bool

HasSmfBindingInfo returns a boolean if a field has been set.

func (*SmContext) HasSmfInstanceId

func (o *SmContext) HasSmfInstanceId() bool

HasSmfInstanceId returns a boolean if a field has been set.

func (*SmContext) HasSmfServiceInstanceId

func (o *SmContext) HasSmfServiceInstanceId() bool

HasSmfServiceInstanceId returns a boolean if a field has been set.

func (*SmContext) HasSmfUri

func (o *SmContext) HasSmfUri() bool

HasSmfUri returns a boolean if a field has been set.

func (*SmContext) HasSscMode

func (o *SmContext) HasSscMode() bool

HasSscMode returns a boolean if a field has been set.

func (*SmContext) HasUdmGroupId

func (o *SmContext) HasUdmGroupId() bool

HasUdmGroupId returns a boolean if a field has been set.

func (*SmContext) HasUeIpv4Address

func (o *SmContext) HasUeIpv4Address() bool

HasUeIpv4Address returns a boolean if a field has been set.

func (*SmContext) HasUeIpv6Prefix

func (o *SmContext) HasUeIpv6Prefix() bool

HasUeIpv6Prefix returns a boolean if a field has been set.

func (*SmContext) HasUpSecurity

func (o *SmContext) HasUpSecurity() bool

HasUpSecurity returns a boolean if a field has been set.

func (SmContext) MarshalJSON

func (o SmContext) MarshalJSON() ([]byte, error)

func (*SmContext) SetAddRanTunnelInfo

func (o *SmContext) SetAddRanTunnelInfo(v []QosFlowTunnel)

SetAddRanTunnelInfo gets a reference to the given []QosFlowTunnel and assigns it to the AddRanTunnelInfo field.

func (*SmContext) SetAddRedRanTunnelInfo

func (o *SmContext) SetAddRedRanTunnelInfo(v []QosFlowTunnel)

SetAddRedRanTunnelInfo gets a reference to the given []QosFlowTunnel and assigns it to the AddRedRanTunnelInfo field.

func (*SmContext) SetAlwaysOnGranted

func (o *SmContext) SetAlwaysOnGranted(v bool)

SetAlwaysOnGranted gets a reference to the given bool and assigns it to the AlwaysOnGranted field.

func (*SmContext) SetAnchorSmfOauth2Required

func (o *SmContext) SetAnchorSmfOauth2Required(v bool)

SetAnchorSmfOauth2Required gets a reference to the given bool and assigns it to the AnchorSmfOauth2Required field.

func (*SmContext) SetChargingId

func (o *SmContext) SetChargingId(v string)

SetChargingId gets a reference to the given string and assigns it to the ChargingId field.

func (*SmContext) SetChargingInfo

func (o *SmContext) SetChargingInfo(v ChargingInformation)

SetChargingInfo gets a reference to the given ChargingInformation and assigns it to the ChargingInfo field.

func (*SmContext) SetDisasterRoamingInd

func (o *SmContext) SetDisasterRoamingInd(v bool)

SetDisasterRoamingInd gets a reference to the given bool and assigns it to the DisasterRoamingInd field.

func (*SmContext) SetDlsetSupportInd

func (o *SmContext) SetDlsetSupportInd(v bool)

SetDlsetSupportInd gets a reference to the given bool and assigns it to the DlsetSupportInd field.

func (*SmContext) SetDnAaaAddress

func (o *SmContext) SetDnAaaAddress(v IpAddress)

SetDnAaaAddress gets a reference to the given IpAddress and assigns it to the DnAaaAddress field.

func (*SmContext) SetDnn

func (o *SmContext) SetDnn(v string)

SetDnn sets field value

func (*SmContext) SetEnablePauseCharging

func (o *SmContext) SetEnablePauseCharging(v bool)

SetEnablePauseCharging gets a reference to the given bool and assigns it to the EnablePauseCharging field.

func (*SmContext) SetEpsBearerInfo

func (o *SmContext) SetEpsBearerInfo(v []EpsBearerInfo)

SetEpsBearerInfo gets a reference to the given []EpsBearerInfo and assigns it to the EpsBearerInfo field.

func (*SmContext) SetEpsPdnCnxInfo

func (o *SmContext) SetEpsPdnCnxInfo(v EpsPdnCnxInfo)

SetEpsPdnCnxInfo gets a reference to the given EpsPdnCnxInfo and assigns it to the EpsPdnCnxInfo field.

func (*SmContext) SetForwardingInd

func (o *SmContext) SetForwardingInd(v bool)

SetForwardingInd gets a reference to the given bool and assigns it to the ForwardingInd field.

func (*SmContext) SetFullDnaiList

func (o *SmContext) SetFullDnaiList(v []string)

SetFullDnaiList gets a reference to the given []string and assigns it to the FullDnaiList field.

func (*SmContext) SetGpsi

func (o *SmContext) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*SmContext) SetHNwPubKeyId

func (o *SmContext) SetHNwPubKeyId(v int32)

SetHNwPubKeyId gets a reference to the given int32 and assigns it to the HNwPubKeyId field.

func (*SmContext) SetHSmfInstanceId

func (o *SmContext) SetHSmfInstanceId(v string)

SetHSmfInstanceId gets a reference to the given string and assigns it to the HSmfInstanceId field.

func (*SmContext) SetHSmfServiceInstanceId

func (o *SmContext) SetHSmfServiceInstanceId(v string)

SetHSmfServiceInstanceId gets a reference to the given string and assigns it to the HSmfServiceInstanceId field.

func (*SmContext) SetHSmfUri

func (o *SmContext) SetHSmfUri(v string)

SetHSmfUri gets a reference to the given string and assigns it to the HSmfUri field.

func (*SmContext) SetHplmnSnssai

func (o *SmContext) SetHplmnSnssai(v Snssai)

SetHplmnSnssai gets a reference to the given Snssai and assigns it to the HplmnSnssai field.

func (*SmContext) SetInterPlmnApiRoot

func (o *SmContext) SetInterPlmnApiRoot(v string)

SetInterPlmnApiRoot gets a reference to the given string and assigns it to the InterPlmnApiRoot field.

func (*SmContext) SetIntraPlmnApiRoot

func (o *SmContext) SetIntraPlmnApiRoot(v string)

SetIntraPlmnApiRoot gets a reference to the given string and assigns it to the IntraPlmnApiRoot field.

func (*SmContext) SetIpv6Index

func (o *SmContext) SetIpv6Index(v int32)

SetIpv6Index gets a reference to the given int32 and assigns it to the Ipv6Index field.

func (*SmContext) SetMaxIntegrityProtectedDataRate

func (o *SmContext) SetMaxIntegrityProtectedDataRate(v MaxIntegrityProtectedDataRate)

SetMaxIntegrityProtectedDataRate gets a reference to the given MaxIntegrityProtectedDataRate and assigns it to the MaxIntegrityProtectedDataRate field.

func (*SmContext) SetMaxIntegrityProtectedDataRateDl

func (o *SmContext) SetMaxIntegrityProtectedDataRateDl(v MaxIntegrityProtectedDataRate)

SetMaxIntegrityProtectedDataRateDl gets a reference to the given MaxIntegrityProtectedDataRate and assigns it to the MaxIntegrityProtectedDataRateDl field.

func (*SmContext) SetN9fscSupportInd

func (o *SmContext) SetN9fscSupportInd(v bool)

SetN9fscSupportInd gets a reference to the given bool and assigns it to the N9fscSupportInd field.

func (*SmContext) SetNefExtBufSupportInd

func (o *SmContext) SetNefExtBufSupportInd(v bool)

SetNefExtBufSupportInd gets a reference to the given bool and assigns it to the NefExtBufSupportInd field.

func (*SmContext) SetNspuSupportInd

func (o *SmContext) SetNspuSupportInd(v bool)

SetNspuSupportInd gets a reference to the given bool and assigns it to the NspuSupportInd field.

func (*SmContext) SetPcfGroupId

func (o *SmContext) SetPcfGroupId(v string)

SetPcfGroupId gets a reference to the given string and assigns it to the PcfGroupId field.

func (*SmContext) SetPcfId

func (o *SmContext) SetPcfId(v string)

SetPcfId gets a reference to the given string and assigns it to the PcfId field.

func (*SmContext) SetPcfSetId

func (o *SmContext) SetPcfSetId(v string)

SetPcfSetId gets a reference to the given string and assigns it to the PcfSetId field.

func (*SmContext) SetPduSessionId

func (o *SmContext) SetPduSessionId(v int32)

SetPduSessionId sets field value

func (*SmContext) SetPduSessionRef

func (o *SmContext) SetPduSessionRef(v string)

SetPduSessionRef gets a reference to the given string and assigns it to the PduSessionRef field.

func (*SmContext) SetPduSessionSmfBinding

func (o *SmContext) SetPduSessionSmfBinding(v SbiBindingLevel)

SetPduSessionSmfBinding gets a reference to the given SbiBindingLevel and assigns it to the PduSessionSmfBinding field.

func (*SmContext) SetPduSessionSmfServiceSetId

func (o *SmContext) SetPduSessionSmfServiceSetId(v string)

SetPduSessionSmfServiceSetId gets a reference to the given string and assigns it to the PduSessionSmfServiceSetId field.

func (*SmContext) SetPduSessionSmfSetId

func (o *SmContext) SetPduSessionSmfSetId(v string)

SetPduSessionSmfSetId gets a reference to the given string and assigns it to the PduSessionSmfSetId field.

func (*SmContext) SetPduSessionType

func (o *SmContext) SetPduSessionType(v PduSessionType)

SetPduSessionType sets field value

func (*SmContext) SetPsaTunnelInfo

func (o *SmContext) SetPsaTunnelInfo(v TunnelInfo)

SetPsaTunnelInfo gets a reference to the given TunnelInfo and assigns it to the PsaTunnelInfo field.

func (*SmContext) SetQosFlowsList

func (o *SmContext) SetQosFlowsList(v []QosFlowSetupItem)

SetQosFlowsList sets field value

func (*SmContext) SetRanTunnelInfo

func (o *SmContext) SetRanTunnelInfo(v QosFlowTunnel)

SetRanTunnelInfo gets a reference to the given QosFlowTunnel and assigns it to the RanTunnelInfo field.

func (*SmContext) SetRecoveryTime

func (o *SmContext) SetRecoveryTime(v time.Time)

SetRecoveryTime gets a reference to the given time.Time and assigns it to the RecoveryTime field.

func (*SmContext) SetRedRanTunnelInfo

func (o *SmContext) SetRedRanTunnelInfo(v QosFlowTunnel)

SetRedRanTunnelInfo gets a reference to the given QosFlowTunnel and assigns it to the RedRanTunnelInfo field.

func (*SmContext) SetRedundantPduSessionInfo

func (o *SmContext) SetRedundantPduSessionInfo(v RedundantPduSessionInformation)

SetRedundantPduSessionInfo gets a reference to the given RedundantPduSessionInformation and assigns it to the RedundantPduSessionInfo field.

func (*SmContext) SetRoamingChargingProfile

func (o *SmContext) SetRoamingChargingProfile(v RoamingChargingProfile)

SetRoamingChargingProfile gets a reference to the given RoamingChargingProfile and assigns it to the RoamingChargingProfile field.

func (*SmContext) SetRoutingIndicator

func (o *SmContext) SetRoutingIndicator(v string)

SetRoutingIndicator gets a reference to the given string and assigns it to the RoutingIndicator field.

func (*SmContext) SetSNssai

func (o *SmContext) SetSNssai(v Snssai)

SetSNssai sets field value

func (*SmContext) SetSatelliteBackhaulCat

func (o *SmContext) SetSatelliteBackhaulCat(v SatelliteBackhaulCategory)

SetSatelliteBackhaulCat gets a reference to the given SatelliteBackhaulCategory and assigns it to the SatelliteBackhaulCat field.

func (*SmContext) SetSelMode

func (o *SmContext) SetSelMode(v DnnSelectionMode)

SetSelMode gets a reference to the given DnnSelectionMode and assigns it to the SelMode field.

func (*SmContext) SetSelectedDnn

func (o *SmContext) SetSelectedDnn(v string)

SetSelectedDnn gets a reference to the given string and assigns it to the SelectedDnn field.

func (*SmContext) SetSessionAmbr

func (o *SmContext) SetSessionAmbr(v Ambr)

SetSessionAmbr sets field value

func (*SmContext) SetSmfBindingInfo

func (o *SmContext) SetSmfBindingInfo(v string)

SetSmfBindingInfo gets a reference to the given string and assigns it to the SmfBindingInfo field.

func (*SmContext) SetSmfInstanceId

func (o *SmContext) SetSmfInstanceId(v string)

SetSmfInstanceId gets a reference to the given string and assigns it to the SmfInstanceId field.

func (*SmContext) SetSmfServiceInstanceId

func (o *SmContext) SetSmfServiceInstanceId(v string)

SetSmfServiceInstanceId gets a reference to the given string and assigns it to the SmfServiceInstanceId field.

func (*SmContext) SetSmfUri

func (o *SmContext) SetSmfUri(v string)

SetSmfUri gets a reference to the given string and assigns it to the SmfUri field.

func (*SmContext) SetSscMode

func (o *SmContext) SetSscMode(v string)

SetSscMode gets a reference to the given string and assigns it to the SscMode field.

func (*SmContext) SetUdmGroupId

func (o *SmContext) SetUdmGroupId(v string)

SetUdmGroupId gets a reference to the given string and assigns it to the UdmGroupId field.

func (*SmContext) SetUeIpv4Address

func (o *SmContext) SetUeIpv4Address(v string)

SetUeIpv4Address gets a reference to the given string and assigns it to the UeIpv4Address field.

func (*SmContext) SetUeIpv6Prefix

func (o *SmContext) SetUeIpv6Prefix(v Ipv6Prefix)

SetUeIpv6Prefix gets a reference to the given Ipv6Prefix and assigns it to the UeIpv6Prefix field.

func (*SmContext) SetUpSecurity

func (o *SmContext) SetUpSecurity(v UpSecurity)

SetUpSecurity gets a reference to the given UpSecurity and assigns it to the UpSecurity field.

func (SmContext) ToMap

func (o SmContext) ToMap() (map[string]interface{}, error)

type SmContextCreateData

type SmContextCreateData struct {
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi                *string `json:"supi,omitempty"`
	UnauthenticatedSupi *bool   `json:"unauthenticatedSupi,omitempty"`
	// String representing a Permanent Equipment Identifier that may contain - an IMEI or IMEISV, as  specified in clause 6.2 of 3GPP TS 23.003; a MAC address for a 5G-RG or FN-RG via  wireline  access, with an indication that this address cannot be trusted for regulatory purpose if this  address cannot be used as an Equipment Identifier of the FN-RG, as specified in clause 4.7.7  of 3GPP TS23.316. Examples are imei-012345678901234 or imeisv-0123456789012345.
	Pei *string `json:"pei,omitempty"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi *string `json:"gpsi,omitempty"`
	// 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,omitempty"`
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn *string `json:"dnn,omitempty"`
	// 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\").
	SelectedDnn *string `json:"selectedDnn,omitempty"`
	SNssai      *Snssai `json:"sNssai,omitempty"`
	HplmnSnssai *Snssai `json:"hplmnSnssai,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.
	ServingNfId      string           `json:"servingNfId"`
	Guami            *Guami           `json:"guami,omitempty"`
	ServiceName      *ServiceName     `json:"serviceName,omitempty"`
	ServingNetwork   PlmnIdNid        `json:"servingNetwork"`
	RequestType      *RequestType     `json:"requestType,omitempty"`
	N1SmMsg          *RefToBinaryData `json:"n1SmMsg,omitempty"`
	AnType           AccessType       `json:"anType"`
	AdditionalAnType *AccessType      `json:"additionalAnType,omitempty"`
	RatType          *RatType         `json:"ratType,omitempty"`
	PresenceInLadn   *PresenceState   `json:"presenceInLadn,omitempty"`
	UeLocation       *UserLocation    `json:"ueLocation,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"`
	AddUeLocation *UserLocation `json:"addUeLocation,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	SmContextStatusUri string `json:"smContextStatusUri"`
	// String providing an URI formatted according to RFC 3986.
	HSmfUri *string `json:"hSmfUri,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.
	HSmfId *string `json:"hSmfId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	SmfUri *string `json:"smfUri,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.
	SmfId             *string  `json:"smfId,omitempty"`
	AdditionalHsmfUri []string `json:"additionalHsmfUri,omitempty"`
	AdditionalHsmfId  []string `json:"additionalHsmfId,omitempty"`
	AdditionalSmfUri  []string `json:"additionalSmfUri,omitempty"`
	AdditionalSmfId   []string `json:"additionalSmfId,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.
	OldPduSessionId         *int32  `json:"oldPduSessionId,omitempty"`
	PduSessionsActivateList []int32 `json:"pduSessionsActivateList,omitempty"`
	// UE EPS PDN Connection container from SMF to AMF
	UeEpsPdnConnection *string  `json:"ueEpsPdnConnection,omitempty"`
	HoState            *HoState `json:"hoState,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.
	PcfId *string `json:"pcfId,omitempty"`
	// Identifier of a group of NFs.
	PcfGroupId *string `json:"pcfGroupId,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.
	PcfSetId *string `json:"pcfSetId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	NrfUri *string `json:"nrfUri,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"`
	SelMode           *DnnSelectionMode `json:"selMode,omitempty"`
	BackupAmfInfo     []BackupAmfInfo   `json:"backupAmfInfo,omitempty"`
	TraceData         NullableTraceData `json:"traceData,omitempty"`
	// Identifier of a group of NFs.
	UdmGroupId             *string                    `json:"udmGroupId,omitempty"`
	RoutingIndicator       *string                    `json:"routingIndicator,omitempty"`
	HNwPubKeyId            *int32                     `json:"hNwPubKeyId,omitempty"`
	EpsInterworkingInd     *EpsInterworkingIndication `json:"epsInterworkingInd,omitempty"`
	IndirectForwardingFlag *bool                      `json:"indirectForwardingFlag,omitempty"`
	DirectForwardingFlag   *bool                      `json:"directForwardingFlag,omitempty"`
	TargetId               *NgRanTargetId             `json:"targetId,omitempty"`
	// EPS bearer context status
	EpsBearerCtxStatus *string          `json:"epsBearerCtxStatus,omitempty"`
	CpCiotEnabled      *bool            `json:"cpCiotEnabled,omitempty"`
	CpOnlyInd          *bool            `json:"cpOnlyInd,omitempty"`
	InvokeNef          *bool            `json:"invokeNef,omitempty"`
	MaRequestInd       *bool            `json:"maRequestInd,omitempty"`
	MaNwUpgradeInd     *bool            `json:"maNwUpgradeInd,omitempty"`
	N2SmInfo           *RefToBinaryData `json:"n2SmInfo,omitempty"`
	N2SmInfoType       *N2SmInfoType    `json:"n2SmInfoType,omitempty"`
	N2SmInfoExt1       *RefToBinaryData `json:"n2SmInfoExt1,omitempty"`
	N2SmInfoTypeExt1   *N2SmInfoType    `json:"n2SmInfoTypeExt1,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	SmContextRef       *string    `json:"smContextRef,omitempty"`
	SmContextSmfPlmnId *PlmnIdNid `json:"smContextSmfPlmnId,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.
	SmContextSmfId *string `json:"smContextSmfId,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.
	SmContextSmfSetId *string `json:"smContextSmfSetId,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.
	SmContextSmfServiceSetId *string              `json:"smContextSmfServiceSetId,omitempty"`
	SmContextSmfBinding      *SbiBindingLevel     `json:"smContextSmfBinding,omitempty"`
	UpCnxState               *UpCnxState          `json:"upCnxState,omitempty"`
	SmallDataRateStatus      *SmallDataRateStatus `json:"smallDataRateStatus,omitempty"`
	ApnRateStatus            *ApnRateStatus       `json:"apnRateStatus,omitempty"`
	ExtendedNasSmTimerInd    *bool                `json:"extendedNasSmTimerInd,omitempty"`
	DlDataWaitingInd         *bool                `json:"dlDataWaitingInd,omitempty"`
	DdnFailureSubs           *DdnFailureSubs      `json:"ddnFailureSubs,omitempty"`
	SmfTransferInd           *bool                `json:"smfTransferInd,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.
	OldSmfId *string `json:"oldSmfId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	OldSmContextRef     *string   `json:"oldSmContextRef,omitempty"`
	WAgfInfo            *WAgfInfo `json:"wAgfInfo,omitempty"`
	TngfInfo            *TngfInfo `json:"tngfInfo,omitempty"`
	TwifInfo            *TwifInfo `json:"twifInfo,omitempty"`
	RanUnchangedInd     *bool     `json:"ranUnchangedInd,omitempty"`
	SamePcfSelectionInd *bool     `json:"samePcfSelectionInd,omitempty"`
	// DNAI (Data network access identifier), see clause 5.6.7 of 3GPP TS 23.501.
	TargetDnai *string `json:"targetDnai,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	NrfManagementUri *string `json:"nrfManagementUri,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	NrfDiscoveryUri *string `json:"nrfDiscoveryUri,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	NrfAccessTokenUri *string `json:"nrfAccessTokenUri,omitempty"`
	// Map indicating whether the NRF requires Oauth2-based authorization for accessing its services. The key of the map shall be the name of an NRF service, e.g. \"nnrf-nfm\" or \"nnrf-disc\"
	NrfOauth2Required *map[string]bool       `json:"nrfOauth2Required,omitempty"`
	SmfBindingInfo    *string                `json:"smfBindingInfo,omitempty"`
	PvsInfo           []ServerAddressingInfo `json:"pvsInfo,omitempty"`
	OnboardingInd     *bool                  `json:"onboardingInd,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	OldPduSessionRef           *string                    `json:"oldPduSessionRef,omitempty"`
	SmPolicyNotifyInd          *bool                      `json:"smPolicyNotifyInd,omitempty"`
	PcfUeCallbackInfo          NullablePcfUeCallbackInfo  `json:"pcfUeCallbackInfo,omitempty"`
	SatelliteBackhaulCat       *SatelliteBackhaulCategory `json:"satelliteBackhaulCat,omitempty"`
	UpipSupported              *bool                      `json:"upipSupported,omitempty"`
	UavAuthenticated           *bool                      `json:"uavAuthenticated,omitempty"`
	DisasterRoamingInd         *bool                      `json:"disasterRoamingInd,omitempty"`
	AnchorSmfOauth2Required    *bool                      `json:"anchorSmfOauth2Required,omitempty"`
	SmContextSmfOauth2Required *bool                      `json:"smContextSmfOauth2Required,omitempty"`
}

SmContextCreateData Data within Create SM Context Request

func NewSmContextCreateData

func NewSmContextCreateData(servingNfId string, servingNetwork PlmnIdNid, anType AccessType, smContextStatusUri string) *SmContextCreateData

NewSmContextCreateData instantiates a new SmContextCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmContextCreateDataWithDefaults

func NewSmContextCreateDataWithDefaults() *SmContextCreateData

NewSmContextCreateDataWithDefaults instantiates a new SmContextCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmContextCreateData) GetAddUeLocation

func (o *SmContextCreateData) GetAddUeLocation() UserLocation

GetAddUeLocation returns the AddUeLocation field value if set, zero value otherwise.

func (*SmContextCreateData) GetAddUeLocationOk

func (o *SmContextCreateData) GetAddUeLocationOk() (*UserLocation, bool)

GetAddUeLocationOk returns a tuple with the AddUeLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetAdditionalAnType

func (o *SmContextCreateData) GetAdditionalAnType() AccessType

GetAdditionalAnType returns the AdditionalAnType field value if set, zero value otherwise.

func (*SmContextCreateData) GetAdditionalAnTypeOk

func (o *SmContextCreateData) GetAdditionalAnTypeOk() (*AccessType, bool)

GetAdditionalAnTypeOk returns a tuple with the AdditionalAnType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetAdditionalHsmfId

func (o *SmContextCreateData) GetAdditionalHsmfId() []string

GetAdditionalHsmfId returns the AdditionalHsmfId field value if set, zero value otherwise.

func (*SmContextCreateData) GetAdditionalHsmfIdOk

func (o *SmContextCreateData) GetAdditionalHsmfIdOk() ([]string, bool)

GetAdditionalHsmfIdOk returns a tuple with the AdditionalHsmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetAdditionalHsmfUri

func (o *SmContextCreateData) GetAdditionalHsmfUri() []string

GetAdditionalHsmfUri returns the AdditionalHsmfUri field value if set, zero value otherwise.

func (*SmContextCreateData) GetAdditionalHsmfUriOk

func (o *SmContextCreateData) GetAdditionalHsmfUriOk() ([]string, bool)

GetAdditionalHsmfUriOk returns a tuple with the AdditionalHsmfUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetAdditionalSmfId

func (o *SmContextCreateData) GetAdditionalSmfId() []string

GetAdditionalSmfId returns the AdditionalSmfId field value if set, zero value otherwise.

func (*SmContextCreateData) GetAdditionalSmfIdOk

func (o *SmContextCreateData) GetAdditionalSmfIdOk() ([]string, bool)

GetAdditionalSmfIdOk returns a tuple with the AdditionalSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetAdditionalSmfUri

func (o *SmContextCreateData) GetAdditionalSmfUri() []string

GetAdditionalSmfUri returns the AdditionalSmfUri field value if set, zero value otherwise.

func (*SmContextCreateData) GetAdditionalSmfUriOk

func (o *SmContextCreateData) GetAdditionalSmfUriOk() ([]string, bool)

GetAdditionalSmfUriOk returns a tuple with the AdditionalSmfUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetAnType

func (o *SmContextCreateData) GetAnType() AccessType

GetAnType returns the AnType field value

func (*SmContextCreateData) GetAnTypeOk

func (o *SmContextCreateData) GetAnTypeOk() (*AccessType, bool)

GetAnTypeOk returns a tuple with the AnType field value and a boolean to check if the value has been set.

func (*SmContextCreateData) GetAnchorSmfOauth2Required

func (o *SmContextCreateData) GetAnchorSmfOauth2Required() bool

GetAnchorSmfOauth2Required returns the AnchorSmfOauth2Required field value if set, zero value otherwise.

func (*SmContextCreateData) GetAnchorSmfOauth2RequiredOk

func (o *SmContextCreateData) GetAnchorSmfOauth2RequiredOk() (*bool, bool)

GetAnchorSmfOauth2RequiredOk returns a tuple with the AnchorSmfOauth2Required field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetApnRateStatus

func (o *SmContextCreateData) GetApnRateStatus() ApnRateStatus

GetApnRateStatus returns the ApnRateStatus field value if set, zero value otherwise.

func (*SmContextCreateData) GetApnRateStatusOk

func (o *SmContextCreateData) GetApnRateStatusOk() (*ApnRateStatus, bool)

GetApnRateStatusOk returns a tuple with the ApnRateStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetBackupAmfInfo

func (o *SmContextCreateData) GetBackupAmfInfo() []BackupAmfInfo

GetBackupAmfInfo returns the BackupAmfInfo field value if set, zero value otherwise.

func (*SmContextCreateData) GetBackupAmfInfoOk

func (o *SmContextCreateData) GetBackupAmfInfoOk() ([]BackupAmfInfo, bool)

GetBackupAmfInfoOk returns a tuple with the BackupAmfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetCpCiotEnabled

func (o *SmContextCreateData) GetCpCiotEnabled() bool

GetCpCiotEnabled returns the CpCiotEnabled field value if set, zero value otherwise.

func (*SmContextCreateData) GetCpCiotEnabledOk

func (o *SmContextCreateData) GetCpCiotEnabledOk() (*bool, bool)

GetCpCiotEnabledOk returns a tuple with the CpCiotEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetCpOnlyInd

func (o *SmContextCreateData) GetCpOnlyInd() bool

GetCpOnlyInd returns the CpOnlyInd field value if set, zero value otherwise.

func (*SmContextCreateData) GetCpOnlyIndOk

func (o *SmContextCreateData) GetCpOnlyIndOk() (*bool, bool)

GetCpOnlyIndOk returns a tuple with the CpOnlyInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetDdnFailureSubs

func (o *SmContextCreateData) GetDdnFailureSubs() DdnFailureSubs

GetDdnFailureSubs returns the DdnFailureSubs field value if set, zero value otherwise.

func (*SmContextCreateData) GetDdnFailureSubsOk

func (o *SmContextCreateData) GetDdnFailureSubsOk() (*DdnFailureSubs, bool)

GetDdnFailureSubsOk returns a tuple with the DdnFailureSubs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetDirectForwardingFlag

func (o *SmContextCreateData) GetDirectForwardingFlag() bool

GetDirectForwardingFlag returns the DirectForwardingFlag field value if set, zero value otherwise.

func (*SmContextCreateData) GetDirectForwardingFlagOk

func (o *SmContextCreateData) GetDirectForwardingFlagOk() (*bool, bool)

GetDirectForwardingFlagOk returns a tuple with the DirectForwardingFlag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetDisasterRoamingInd

func (o *SmContextCreateData) GetDisasterRoamingInd() bool

GetDisasterRoamingInd returns the DisasterRoamingInd field value if set, zero value otherwise.

func (*SmContextCreateData) GetDisasterRoamingIndOk

func (o *SmContextCreateData) GetDisasterRoamingIndOk() (*bool, bool)

GetDisasterRoamingIndOk returns a tuple with the DisasterRoamingInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetDlDataWaitingInd

func (o *SmContextCreateData) GetDlDataWaitingInd() bool

GetDlDataWaitingInd returns the DlDataWaitingInd field value if set, zero value otherwise.

func (*SmContextCreateData) GetDlDataWaitingIndOk

func (o *SmContextCreateData) GetDlDataWaitingIndOk() (*bool, bool)

GetDlDataWaitingIndOk returns a tuple with the DlDataWaitingInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetDnn

func (o *SmContextCreateData) GetDnn() string

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*SmContextCreateData) GetDnnOk

func (o *SmContextCreateData) GetDnnOk() (*string, bool)

GetDnnOk returns a tuple with the Dnn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetEpsBearerCtxStatus

func (o *SmContextCreateData) GetEpsBearerCtxStatus() string

GetEpsBearerCtxStatus returns the EpsBearerCtxStatus field value if set, zero value otherwise.

func (*SmContextCreateData) GetEpsBearerCtxStatusOk

func (o *SmContextCreateData) GetEpsBearerCtxStatusOk() (*string, bool)

GetEpsBearerCtxStatusOk returns a tuple with the EpsBearerCtxStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetEpsInterworkingInd

func (o *SmContextCreateData) GetEpsInterworkingInd() EpsInterworkingIndication

GetEpsInterworkingInd returns the EpsInterworkingInd field value if set, zero value otherwise.

func (*SmContextCreateData) GetEpsInterworkingIndOk

func (o *SmContextCreateData) GetEpsInterworkingIndOk() (*EpsInterworkingIndication, bool)

GetEpsInterworkingIndOk returns a tuple with the EpsInterworkingInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetExtendedNasSmTimerInd

func (o *SmContextCreateData) GetExtendedNasSmTimerInd() bool

GetExtendedNasSmTimerInd returns the ExtendedNasSmTimerInd field value if set, zero value otherwise.

func (*SmContextCreateData) GetExtendedNasSmTimerIndOk

func (o *SmContextCreateData) GetExtendedNasSmTimerIndOk() (*bool, bool)

GetExtendedNasSmTimerIndOk returns a tuple with the ExtendedNasSmTimerInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetGpsi

func (o *SmContextCreateData) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*SmContextCreateData) GetGpsiOk

func (o *SmContextCreateData) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetGuami

func (o *SmContextCreateData) GetGuami() Guami

GetGuami returns the Guami field value if set, zero value otherwise.

func (*SmContextCreateData) GetGuamiOk

func (o *SmContextCreateData) GetGuamiOk() (*Guami, bool)

GetGuamiOk returns a tuple with the Guami field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetHNwPubKeyId

func (o *SmContextCreateData) GetHNwPubKeyId() int32

GetHNwPubKeyId returns the HNwPubKeyId field value if set, zero value otherwise.

func (*SmContextCreateData) GetHNwPubKeyIdOk

func (o *SmContextCreateData) GetHNwPubKeyIdOk() (*int32, bool)

GetHNwPubKeyIdOk returns a tuple with the HNwPubKeyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetHSmfId

func (o *SmContextCreateData) GetHSmfId() string

GetHSmfId returns the HSmfId field value if set, zero value otherwise.

func (*SmContextCreateData) GetHSmfIdOk

func (o *SmContextCreateData) GetHSmfIdOk() (*string, bool)

GetHSmfIdOk returns a tuple with the HSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetHSmfUri

func (o *SmContextCreateData) GetHSmfUri() string

GetHSmfUri returns the HSmfUri field value if set, zero value otherwise.

func (*SmContextCreateData) GetHSmfUriOk

func (o *SmContextCreateData) GetHSmfUriOk() (*string, bool)

GetHSmfUriOk returns a tuple with the HSmfUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetHoState

func (o *SmContextCreateData) GetHoState() HoState

GetHoState returns the HoState field value if set, zero value otherwise.

func (*SmContextCreateData) GetHoStateOk

func (o *SmContextCreateData) GetHoStateOk() (*HoState, bool)

GetHoStateOk returns a tuple with the HoState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetHplmnSnssai

func (o *SmContextCreateData) GetHplmnSnssai() Snssai

GetHplmnSnssai returns the HplmnSnssai field value if set, zero value otherwise.

func (*SmContextCreateData) GetHplmnSnssaiOk

func (o *SmContextCreateData) GetHplmnSnssaiOk() (*Snssai, bool)

GetHplmnSnssaiOk returns a tuple with the HplmnSnssai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetIndirectForwardingFlag

func (o *SmContextCreateData) GetIndirectForwardingFlag() bool

GetIndirectForwardingFlag returns the IndirectForwardingFlag field value if set, zero value otherwise.

func (*SmContextCreateData) GetIndirectForwardingFlagOk

func (o *SmContextCreateData) GetIndirectForwardingFlagOk() (*bool, bool)

GetIndirectForwardingFlagOk returns a tuple with the IndirectForwardingFlag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetInvokeNef

func (o *SmContextCreateData) GetInvokeNef() bool

GetInvokeNef returns the InvokeNef field value if set, zero value otherwise.

func (*SmContextCreateData) GetInvokeNefOk

func (o *SmContextCreateData) GetInvokeNefOk() (*bool, bool)

GetInvokeNefOk returns a tuple with the InvokeNef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetMaNwUpgradeInd

func (o *SmContextCreateData) GetMaNwUpgradeInd() bool

GetMaNwUpgradeInd returns the MaNwUpgradeInd field value if set, zero value otherwise.

func (*SmContextCreateData) GetMaNwUpgradeIndOk

func (o *SmContextCreateData) GetMaNwUpgradeIndOk() (*bool, bool)

GetMaNwUpgradeIndOk returns a tuple with the MaNwUpgradeInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetMaRequestInd

func (o *SmContextCreateData) GetMaRequestInd() bool

GetMaRequestInd returns the MaRequestInd field value if set, zero value otherwise.

func (*SmContextCreateData) GetMaRequestIndOk

func (o *SmContextCreateData) GetMaRequestIndOk() (*bool, bool)

GetMaRequestIndOk returns a tuple with the MaRequestInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetN1SmMsg

func (o *SmContextCreateData) GetN1SmMsg() RefToBinaryData

GetN1SmMsg returns the N1SmMsg field value if set, zero value otherwise.

func (*SmContextCreateData) GetN1SmMsgOk

func (o *SmContextCreateData) GetN1SmMsgOk() (*RefToBinaryData, bool)

GetN1SmMsgOk returns a tuple with the N1SmMsg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetN2SmInfo

func (o *SmContextCreateData) GetN2SmInfo() RefToBinaryData

GetN2SmInfo returns the N2SmInfo field value if set, zero value otherwise.

func (*SmContextCreateData) GetN2SmInfoExt1

func (o *SmContextCreateData) GetN2SmInfoExt1() RefToBinaryData

GetN2SmInfoExt1 returns the N2SmInfoExt1 field value if set, zero value otherwise.

func (*SmContextCreateData) GetN2SmInfoExt1Ok

func (o *SmContextCreateData) GetN2SmInfoExt1Ok() (*RefToBinaryData, bool)

GetN2SmInfoExt1Ok returns a tuple with the N2SmInfoExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetN2SmInfoOk

func (o *SmContextCreateData) GetN2SmInfoOk() (*RefToBinaryData, bool)

GetN2SmInfoOk returns a tuple with the N2SmInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetN2SmInfoType

func (o *SmContextCreateData) GetN2SmInfoType() N2SmInfoType

GetN2SmInfoType returns the N2SmInfoType field value if set, zero value otherwise.

func (*SmContextCreateData) GetN2SmInfoTypeExt1

func (o *SmContextCreateData) GetN2SmInfoTypeExt1() N2SmInfoType

GetN2SmInfoTypeExt1 returns the N2SmInfoTypeExt1 field value if set, zero value otherwise.

func (*SmContextCreateData) GetN2SmInfoTypeExt1Ok

func (o *SmContextCreateData) GetN2SmInfoTypeExt1Ok() (*N2SmInfoType, bool)

GetN2SmInfoTypeExt1Ok returns a tuple with the N2SmInfoTypeExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetN2SmInfoTypeOk

func (o *SmContextCreateData) GetN2SmInfoTypeOk() (*N2SmInfoType, bool)

GetN2SmInfoTypeOk returns a tuple with the N2SmInfoType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetNrfAccessTokenUri

func (o *SmContextCreateData) GetNrfAccessTokenUri() string

GetNrfAccessTokenUri returns the NrfAccessTokenUri field value if set, zero value otherwise.

func (*SmContextCreateData) GetNrfAccessTokenUriOk

func (o *SmContextCreateData) GetNrfAccessTokenUriOk() (*string, bool)

GetNrfAccessTokenUriOk returns a tuple with the NrfAccessTokenUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetNrfDiscoveryUri

func (o *SmContextCreateData) GetNrfDiscoveryUri() string

GetNrfDiscoveryUri returns the NrfDiscoveryUri field value if set, zero value otherwise.

func (*SmContextCreateData) GetNrfDiscoveryUriOk

func (o *SmContextCreateData) GetNrfDiscoveryUriOk() (*string, bool)

GetNrfDiscoveryUriOk returns a tuple with the NrfDiscoveryUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetNrfManagementUri

func (o *SmContextCreateData) GetNrfManagementUri() string

GetNrfManagementUri returns the NrfManagementUri field value if set, zero value otherwise.

func (*SmContextCreateData) GetNrfManagementUriOk

func (o *SmContextCreateData) GetNrfManagementUriOk() (*string, bool)

GetNrfManagementUriOk returns a tuple with the NrfManagementUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetNrfOauth2Required

func (o *SmContextCreateData) GetNrfOauth2Required() map[string]bool

GetNrfOauth2Required returns the NrfOauth2Required field value if set, zero value otherwise.

func (*SmContextCreateData) GetNrfOauth2RequiredOk

func (o *SmContextCreateData) GetNrfOauth2RequiredOk() (*map[string]bool, bool)

GetNrfOauth2RequiredOk returns a tuple with the NrfOauth2Required field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetNrfUri

func (o *SmContextCreateData) GetNrfUri() string

GetNrfUri returns the NrfUri field value if set, zero value otherwise.

func (*SmContextCreateData) GetNrfUriOk

func (o *SmContextCreateData) GetNrfUriOk() (*string, bool)

GetNrfUriOk returns a tuple with the NrfUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetOldPduSessionId

func (o *SmContextCreateData) GetOldPduSessionId() int32

GetOldPduSessionId returns the OldPduSessionId field value if set, zero value otherwise.

func (*SmContextCreateData) GetOldPduSessionIdOk

func (o *SmContextCreateData) GetOldPduSessionIdOk() (*int32, bool)

GetOldPduSessionIdOk returns a tuple with the OldPduSessionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetOldPduSessionRef

func (o *SmContextCreateData) GetOldPduSessionRef() string

GetOldPduSessionRef returns the OldPduSessionRef field value if set, zero value otherwise.

func (*SmContextCreateData) GetOldPduSessionRefOk

func (o *SmContextCreateData) GetOldPduSessionRefOk() (*string, bool)

GetOldPduSessionRefOk returns a tuple with the OldPduSessionRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetOldSmContextRef

func (o *SmContextCreateData) GetOldSmContextRef() string

GetOldSmContextRef returns the OldSmContextRef field value if set, zero value otherwise.

func (*SmContextCreateData) GetOldSmContextRefOk

func (o *SmContextCreateData) GetOldSmContextRefOk() (*string, bool)

GetOldSmContextRefOk returns a tuple with the OldSmContextRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetOldSmfId

func (o *SmContextCreateData) GetOldSmfId() string

GetOldSmfId returns the OldSmfId field value if set, zero value otherwise.

func (*SmContextCreateData) GetOldSmfIdOk

func (o *SmContextCreateData) GetOldSmfIdOk() (*string, bool)

GetOldSmfIdOk returns a tuple with the OldSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetOnboardingInd

func (o *SmContextCreateData) GetOnboardingInd() bool

GetOnboardingInd returns the OnboardingInd field value if set, zero value otherwise.

func (*SmContextCreateData) GetOnboardingIndOk

func (o *SmContextCreateData) GetOnboardingIndOk() (*bool, bool)

GetOnboardingIndOk returns a tuple with the OnboardingInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetPcfGroupId

func (o *SmContextCreateData) GetPcfGroupId() string

GetPcfGroupId returns the PcfGroupId field value if set, zero value otherwise.

func (*SmContextCreateData) GetPcfGroupIdOk

func (o *SmContextCreateData) GetPcfGroupIdOk() (*string, bool)

GetPcfGroupIdOk returns a tuple with the PcfGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetPcfId

func (o *SmContextCreateData) GetPcfId() string

GetPcfId returns the PcfId field value if set, zero value otherwise.

func (*SmContextCreateData) GetPcfIdOk

func (o *SmContextCreateData) GetPcfIdOk() (*string, bool)

GetPcfIdOk returns a tuple with the PcfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetPcfSetId

func (o *SmContextCreateData) GetPcfSetId() string

GetPcfSetId returns the PcfSetId field value if set, zero value otherwise.

func (*SmContextCreateData) GetPcfSetIdOk

func (o *SmContextCreateData) GetPcfSetIdOk() (*string, bool)

GetPcfSetIdOk returns a tuple with the PcfSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetPcfUeCallbackInfo

func (o *SmContextCreateData) GetPcfUeCallbackInfo() PcfUeCallbackInfo

GetPcfUeCallbackInfo returns the PcfUeCallbackInfo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmContextCreateData) GetPcfUeCallbackInfoOk

func (o *SmContextCreateData) GetPcfUeCallbackInfoOk() (*PcfUeCallbackInfo, bool)

GetPcfUeCallbackInfoOk returns a tuple with the PcfUeCallbackInfo 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 (*SmContextCreateData) GetPduSessionId

func (o *SmContextCreateData) GetPduSessionId() int32

GetPduSessionId returns the PduSessionId field value if set, zero value otherwise.

func (*SmContextCreateData) GetPduSessionIdOk

func (o *SmContextCreateData) GetPduSessionIdOk() (*int32, bool)

GetPduSessionIdOk returns a tuple with the PduSessionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetPduSessionsActivateList

func (o *SmContextCreateData) GetPduSessionsActivateList() []int32

GetPduSessionsActivateList returns the PduSessionsActivateList field value if set, zero value otherwise.

func (*SmContextCreateData) GetPduSessionsActivateListOk

func (o *SmContextCreateData) GetPduSessionsActivateListOk() ([]int32, bool)

GetPduSessionsActivateListOk returns a tuple with the PduSessionsActivateList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetPei

func (o *SmContextCreateData) GetPei() string

GetPei returns the Pei field value if set, zero value otherwise.

func (*SmContextCreateData) GetPeiOk

func (o *SmContextCreateData) GetPeiOk() (*string, bool)

GetPeiOk returns a tuple with the Pei field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetPresenceInLadn

func (o *SmContextCreateData) GetPresenceInLadn() PresenceState

GetPresenceInLadn returns the PresenceInLadn field value if set, zero value otherwise.

func (*SmContextCreateData) GetPresenceInLadnOk

func (o *SmContextCreateData) GetPresenceInLadnOk() (*PresenceState, bool)

GetPresenceInLadnOk returns a tuple with the PresenceInLadn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetPvsInfo

func (o *SmContextCreateData) GetPvsInfo() []ServerAddressingInfo

GetPvsInfo returns the PvsInfo field value if set, zero value otherwise.

func (*SmContextCreateData) GetPvsInfoOk

func (o *SmContextCreateData) GetPvsInfoOk() ([]ServerAddressingInfo, bool)

GetPvsInfoOk returns a tuple with the PvsInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetRanUnchangedInd

func (o *SmContextCreateData) GetRanUnchangedInd() bool

GetRanUnchangedInd returns the RanUnchangedInd field value if set, zero value otherwise.

func (*SmContextCreateData) GetRanUnchangedIndOk

func (o *SmContextCreateData) GetRanUnchangedIndOk() (*bool, bool)

GetRanUnchangedIndOk returns a tuple with the RanUnchangedInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetRatType

func (o *SmContextCreateData) GetRatType() RatType

GetRatType returns the RatType field value if set, zero value otherwise.

func (*SmContextCreateData) GetRatTypeOk

func (o *SmContextCreateData) 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 (*SmContextCreateData) GetRequestType

func (o *SmContextCreateData) GetRequestType() RequestType

GetRequestType returns the RequestType field value if set, zero value otherwise.

func (*SmContextCreateData) GetRequestTypeOk

func (o *SmContextCreateData) GetRequestTypeOk() (*RequestType, bool)

GetRequestTypeOk returns a tuple with the RequestType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetRoutingIndicator

func (o *SmContextCreateData) GetRoutingIndicator() string

GetRoutingIndicator returns the RoutingIndicator field value if set, zero value otherwise.

func (*SmContextCreateData) GetRoutingIndicatorOk

func (o *SmContextCreateData) GetRoutingIndicatorOk() (*string, bool)

GetRoutingIndicatorOk returns a tuple with the RoutingIndicator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSNssai

func (o *SmContextCreateData) GetSNssai() Snssai

GetSNssai returns the SNssai field value if set, zero value otherwise.

func (*SmContextCreateData) GetSNssaiOk

func (o *SmContextCreateData) GetSNssaiOk() (*Snssai, bool)

GetSNssaiOk returns a tuple with the SNssai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSamePcfSelectionInd

func (o *SmContextCreateData) GetSamePcfSelectionInd() bool

GetSamePcfSelectionInd returns the SamePcfSelectionInd field value if set, zero value otherwise.

func (*SmContextCreateData) GetSamePcfSelectionIndOk

func (o *SmContextCreateData) GetSamePcfSelectionIndOk() (*bool, bool)

GetSamePcfSelectionIndOk returns a tuple with the SamePcfSelectionInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSatelliteBackhaulCat

func (o *SmContextCreateData) GetSatelliteBackhaulCat() SatelliteBackhaulCategory

GetSatelliteBackhaulCat returns the SatelliteBackhaulCat field value if set, zero value otherwise.

func (*SmContextCreateData) GetSatelliteBackhaulCatOk

func (o *SmContextCreateData) GetSatelliteBackhaulCatOk() (*SatelliteBackhaulCategory, bool)

GetSatelliteBackhaulCatOk returns a tuple with the SatelliteBackhaulCat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSelMode

func (o *SmContextCreateData) GetSelMode() DnnSelectionMode

GetSelMode returns the SelMode field value if set, zero value otherwise.

func (*SmContextCreateData) GetSelModeOk

func (o *SmContextCreateData) GetSelModeOk() (*DnnSelectionMode, bool)

GetSelModeOk returns a tuple with the SelMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSelectedDnn

func (o *SmContextCreateData) GetSelectedDnn() string

GetSelectedDnn returns the SelectedDnn field value if set, zero value otherwise.

func (*SmContextCreateData) GetSelectedDnnOk

func (o *SmContextCreateData) GetSelectedDnnOk() (*string, bool)

GetSelectedDnnOk returns a tuple with the SelectedDnn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetServiceName

func (o *SmContextCreateData) GetServiceName() ServiceName

GetServiceName returns the ServiceName field value if set, zero value otherwise.

func (*SmContextCreateData) GetServiceNameOk

func (o *SmContextCreateData) GetServiceNameOk() (*ServiceName, bool)

GetServiceNameOk returns a tuple with the ServiceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetServingNetwork

func (o *SmContextCreateData) GetServingNetwork() PlmnIdNid

GetServingNetwork returns the ServingNetwork field value

func (*SmContextCreateData) GetServingNetworkOk

func (o *SmContextCreateData) GetServingNetworkOk() (*PlmnIdNid, bool)

GetServingNetworkOk returns a tuple with the ServingNetwork field value and a boolean to check if the value has been set.

func (*SmContextCreateData) GetServingNfId

func (o *SmContextCreateData) GetServingNfId() string

GetServingNfId returns the ServingNfId field value

func (*SmContextCreateData) GetServingNfIdOk

func (o *SmContextCreateData) GetServingNfIdOk() (*string, bool)

GetServingNfIdOk returns a tuple with the ServingNfId field value and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmContextRef

func (o *SmContextCreateData) GetSmContextRef() string

GetSmContextRef returns the SmContextRef field value if set, zero value otherwise.

func (*SmContextCreateData) GetSmContextRefOk

func (o *SmContextCreateData) GetSmContextRefOk() (*string, bool)

GetSmContextRefOk returns a tuple with the SmContextRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmContextSmfBinding

func (o *SmContextCreateData) GetSmContextSmfBinding() SbiBindingLevel

GetSmContextSmfBinding returns the SmContextSmfBinding field value if set, zero value otherwise.

func (*SmContextCreateData) GetSmContextSmfBindingOk

func (o *SmContextCreateData) GetSmContextSmfBindingOk() (*SbiBindingLevel, bool)

GetSmContextSmfBindingOk returns a tuple with the SmContextSmfBinding field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmContextSmfId

func (o *SmContextCreateData) GetSmContextSmfId() string

GetSmContextSmfId returns the SmContextSmfId field value if set, zero value otherwise.

func (*SmContextCreateData) GetSmContextSmfIdOk

func (o *SmContextCreateData) GetSmContextSmfIdOk() (*string, bool)

GetSmContextSmfIdOk returns a tuple with the SmContextSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmContextSmfOauth2Required

func (o *SmContextCreateData) GetSmContextSmfOauth2Required() bool

GetSmContextSmfOauth2Required returns the SmContextSmfOauth2Required field value if set, zero value otherwise.

func (*SmContextCreateData) GetSmContextSmfOauth2RequiredOk

func (o *SmContextCreateData) GetSmContextSmfOauth2RequiredOk() (*bool, bool)

GetSmContextSmfOauth2RequiredOk returns a tuple with the SmContextSmfOauth2Required field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmContextSmfPlmnId

func (o *SmContextCreateData) GetSmContextSmfPlmnId() PlmnIdNid

GetSmContextSmfPlmnId returns the SmContextSmfPlmnId field value if set, zero value otherwise.

func (*SmContextCreateData) GetSmContextSmfPlmnIdOk

func (o *SmContextCreateData) GetSmContextSmfPlmnIdOk() (*PlmnIdNid, bool)

GetSmContextSmfPlmnIdOk returns a tuple with the SmContextSmfPlmnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmContextSmfServiceSetId

func (o *SmContextCreateData) GetSmContextSmfServiceSetId() string

GetSmContextSmfServiceSetId returns the SmContextSmfServiceSetId field value if set, zero value otherwise.

func (*SmContextCreateData) GetSmContextSmfServiceSetIdOk

func (o *SmContextCreateData) GetSmContextSmfServiceSetIdOk() (*string, bool)

GetSmContextSmfServiceSetIdOk returns a tuple with the SmContextSmfServiceSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmContextSmfSetId

func (o *SmContextCreateData) GetSmContextSmfSetId() string

GetSmContextSmfSetId returns the SmContextSmfSetId field value if set, zero value otherwise.

func (*SmContextCreateData) GetSmContextSmfSetIdOk

func (o *SmContextCreateData) GetSmContextSmfSetIdOk() (*string, bool)

GetSmContextSmfSetIdOk returns a tuple with the SmContextSmfSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmContextStatusUri

func (o *SmContextCreateData) GetSmContextStatusUri() string

GetSmContextStatusUri returns the SmContextStatusUri field value

func (*SmContextCreateData) GetSmContextStatusUriOk

func (o *SmContextCreateData) GetSmContextStatusUriOk() (*string, bool)

GetSmContextStatusUriOk returns a tuple with the SmContextStatusUri field value and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmPolicyNotifyInd

func (o *SmContextCreateData) GetSmPolicyNotifyInd() bool

GetSmPolicyNotifyInd returns the SmPolicyNotifyInd field value if set, zero value otherwise.

func (*SmContextCreateData) GetSmPolicyNotifyIndOk

func (o *SmContextCreateData) GetSmPolicyNotifyIndOk() (*bool, bool)

GetSmPolicyNotifyIndOk returns a tuple with the SmPolicyNotifyInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmallDataRateStatus

func (o *SmContextCreateData) GetSmallDataRateStatus() SmallDataRateStatus

GetSmallDataRateStatus returns the SmallDataRateStatus field value if set, zero value otherwise.

func (*SmContextCreateData) GetSmallDataRateStatusOk

func (o *SmContextCreateData) GetSmallDataRateStatusOk() (*SmallDataRateStatus, bool)

GetSmallDataRateStatusOk returns a tuple with the SmallDataRateStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmfBindingInfo

func (o *SmContextCreateData) GetSmfBindingInfo() string

GetSmfBindingInfo returns the SmfBindingInfo field value if set, zero value otherwise.

func (*SmContextCreateData) GetSmfBindingInfoOk

func (o *SmContextCreateData) GetSmfBindingInfoOk() (*string, bool)

GetSmfBindingInfoOk returns a tuple with the SmfBindingInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmfId

func (o *SmContextCreateData) GetSmfId() string

GetSmfId returns the SmfId field value if set, zero value otherwise.

func (*SmContextCreateData) GetSmfIdOk

func (o *SmContextCreateData) GetSmfIdOk() (*string, bool)

GetSmfIdOk returns a tuple with the SmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmfTransferInd

func (o *SmContextCreateData) GetSmfTransferInd() bool

GetSmfTransferInd returns the SmfTransferInd field value if set, zero value otherwise.

func (*SmContextCreateData) GetSmfTransferIndOk

func (o *SmContextCreateData) GetSmfTransferIndOk() (*bool, bool)

GetSmfTransferIndOk returns a tuple with the SmfTransferInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSmfUri

func (o *SmContextCreateData) GetSmfUri() string

GetSmfUri returns the SmfUri field value if set, zero value otherwise.

func (*SmContextCreateData) GetSmfUriOk

func (o *SmContextCreateData) GetSmfUriOk() (*string, bool)

GetSmfUriOk returns a tuple with the SmfUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSupi

func (o *SmContextCreateData) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*SmContextCreateData) GetSupiOk

func (o *SmContextCreateData) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetSupportedFeatures

func (o *SmContextCreateData) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*SmContextCreateData) GetSupportedFeaturesOk

func (o *SmContextCreateData) 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 (*SmContextCreateData) GetTargetDnai

func (o *SmContextCreateData) GetTargetDnai() string

GetTargetDnai returns the TargetDnai field value if set, zero value otherwise.

func (*SmContextCreateData) GetTargetDnaiOk

func (o *SmContextCreateData) GetTargetDnaiOk() (*string, bool)

GetTargetDnaiOk returns a tuple with the TargetDnai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetTargetId

func (o *SmContextCreateData) GetTargetId() NgRanTargetId

GetTargetId returns the TargetId field value if set, zero value otherwise.

func (*SmContextCreateData) GetTargetIdOk

func (o *SmContextCreateData) GetTargetIdOk() (*NgRanTargetId, bool)

GetTargetIdOk returns a tuple with the TargetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetTngfInfo

func (o *SmContextCreateData) GetTngfInfo() TngfInfo

GetTngfInfo returns the TngfInfo field value if set, zero value otherwise.

func (*SmContextCreateData) GetTngfInfoOk

func (o *SmContextCreateData) GetTngfInfoOk() (*TngfInfo, bool)

GetTngfInfoOk returns a tuple with the TngfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetTraceData

func (o *SmContextCreateData) GetTraceData() TraceData

GetTraceData returns the TraceData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmContextCreateData) GetTraceDataOk

func (o *SmContextCreateData) GetTraceDataOk() (*TraceData, bool)

GetTraceDataOk returns a tuple with the TraceData 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 (*SmContextCreateData) GetTwifInfo

func (o *SmContextCreateData) GetTwifInfo() TwifInfo

GetTwifInfo returns the TwifInfo field value if set, zero value otherwise.

func (*SmContextCreateData) GetTwifInfoOk

func (o *SmContextCreateData) GetTwifInfoOk() (*TwifInfo, bool)

GetTwifInfoOk returns a tuple with the TwifInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetUavAuthenticated

func (o *SmContextCreateData) GetUavAuthenticated() bool

GetUavAuthenticated returns the UavAuthenticated field value if set, zero value otherwise.

func (*SmContextCreateData) GetUavAuthenticatedOk

func (o *SmContextCreateData) GetUavAuthenticatedOk() (*bool, bool)

GetUavAuthenticatedOk returns a tuple with the UavAuthenticated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetUdmGroupId

func (o *SmContextCreateData) GetUdmGroupId() string

GetUdmGroupId returns the UdmGroupId field value if set, zero value otherwise.

func (*SmContextCreateData) GetUdmGroupIdOk

func (o *SmContextCreateData) GetUdmGroupIdOk() (*string, bool)

GetUdmGroupIdOk returns a tuple with the UdmGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetUeEpsPdnConnection

func (o *SmContextCreateData) GetUeEpsPdnConnection() string

GetUeEpsPdnConnection returns the UeEpsPdnConnection field value if set, zero value otherwise.

func (*SmContextCreateData) GetUeEpsPdnConnectionOk

func (o *SmContextCreateData) GetUeEpsPdnConnectionOk() (*string, bool)

GetUeEpsPdnConnectionOk returns a tuple with the UeEpsPdnConnection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetUeLocation

func (o *SmContextCreateData) GetUeLocation() UserLocation

GetUeLocation returns the UeLocation field value if set, zero value otherwise.

func (*SmContextCreateData) GetUeLocationOk

func (o *SmContextCreateData) GetUeLocationOk() (*UserLocation, bool)

GetUeLocationOk returns a tuple with the UeLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetUeTimeZone

func (o *SmContextCreateData) GetUeTimeZone() string

GetUeTimeZone returns the UeTimeZone field value if set, zero value otherwise.

func (*SmContextCreateData) GetUeTimeZoneOk

func (o *SmContextCreateData) 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 (*SmContextCreateData) GetUnauthenticatedSupi

func (o *SmContextCreateData) GetUnauthenticatedSupi() bool

GetUnauthenticatedSupi returns the UnauthenticatedSupi field value if set, zero value otherwise.

func (*SmContextCreateData) GetUnauthenticatedSupiOk

func (o *SmContextCreateData) GetUnauthenticatedSupiOk() (*bool, bool)

GetUnauthenticatedSupiOk returns a tuple with the UnauthenticatedSupi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetUpCnxState

func (o *SmContextCreateData) GetUpCnxState() UpCnxState

GetUpCnxState returns the UpCnxState field value if set, zero value otherwise.

func (*SmContextCreateData) GetUpCnxStateOk

func (o *SmContextCreateData) GetUpCnxStateOk() (*UpCnxState, bool)

GetUpCnxStateOk returns a tuple with the UpCnxState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetUpipSupported

func (o *SmContextCreateData) GetUpipSupported() bool

GetUpipSupported returns the UpipSupported field value if set, zero value otherwise.

func (*SmContextCreateData) GetUpipSupportedOk

func (o *SmContextCreateData) GetUpipSupportedOk() (*bool, bool)

GetUpipSupportedOk returns a tuple with the UpipSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) GetWAgfInfo

func (o *SmContextCreateData) GetWAgfInfo() WAgfInfo

GetWAgfInfo returns the WAgfInfo field value if set, zero value otherwise.

func (*SmContextCreateData) GetWAgfInfoOk

func (o *SmContextCreateData) GetWAgfInfoOk() (*WAgfInfo, bool)

GetWAgfInfoOk returns a tuple with the WAgfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateData) HasAddUeLocation

func (o *SmContextCreateData) HasAddUeLocation() bool

HasAddUeLocation returns a boolean if a field has been set.

func (*SmContextCreateData) HasAdditionalAnType

func (o *SmContextCreateData) HasAdditionalAnType() bool

HasAdditionalAnType returns a boolean if a field has been set.

func (*SmContextCreateData) HasAdditionalHsmfId

func (o *SmContextCreateData) HasAdditionalHsmfId() bool

HasAdditionalHsmfId returns a boolean if a field has been set.

func (*SmContextCreateData) HasAdditionalHsmfUri

func (o *SmContextCreateData) HasAdditionalHsmfUri() bool

HasAdditionalHsmfUri returns a boolean if a field has been set.

func (*SmContextCreateData) HasAdditionalSmfId

func (o *SmContextCreateData) HasAdditionalSmfId() bool

HasAdditionalSmfId returns a boolean if a field has been set.

func (*SmContextCreateData) HasAdditionalSmfUri

func (o *SmContextCreateData) HasAdditionalSmfUri() bool

HasAdditionalSmfUri returns a boolean if a field has been set.

func (*SmContextCreateData) HasAnchorSmfOauth2Required

func (o *SmContextCreateData) HasAnchorSmfOauth2Required() bool

HasAnchorSmfOauth2Required returns a boolean if a field has been set.

func (*SmContextCreateData) HasApnRateStatus

func (o *SmContextCreateData) HasApnRateStatus() bool

HasApnRateStatus returns a boolean if a field has been set.

func (*SmContextCreateData) HasBackupAmfInfo

func (o *SmContextCreateData) HasBackupAmfInfo() bool

HasBackupAmfInfo returns a boolean if a field has been set.

func (*SmContextCreateData) HasCpCiotEnabled

func (o *SmContextCreateData) HasCpCiotEnabled() bool

HasCpCiotEnabled returns a boolean if a field has been set.

func (*SmContextCreateData) HasCpOnlyInd

func (o *SmContextCreateData) HasCpOnlyInd() bool

HasCpOnlyInd returns a boolean if a field has been set.

func (*SmContextCreateData) HasDdnFailureSubs

func (o *SmContextCreateData) HasDdnFailureSubs() bool

HasDdnFailureSubs returns a boolean if a field has been set.

func (*SmContextCreateData) HasDirectForwardingFlag

func (o *SmContextCreateData) HasDirectForwardingFlag() bool

HasDirectForwardingFlag returns a boolean if a field has been set.

func (*SmContextCreateData) HasDisasterRoamingInd

func (o *SmContextCreateData) HasDisasterRoamingInd() bool

HasDisasterRoamingInd returns a boolean if a field has been set.

func (*SmContextCreateData) HasDlDataWaitingInd

func (o *SmContextCreateData) HasDlDataWaitingInd() bool

HasDlDataWaitingInd returns a boolean if a field has been set.

func (*SmContextCreateData) HasDnn

func (o *SmContextCreateData) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*SmContextCreateData) HasEpsBearerCtxStatus

func (o *SmContextCreateData) HasEpsBearerCtxStatus() bool

HasEpsBearerCtxStatus returns a boolean if a field has been set.

func (*SmContextCreateData) HasEpsInterworkingInd

func (o *SmContextCreateData) HasEpsInterworkingInd() bool

HasEpsInterworkingInd returns a boolean if a field has been set.

func (*SmContextCreateData) HasExtendedNasSmTimerInd

func (o *SmContextCreateData) HasExtendedNasSmTimerInd() bool

HasExtendedNasSmTimerInd returns a boolean if a field has been set.

func (*SmContextCreateData) HasGpsi

func (o *SmContextCreateData) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*SmContextCreateData) HasGuami

func (o *SmContextCreateData) HasGuami() bool

HasGuami returns a boolean if a field has been set.

func (*SmContextCreateData) HasHNwPubKeyId

func (o *SmContextCreateData) HasHNwPubKeyId() bool

HasHNwPubKeyId returns a boolean if a field has been set.

func (*SmContextCreateData) HasHSmfId

func (o *SmContextCreateData) HasHSmfId() bool

HasHSmfId returns a boolean if a field has been set.

func (*SmContextCreateData) HasHSmfUri

func (o *SmContextCreateData) HasHSmfUri() bool

HasHSmfUri returns a boolean if a field has been set.

func (*SmContextCreateData) HasHoState

func (o *SmContextCreateData) HasHoState() bool

HasHoState returns a boolean if a field has been set.

func (*SmContextCreateData) HasHplmnSnssai

func (o *SmContextCreateData) HasHplmnSnssai() bool

HasHplmnSnssai returns a boolean if a field has been set.

func (*SmContextCreateData) HasIndirectForwardingFlag

func (o *SmContextCreateData) HasIndirectForwardingFlag() bool

HasIndirectForwardingFlag returns a boolean if a field has been set.

func (*SmContextCreateData) HasInvokeNef

func (o *SmContextCreateData) HasInvokeNef() bool

HasInvokeNef returns a boolean if a field has been set.

func (*SmContextCreateData) HasMaNwUpgradeInd

func (o *SmContextCreateData) HasMaNwUpgradeInd() bool

HasMaNwUpgradeInd returns a boolean if a field has been set.

func (*SmContextCreateData) HasMaRequestInd

func (o *SmContextCreateData) HasMaRequestInd() bool

HasMaRequestInd returns a boolean if a field has been set.

func (*SmContextCreateData) HasN1SmMsg

func (o *SmContextCreateData) HasN1SmMsg() bool

HasN1SmMsg returns a boolean if a field has been set.

func (*SmContextCreateData) HasN2SmInfo

func (o *SmContextCreateData) HasN2SmInfo() bool

HasN2SmInfo returns a boolean if a field has been set.

func (*SmContextCreateData) HasN2SmInfoExt1

func (o *SmContextCreateData) HasN2SmInfoExt1() bool

HasN2SmInfoExt1 returns a boolean if a field has been set.

func (*SmContextCreateData) HasN2SmInfoType

func (o *SmContextCreateData) HasN2SmInfoType() bool

HasN2SmInfoType returns a boolean if a field has been set.

func (*SmContextCreateData) HasN2SmInfoTypeExt1

func (o *SmContextCreateData) HasN2SmInfoTypeExt1() bool

HasN2SmInfoTypeExt1 returns a boolean if a field has been set.

func (*SmContextCreateData) HasNrfAccessTokenUri

func (o *SmContextCreateData) HasNrfAccessTokenUri() bool

HasNrfAccessTokenUri returns a boolean if a field has been set.

func (*SmContextCreateData) HasNrfDiscoveryUri

func (o *SmContextCreateData) HasNrfDiscoveryUri() bool

HasNrfDiscoveryUri returns a boolean if a field has been set.

func (*SmContextCreateData) HasNrfManagementUri

func (o *SmContextCreateData) HasNrfManagementUri() bool

HasNrfManagementUri returns a boolean if a field has been set.

func (*SmContextCreateData) HasNrfOauth2Required

func (o *SmContextCreateData) HasNrfOauth2Required() bool

HasNrfOauth2Required returns a boolean if a field has been set.

func (*SmContextCreateData) HasNrfUri

func (o *SmContextCreateData) HasNrfUri() bool

HasNrfUri returns a boolean if a field has been set.

func (*SmContextCreateData) HasOldPduSessionId

func (o *SmContextCreateData) HasOldPduSessionId() bool

HasOldPduSessionId returns a boolean if a field has been set.

func (*SmContextCreateData) HasOldPduSessionRef

func (o *SmContextCreateData) HasOldPduSessionRef() bool

HasOldPduSessionRef returns a boolean if a field has been set.

func (*SmContextCreateData) HasOldSmContextRef

func (o *SmContextCreateData) HasOldSmContextRef() bool

HasOldSmContextRef returns a boolean if a field has been set.

func (*SmContextCreateData) HasOldSmfId

func (o *SmContextCreateData) HasOldSmfId() bool

HasOldSmfId returns a boolean if a field has been set.

func (*SmContextCreateData) HasOnboardingInd

func (o *SmContextCreateData) HasOnboardingInd() bool

HasOnboardingInd returns a boolean if a field has been set.

func (*SmContextCreateData) HasPcfGroupId

func (o *SmContextCreateData) HasPcfGroupId() bool

HasPcfGroupId returns a boolean if a field has been set.

func (*SmContextCreateData) HasPcfId

func (o *SmContextCreateData) HasPcfId() bool

HasPcfId returns a boolean if a field has been set.

func (*SmContextCreateData) HasPcfSetId

func (o *SmContextCreateData) HasPcfSetId() bool

HasPcfSetId returns a boolean if a field has been set.

func (*SmContextCreateData) HasPcfUeCallbackInfo

func (o *SmContextCreateData) HasPcfUeCallbackInfo() bool

HasPcfUeCallbackInfo returns a boolean if a field has been set.

func (*SmContextCreateData) HasPduSessionId

func (o *SmContextCreateData) HasPduSessionId() bool

HasPduSessionId returns a boolean if a field has been set.

func (*SmContextCreateData) HasPduSessionsActivateList

func (o *SmContextCreateData) HasPduSessionsActivateList() bool

HasPduSessionsActivateList returns a boolean if a field has been set.

func (*SmContextCreateData) HasPei

func (o *SmContextCreateData) HasPei() bool

HasPei returns a boolean if a field has been set.

func (*SmContextCreateData) HasPresenceInLadn

func (o *SmContextCreateData) HasPresenceInLadn() bool

HasPresenceInLadn returns a boolean if a field has been set.

func (*SmContextCreateData) HasPvsInfo

func (o *SmContextCreateData) HasPvsInfo() bool

HasPvsInfo returns a boolean if a field has been set.

func (*SmContextCreateData) HasRanUnchangedInd

func (o *SmContextCreateData) HasRanUnchangedInd() bool

HasRanUnchangedInd returns a boolean if a field has been set.

func (*SmContextCreateData) HasRatType

func (o *SmContextCreateData) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (*SmContextCreateData) HasRequestType

func (o *SmContextCreateData) HasRequestType() bool

HasRequestType returns a boolean if a field has been set.

func (*SmContextCreateData) HasRoutingIndicator

func (o *SmContextCreateData) HasRoutingIndicator() bool

HasRoutingIndicator returns a boolean if a field has been set.

func (*SmContextCreateData) HasSNssai

func (o *SmContextCreateData) HasSNssai() bool

HasSNssai returns a boolean if a field has been set.

func (*SmContextCreateData) HasSamePcfSelectionInd

func (o *SmContextCreateData) HasSamePcfSelectionInd() bool

HasSamePcfSelectionInd returns a boolean if a field has been set.

func (*SmContextCreateData) HasSatelliteBackhaulCat

func (o *SmContextCreateData) HasSatelliteBackhaulCat() bool

HasSatelliteBackhaulCat returns a boolean if a field has been set.

func (*SmContextCreateData) HasSelMode

func (o *SmContextCreateData) HasSelMode() bool

HasSelMode returns a boolean if a field has been set.

func (*SmContextCreateData) HasSelectedDnn

func (o *SmContextCreateData) HasSelectedDnn() bool

HasSelectedDnn returns a boolean if a field has been set.

func (*SmContextCreateData) HasServiceName

func (o *SmContextCreateData) HasServiceName() bool

HasServiceName returns a boolean if a field has been set.

func (*SmContextCreateData) HasSmContextRef

func (o *SmContextCreateData) HasSmContextRef() bool

HasSmContextRef returns a boolean if a field has been set.

func (*SmContextCreateData) HasSmContextSmfBinding

func (o *SmContextCreateData) HasSmContextSmfBinding() bool

HasSmContextSmfBinding returns a boolean if a field has been set.

func (*SmContextCreateData) HasSmContextSmfId

func (o *SmContextCreateData) HasSmContextSmfId() bool

HasSmContextSmfId returns a boolean if a field has been set.

func (*SmContextCreateData) HasSmContextSmfOauth2Required

func (o *SmContextCreateData) HasSmContextSmfOauth2Required() bool

HasSmContextSmfOauth2Required returns a boolean if a field has been set.

func (*SmContextCreateData) HasSmContextSmfPlmnId

func (o *SmContextCreateData) HasSmContextSmfPlmnId() bool

HasSmContextSmfPlmnId returns a boolean if a field has been set.

func (*SmContextCreateData) HasSmContextSmfServiceSetId

func (o *SmContextCreateData) HasSmContextSmfServiceSetId() bool

HasSmContextSmfServiceSetId returns a boolean if a field has been set.

func (*SmContextCreateData) HasSmContextSmfSetId

func (o *SmContextCreateData) HasSmContextSmfSetId() bool

HasSmContextSmfSetId returns a boolean if a field has been set.

func (*SmContextCreateData) HasSmPolicyNotifyInd

func (o *SmContextCreateData) HasSmPolicyNotifyInd() bool

HasSmPolicyNotifyInd returns a boolean if a field has been set.

func (*SmContextCreateData) HasSmallDataRateStatus

func (o *SmContextCreateData) HasSmallDataRateStatus() bool

HasSmallDataRateStatus returns a boolean if a field has been set.

func (*SmContextCreateData) HasSmfBindingInfo

func (o *SmContextCreateData) HasSmfBindingInfo() bool

HasSmfBindingInfo returns a boolean if a field has been set.

func (*SmContextCreateData) HasSmfId

func (o *SmContextCreateData) HasSmfId() bool

HasSmfId returns a boolean if a field has been set.

func (*SmContextCreateData) HasSmfTransferInd

func (o *SmContextCreateData) HasSmfTransferInd() bool

HasSmfTransferInd returns a boolean if a field has been set.

func (*SmContextCreateData) HasSmfUri

func (o *SmContextCreateData) HasSmfUri() bool

HasSmfUri returns a boolean if a field has been set.

func (*SmContextCreateData) HasSupi

func (o *SmContextCreateData) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (*SmContextCreateData) HasSupportedFeatures

func (o *SmContextCreateData) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*SmContextCreateData) HasTargetDnai

func (o *SmContextCreateData) HasTargetDnai() bool

HasTargetDnai returns a boolean if a field has been set.

func (*SmContextCreateData) HasTargetId

func (o *SmContextCreateData) HasTargetId() bool

HasTargetId returns a boolean if a field has been set.

func (*SmContextCreateData) HasTngfInfo

func (o *SmContextCreateData) HasTngfInfo() bool

HasTngfInfo returns a boolean if a field has been set.

func (*SmContextCreateData) HasTraceData

func (o *SmContextCreateData) HasTraceData() bool

HasTraceData returns a boolean if a field has been set.

func (*SmContextCreateData) HasTwifInfo

func (o *SmContextCreateData) HasTwifInfo() bool

HasTwifInfo returns a boolean if a field has been set.

func (*SmContextCreateData) HasUavAuthenticated

func (o *SmContextCreateData) HasUavAuthenticated() bool

HasUavAuthenticated returns a boolean if a field has been set.

func (*SmContextCreateData) HasUdmGroupId

func (o *SmContextCreateData) HasUdmGroupId() bool

HasUdmGroupId returns a boolean if a field has been set.

func (*SmContextCreateData) HasUeEpsPdnConnection

func (o *SmContextCreateData) HasUeEpsPdnConnection() bool

HasUeEpsPdnConnection returns a boolean if a field has been set.

func (*SmContextCreateData) HasUeLocation

func (o *SmContextCreateData) HasUeLocation() bool

HasUeLocation returns a boolean if a field has been set.

func (*SmContextCreateData) HasUeTimeZone

func (o *SmContextCreateData) HasUeTimeZone() bool

HasUeTimeZone returns a boolean if a field has been set.

func (*SmContextCreateData) HasUnauthenticatedSupi

func (o *SmContextCreateData) HasUnauthenticatedSupi() bool

HasUnauthenticatedSupi returns a boolean if a field has been set.

func (*SmContextCreateData) HasUpCnxState

func (o *SmContextCreateData) HasUpCnxState() bool

HasUpCnxState returns a boolean if a field has been set.

func (*SmContextCreateData) HasUpipSupported

func (o *SmContextCreateData) HasUpipSupported() bool

HasUpipSupported returns a boolean if a field has been set.

func (*SmContextCreateData) HasWAgfInfo

func (o *SmContextCreateData) HasWAgfInfo() bool

HasWAgfInfo returns a boolean if a field has been set.

func (SmContextCreateData) MarshalJSON

func (o SmContextCreateData) MarshalJSON() ([]byte, error)

func (*SmContextCreateData) SetAddUeLocation

func (o *SmContextCreateData) SetAddUeLocation(v UserLocation)

SetAddUeLocation gets a reference to the given UserLocation and assigns it to the AddUeLocation field.

func (*SmContextCreateData) SetAdditionalAnType

func (o *SmContextCreateData) SetAdditionalAnType(v AccessType)

SetAdditionalAnType gets a reference to the given AccessType and assigns it to the AdditionalAnType field.

func (*SmContextCreateData) SetAdditionalHsmfId

func (o *SmContextCreateData) SetAdditionalHsmfId(v []string)

SetAdditionalHsmfId gets a reference to the given []string and assigns it to the AdditionalHsmfId field.

func (*SmContextCreateData) SetAdditionalHsmfUri

func (o *SmContextCreateData) SetAdditionalHsmfUri(v []string)

SetAdditionalHsmfUri gets a reference to the given []string and assigns it to the AdditionalHsmfUri field.

func (*SmContextCreateData) SetAdditionalSmfId

func (o *SmContextCreateData) SetAdditionalSmfId(v []string)

SetAdditionalSmfId gets a reference to the given []string and assigns it to the AdditionalSmfId field.

func (*SmContextCreateData) SetAdditionalSmfUri

func (o *SmContextCreateData) SetAdditionalSmfUri(v []string)

SetAdditionalSmfUri gets a reference to the given []string and assigns it to the AdditionalSmfUri field.

func (*SmContextCreateData) SetAnType

func (o *SmContextCreateData) SetAnType(v AccessType)

SetAnType sets field value

func (*SmContextCreateData) SetAnchorSmfOauth2Required

func (o *SmContextCreateData) SetAnchorSmfOauth2Required(v bool)

SetAnchorSmfOauth2Required gets a reference to the given bool and assigns it to the AnchorSmfOauth2Required field.

func (*SmContextCreateData) SetApnRateStatus

func (o *SmContextCreateData) SetApnRateStatus(v ApnRateStatus)

SetApnRateStatus gets a reference to the given ApnRateStatus and assigns it to the ApnRateStatus field.

func (*SmContextCreateData) SetBackupAmfInfo

func (o *SmContextCreateData) SetBackupAmfInfo(v []BackupAmfInfo)

SetBackupAmfInfo gets a reference to the given []BackupAmfInfo and assigns it to the BackupAmfInfo field.

func (*SmContextCreateData) SetCpCiotEnabled

func (o *SmContextCreateData) SetCpCiotEnabled(v bool)

SetCpCiotEnabled gets a reference to the given bool and assigns it to the CpCiotEnabled field.

func (*SmContextCreateData) SetCpOnlyInd

func (o *SmContextCreateData) SetCpOnlyInd(v bool)

SetCpOnlyInd gets a reference to the given bool and assigns it to the CpOnlyInd field.

func (*SmContextCreateData) SetDdnFailureSubs

func (o *SmContextCreateData) SetDdnFailureSubs(v DdnFailureSubs)

SetDdnFailureSubs gets a reference to the given DdnFailureSubs and assigns it to the DdnFailureSubs field.

func (*SmContextCreateData) SetDirectForwardingFlag

func (o *SmContextCreateData) SetDirectForwardingFlag(v bool)

SetDirectForwardingFlag gets a reference to the given bool and assigns it to the DirectForwardingFlag field.

func (*SmContextCreateData) SetDisasterRoamingInd

func (o *SmContextCreateData) SetDisasterRoamingInd(v bool)

SetDisasterRoamingInd gets a reference to the given bool and assigns it to the DisasterRoamingInd field.

func (*SmContextCreateData) SetDlDataWaitingInd

func (o *SmContextCreateData) SetDlDataWaitingInd(v bool)

SetDlDataWaitingInd gets a reference to the given bool and assigns it to the DlDataWaitingInd field.

func (*SmContextCreateData) SetDnn

func (o *SmContextCreateData) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*SmContextCreateData) SetEpsBearerCtxStatus

func (o *SmContextCreateData) SetEpsBearerCtxStatus(v string)

SetEpsBearerCtxStatus gets a reference to the given string and assigns it to the EpsBearerCtxStatus field.

func (*SmContextCreateData) SetEpsInterworkingInd

func (o *SmContextCreateData) SetEpsInterworkingInd(v EpsInterworkingIndication)

SetEpsInterworkingInd gets a reference to the given EpsInterworkingIndication and assigns it to the EpsInterworkingInd field.

func (*SmContextCreateData) SetExtendedNasSmTimerInd

func (o *SmContextCreateData) SetExtendedNasSmTimerInd(v bool)

SetExtendedNasSmTimerInd gets a reference to the given bool and assigns it to the ExtendedNasSmTimerInd field.

func (*SmContextCreateData) SetGpsi

func (o *SmContextCreateData) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*SmContextCreateData) SetGuami

func (o *SmContextCreateData) SetGuami(v Guami)

SetGuami gets a reference to the given Guami and assigns it to the Guami field.

func (*SmContextCreateData) SetHNwPubKeyId

func (o *SmContextCreateData) SetHNwPubKeyId(v int32)

SetHNwPubKeyId gets a reference to the given int32 and assigns it to the HNwPubKeyId field.

func (*SmContextCreateData) SetHSmfId

func (o *SmContextCreateData) SetHSmfId(v string)

SetHSmfId gets a reference to the given string and assigns it to the HSmfId field.

func (*SmContextCreateData) SetHSmfUri

func (o *SmContextCreateData) SetHSmfUri(v string)

SetHSmfUri gets a reference to the given string and assigns it to the HSmfUri field.

func (*SmContextCreateData) SetHoState

func (o *SmContextCreateData) SetHoState(v HoState)

SetHoState gets a reference to the given HoState and assigns it to the HoState field.

func (*SmContextCreateData) SetHplmnSnssai

func (o *SmContextCreateData) SetHplmnSnssai(v Snssai)

SetHplmnSnssai gets a reference to the given Snssai and assigns it to the HplmnSnssai field.

func (*SmContextCreateData) SetIndirectForwardingFlag

func (o *SmContextCreateData) SetIndirectForwardingFlag(v bool)

SetIndirectForwardingFlag gets a reference to the given bool and assigns it to the IndirectForwardingFlag field.

func (*SmContextCreateData) SetInvokeNef

func (o *SmContextCreateData) SetInvokeNef(v bool)

SetInvokeNef gets a reference to the given bool and assigns it to the InvokeNef field.

func (*SmContextCreateData) SetMaNwUpgradeInd

func (o *SmContextCreateData) SetMaNwUpgradeInd(v bool)

SetMaNwUpgradeInd gets a reference to the given bool and assigns it to the MaNwUpgradeInd field.

func (*SmContextCreateData) SetMaRequestInd

func (o *SmContextCreateData) SetMaRequestInd(v bool)

SetMaRequestInd gets a reference to the given bool and assigns it to the MaRequestInd field.

func (*SmContextCreateData) SetN1SmMsg

func (o *SmContextCreateData) SetN1SmMsg(v RefToBinaryData)

SetN1SmMsg gets a reference to the given RefToBinaryData and assigns it to the N1SmMsg field.

func (*SmContextCreateData) SetN2SmInfo

func (o *SmContextCreateData) SetN2SmInfo(v RefToBinaryData)

SetN2SmInfo gets a reference to the given RefToBinaryData and assigns it to the N2SmInfo field.

func (*SmContextCreateData) SetN2SmInfoExt1

func (o *SmContextCreateData) SetN2SmInfoExt1(v RefToBinaryData)

SetN2SmInfoExt1 gets a reference to the given RefToBinaryData and assigns it to the N2SmInfoExt1 field.

func (*SmContextCreateData) SetN2SmInfoType

func (o *SmContextCreateData) SetN2SmInfoType(v N2SmInfoType)

SetN2SmInfoType gets a reference to the given N2SmInfoType and assigns it to the N2SmInfoType field.

func (*SmContextCreateData) SetN2SmInfoTypeExt1

func (o *SmContextCreateData) SetN2SmInfoTypeExt1(v N2SmInfoType)

SetN2SmInfoTypeExt1 gets a reference to the given N2SmInfoType and assigns it to the N2SmInfoTypeExt1 field.

func (*SmContextCreateData) SetNrfAccessTokenUri

func (o *SmContextCreateData) SetNrfAccessTokenUri(v string)

SetNrfAccessTokenUri gets a reference to the given string and assigns it to the NrfAccessTokenUri field.

func (*SmContextCreateData) SetNrfDiscoveryUri

func (o *SmContextCreateData) SetNrfDiscoveryUri(v string)

SetNrfDiscoveryUri gets a reference to the given string and assigns it to the NrfDiscoveryUri field.

func (*SmContextCreateData) SetNrfManagementUri

func (o *SmContextCreateData) SetNrfManagementUri(v string)

SetNrfManagementUri gets a reference to the given string and assigns it to the NrfManagementUri field.

func (*SmContextCreateData) SetNrfOauth2Required

func (o *SmContextCreateData) SetNrfOauth2Required(v map[string]bool)

SetNrfOauth2Required gets a reference to the given map[string]bool and assigns it to the NrfOauth2Required field.

func (*SmContextCreateData) SetNrfUri

func (o *SmContextCreateData) SetNrfUri(v string)

SetNrfUri gets a reference to the given string and assigns it to the NrfUri field.

func (*SmContextCreateData) SetOldPduSessionId

func (o *SmContextCreateData) SetOldPduSessionId(v int32)

SetOldPduSessionId gets a reference to the given int32 and assigns it to the OldPduSessionId field.

func (*SmContextCreateData) SetOldPduSessionRef

func (o *SmContextCreateData) SetOldPduSessionRef(v string)

SetOldPduSessionRef gets a reference to the given string and assigns it to the OldPduSessionRef field.

func (*SmContextCreateData) SetOldSmContextRef

func (o *SmContextCreateData) SetOldSmContextRef(v string)

SetOldSmContextRef gets a reference to the given string and assigns it to the OldSmContextRef field.

func (*SmContextCreateData) SetOldSmfId

func (o *SmContextCreateData) SetOldSmfId(v string)

SetOldSmfId gets a reference to the given string and assigns it to the OldSmfId field.

func (*SmContextCreateData) SetOnboardingInd

func (o *SmContextCreateData) SetOnboardingInd(v bool)

SetOnboardingInd gets a reference to the given bool and assigns it to the OnboardingInd field.

func (*SmContextCreateData) SetPcfGroupId

func (o *SmContextCreateData) SetPcfGroupId(v string)

SetPcfGroupId gets a reference to the given string and assigns it to the PcfGroupId field.

func (*SmContextCreateData) SetPcfId

func (o *SmContextCreateData) SetPcfId(v string)

SetPcfId gets a reference to the given string and assigns it to the PcfId field.

func (*SmContextCreateData) SetPcfSetId

func (o *SmContextCreateData) SetPcfSetId(v string)

SetPcfSetId gets a reference to the given string and assigns it to the PcfSetId field.

func (*SmContextCreateData) SetPcfUeCallbackInfo

func (o *SmContextCreateData) SetPcfUeCallbackInfo(v PcfUeCallbackInfo)

SetPcfUeCallbackInfo gets a reference to the given NullablePcfUeCallbackInfo and assigns it to the PcfUeCallbackInfo field.

func (*SmContextCreateData) SetPcfUeCallbackInfoNil

func (o *SmContextCreateData) SetPcfUeCallbackInfoNil()

SetPcfUeCallbackInfoNil sets the value for PcfUeCallbackInfo to be an explicit nil

func (*SmContextCreateData) SetPduSessionId

func (o *SmContextCreateData) SetPduSessionId(v int32)

SetPduSessionId gets a reference to the given int32 and assigns it to the PduSessionId field.

func (*SmContextCreateData) SetPduSessionsActivateList

func (o *SmContextCreateData) SetPduSessionsActivateList(v []int32)

SetPduSessionsActivateList gets a reference to the given []int32 and assigns it to the PduSessionsActivateList field.

func (*SmContextCreateData) SetPei

func (o *SmContextCreateData) SetPei(v string)

SetPei gets a reference to the given string and assigns it to the Pei field.

func (*SmContextCreateData) SetPresenceInLadn

func (o *SmContextCreateData) SetPresenceInLadn(v PresenceState)

SetPresenceInLadn gets a reference to the given PresenceState and assigns it to the PresenceInLadn field.

func (*SmContextCreateData) SetPvsInfo

func (o *SmContextCreateData) SetPvsInfo(v []ServerAddressingInfo)

SetPvsInfo gets a reference to the given []ServerAddressingInfo and assigns it to the PvsInfo field.

func (*SmContextCreateData) SetRanUnchangedInd

func (o *SmContextCreateData) SetRanUnchangedInd(v bool)

SetRanUnchangedInd gets a reference to the given bool and assigns it to the RanUnchangedInd field.

func (*SmContextCreateData) SetRatType

func (o *SmContextCreateData) SetRatType(v RatType)

SetRatType gets a reference to the given RatType and assigns it to the RatType field.

func (*SmContextCreateData) SetRequestType

func (o *SmContextCreateData) SetRequestType(v RequestType)

SetRequestType gets a reference to the given RequestType and assigns it to the RequestType field.

func (*SmContextCreateData) SetRoutingIndicator

func (o *SmContextCreateData) SetRoutingIndicator(v string)

SetRoutingIndicator gets a reference to the given string and assigns it to the RoutingIndicator field.

func (*SmContextCreateData) SetSNssai

func (o *SmContextCreateData) SetSNssai(v Snssai)

SetSNssai gets a reference to the given Snssai and assigns it to the SNssai field.

func (*SmContextCreateData) SetSamePcfSelectionInd

func (o *SmContextCreateData) SetSamePcfSelectionInd(v bool)

SetSamePcfSelectionInd gets a reference to the given bool and assigns it to the SamePcfSelectionInd field.

func (*SmContextCreateData) SetSatelliteBackhaulCat

func (o *SmContextCreateData) SetSatelliteBackhaulCat(v SatelliteBackhaulCategory)

SetSatelliteBackhaulCat gets a reference to the given SatelliteBackhaulCategory and assigns it to the SatelliteBackhaulCat field.

func (*SmContextCreateData) SetSelMode

func (o *SmContextCreateData) SetSelMode(v DnnSelectionMode)

SetSelMode gets a reference to the given DnnSelectionMode and assigns it to the SelMode field.

func (*SmContextCreateData) SetSelectedDnn

func (o *SmContextCreateData) SetSelectedDnn(v string)

SetSelectedDnn gets a reference to the given string and assigns it to the SelectedDnn field.

func (*SmContextCreateData) SetServiceName

func (o *SmContextCreateData) SetServiceName(v ServiceName)

SetServiceName gets a reference to the given ServiceName and assigns it to the ServiceName field.

func (*SmContextCreateData) SetServingNetwork

func (o *SmContextCreateData) SetServingNetwork(v PlmnIdNid)

SetServingNetwork sets field value

func (*SmContextCreateData) SetServingNfId

func (o *SmContextCreateData) SetServingNfId(v string)

SetServingNfId sets field value

func (*SmContextCreateData) SetSmContextRef

func (o *SmContextCreateData) SetSmContextRef(v string)

SetSmContextRef gets a reference to the given string and assigns it to the SmContextRef field.

func (*SmContextCreateData) SetSmContextSmfBinding

func (o *SmContextCreateData) SetSmContextSmfBinding(v SbiBindingLevel)

SetSmContextSmfBinding gets a reference to the given SbiBindingLevel and assigns it to the SmContextSmfBinding field.

func (*SmContextCreateData) SetSmContextSmfId

func (o *SmContextCreateData) SetSmContextSmfId(v string)

SetSmContextSmfId gets a reference to the given string and assigns it to the SmContextSmfId field.

func (*SmContextCreateData) SetSmContextSmfOauth2Required

func (o *SmContextCreateData) SetSmContextSmfOauth2Required(v bool)

SetSmContextSmfOauth2Required gets a reference to the given bool and assigns it to the SmContextSmfOauth2Required field.

func (*SmContextCreateData) SetSmContextSmfPlmnId

func (o *SmContextCreateData) SetSmContextSmfPlmnId(v PlmnIdNid)

SetSmContextSmfPlmnId gets a reference to the given PlmnIdNid and assigns it to the SmContextSmfPlmnId field.

func (*SmContextCreateData) SetSmContextSmfServiceSetId

func (o *SmContextCreateData) SetSmContextSmfServiceSetId(v string)

SetSmContextSmfServiceSetId gets a reference to the given string and assigns it to the SmContextSmfServiceSetId field.

func (*SmContextCreateData) SetSmContextSmfSetId

func (o *SmContextCreateData) SetSmContextSmfSetId(v string)

SetSmContextSmfSetId gets a reference to the given string and assigns it to the SmContextSmfSetId field.

func (*SmContextCreateData) SetSmContextStatusUri

func (o *SmContextCreateData) SetSmContextStatusUri(v string)

SetSmContextStatusUri sets field value

func (*SmContextCreateData) SetSmPolicyNotifyInd

func (o *SmContextCreateData) SetSmPolicyNotifyInd(v bool)

SetSmPolicyNotifyInd gets a reference to the given bool and assigns it to the SmPolicyNotifyInd field.

func (*SmContextCreateData) SetSmallDataRateStatus

func (o *SmContextCreateData) SetSmallDataRateStatus(v SmallDataRateStatus)

SetSmallDataRateStatus gets a reference to the given SmallDataRateStatus and assigns it to the SmallDataRateStatus field.

func (*SmContextCreateData) SetSmfBindingInfo

func (o *SmContextCreateData) SetSmfBindingInfo(v string)

SetSmfBindingInfo gets a reference to the given string and assigns it to the SmfBindingInfo field.

func (*SmContextCreateData) SetSmfId

func (o *SmContextCreateData) SetSmfId(v string)

SetSmfId gets a reference to the given string and assigns it to the SmfId field.

func (*SmContextCreateData) SetSmfTransferInd

func (o *SmContextCreateData) SetSmfTransferInd(v bool)

SetSmfTransferInd gets a reference to the given bool and assigns it to the SmfTransferInd field.

func (*SmContextCreateData) SetSmfUri

func (o *SmContextCreateData) SetSmfUri(v string)

SetSmfUri gets a reference to the given string and assigns it to the SmfUri field.

func (*SmContextCreateData) SetSupi

func (o *SmContextCreateData) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (*SmContextCreateData) SetSupportedFeatures

func (o *SmContextCreateData) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*SmContextCreateData) SetTargetDnai

func (o *SmContextCreateData) SetTargetDnai(v string)

SetTargetDnai gets a reference to the given string and assigns it to the TargetDnai field.

func (*SmContextCreateData) SetTargetId

func (o *SmContextCreateData) SetTargetId(v NgRanTargetId)

SetTargetId gets a reference to the given NgRanTargetId and assigns it to the TargetId field.

func (*SmContextCreateData) SetTngfInfo

func (o *SmContextCreateData) SetTngfInfo(v TngfInfo)

SetTngfInfo gets a reference to the given TngfInfo and assigns it to the TngfInfo field.

func (*SmContextCreateData) SetTraceData

func (o *SmContextCreateData) SetTraceData(v TraceData)

SetTraceData gets a reference to the given NullableTraceData and assigns it to the TraceData field.

func (*SmContextCreateData) SetTraceDataNil

func (o *SmContextCreateData) SetTraceDataNil()

SetTraceDataNil sets the value for TraceData to be an explicit nil

func (*SmContextCreateData) SetTwifInfo

func (o *SmContextCreateData) SetTwifInfo(v TwifInfo)

SetTwifInfo gets a reference to the given TwifInfo and assigns it to the TwifInfo field.

func (*SmContextCreateData) SetUavAuthenticated

func (o *SmContextCreateData) SetUavAuthenticated(v bool)

SetUavAuthenticated gets a reference to the given bool and assigns it to the UavAuthenticated field.

func (*SmContextCreateData) SetUdmGroupId

func (o *SmContextCreateData) SetUdmGroupId(v string)

SetUdmGroupId gets a reference to the given string and assigns it to the UdmGroupId field.

func (*SmContextCreateData) SetUeEpsPdnConnection

func (o *SmContextCreateData) SetUeEpsPdnConnection(v string)

SetUeEpsPdnConnection gets a reference to the given string and assigns it to the UeEpsPdnConnection field.

func (*SmContextCreateData) SetUeLocation

func (o *SmContextCreateData) SetUeLocation(v UserLocation)

SetUeLocation gets a reference to the given UserLocation and assigns it to the UeLocation field.

func (*SmContextCreateData) SetUeTimeZone

func (o *SmContextCreateData) SetUeTimeZone(v string)

SetUeTimeZone gets a reference to the given string and assigns it to the UeTimeZone field.

func (*SmContextCreateData) SetUnauthenticatedSupi

func (o *SmContextCreateData) SetUnauthenticatedSupi(v bool)

SetUnauthenticatedSupi gets a reference to the given bool and assigns it to the UnauthenticatedSupi field.

func (*SmContextCreateData) SetUpCnxState

func (o *SmContextCreateData) SetUpCnxState(v UpCnxState)

SetUpCnxState gets a reference to the given UpCnxState and assigns it to the UpCnxState field.

func (*SmContextCreateData) SetUpipSupported

func (o *SmContextCreateData) SetUpipSupported(v bool)

SetUpipSupported gets a reference to the given bool and assigns it to the UpipSupported field.

func (*SmContextCreateData) SetWAgfInfo

func (o *SmContextCreateData) SetWAgfInfo(v WAgfInfo)

SetWAgfInfo gets a reference to the given WAgfInfo and assigns it to the WAgfInfo field.

func (SmContextCreateData) ToMap

func (o SmContextCreateData) ToMap() (map[string]interface{}, error)

func (*SmContextCreateData) UnsetPcfUeCallbackInfo

func (o *SmContextCreateData) UnsetPcfUeCallbackInfo()

UnsetPcfUeCallbackInfo ensures that no value is present for PcfUeCallbackInfo, not even an explicit nil

func (*SmContextCreateData) UnsetTraceData

func (o *SmContextCreateData) UnsetTraceData()

UnsetTraceData ensures that no value is present for TraceData, not even an explicit nil

type SmContextCreateError

type SmContextCreateError struct {
	Error        ExtProblemDetails `json:"error"`
	N1SmMsg      *RefToBinaryData  `json:"n1SmMsg,omitempty"`
	N2SmInfo     *RefToBinaryData  `json:"n2SmInfo,omitempty"`
	N2SmInfoType *N2SmInfoType     `json:"n2SmInfoType,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	RecoveryTime *time.Time `json:"recoveryTime,omitempty"`
}

SmContextCreateError Error within Create SM Context Response

func NewSmContextCreateError

func NewSmContextCreateError(error_ ExtProblemDetails) *SmContextCreateError

NewSmContextCreateError instantiates a new SmContextCreateError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmContextCreateErrorWithDefaults

func NewSmContextCreateErrorWithDefaults() *SmContextCreateError

NewSmContextCreateErrorWithDefaults instantiates a new SmContextCreateError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmContextCreateError) GetError

GetError returns the Error field value

func (*SmContextCreateError) GetErrorOk

func (o *SmContextCreateError) GetErrorOk() (*ExtProblemDetails, bool)

GetErrorOk returns a tuple with the Error field value and a boolean to check if the value has been set.

func (*SmContextCreateError) GetN1SmMsg

func (o *SmContextCreateError) GetN1SmMsg() RefToBinaryData

GetN1SmMsg returns the N1SmMsg field value if set, zero value otherwise.

func (*SmContextCreateError) GetN1SmMsgOk

func (o *SmContextCreateError) GetN1SmMsgOk() (*RefToBinaryData, bool)

GetN1SmMsgOk returns a tuple with the N1SmMsg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateError) GetN2SmInfo

func (o *SmContextCreateError) GetN2SmInfo() RefToBinaryData

GetN2SmInfo returns the N2SmInfo field value if set, zero value otherwise.

func (*SmContextCreateError) GetN2SmInfoOk

func (o *SmContextCreateError) GetN2SmInfoOk() (*RefToBinaryData, bool)

GetN2SmInfoOk returns a tuple with the N2SmInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateError) GetN2SmInfoType

func (o *SmContextCreateError) GetN2SmInfoType() N2SmInfoType

GetN2SmInfoType returns the N2SmInfoType field value if set, zero value otherwise.

func (*SmContextCreateError) GetN2SmInfoTypeOk

func (o *SmContextCreateError) GetN2SmInfoTypeOk() (*N2SmInfoType, bool)

GetN2SmInfoTypeOk returns a tuple with the N2SmInfoType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateError) GetRecoveryTime

func (o *SmContextCreateError) GetRecoveryTime() time.Time

GetRecoveryTime returns the RecoveryTime field value if set, zero value otherwise.

func (*SmContextCreateError) GetRecoveryTimeOk

func (o *SmContextCreateError) GetRecoveryTimeOk() (*time.Time, bool)

GetRecoveryTimeOk returns a tuple with the RecoveryTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreateError) HasN1SmMsg

func (o *SmContextCreateError) HasN1SmMsg() bool

HasN1SmMsg returns a boolean if a field has been set.

func (*SmContextCreateError) HasN2SmInfo

func (o *SmContextCreateError) HasN2SmInfo() bool

HasN2SmInfo returns a boolean if a field has been set.

func (*SmContextCreateError) HasN2SmInfoType

func (o *SmContextCreateError) HasN2SmInfoType() bool

HasN2SmInfoType returns a boolean if a field has been set.

func (*SmContextCreateError) HasRecoveryTime

func (o *SmContextCreateError) HasRecoveryTime() bool

HasRecoveryTime returns a boolean if a field has been set.

func (SmContextCreateError) MarshalJSON

func (o SmContextCreateError) MarshalJSON() ([]byte, error)

func (*SmContextCreateError) SetError

func (o *SmContextCreateError) SetError(v ExtProblemDetails)

SetError sets field value

func (*SmContextCreateError) SetN1SmMsg

func (o *SmContextCreateError) SetN1SmMsg(v RefToBinaryData)

SetN1SmMsg gets a reference to the given RefToBinaryData and assigns it to the N1SmMsg field.

func (*SmContextCreateError) SetN2SmInfo

func (o *SmContextCreateError) SetN2SmInfo(v RefToBinaryData)

SetN2SmInfo gets a reference to the given RefToBinaryData and assigns it to the N2SmInfo field.

func (*SmContextCreateError) SetN2SmInfoType

func (o *SmContextCreateError) SetN2SmInfoType(v N2SmInfoType)

SetN2SmInfoType gets a reference to the given N2SmInfoType and assigns it to the N2SmInfoType field.

func (*SmContextCreateError) SetRecoveryTime

func (o *SmContextCreateError) SetRecoveryTime(v time.Time)

SetRecoveryTime gets a reference to the given time.Time and assigns it to the RecoveryTime field.

func (SmContextCreateError) ToMap

func (o SmContextCreateError) ToMap() (map[string]interface{}, error)

type SmContextCreatedData

type SmContextCreatedData struct {
	// String providing an URI formatted according to RFC 3986.
	HSmfUri *string `json:"hSmfUri,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	SmfUri *string `json:"smfUri,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,omitempty"`
	SNssai           *Snssai          `json:"sNssai,omitempty"`
	UpCnxState       *UpCnxState      `json:"upCnxState,omitempty"`
	N2SmInfo         *RefToBinaryData `json:"n2SmInfo,omitempty"`
	N2SmInfoType     *N2SmInfoType    `json:"n2SmInfoType,omitempty"`
	AllocatedEbiList []EbiArpMapping  `json:"allocatedEbiList,omitempty"`
	HoState          *HoState         `json:"hoState,omitempty"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi                 *string `json:"gpsi,omitempty"`
	SmfServiceInstanceId *string `json:"smfServiceInstanceId,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	RecoveryTime *time.Time `json:"recoveryTime,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures *string `json:"supportedFeatures,omitempty"`
	// 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.
	SelectedSmfId *string `json:"selectedSmfId,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.
	SelectedOldSmfId *string `json:"selectedOldSmfId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	InterPlmnApiRoot *string `json:"interPlmnApiRoot,omitempty"`
}

SmContextCreatedData Data within Create SM Context Response

func NewSmContextCreatedData

func NewSmContextCreatedData() *SmContextCreatedData

NewSmContextCreatedData instantiates a new SmContextCreatedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmContextCreatedDataWithDefaults

func NewSmContextCreatedDataWithDefaults() *SmContextCreatedData

NewSmContextCreatedDataWithDefaults instantiates a new SmContextCreatedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmContextCreatedData) GetAllocatedEbiList

func (o *SmContextCreatedData) GetAllocatedEbiList() []EbiArpMapping

GetAllocatedEbiList returns the AllocatedEbiList field value if set, zero value otherwise.

func (*SmContextCreatedData) GetAllocatedEbiListOk

func (o *SmContextCreatedData) GetAllocatedEbiListOk() ([]EbiArpMapping, bool)

GetAllocatedEbiListOk returns a tuple with the AllocatedEbiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetGpsi

func (o *SmContextCreatedData) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*SmContextCreatedData) GetGpsiOk

func (o *SmContextCreatedData) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetHSmfUri

func (o *SmContextCreatedData) GetHSmfUri() string

GetHSmfUri returns the HSmfUri field value if set, zero value otherwise.

func (*SmContextCreatedData) GetHSmfUriOk

func (o *SmContextCreatedData) GetHSmfUriOk() (*string, bool)

GetHSmfUriOk returns a tuple with the HSmfUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetHoState

func (o *SmContextCreatedData) GetHoState() HoState

GetHoState returns the HoState field value if set, zero value otherwise.

func (*SmContextCreatedData) GetHoStateOk

func (o *SmContextCreatedData) GetHoStateOk() (*HoState, bool)

GetHoStateOk returns a tuple with the HoState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetInterPlmnApiRoot

func (o *SmContextCreatedData) GetInterPlmnApiRoot() string

GetInterPlmnApiRoot returns the InterPlmnApiRoot field value if set, zero value otherwise.

func (*SmContextCreatedData) GetInterPlmnApiRootOk

func (o *SmContextCreatedData) GetInterPlmnApiRootOk() (*string, bool)

GetInterPlmnApiRootOk returns a tuple with the InterPlmnApiRoot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetN2SmInfo

func (o *SmContextCreatedData) GetN2SmInfo() RefToBinaryData

GetN2SmInfo returns the N2SmInfo field value if set, zero value otherwise.

func (*SmContextCreatedData) GetN2SmInfoOk

func (o *SmContextCreatedData) GetN2SmInfoOk() (*RefToBinaryData, bool)

GetN2SmInfoOk returns a tuple with the N2SmInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetN2SmInfoType

func (o *SmContextCreatedData) GetN2SmInfoType() N2SmInfoType

GetN2SmInfoType returns the N2SmInfoType field value if set, zero value otherwise.

func (*SmContextCreatedData) GetN2SmInfoTypeOk

func (o *SmContextCreatedData) GetN2SmInfoTypeOk() (*N2SmInfoType, bool)

GetN2SmInfoTypeOk returns a tuple with the N2SmInfoType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetPduSessionId

func (o *SmContextCreatedData) GetPduSessionId() int32

GetPduSessionId returns the PduSessionId field value if set, zero value otherwise.

func (*SmContextCreatedData) GetPduSessionIdOk

func (o *SmContextCreatedData) GetPduSessionIdOk() (*int32, bool)

GetPduSessionIdOk returns a tuple with the PduSessionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetRecoveryTime

func (o *SmContextCreatedData) GetRecoveryTime() time.Time

GetRecoveryTime returns the RecoveryTime field value if set, zero value otherwise.

func (*SmContextCreatedData) GetRecoveryTimeOk

func (o *SmContextCreatedData) GetRecoveryTimeOk() (*time.Time, bool)

GetRecoveryTimeOk returns a tuple with the RecoveryTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetSNssai

func (o *SmContextCreatedData) GetSNssai() Snssai

GetSNssai returns the SNssai field value if set, zero value otherwise.

func (*SmContextCreatedData) GetSNssaiOk

func (o *SmContextCreatedData) GetSNssaiOk() (*Snssai, bool)

GetSNssaiOk returns a tuple with the SNssai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetSelectedOldSmfId

func (o *SmContextCreatedData) GetSelectedOldSmfId() string

GetSelectedOldSmfId returns the SelectedOldSmfId field value if set, zero value otherwise.

func (*SmContextCreatedData) GetSelectedOldSmfIdOk

func (o *SmContextCreatedData) GetSelectedOldSmfIdOk() (*string, bool)

GetSelectedOldSmfIdOk returns a tuple with the SelectedOldSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetSelectedSmfId

func (o *SmContextCreatedData) GetSelectedSmfId() string

GetSelectedSmfId returns the SelectedSmfId field value if set, zero value otherwise.

func (*SmContextCreatedData) GetSelectedSmfIdOk

func (o *SmContextCreatedData) GetSelectedSmfIdOk() (*string, bool)

GetSelectedSmfIdOk returns a tuple with the SelectedSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetSmfServiceInstanceId

func (o *SmContextCreatedData) GetSmfServiceInstanceId() string

GetSmfServiceInstanceId returns the SmfServiceInstanceId field value if set, zero value otherwise.

func (*SmContextCreatedData) GetSmfServiceInstanceIdOk

func (o *SmContextCreatedData) GetSmfServiceInstanceIdOk() (*string, bool)

GetSmfServiceInstanceIdOk returns a tuple with the SmfServiceInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetSmfUri

func (o *SmContextCreatedData) GetSmfUri() string

GetSmfUri returns the SmfUri field value if set, zero value otherwise.

func (*SmContextCreatedData) GetSmfUriOk

func (o *SmContextCreatedData) GetSmfUriOk() (*string, bool)

GetSmfUriOk returns a tuple with the SmfUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) GetSupportedFeatures

func (o *SmContextCreatedData) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*SmContextCreatedData) GetSupportedFeaturesOk

func (o *SmContextCreatedData) 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 (*SmContextCreatedData) GetUpCnxState

func (o *SmContextCreatedData) GetUpCnxState() UpCnxState

GetUpCnxState returns the UpCnxState field value if set, zero value otherwise.

func (*SmContextCreatedData) GetUpCnxStateOk

func (o *SmContextCreatedData) GetUpCnxStateOk() (*UpCnxState, bool)

GetUpCnxStateOk returns a tuple with the UpCnxState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextCreatedData) HasAllocatedEbiList

func (o *SmContextCreatedData) HasAllocatedEbiList() bool

HasAllocatedEbiList returns a boolean if a field has been set.

func (*SmContextCreatedData) HasGpsi

func (o *SmContextCreatedData) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*SmContextCreatedData) HasHSmfUri

func (o *SmContextCreatedData) HasHSmfUri() bool

HasHSmfUri returns a boolean if a field has been set.

func (*SmContextCreatedData) HasHoState

func (o *SmContextCreatedData) HasHoState() bool

HasHoState returns a boolean if a field has been set.

func (*SmContextCreatedData) HasInterPlmnApiRoot

func (o *SmContextCreatedData) HasInterPlmnApiRoot() bool

HasInterPlmnApiRoot returns a boolean if a field has been set.

func (*SmContextCreatedData) HasN2SmInfo

func (o *SmContextCreatedData) HasN2SmInfo() bool

HasN2SmInfo returns a boolean if a field has been set.

func (*SmContextCreatedData) HasN2SmInfoType

func (o *SmContextCreatedData) HasN2SmInfoType() bool

HasN2SmInfoType returns a boolean if a field has been set.

func (*SmContextCreatedData) HasPduSessionId

func (o *SmContextCreatedData) HasPduSessionId() bool

HasPduSessionId returns a boolean if a field has been set.

func (*SmContextCreatedData) HasRecoveryTime

func (o *SmContextCreatedData) HasRecoveryTime() bool

HasRecoveryTime returns a boolean if a field has been set.

func (*SmContextCreatedData) HasSNssai

func (o *SmContextCreatedData) HasSNssai() bool

HasSNssai returns a boolean if a field has been set.

func (*SmContextCreatedData) HasSelectedOldSmfId

func (o *SmContextCreatedData) HasSelectedOldSmfId() bool

HasSelectedOldSmfId returns a boolean if a field has been set.

func (*SmContextCreatedData) HasSelectedSmfId

func (o *SmContextCreatedData) HasSelectedSmfId() bool

HasSelectedSmfId returns a boolean if a field has been set.

func (*SmContextCreatedData) HasSmfServiceInstanceId

func (o *SmContextCreatedData) HasSmfServiceInstanceId() bool

HasSmfServiceInstanceId returns a boolean if a field has been set.

func (*SmContextCreatedData) HasSmfUri

func (o *SmContextCreatedData) HasSmfUri() bool

HasSmfUri returns a boolean if a field has been set.

func (*SmContextCreatedData) HasSupportedFeatures

func (o *SmContextCreatedData) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*SmContextCreatedData) HasUpCnxState

func (o *SmContextCreatedData) HasUpCnxState() bool

HasUpCnxState returns a boolean if a field has been set.

func (SmContextCreatedData) MarshalJSON

func (o SmContextCreatedData) MarshalJSON() ([]byte, error)

func (*SmContextCreatedData) SetAllocatedEbiList

func (o *SmContextCreatedData) SetAllocatedEbiList(v []EbiArpMapping)

SetAllocatedEbiList gets a reference to the given []EbiArpMapping and assigns it to the AllocatedEbiList field.

func (*SmContextCreatedData) SetGpsi

func (o *SmContextCreatedData) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*SmContextCreatedData) SetHSmfUri

func (o *SmContextCreatedData) SetHSmfUri(v string)

SetHSmfUri gets a reference to the given string and assigns it to the HSmfUri field.

func (*SmContextCreatedData) SetHoState

func (o *SmContextCreatedData) SetHoState(v HoState)

SetHoState gets a reference to the given HoState and assigns it to the HoState field.

func (*SmContextCreatedData) SetInterPlmnApiRoot

func (o *SmContextCreatedData) SetInterPlmnApiRoot(v string)

SetInterPlmnApiRoot gets a reference to the given string and assigns it to the InterPlmnApiRoot field.

func (*SmContextCreatedData) SetN2SmInfo

func (o *SmContextCreatedData) SetN2SmInfo(v RefToBinaryData)

SetN2SmInfo gets a reference to the given RefToBinaryData and assigns it to the N2SmInfo field.

func (*SmContextCreatedData) SetN2SmInfoType

func (o *SmContextCreatedData) SetN2SmInfoType(v N2SmInfoType)

SetN2SmInfoType gets a reference to the given N2SmInfoType and assigns it to the N2SmInfoType field.

func (*SmContextCreatedData) SetPduSessionId

func (o *SmContextCreatedData) SetPduSessionId(v int32)

SetPduSessionId gets a reference to the given int32 and assigns it to the PduSessionId field.

func (*SmContextCreatedData) SetRecoveryTime

func (o *SmContextCreatedData) SetRecoveryTime(v time.Time)

SetRecoveryTime gets a reference to the given time.Time and assigns it to the RecoveryTime field.

func (*SmContextCreatedData) SetSNssai

func (o *SmContextCreatedData) SetSNssai(v Snssai)

SetSNssai gets a reference to the given Snssai and assigns it to the SNssai field.

func (*SmContextCreatedData) SetSelectedOldSmfId

func (o *SmContextCreatedData) SetSelectedOldSmfId(v string)

SetSelectedOldSmfId gets a reference to the given string and assigns it to the SelectedOldSmfId field.

func (*SmContextCreatedData) SetSelectedSmfId

func (o *SmContextCreatedData) SetSelectedSmfId(v string)

SetSelectedSmfId gets a reference to the given string and assigns it to the SelectedSmfId field.

func (*SmContextCreatedData) SetSmfServiceInstanceId

func (o *SmContextCreatedData) SetSmfServiceInstanceId(v string)

SetSmfServiceInstanceId gets a reference to the given string and assigns it to the SmfServiceInstanceId field.

func (*SmContextCreatedData) SetSmfUri

func (o *SmContextCreatedData) SetSmfUri(v string)

SetSmfUri gets a reference to the given string and assigns it to the SmfUri field.

func (*SmContextCreatedData) SetSupportedFeatures

func (o *SmContextCreatedData) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*SmContextCreatedData) SetUpCnxState

func (o *SmContextCreatedData) SetUpCnxState(v UpCnxState)

SetUpCnxState gets a reference to the given UpCnxState and assigns it to the UpCnxState field.

func (SmContextCreatedData) ToMap

func (o SmContextCreatedData) ToMap() (map[string]interface{}, error)

type SmContextReleaseData

type SmContextReleaseData struct {
	Cause     *Cause     `json:"cause,omitempty"`
	NgApCause *NgApCause `json:"ngApCause,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Var5gMmCauseValue *int32        `json:"5gMmCauseValue,omitempty"`
	UeLocation        *UserLocation `json:"ueLocation,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"`
	AddUeLocation   *UserLocation    `json:"addUeLocation,omitempty"`
	VsmfReleaseOnly *bool            `json:"vsmfReleaseOnly,omitempty"`
	N2SmInfo        *RefToBinaryData `json:"n2SmInfo,omitempty"`
	N2SmInfoType    *N2SmInfoType    `json:"n2SmInfoType,omitempty"`
	IsmfReleaseOnly *bool            `json:"ismfReleaseOnly,omitempty"`
}

SmContextReleaseData Data within Release SM Context Request

func NewSmContextReleaseData

func NewSmContextReleaseData() *SmContextReleaseData

NewSmContextReleaseData instantiates a new SmContextReleaseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmContextReleaseDataWithDefaults

func NewSmContextReleaseDataWithDefaults() *SmContextReleaseData

NewSmContextReleaseDataWithDefaults instantiates a new SmContextReleaseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmContextReleaseData) GetAddUeLocation

func (o *SmContextReleaseData) GetAddUeLocation() UserLocation

GetAddUeLocation returns the AddUeLocation field value if set, zero value otherwise.

func (*SmContextReleaseData) GetAddUeLocationOk

func (o *SmContextReleaseData) GetAddUeLocationOk() (*UserLocation, bool)

GetAddUeLocationOk returns a tuple with the AddUeLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextReleaseData) GetCause

func (o *SmContextReleaseData) GetCause() Cause

GetCause returns the Cause field value if set, zero value otherwise.

func (*SmContextReleaseData) GetCauseOk

func (o *SmContextReleaseData) GetCauseOk() (*Cause, 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 (*SmContextReleaseData) GetIsmfReleaseOnly

func (o *SmContextReleaseData) GetIsmfReleaseOnly() bool

GetIsmfReleaseOnly returns the IsmfReleaseOnly field value if set, zero value otherwise.

func (*SmContextReleaseData) GetIsmfReleaseOnlyOk

func (o *SmContextReleaseData) GetIsmfReleaseOnlyOk() (*bool, bool)

GetIsmfReleaseOnlyOk returns a tuple with the IsmfReleaseOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextReleaseData) GetN2SmInfo

func (o *SmContextReleaseData) GetN2SmInfo() RefToBinaryData

GetN2SmInfo returns the N2SmInfo field value if set, zero value otherwise.

func (*SmContextReleaseData) GetN2SmInfoOk

func (o *SmContextReleaseData) GetN2SmInfoOk() (*RefToBinaryData, bool)

GetN2SmInfoOk returns a tuple with the N2SmInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextReleaseData) GetN2SmInfoType

func (o *SmContextReleaseData) GetN2SmInfoType() N2SmInfoType

GetN2SmInfoType returns the N2SmInfoType field value if set, zero value otherwise.

func (*SmContextReleaseData) GetN2SmInfoTypeOk

func (o *SmContextReleaseData) GetN2SmInfoTypeOk() (*N2SmInfoType, bool)

GetN2SmInfoTypeOk returns a tuple with the N2SmInfoType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextReleaseData) GetNgApCause

func (o *SmContextReleaseData) GetNgApCause() NgApCause

GetNgApCause returns the NgApCause field value if set, zero value otherwise.

func (*SmContextReleaseData) GetNgApCauseOk

func (o *SmContextReleaseData) 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 (*SmContextReleaseData) GetUeLocation

func (o *SmContextReleaseData) GetUeLocation() UserLocation

GetUeLocation returns the UeLocation field value if set, zero value otherwise.

func (*SmContextReleaseData) GetUeLocationOk

func (o *SmContextReleaseData) GetUeLocationOk() (*UserLocation, bool)

GetUeLocationOk returns a tuple with the UeLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextReleaseData) GetUeTimeZone

func (o *SmContextReleaseData) GetUeTimeZone() string

GetUeTimeZone returns the UeTimeZone field value if set, zero value otherwise.

func (*SmContextReleaseData) GetUeTimeZoneOk

func (o *SmContextReleaseData) 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 (*SmContextReleaseData) GetVar5gMmCauseValue

func (o *SmContextReleaseData) GetVar5gMmCauseValue() int32

GetVar5gMmCauseValue returns the Var5gMmCauseValue field value if set, zero value otherwise.

func (*SmContextReleaseData) GetVar5gMmCauseValueOk

func (o *SmContextReleaseData) GetVar5gMmCauseValueOk() (*int32, bool)

GetVar5gMmCauseValueOk returns a tuple with the Var5gMmCauseValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextReleaseData) GetVsmfReleaseOnly

func (o *SmContextReleaseData) GetVsmfReleaseOnly() bool

GetVsmfReleaseOnly returns the VsmfReleaseOnly field value if set, zero value otherwise.

func (*SmContextReleaseData) GetVsmfReleaseOnlyOk

func (o *SmContextReleaseData) GetVsmfReleaseOnlyOk() (*bool, bool)

GetVsmfReleaseOnlyOk returns a tuple with the VsmfReleaseOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextReleaseData) HasAddUeLocation

func (o *SmContextReleaseData) HasAddUeLocation() bool

HasAddUeLocation returns a boolean if a field has been set.

func (*SmContextReleaseData) HasCause

func (o *SmContextReleaseData) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*SmContextReleaseData) HasIsmfReleaseOnly

func (o *SmContextReleaseData) HasIsmfReleaseOnly() bool

HasIsmfReleaseOnly returns a boolean if a field has been set.

func (*SmContextReleaseData) HasN2SmInfo

func (o *SmContextReleaseData) HasN2SmInfo() bool

HasN2SmInfo returns a boolean if a field has been set.

func (*SmContextReleaseData) HasN2SmInfoType

func (o *SmContextReleaseData) HasN2SmInfoType() bool

HasN2SmInfoType returns a boolean if a field has been set.

func (*SmContextReleaseData) HasNgApCause

func (o *SmContextReleaseData) HasNgApCause() bool

HasNgApCause returns a boolean if a field has been set.

func (*SmContextReleaseData) HasUeLocation

func (o *SmContextReleaseData) HasUeLocation() bool

HasUeLocation returns a boolean if a field has been set.

func (*SmContextReleaseData) HasUeTimeZone

func (o *SmContextReleaseData) HasUeTimeZone() bool

HasUeTimeZone returns a boolean if a field has been set.

func (*SmContextReleaseData) HasVar5gMmCauseValue

func (o *SmContextReleaseData) HasVar5gMmCauseValue() bool

HasVar5gMmCauseValue returns a boolean if a field has been set.

func (*SmContextReleaseData) HasVsmfReleaseOnly

func (o *SmContextReleaseData) HasVsmfReleaseOnly() bool

HasVsmfReleaseOnly returns a boolean if a field has been set.

func (SmContextReleaseData) MarshalJSON

func (o SmContextReleaseData) MarshalJSON() ([]byte, error)

func (*SmContextReleaseData) SetAddUeLocation

func (o *SmContextReleaseData) SetAddUeLocation(v UserLocation)

SetAddUeLocation gets a reference to the given UserLocation and assigns it to the AddUeLocation field.

func (*SmContextReleaseData) SetCause

func (o *SmContextReleaseData) SetCause(v Cause)

SetCause gets a reference to the given Cause and assigns it to the Cause field.

func (*SmContextReleaseData) SetIsmfReleaseOnly

func (o *SmContextReleaseData) SetIsmfReleaseOnly(v bool)

SetIsmfReleaseOnly gets a reference to the given bool and assigns it to the IsmfReleaseOnly field.

func (*SmContextReleaseData) SetN2SmInfo

func (o *SmContextReleaseData) SetN2SmInfo(v RefToBinaryData)

SetN2SmInfo gets a reference to the given RefToBinaryData and assigns it to the N2SmInfo field.

func (*SmContextReleaseData) SetN2SmInfoType

func (o *SmContextReleaseData) SetN2SmInfoType(v N2SmInfoType)

SetN2SmInfoType gets a reference to the given N2SmInfoType and assigns it to the N2SmInfoType field.

func (*SmContextReleaseData) SetNgApCause

func (o *SmContextReleaseData) SetNgApCause(v NgApCause)

SetNgApCause gets a reference to the given NgApCause and assigns it to the NgApCause field.

func (*SmContextReleaseData) SetUeLocation

func (o *SmContextReleaseData) SetUeLocation(v UserLocation)

SetUeLocation gets a reference to the given UserLocation and assigns it to the UeLocation field.

func (*SmContextReleaseData) SetUeTimeZone

func (o *SmContextReleaseData) SetUeTimeZone(v string)

SetUeTimeZone gets a reference to the given string and assigns it to the UeTimeZone field.

func (*SmContextReleaseData) SetVar5gMmCauseValue

func (o *SmContextReleaseData) SetVar5gMmCauseValue(v int32)

SetVar5gMmCauseValue gets a reference to the given int32 and assigns it to the Var5gMmCauseValue field.

func (*SmContextReleaseData) SetVsmfReleaseOnly

func (o *SmContextReleaseData) SetVsmfReleaseOnly(v bool)

SetVsmfReleaseOnly gets a reference to the given bool and assigns it to the VsmfReleaseOnly field.

func (SmContextReleaseData) ToMap

func (o SmContextReleaseData) ToMap() (map[string]interface{}, error)

type SmContextReleasedData

type SmContextReleasedData struct {
	SmallDataRateStatus *SmallDataRateStatus `json:"smallDataRateStatus,omitempty"`
	ApnRateStatus       *ApnRateStatus       `json:"apnRateStatus,omitempty"`
}

SmContextReleasedData Data within Release SM Context Response

func NewSmContextReleasedData

func NewSmContextReleasedData() *SmContextReleasedData

NewSmContextReleasedData instantiates a new SmContextReleasedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmContextReleasedDataWithDefaults

func NewSmContextReleasedDataWithDefaults() *SmContextReleasedData

NewSmContextReleasedDataWithDefaults instantiates a new SmContextReleasedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmContextReleasedData) GetApnRateStatus

func (o *SmContextReleasedData) GetApnRateStatus() ApnRateStatus

GetApnRateStatus returns the ApnRateStatus field value if set, zero value otherwise.

func (*SmContextReleasedData) GetApnRateStatusOk

func (o *SmContextReleasedData) GetApnRateStatusOk() (*ApnRateStatus, bool)

GetApnRateStatusOk returns a tuple with the ApnRateStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextReleasedData) GetSmallDataRateStatus

func (o *SmContextReleasedData) GetSmallDataRateStatus() SmallDataRateStatus

GetSmallDataRateStatus returns the SmallDataRateStatus field value if set, zero value otherwise.

func (*SmContextReleasedData) GetSmallDataRateStatusOk

func (o *SmContextReleasedData) GetSmallDataRateStatusOk() (*SmallDataRateStatus, bool)

GetSmallDataRateStatusOk returns a tuple with the SmallDataRateStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextReleasedData) HasApnRateStatus

func (o *SmContextReleasedData) HasApnRateStatus() bool

HasApnRateStatus returns a boolean if a field has been set.

func (*SmContextReleasedData) HasSmallDataRateStatus

func (o *SmContextReleasedData) HasSmallDataRateStatus() bool

HasSmallDataRateStatus returns a boolean if a field has been set.

func (SmContextReleasedData) MarshalJSON

func (o SmContextReleasedData) MarshalJSON() ([]byte, error)

func (*SmContextReleasedData) SetApnRateStatus

func (o *SmContextReleasedData) SetApnRateStatus(v ApnRateStatus)

SetApnRateStatus gets a reference to the given ApnRateStatus and assigns it to the ApnRateStatus field.

func (*SmContextReleasedData) SetSmallDataRateStatus

func (o *SmContextReleasedData) SetSmallDataRateStatus(v SmallDataRateStatus)

SetSmallDataRateStatus gets a reference to the given SmallDataRateStatus and assigns it to the SmallDataRateStatus field.

func (SmContextReleasedData) ToMap

func (o SmContextReleasedData) ToMap() (map[string]interface{}, error)

type SmContextRetrieveData

type SmContextRetrieveData struct {
	TargetMmeCap         *MmeCapabilities `json:"targetMmeCap,omitempty"`
	SmContextType        *SmContextType   `json:"smContextType,omitempty"`
	ServingNetwork       *PlmnId          `json:"servingNetwork,omitempty"`
	NotToTransferEbiList []int32          `json:"notToTransferEbiList,omitempty"`
	RanUnchangedInd      *bool            `json:"ranUnchangedInd,omitempty"`
}

SmContextRetrieveData Data within Retrieve SM Context Request

func NewSmContextRetrieveData

func NewSmContextRetrieveData() *SmContextRetrieveData

NewSmContextRetrieveData instantiates a new SmContextRetrieveData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmContextRetrieveDataWithDefaults

func NewSmContextRetrieveDataWithDefaults() *SmContextRetrieveData

NewSmContextRetrieveDataWithDefaults instantiates a new SmContextRetrieveData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmContextRetrieveData) GetNotToTransferEbiList

func (o *SmContextRetrieveData) GetNotToTransferEbiList() []int32

GetNotToTransferEbiList returns the NotToTransferEbiList field value if set, zero value otherwise.

func (*SmContextRetrieveData) GetNotToTransferEbiListOk

func (o *SmContextRetrieveData) GetNotToTransferEbiListOk() ([]int32, bool)

GetNotToTransferEbiListOk returns a tuple with the NotToTransferEbiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextRetrieveData) GetRanUnchangedInd

func (o *SmContextRetrieveData) GetRanUnchangedInd() bool

GetRanUnchangedInd returns the RanUnchangedInd field value if set, zero value otherwise.

func (*SmContextRetrieveData) GetRanUnchangedIndOk

func (o *SmContextRetrieveData) GetRanUnchangedIndOk() (*bool, bool)

GetRanUnchangedIndOk returns a tuple with the RanUnchangedInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextRetrieveData) GetServingNetwork

func (o *SmContextRetrieveData) GetServingNetwork() PlmnId

GetServingNetwork returns the ServingNetwork field value if set, zero value otherwise.

func (*SmContextRetrieveData) GetServingNetworkOk

func (o *SmContextRetrieveData) GetServingNetworkOk() (*PlmnId, bool)

GetServingNetworkOk returns a tuple with the ServingNetwork field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextRetrieveData) GetSmContextType

func (o *SmContextRetrieveData) GetSmContextType() SmContextType

GetSmContextType returns the SmContextType field value if set, zero value otherwise.

func (*SmContextRetrieveData) GetSmContextTypeOk

func (o *SmContextRetrieveData) GetSmContextTypeOk() (*SmContextType, bool)

GetSmContextTypeOk returns a tuple with the SmContextType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextRetrieveData) GetTargetMmeCap

func (o *SmContextRetrieveData) GetTargetMmeCap() MmeCapabilities

GetTargetMmeCap returns the TargetMmeCap field value if set, zero value otherwise.

func (*SmContextRetrieveData) GetTargetMmeCapOk

func (o *SmContextRetrieveData) GetTargetMmeCapOk() (*MmeCapabilities, bool)

GetTargetMmeCapOk returns a tuple with the TargetMmeCap field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextRetrieveData) HasNotToTransferEbiList

func (o *SmContextRetrieveData) HasNotToTransferEbiList() bool

HasNotToTransferEbiList returns a boolean if a field has been set.

func (*SmContextRetrieveData) HasRanUnchangedInd

func (o *SmContextRetrieveData) HasRanUnchangedInd() bool

HasRanUnchangedInd returns a boolean if a field has been set.

func (*SmContextRetrieveData) HasServingNetwork

func (o *SmContextRetrieveData) HasServingNetwork() bool

HasServingNetwork returns a boolean if a field has been set.

func (*SmContextRetrieveData) HasSmContextType

func (o *SmContextRetrieveData) HasSmContextType() bool

HasSmContextType returns a boolean if a field has been set.

func (*SmContextRetrieveData) HasTargetMmeCap

func (o *SmContextRetrieveData) HasTargetMmeCap() bool

HasTargetMmeCap returns a boolean if a field has been set.

func (SmContextRetrieveData) MarshalJSON

func (o SmContextRetrieveData) MarshalJSON() ([]byte, error)

func (*SmContextRetrieveData) SetNotToTransferEbiList

func (o *SmContextRetrieveData) SetNotToTransferEbiList(v []int32)

SetNotToTransferEbiList gets a reference to the given []int32 and assigns it to the NotToTransferEbiList field.

func (*SmContextRetrieveData) SetRanUnchangedInd

func (o *SmContextRetrieveData) SetRanUnchangedInd(v bool)

SetRanUnchangedInd gets a reference to the given bool and assigns it to the RanUnchangedInd field.

func (*SmContextRetrieveData) SetServingNetwork

func (o *SmContextRetrieveData) SetServingNetwork(v PlmnId)

SetServingNetwork gets a reference to the given PlmnId and assigns it to the ServingNetwork field.

func (*SmContextRetrieveData) SetSmContextType

func (o *SmContextRetrieveData) SetSmContextType(v SmContextType)

SetSmContextType gets a reference to the given SmContextType and assigns it to the SmContextType field.

func (*SmContextRetrieveData) SetTargetMmeCap

func (o *SmContextRetrieveData) SetTargetMmeCap(v MmeCapabilities)

SetTargetMmeCap gets a reference to the given MmeCapabilities and assigns it to the TargetMmeCap field.

func (SmContextRetrieveData) ToMap

func (o SmContextRetrieveData) ToMap() (map[string]interface{}, error)

type SmContextRetrievedData

type SmContextRetrievedData struct {
	// UE EPS PDN Connection container from SMF to AMF
	UeEpsPdnConnection  string               `json:"ueEpsPdnConnection"`
	SmContext           *SmContext           `json:"smContext,omitempty"`
	SmallDataRateStatus *SmallDataRateStatus `json:"smallDataRateStatus,omitempty"`
	ApnRateStatus       *ApnRateStatus       `json:"apnRateStatus,omitempty"`
	DlDataWaitingInd    *bool                `json:"dlDataWaitingInd,omitempty"`
	AfCoordinationInfo  *AfCoordinationInfo  `json:"afCoordinationInfo,omitempty"`
}

SmContextRetrievedData Data within Retrieve SM Context Response

func NewSmContextRetrievedData

func NewSmContextRetrievedData(ueEpsPdnConnection string) *SmContextRetrievedData

NewSmContextRetrievedData instantiates a new SmContextRetrievedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmContextRetrievedDataWithDefaults

func NewSmContextRetrievedDataWithDefaults() *SmContextRetrievedData

NewSmContextRetrievedDataWithDefaults instantiates a new SmContextRetrievedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmContextRetrievedData) GetAfCoordinationInfo

func (o *SmContextRetrievedData) GetAfCoordinationInfo() AfCoordinationInfo

GetAfCoordinationInfo returns the AfCoordinationInfo field value if set, zero value otherwise.

func (*SmContextRetrievedData) GetAfCoordinationInfoOk

func (o *SmContextRetrievedData) GetAfCoordinationInfoOk() (*AfCoordinationInfo, bool)

GetAfCoordinationInfoOk returns a tuple with the AfCoordinationInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextRetrievedData) GetApnRateStatus

func (o *SmContextRetrievedData) GetApnRateStatus() ApnRateStatus

GetApnRateStatus returns the ApnRateStatus field value if set, zero value otherwise.

func (*SmContextRetrievedData) GetApnRateStatusOk

func (o *SmContextRetrievedData) GetApnRateStatusOk() (*ApnRateStatus, bool)

GetApnRateStatusOk returns a tuple with the ApnRateStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextRetrievedData) GetDlDataWaitingInd

func (o *SmContextRetrievedData) GetDlDataWaitingInd() bool

GetDlDataWaitingInd returns the DlDataWaitingInd field value if set, zero value otherwise.

func (*SmContextRetrievedData) GetDlDataWaitingIndOk

func (o *SmContextRetrievedData) GetDlDataWaitingIndOk() (*bool, bool)

GetDlDataWaitingIndOk returns a tuple with the DlDataWaitingInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextRetrievedData) GetSmContext

func (o *SmContextRetrievedData) GetSmContext() SmContext

GetSmContext returns the SmContext field value if set, zero value otherwise.

func (*SmContextRetrievedData) GetSmContextOk

func (o *SmContextRetrievedData) GetSmContextOk() (*SmContext, bool)

GetSmContextOk returns a tuple with the SmContext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextRetrievedData) GetSmallDataRateStatus

func (o *SmContextRetrievedData) GetSmallDataRateStatus() SmallDataRateStatus

GetSmallDataRateStatus returns the SmallDataRateStatus field value if set, zero value otherwise.

func (*SmContextRetrievedData) GetSmallDataRateStatusOk

func (o *SmContextRetrievedData) GetSmallDataRateStatusOk() (*SmallDataRateStatus, bool)

GetSmallDataRateStatusOk returns a tuple with the SmallDataRateStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextRetrievedData) GetUeEpsPdnConnection

func (o *SmContextRetrievedData) GetUeEpsPdnConnection() string

GetUeEpsPdnConnection returns the UeEpsPdnConnection field value

func (*SmContextRetrievedData) GetUeEpsPdnConnectionOk

func (o *SmContextRetrievedData) GetUeEpsPdnConnectionOk() (*string, bool)

GetUeEpsPdnConnectionOk returns a tuple with the UeEpsPdnConnection field value and a boolean to check if the value has been set.

func (*SmContextRetrievedData) HasAfCoordinationInfo

func (o *SmContextRetrievedData) HasAfCoordinationInfo() bool

HasAfCoordinationInfo returns a boolean if a field has been set.

func (*SmContextRetrievedData) HasApnRateStatus

func (o *SmContextRetrievedData) HasApnRateStatus() bool

HasApnRateStatus returns a boolean if a field has been set.

func (*SmContextRetrievedData) HasDlDataWaitingInd

func (o *SmContextRetrievedData) HasDlDataWaitingInd() bool

HasDlDataWaitingInd returns a boolean if a field has been set.

func (*SmContextRetrievedData) HasSmContext

func (o *SmContextRetrievedData) HasSmContext() bool

HasSmContext returns a boolean if a field has been set.

func (*SmContextRetrievedData) HasSmallDataRateStatus

func (o *SmContextRetrievedData) HasSmallDataRateStatus() bool

HasSmallDataRateStatus returns a boolean if a field has been set.

func (SmContextRetrievedData) MarshalJSON

func (o SmContextRetrievedData) MarshalJSON() ([]byte, error)

func (*SmContextRetrievedData) SetAfCoordinationInfo

func (o *SmContextRetrievedData) SetAfCoordinationInfo(v AfCoordinationInfo)

SetAfCoordinationInfo gets a reference to the given AfCoordinationInfo and assigns it to the AfCoordinationInfo field.

func (*SmContextRetrievedData) SetApnRateStatus

func (o *SmContextRetrievedData) SetApnRateStatus(v ApnRateStatus)

SetApnRateStatus gets a reference to the given ApnRateStatus and assigns it to the ApnRateStatus field.

func (*SmContextRetrievedData) SetDlDataWaitingInd

func (o *SmContextRetrievedData) SetDlDataWaitingInd(v bool)

SetDlDataWaitingInd gets a reference to the given bool and assigns it to the DlDataWaitingInd field.

func (*SmContextRetrievedData) SetSmContext

func (o *SmContextRetrievedData) SetSmContext(v SmContext)

SetSmContext gets a reference to the given SmContext and assigns it to the SmContext field.

func (*SmContextRetrievedData) SetSmallDataRateStatus

func (o *SmContextRetrievedData) SetSmallDataRateStatus(v SmallDataRateStatus)

SetSmallDataRateStatus gets a reference to the given SmallDataRateStatus and assigns it to the SmallDataRateStatus field.

func (*SmContextRetrievedData) SetUeEpsPdnConnection

func (o *SmContextRetrievedData) SetUeEpsPdnConnection(v string)

SetUeEpsPdnConnection sets field value

func (SmContextRetrievedData) ToMap

func (o SmContextRetrievedData) ToMap() (map[string]interface{}, error)

type SmContextStatusNotification

type SmContextStatusNotification struct {
	StatusInfo                        StatusInfo           `json:"statusInfo"`
	SmallDataRateStatus               *SmallDataRateStatus `json:"smallDataRateStatus,omitempty"`
	ApnRateStatus                     *ApnRateStatus       `json:"apnRateStatus,omitempty"`
	DdnFailureStatus                  *bool                `json:"ddnFailureStatus,omitempty"`
	NotifyCorrelationIdsForddnFailure []string             `json:"notifyCorrelationIdsForddnFailure,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.
	NewIntermediateSmfId *string `json:"newIntermediateSmfId,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.
	NewSmfId *string `json:"newSmfId,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.
	NewSmfSetId *string `json:"newSmfSetId,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.
	OldSmfId *string `json:"oldSmfId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	OldSmContextRef *string `json:"oldSmContextRef,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	AltAnchorSmfUri *string `json:"altAnchorSmfUri,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.
	AltAnchorSmfId *string         `json:"altAnchorSmfId,omitempty"`
	TargetDnaiInfo *TargetDnaiInfo `json:"targetDnaiInfo,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	OldPduSessionRef *string `json:"oldPduSessionRef,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	InterPlmnApiRoot *string `json:"interPlmnApiRoot,omitempty"`
}

SmContextStatusNotification Data within Notify SM Context Status Request

func NewSmContextStatusNotification

func NewSmContextStatusNotification(statusInfo StatusInfo) *SmContextStatusNotification

NewSmContextStatusNotification instantiates a new SmContextStatusNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmContextStatusNotificationWithDefaults

func NewSmContextStatusNotificationWithDefaults() *SmContextStatusNotification

NewSmContextStatusNotificationWithDefaults instantiates a new SmContextStatusNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmContextStatusNotification) GetAltAnchorSmfId

func (o *SmContextStatusNotification) GetAltAnchorSmfId() string

GetAltAnchorSmfId returns the AltAnchorSmfId field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetAltAnchorSmfIdOk

func (o *SmContextStatusNotification) GetAltAnchorSmfIdOk() (*string, bool)

GetAltAnchorSmfIdOk returns a tuple with the AltAnchorSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetAltAnchorSmfUri

func (o *SmContextStatusNotification) GetAltAnchorSmfUri() string

GetAltAnchorSmfUri returns the AltAnchorSmfUri field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetAltAnchorSmfUriOk

func (o *SmContextStatusNotification) GetAltAnchorSmfUriOk() (*string, bool)

GetAltAnchorSmfUriOk returns a tuple with the AltAnchorSmfUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetApnRateStatus

func (o *SmContextStatusNotification) GetApnRateStatus() ApnRateStatus

GetApnRateStatus returns the ApnRateStatus field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetApnRateStatusOk

func (o *SmContextStatusNotification) GetApnRateStatusOk() (*ApnRateStatus, bool)

GetApnRateStatusOk returns a tuple with the ApnRateStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetDdnFailureStatus

func (o *SmContextStatusNotification) GetDdnFailureStatus() bool

GetDdnFailureStatus returns the DdnFailureStatus field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetDdnFailureStatusOk

func (o *SmContextStatusNotification) GetDdnFailureStatusOk() (*bool, bool)

GetDdnFailureStatusOk returns a tuple with the DdnFailureStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetInterPlmnApiRoot

func (o *SmContextStatusNotification) GetInterPlmnApiRoot() string

GetInterPlmnApiRoot returns the InterPlmnApiRoot field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetInterPlmnApiRootOk

func (o *SmContextStatusNotification) GetInterPlmnApiRootOk() (*string, bool)

GetInterPlmnApiRootOk returns a tuple with the InterPlmnApiRoot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetNewIntermediateSmfId

func (o *SmContextStatusNotification) GetNewIntermediateSmfId() string

GetNewIntermediateSmfId returns the NewIntermediateSmfId field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetNewIntermediateSmfIdOk

func (o *SmContextStatusNotification) GetNewIntermediateSmfIdOk() (*string, bool)

GetNewIntermediateSmfIdOk returns a tuple with the NewIntermediateSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetNewSmfId

func (o *SmContextStatusNotification) GetNewSmfId() string

GetNewSmfId returns the NewSmfId field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetNewSmfIdOk

func (o *SmContextStatusNotification) GetNewSmfIdOk() (*string, bool)

GetNewSmfIdOk returns a tuple with the NewSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetNewSmfSetId

func (o *SmContextStatusNotification) GetNewSmfSetId() string

GetNewSmfSetId returns the NewSmfSetId field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetNewSmfSetIdOk

func (o *SmContextStatusNotification) GetNewSmfSetIdOk() (*string, bool)

GetNewSmfSetIdOk returns a tuple with the NewSmfSetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetNotifyCorrelationIdsForddnFailure

func (o *SmContextStatusNotification) GetNotifyCorrelationIdsForddnFailure() []string

GetNotifyCorrelationIdsForddnFailure returns the NotifyCorrelationIdsForddnFailure field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetNotifyCorrelationIdsForddnFailureOk

func (o *SmContextStatusNotification) GetNotifyCorrelationIdsForddnFailureOk() ([]string, bool)

GetNotifyCorrelationIdsForddnFailureOk returns a tuple with the NotifyCorrelationIdsForddnFailure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetOldPduSessionRef

func (o *SmContextStatusNotification) GetOldPduSessionRef() string

GetOldPduSessionRef returns the OldPduSessionRef field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetOldPduSessionRefOk

func (o *SmContextStatusNotification) GetOldPduSessionRefOk() (*string, bool)

GetOldPduSessionRefOk returns a tuple with the OldPduSessionRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetOldSmContextRef

func (o *SmContextStatusNotification) GetOldSmContextRef() string

GetOldSmContextRef returns the OldSmContextRef field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetOldSmContextRefOk

func (o *SmContextStatusNotification) GetOldSmContextRefOk() (*string, bool)

GetOldSmContextRefOk returns a tuple with the OldSmContextRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetOldSmfId

func (o *SmContextStatusNotification) GetOldSmfId() string

GetOldSmfId returns the OldSmfId field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetOldSmfIdOk

func (o *SmContextStatusNotification) GetOldSmfIdOk() (*string, bool)

GetOldSmfIdOk returns a tuple with the OldSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetSmallDataRateStatus

func (o *SmContextStatusNotification) GetSmallDataRateStatus() SmallDataRateStatus

GetSmallDataRateStatus returns the SmallDataRateStatus field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetSmallDataRateStatusOk

func (o *SmContextStatusNotification) GetSmallDataRateStatusOk() (*SmallDataRateStatus, bool)

GetSmallDataRateStatusOk returns a tuple with the SmallDataRateStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetStatusInfo

func (o *SmContextStatusNotification) GetStatusInfo() StatusInfo

GetStatusInfo returns the StatusInfo field value

func (*SmContextStatusNotification) GetStatusInfoOk

func (o *SmContextStatusNotification) GetStatusInfoOk() (*StatusInfo, bool)

GetStatusInfoOk returns a tuple with the StatusInfo field value and a boolean to check if the value has been set.

func (*SmContextStatusNotification) GetTargetDnaiInfo

func (o *SmContextStatusNotification) GetTargetDnaiInfo() TargetDnaiInfo

GetTargetDnaiInfo returns the TargetDnaiInfo field value if set, zero value otherwise.

func (*SmContextStatusNotification) GetTargetDnaiInfoOk

func (o *SmContextStatusNotification) GetTargetDnaiInfoOk() (*TargetDnaiInfo, bool)

GetTargetDnaiInfoOk returns a tuple with the TargetDnaiInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextStatusNotification) HasAltAnchorSmfId

func (o *SmContextStatusNotification) HasAltAnchorSmfId() bool

HasAltAnchorSmfId returns a boolean if a field has been set.

func (*SmContextStatusNotification) HasAltAnchorSmfUri

func (o *SmContextStatusNotification) HasAltAnchorSmfUri() bool

HasAltAnchorSmfUri returns a boolean if a field has been set.

func (*SmContextStatusNotification) HasApnRateStatus

func (o *SmContextStatusNotification) HasApnRateStatus() bool

HasApnRateStatus returns a boolean if a field has been set.

func (*SmContextStatusNotification) HasDdnFailureStatus

func (o *SmContextStatusNotification) HasDdnFailureStatus() bool

HasDdnFailureStatus returns a boolean if a field has been set.

func (*SmContextStatusNotification) HasInterPlmnApiRoot

func (o *SmContextStatusNotification) HasInterPlmnApiRoot() bool

HasInterPlmnApiRoot returns a boolean if a field has been set.

func (*SmContextStatusNotification) HasNewIntermediateSmfId

func (o *SmContextStatusNotification) HasNewIntermediateSmfId() bool

HasNewIntermediateSmfId returns a boolean if a field has been set.

func (*SmContextStatusNotification) HasNewSmfId

func (o *SmContextStatusNotification) HasNewSmfId() bool

HasNewSmfId returns a boolean if a field has been set.

func (*SmContextStatusNotification) HasNewSmfSetId

func (o *SmContextStatusNotification) HasNewSmfSetId() bool

HasNewSmfSetId returns a boolean if a field has been set.

func (*SmContextStatusNotification) HasNotifyCorrelationIdsForddnFailure

func (o *SmContextStatusNotification) HasNotifyCorrelationIdsForddnFailure() bool

HasNotifyCorrelationIdsForddnFailure returns a boolean if a field has been set.

func (*SmContextStatusNotification) HasOldPduSessionRef

func (o *SmContextStatusNotification) HasOldPduSessionRef() bool

HasOldPduSessionRef returns a boolean if a field has been set.

func (*SmContextStatusNotification) HasOldSmContextRef

func (o *SmContextStatusNotification) HasOldSmContextRef() bool

HasOldSmContextRef returns a boolean if a field has been set.

func (*SmContextStatusNotification) HasOldSmfId

func (o *SmContextStatusNotification) HasOldSmfId() bool

HasOldSmfId returns a boolean if a field has been set.

func (*SmContextStatusNotification) HasSmallDataRateStatus

func (o *SmContextStatusNotification) HasSmallDataRateStatus() bool

HasSmallDataRateStatus returns a boolean if a field has been set.

func (*SmContextStatusNotification) HasTargetDnaiInfo

func (o *SmContextStatusNotification) HasTargetDnaiInfo() bool

HasTargetDnaiInfo returns a boolean if a field has been set.

func (SmContextStatusNotification) MarshalJSON

func (o SmContextStatusNotification) MarshalJSON() ([]byte, error)

func (*SmContextStatusNotification) SetAltAnchorSmfId

func (o *SmContextStatusNotification) SetAltAnchorSmfId(v string)

SetAltAnchorSmfId gets a reference to the given string and assigns it to the AltAnchorSmfId field.

func (*SmContextStatusNotification) SetAltAnchorSmfUri

func (o *SmContextStatusNotification) SetAltAnchorSmfUri(v string)

SetAltAnchorSmfUri gets a reference to the given string and assigns it to the AltAnchorSmfUri field.

func (*SmContextStatusNotification) SetApnRateStatus

func (o *SmContextStatusNotification) SetApnRateStatus(v ApnRateStatus)

SetApnRateStatus gets a reference to the given ApnRateStatus and assigns it to the ApnRateStatus field.

func (*SmContextStatusNotification) SetDdnFailureStatus

func (o *SmContextStatusNotification) SetDdnFailureStatus(v bool)

SetDdnFailureStatus gets a reference to the given bool and assigns it to the DdnFailureStatus field.

func (*SmContextStatusNotification) SetInterPlmnApiRoot

func (o *SmContextStatusNotification) SetInterPlmnApiRoot(v string)

SetInterPlmnApiRoot gets a reference to the given string and assigns it to the InterPlmnApiRoot field.

func (*SmContextStatusNotification) SetNewIntermediateSmfId

func (o *SmContextStatusNotification) SetNewIntermediateSmfId(v string)

SetNewIntermediateSmfId gets a reference to the given string and assigns it to the NewIntermediateSmfId field.

func (*SmContextStatusNotification) SetNewSmfId

func (o *SmContextStatusNotification) SetNewSmfId(v string)

SetNewSmfId gets a reference to the given string and assigns it to the NewSmfId field.

func (*SmContextStatusNotification) SetNewSmfSetId

func (o *SmContextStatusNotification) SetNewSmfSetId(v string)

SetNewSmfSetId gets a reference to the given string and assigns it to the NewSmfSetId field.

func (*SmContextStatusNotification) SetNotifyCorrelationIdsForddnFailure

func (o *SmContextStatusNotification) SetNotifyCorrelationIdsForddnFailure(v []string)

SetNotifyCorrelationIdsForddnFailure gets a reference to the given []string and assigns it to the NotifyCorrelationIdsForddnFailure field.

func (*SmContextStatusNotification) SetOldPduSessionRef

func (o *SmContextStatusNotification) SetOldPduSessionRef(v string)

SetOldPduSessionRef gets a reference to the given string and assigns it to the OldPduSessionRef field.

func (*SmContextStatusNotification) SetOldSmContextRef

func (o *SmContextStatusNotification) SetOldSmContextRef(v string)

SetOldSmContextRef gets a reference to the given string and assigns it to the OldSmContextRef field.

func (*SmContextStatusNotification) SetOldSmfId

func (o *SmContextStatusNotification) SetOldSmfId(v string)

SetOldSmfId gets a reference to the given string and assigns it to the OldSmfId field.

func (*SmContextStatusNotification) SetSmallDataRateStatus

func (o *SmContextStatusNotification) SetSmallDataRateStatus(v SmallDataRateStatus)

SetSmallDataRateStatus gets a reference to the given SmallDataRateStatus and assigns it to the SmallDataRateStatus field.

func (*SmContextStatusNotification) SetStatusInfo

func (o *SmContextStatusNotification) SetStatusInfo(v StatusInfo)

SetStatusInfo sets field value

func (*SmContextStatusNotification) SetTargetDnaiInfo

func (o *SmContextStatusNotification) SetTargetDnaiInfo(v TargetDnaiInfo)

SetTargetDnaiInfo gets a reference to the given TargetDnaiInfo and assigns it to the TargetDnaiInfo field.

func (SmContextStatusNotification) ToMap

func (o SmContextStatusNotification) ToMap() (map[string]interface{}, error)

type SmContextType

type SmContextType struct {
	String *string
}

SmContextType Type of SM Context information. Possible values are - EPS_PDN_CONNECTION - SM_CONTEXT - AF_COORDINATION_INFO

func (*SmContextType) MarshalJSON

func (src *SmContextType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SmContextType) UnmarshalJSON

func (dst *SmContextType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SmContextUpdateData

type SmContextUpdateData struct {
	// String representing a Permanent Equipment Identifier that may contain - an IMEI or IMEISV, as  specified in clause 6.2 of 3GPP TS 23.003; a MAC address for a 5G-RG or FN-RG via  wireline  access, with an indication that this address cannot be trusted for regulatory purpose if this  address cannot be used as an Equipment Identifier of the FN-RG, as specified in clause 4.7.7  of 3GPP TS23.316. Examples are imei-012345678901234 or imeisv-0123456789012345.
	Pei *string `json:"pei,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.
	ServingNfId        *string         `json:"servingNfId,omitempty"`
	Guami              *Guami          `json:"guami,omitempty"`
	ServingNetwork     *PlmnIdNid      `json:"servingNetwork,omitempty"`
	BackupAmfInfo      []BackupAmfInfo `json:"backupAmfInfo,omitempty"`
	AnType             *AccessType     `json:"anType,omitempty"`
	AdditionalAnType   *AccessType     `json:"additionalAnType,omitempty"`
	AnTypeToReactivate *AccessType     `json:"anTypeToReactivate,omitempty"`
	RatType            *RatType        `json:"ratType,omitempty"`
	PresenceInLadn     *PresenceState  `json:"presenceInLadn,omitempty"`
	UeLocation         *UserLocation   `json:"ueLocation,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"`
	AddUeLocation      *UserLocation    `json:"addUeLocation,omitempty"`
	UpCnxState         *UpCnxState      `json:"upCnxState,omitempty"`
	HoState            *HoState         `json:"hoState,omitempty"`
	ToBeSwitched       *bool            `json:"toBeSwitched,omitempty"`
	FailedToBeSwitched *bool            `json:"failedToBeSwitched,omitempty"`
	N1SmMsg            *RefToBinaryData `json:"n1SmMsg,omitempty"`
	N2SmInfo           *RefToBinaryData `json:"n2SmInfo,omitempty"`
	N2SmInfoType       *N2SmInfoType    `json:"n2SmInfoType,omitempty"`
	TargetId           *NgRanTargetId   `json:"targetId,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.
	TargetServingNfId *string `json:"targetServingNfId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	SmContextStatusUri    *string                            `json:"smContextStatusUri,omitempty"`
	DataForwarding        *bool                              `json:"dataForwarding,omitempty"`
	N9ForwardingTunnel    *TunnelInfo                        `json:"n9ForwardingTunnel,omitempty"`
	N9DlForwardingTnlList []IndirectDataForwardingTunnelInfo `json:"n9DlForwardingTnlList,omitempty"`
	N9UlForwardingTnlList []IndirectDataForwardingTunnelInfo `json:"n9UlForwardingTnlList,omitempty"`
	N9DlForwardingTunnel  *TunnelInfo                        `json:"n9DlForwardingTunnel,omitempty"`
	// indicating a time in seconds.
	N9InactivityTimer *int32     `json:"n9InactivityTimer,omitempty"`
	EpsBearerSetup    []string   `json:"epsBearerSetup,omitempty"`
	RevokeEbiList     []int32    `json:"revokeEbiList,omitempty"`
	Release           *bool      `json:"release,omitempty"`
	Cause             *Cause     `json:"cause,omitempty"`
	NgApCause         *NgApCause `json:"ngApCause,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Var5gMmCauseValue  *int32                     `json:"5gMmCauseValue,omitempty"`
	SNssai             *Snssai                    `json:"sNssai,omitempty"`
	TraceData          NullableTraceData          `json:"traceData,omitempty"`
	EpsInterworkingInd *EpsInterworkingIndication `json:"epsInterworkingInd,omitempty"`
	AnTypeCanBeChanged *bool                      `json:"anTypeCanBeChanged,omitempty"`
	N2SmInfoExt1       *RefToBinaryData           `json:"n2SmInfoExt1,omitempty"`
	N2SmInfoTypeExt1   *N2SmInfoType              `json:"n2SmInfoTypeExt1,omitempty"`
	MaReleaseInd       *MaReleaseIndication       `json:"maReleaseInd,omitempty"`
	MaNwUpgradeInd     *bool                      `json:"maNwUpgradeInd,omitempty"`
	MaRequestInd       *bool                      `json:"maRequestInd,omitempty"`
	ExemptionInd       *ExemptionInd              `json:"exemptionInd,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"`
	MoExpDataCounter      *MoExpDataCounter `json:"moExpDataCounter,omitempty"`
	ExtendedNasSmTimerInd *bool             `json:"extendedNasSmTimerInd,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	ForwardingFTeid                      *string                    `json:"forwardingFTeid,omitempty"`
	ForwardingBearerContexts             []string                   `json:"forwardingBearerContexts,omitempty"`
	DdnFailureSubs                       *DdnFailureSubs            `json:"ddnFailureSubs,omitempty"`
	SkipN2PduSessionResRelInd            *bool                      `json:"skipN2PduSessionResRelInd,omitempty"`
	SecondaryRatUsageDataReportContainer []string                   `json:"secondaryRatUsageDataReportContainer,omitempty"`
	SmPolicyNotifyInd                    *bool                      `json:"smPolicyNotifyInd,omitempty"`
	PcfUeCallbackInfo                    NullablePcfUeCallbackInfo  `json:"pcfUeCallbackInfo,omitempty"`
	SatelliteBackhaulCat                 *SatelliteBackhaulCategory `json:"satelliteBackhaulCat,omitempty"`
	CnBasedMt                            *bool                      `json:"cnBasedMt,omitempty"`
}

SmContextUpdateData Data within Update SM Context Request

func NewSmContextUpdateData

func NewSmContextUpdateData() *SmContextUpdateData

NewSmContextUpdateData instantiates a new SmContextUpdateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmContextUpdateDataWithDefaults

func NewSmContextUpdateDataWithDefaults() *SmContextUpdateData

NewSmContextUpdateDataWithDefaults instantiates a new SmContextUpdateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmContextUpdateData) GetAddUeLocation

func (o *SmContextUpdateData) GetAddUeLocation() UserLocation

GetAddUeLocation returns the AddUeLocation field value if set, zero value otherwise.

func (*SmContextUpdateData) GetAddUeLocationOk

func (o *SmContextUpdateData) GetAddUeLocationOk() (*UserLocation, bool)

GetAddUeLocationOk returns a tuple with the AddUeLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetAdditionalAnType

func (o *SmContextUpdateData) GetAdditionalAnType() AccessType

GetAdditionalAnType returns the AdditionalAnType field value if set, zero value otherwise.

func (*SmContextUpdateData) GetAdditionalAnTypeOk

func (o *SmContextUpdateData) GetAdditionalAnTypeOk() (*AccessType, bool)

GetAdditionalAnTypeOk returns a tuple with the AdditionalAnType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetAnType

func (o *SmContextUpdateData) GetAnType() AccessType

GetAnType returns the AnType field value if set, zero value otherwise.

func (*SmContextUpdateData) GetAnTypeCanBeChanged

func (o *SmContextUpdateData) GetAnTypeCanBeChanged() bool

GetAnTypeCanBeChanged returns the AnTypeCanBeChanged field value if set, zero value otherwise.

func (*SmContextUpdateData) GetAnTypeCanBeChangedOk

func (o *SmContextUpdateData) GetAnTypeCanBeChangedOk() (*bool, bool)

GetAnTypeCanBeChangedOk returns a tuple with the AnTypeCanBeChanged field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetAnTypeOk

func (o *SmContextUpdateData) GetAnTypeOk() (*AccessType, bool)

GetAnTypeOk returns a tuple with the AnType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetAnTypeToReactivate

func (o *SmContextUpdateData) GetAnTypeToReactivate() AccessType

GetAnTypeToReactivate returns the AnTypeToReactivate field value if set, zero value otherwise.

func (*SmContextUpdateData) GetAnTypeToReactivateOk

func (o *SmContextUpdateData) GetAnTypeToReactivateOk() (*AccessType, bool)

GetAnTypeToReactivateOk returns a tuple with the AnTypeToReactivate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetBackupAmfInfo

func (o *SmContextUpdateData) GetBackupAmfInfo() []BackupAmfInfo

GetBackupAmfInfo returns the BackupAmfInfo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmContextUpdateData) GetBackupAmfInfoOk

func (o *SmContextUpdateData) GetBackupAmfInfoOk() ([]BackupAmfInfo, bool)

GetBackupAmfInfoOk returns a tuple with the BackupAmfInfo 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 (*SmContextUpdateData) GetCause

func (o *SmContextUpdateData) GetCause() Cause

GetCause returns the Cause field value if set, zero value otherwise.

func (*SmContextUpdateData) GetCauseOk

func (o *SmContextUpdateData) GetCauseOk() (*Cause, 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 (*SmContextUpdateData) GetCnBasedMt

func (o *SmContextUpdateData) GetCnBasedMt() bool

GetCnBasedMt returns the CnBasedMt field value if set, zero value otherwise.

func (*SmContextUpdateData) GetCnBasedMtOk

func (o *SmContextUpdateData) GetCnBasedMtOk() (*bool, bool)

GetCnBasedMtOk returns a tuple with the CnBasedMt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetDataForwarding

func (o *SmContextUpdateData) GetDataForwarding() bool

GetDataForwarding returns the DataForwarding field value if set, zero value otherwise.

func (*SmContextUpdateData) GetDataForwardingOk

func (o *SmContextUpdateData) GetDataForwardingOk() (*bool, bool)

GetDataForwardingOk returns a tuple with the DataForwarding field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetDdnFailureSubs

func (o *SmContextUpdateData) GetDdnFailureSubs() DdnFailureSubs

GetDdnFailureSubs returns the DdnFailureSubs field value if set, zero value otherwise.

func (*SmContextUpdateData) GetDdnFailureSubsOk

func (o *SmContextUpdateData) GetDdnFailureSubsOk() (*DdnFailureSubs, bool)

GetDdnFailureSubsOk returns a tuple with the DdnFailureSubs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetEpsBearerSetup

func (o *SmContextUpdateData) GetEpsBearerSetup() []string

GetEpsBearerSetup returns the EpsBearerSetup field value if set, zero value otherwise.

func (*SmContextUpdateData) GetEpsBearerSetupOk

func (o *SmContextUpdateData) GetEpsBearerSetupOk() ([]string, bool)

GetEpsBearerSetupOk returns a tuple with the EpsBearerSetup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetEpsInterworkingInd

func (o *SmContextUpdateData) GetEpsInterworkingInd() EpsInterworkingIndication

GetEpsInterworkingInd returns the EpsInterworkingInd field value if set, zero value otherwise.

func (*SmContextUpdateData) GetEpsInterworkingIndOk

func (o *SmContextUpdateData) GetEpsInterworkingIndOk() (*EpsInterworkingIndication, bool)

GetEpsInterworkingIndOk returns a tuple with the EpsInterworkingInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetExemptionInd

func (o *SmContextUpdateData) GetExemptionInd() ExemptionInd

GetExemptionInd returns the ExemptionInd field value if set, zero value otherwise.

func (*SmContextUpdateData) GetExemptionIndOk

func (o *SmContextUpdateData) GetExemptionIndOk() (*ExemptionInd, bool)

GetExemptionIndOk returns a tuple with the ExemptionInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetExtendedNasSmTimerInd

func (o *SmContextUpdateData) GetExtendedNasSmTimerInd() bool

GetExtendedNasSmTimerInd returns the ExtendedNasSmTimerInd field value if set, zero value otherwise.

func (*SmContextUpdateData) GetExtendedNasSmTimerIndOk

func (o *SmContextUpdateData) GetExtendedNasSmTimerIndOk() (*bool, bool)

GetExtendedNasSmTimerIndOk returns a tuple with the ExtendedNasSmTimerInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetFailedToBeSwitched

func (o *SmContextUpdateData) GetFailedToBeSwitched() bool

GetFailedToBeSwitched returns the FailedToBeSwitched field value if set, zero value otherwise.

func (*SmContextUpdateData) GetFailedToBeSwitchedOk

func (o *SmContextUpdateData) GetFailedToBeSwitchedOk() (*bool, bool)

GetFailedToBeSwitchedOk returns a tuple with the FailedToBeSwitched field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetForwardingBearerContexts

func (o *SmContextUpdateData) GetForwardingBearerContexts() []string

GetForwardingBearerContexts returns the ForwardingBearerContexts field value if set, zero value otherwise.

func (*SmContextUpdateData) GetForwardingBearerContextsOk

func (o *SmContextUpdateData) GetForwardingBearerContextsOk() ([]string, bool)

GetForwardingBearerContextsOk returns a tuple with the ForwardingBearerContexts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetForwardingFTeid

func (o *SmContextUpdateData) GetForwardingFTeid() string

GetForwardingFTeid returns the ForwardingFTeid field value if set, zero value otherwise.

func (*SmContextUpdateData) GetForwardingFTeidOk

func (o *SmContextUpdateData) GetForwardingFTeidOk() (*string, bool)

GetForwardingFTeidOk returns a tuple with the ForwardingFTeid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetGuami

func (o *SmContextUpdateData) GetGuami() Guami

GetGuami returns the Guami field value if set, zero value otherwise.

func (*SmContextUpdateData) GetGuamiOk

func (o *SmContextUpdateData) GetGuamiOk() (*Guami, bool)

GetGuamiOk returns a tuple with the Guami field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetHoState

func (o *SmContextUpdateData) GetHoState() HoState

GetHoState returns the HoState field value if set, zero value otherwise.

func (*SmContextUpdateData) GetHoStateOk

func (o *SmContextUpdateData) GetHoStateOk() (*HoState, bool)

GetHoStateOk returns a tuple with the HoState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetMaNwUpgradeInd

func (o *SmContextUpdateData) GetMaNwUpgradeInd() bool

GetMaNwUpgradeInd returns the MaNwUpgradeInd field value if set, zero value otherwise.

func (*SmContextUpdateData) GetMaNwUpgradeIndOk

func (o *SmContextUpdateData) GetMaNwUpgradeIndOk() (*bool, bool)

GetMaNwUpgradeIndOk returns a tuple with the MaNwUpgradeInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetMaReleaseInd

func (o *SmContextUpdateData) GetMaReleaseInd() MaReleaseIndication

GetMaReleaseInd returns the MaReleaseInd field value if set, zero value otherwise.

func (*SmContextUpdateData) GetMaReleaseIndOk

func (o *SmContextUpdateData) GetMaReleaseIndOk() (*MaReleaseIndication, bool)

GetMaReleaseIndOk returns a tuple with the MaReleaseInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetMaRequestInd

func (o *SmContextUpdateData) GetMaRequestInd() bool

GetMaRequestInd returns the MaRequestInd field value if set, zero value otherwise.

func (*SmContextUpdateData) GetMaRequestIndOk

func (o *SmContextUpdateData) GetMaRequestIndOk() (*bool, bool)

GetMaRequestIndOk returns a tuple with the MaRequestInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetMoExpDataCounter

func (o *SmContextUpdateData) GetMoExpDataCounter() MoExpDataCounter

GetMoExpDataCounter returns the MoExpDataCounter field value if set, zero value otherwise.

func (*SmContextUpdateData) GetMoExpDataCounterOk

func (o *SmContextUpdateData) GetMoExpDataCounterOk() (*MoExpDataCounter, bool)

GetMoExpDataCounterOk returns a tuple with the MoExpDataCounter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetN1SmMsg

func (o *SmContextUpdateData) GetN1SmMsg() RefToBinaryData

GetN1SmMsg returns the N1SmMsg field value if set, zero value otherwise.

func (*SmContextUpdateData) GetN1SmMsgOk

func (o *SmContextUpdateData) GetN1SmMsgOk() (*RefToBinaryData, bool)

GetN1SmMsgOk returns a tuple with the N1SmMsg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetN2SmInfo

func (o *SmContextUpdateData) GetN2SmInfo() RefToBinaryData

GetN2SmInfo returns the N2SmInfo field value if set, zero value otherwise.

func (*SmContextUpdateData) GetN2SmInfoExt1

func (o *SmContextUpdateData) GetN2SmInfoExt1() RefToBinaryData

GetN2SmInfoExt1 returns the N2SmInfoExt1 field value if set, zero value otherwise.

func (*SmContextUpdateData) GetN2SmInfoExt1Ok

func (o *SmContextUpdateData) GetN2SmInfoExt1Ok() (*RefToBinaryData, bool)

GetN2SmInfoExt1Ok returns a tuple with the N2SmInfoExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetN2SmInfoOk

func (o *SmContextUpdateData) GetN2SmInfoOk() (*RefToBinaryData, bool)

GetN2SmInfoOk returns a tuple with the N2SmInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetN2SmInfoType

func (o *SmContextUpdateData) GetN2SmInfoType() N2SmInfoType

GetN2SmInfoType returns the N2SmInfoType field value if set, zero value otherwise.

func (*SmContextUpdateData) GetN2SmInfoTypeExt1

func (o *SmContextUpdateData) GetN2SmInfoTypeExt1() N2SmInfoType

GetN2SmInfoTypeExt1 returns the N2SmInfoTypeExt1 field value if set, zero value otherwise.

func (*SmContextUpdateData) GetN2SmInfoTypeExt1Ok

func (o *SmContextUpdateData) GetN2SmInfoTypeExt1Ok() (*N2SmInfoType, bool)

GetN2SmInfoTypeExt1Ok returns a tuple with the N2SmInfoTypeExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetN2SmInfoTypeOk

func (o *SmContextUpdateData) GetN2SmInfoTypeOk() (*N2SmInfoType, bool)

GetN2SmInfoTypeOk returns a tuple with the N2SmInfoType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetN9DlForwardingTnlList

func (o *SmContextUpdateData) GetN9DlForwardingTnlList() []IndirectDataForwardingTunnelInfo

GetN9DlForwardingTnlList returns the N9DlForwardingTnlList field value if set, zero value otherwise.

func (*SmContextUpdateData) GetN9DlForwardingTnlListOk

func (o *SmContextUpdateData) GetN9DlForwardingTnlListOk() ([]IndirectDataForwardingTunnelInfo, bool)

GetN9DlForwardingTnlListOk returns a tuple with the N9DlForwardingTnlList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetN9DlForwardingTunnel

func (o *SmContextUpdateData) GetN9DlForwardingTunnel() TunnelInfo

GetN9DlForwardingTunnel returns the N9DlForwardingTunnel field value if set, zero value otherwise.

func (*SmContextUpdateData) GetN9DlForwardingTunnelOk

func (o *SmContextUpdateData) GetN9DlForwardingTunnelOk() (*TunnelInfo, bool)

GetN9DlForwardingTunnelOk returns a tuple with the N9DlForwardingTunnel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetN9ForwardingTunnel

func (o *SmContextUpdateData) GetN9ForwardingTunnel() TunnelInfo

GetN9ForwardingTunnel returns the N9ForwardingTunnel field value if set, zero value otherwise.

func (*SmContextUpdateData) GetN9ForwardingTunnelOk

func (o *SmContextUpdateData) GetN9ForwardingTunnelOk() (*TunnelInfo, bool)

GetN9ForwardingTunnelOk returns a tuple with the N9ForwardingTunnel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetN9InactivityTimer

func (o *SmContextUpdateData) GetN9InactivityTimer() int32

GetN9InactivityTimer returns the N9InactivityTimer field value if set, zero value otherwise.

func (*SmContextUpdateData) GetN9InactivityTimerOk

func (o *SmContextUpdateData) GetN9InactivityTimerOk() (*int32, bool)

GetN9InactivityTimerOk returns a tuple with the N9InactivityTimer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetN9UlForwardingTnlList

func (o *SmContextUpdateData) GetN9UlForwardingTnlList() []IndirectDataForwardingTunnelInfo

GetN9UlForwardingTnlList returns the N9UlForwardingTnlList field value if set, zero value otherwise.

func (*SmContextUpdateData) GetN9UlForwardingTnlListOk

func (o *SmContextUpdateData) GetN9UlForwardingTnlListOk() ([]IndirectDataForwardingTunnelInfo, bool)

GetN9UlForwardingTnlListOk returns a tuple with the N9UlForwardingTnlList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetNgApCause

func (o *SmContextUpdateData) GetNgApCause() NgApCause

GetNgApCause returns the NgApCause field value if set, zero value otherwise.

func (*SmContextUpdateData) GetNgApCauseOk

func (o *SmContextUpdateData) 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 (*SmContextUpdateData) GetPcfUeCallbackInfo

func (o *SmContextUpdateData) GetPcfUeCallbackInfo() PcfUeCallbackInfo

GetPcfUeCallbackInfo returns the PcfUeCallbackInfo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmContextUpdateData) GetPcfUeCallbackInfoOk

func (o *SmContextUpdateData) GetPcfUeCallbackInfoOk() (*PcfUeCallbackInfo, bool)

GetPcfUeCallbackInfoOk returns a tuple with the PcfUeCallbackInfo 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 (*SmContextUpdateData) GetPei

func (o *SmContextUpdateData) GetPei() string

GetPei returns the Pei field value if set, zero value otherwise.

func (*SmContextUpdateData) GetPeiOk

func (o *SmContextUpdateData) GetPeiOk() (*string, bool)

GetPeiOk returns a tuple with the Pei field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetPresenceInLadn

func (o *SmContextUpdateData) GetPresenceInLadn() PresenceState

GetPresenceInLadn returns the PresenceInLadn field value if set, zero value otherwise.

func (*SmContextUpdateData) GetPresenceInLadnOk

func (o *SmContextUpdateData) GetPresenceInLadnOk() (*PresenceState, bool)

GetPresenceInLadnOk returns a tuple with the PresenceInLadn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetRatType

func (o *SmContextUpdateData) GetRatType() RatType

GetRatType returns the RatType field value if set, zero value otherwise.

func (*SmContextUpdateData) GetRatTypeOk

func (o *SmContextUpdateData) 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 (*SmContextUpdateData) GetRelease

func (o *SmContextUpdateData) GetRelease() bool

GetRelease returns the Release field value if set, zero value otherwise.

func (*SmContextUpdateData) GetReleaseOk

func (o *SmContextUpdateData) GetReleaseOk() (*bool, bool)

GetReleaseOk returns a tuple with the Release field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetRevokeEbiList

func (o *SmContextUpdateData) GetRevokeEbiList() []int32

GetRevokeEbiList returns the RevokeEbiList field value if set, zero value otherwise.

func (*SmContextUpdateData) GetRevokeEbiListOk

func (o *SmContextUpdateData) GetRevokeEbiListOk() ([]int32, bool)

GetRevokeEbiListOk returns a tuple with the RevokeEbiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetSNssai

func (o *SmContextUpdateData) GetSNssai() Snssai

GetSNssai returns the SNssai field value if set, zero value otherwise.

func (*SmContextUpdateData) GetSNssaiOk

func (o *SmContextUpdateData) GetSNssaiOk() (*Snssai, bool)

GetSNssaiOk returns a tuple with the SNssai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetSatelliteBackhaulCat

func (o *SmContextUpdateData) GetSatelliteBackhaulCat() SatelliteBackhaulCategory

GetSatelliteBackhaulCat returns the SatelliteBackhaulCat field value if set, zero value otherwise.

func (*SmContextUpdateData) GetSatelliteBackhaulCatOk

func (o *SmContextUpdateData) GetSatelliteBackhaulCatOk() (*SatelliteBackhaulCategory, bool)

GetSatelliteBackhaulCatOk returns a tuple with the SatelliteBackhaulCat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetSecondaryRatUsageDataReportContainer

func (o *SmContextUpdateData) GetSecondaryRatUsageDataReportContainer() []string

GetSecondaryRatUsageDataReportContainer returns the SecondaryRatUsageDataReportContainer field value if set, zero value otherwise.

func (*SmContextUpdateData) GetSecondaryRatUsageDataReportContainerOk

func (o *SmContextUpdateData) GetSecondaryRatUsageDataReportContainerOk() ([]string, bool)

GetSecondaryRatUsageDataReportContainerOk returns a tuple with the SecondaryRatUsageDataReportContainer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetServingNetwork

func (o *SmContextUpdateData) GetServingNetwork() PlmnIdNid

GetServingNetwork returns the ServingNetwork field value if set, zero value otherwise.

func (*SmContextUpdateData) GetServingNetworkOk

func (o *SmContextUpdateData) GetServingNetworkOk() (*PlmnIdNid, bool)

GetServingNetworkOk returns a tuple with the ServingNetwork field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetServingNfId

func (o *SmContextUpdateData) GetServingNfId() string

GetServingNfId returns the ServingNfId field value if set, zero value otherwise.

func (*SmContextUpdateData) GetServingNfIdOk

func (o *SmContextUpdateData) GetServingNfIdOk() (*string, bool)

GetServingNfIdOk returns a tuple with the ServingNfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetSkipN2PduSessionResRelInd

func (o *SmContextUpdateData) GetSkipN2PduSessionResRelInd() bool

GetSkipN2PduSessionResRelInd returns the SkipN2PduSessionResRelInd field value if set, zero value otherwise.

func (*SmContextUpdateData) GetSkipN2PduSessionResRelIndOk

func (o *SmContextUpdateData) GetSkipN2PduSessionResRelIndOk() (*bool, bool)

GetSkipN2PduSessionResRelIndOk returns a tuple with the SkipN2PduSessionResRelInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetSmContextStatusUri

func (o *SmContextUpdateData) GetSmContextStatusUri() string

GetSmContextStatusUri returns the SmContextStatusUri field value if set, zero value otherwise.

func (*SmContextUpdateData) GetSmContextStatusUriOk

func (o *SmContextUpdateData) GetSmContextStatusUriOk() (*string, bool)

GetSmContextStatusUriOk returns a tuple with the SmContextStatusUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetSmPolicyNotifyInd

func (o *SmContextUpdateData) GetSmPolicyNotifyInd() bool

GetSmPolicyNotifyInd returns the SmPolicyNotifyInd field value if set, zero value otherwise.

func (*SmContextUpdateData) GetSmPolicyNotifyIndOk

func (o *SmContextUpdateData) GetSmPolicyNotifyIndOk() (*bool, bool)

GetSmPolicyNotifyIndOk returns a tuple with the SmPolicyNotifyInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetSupportedFeatures

func (o *SmContextUpdateData) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*SmContextUpdateData) GetSupportedFeaturesOk

func (o *SmContextUpdateData) 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 (*SmContextUpdateData) GetTargetId

func (o *SmContextUpdateData) GetTargetId() NgRanTargetId

GetTargetId returns the TargetId field value if set, zero value otherwise.

func (*SmContextUpdateData) GetTargetIdOk

func (o *SmContextUpdateData) GetTargetIdOk() (*NgRanTargetId, bool)

GetTargetIdOk returns a tuple with the TargetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetTargetServingNfId

func (o *SmContextUpdateData) GetTargetServingNfId() string

GetTargetServingNfId returns the TargetServingNfId field value if set, zero value otherwise.

func (*SmContextUpdateData) GetTargetServingNfIdOk

func (o *SmContextUpdateData) GetTargetServingNfIdOk() (*string, bool)

GetTargetServingNfIdOk returns a tuple with the TargetServingNfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetToBeSwitched

func (o *SmContextUpdateData) GetToBeSwitched() bool

GetToBeSwitched returns the ToBeSwitched field value if set, zero value otherwise.

func (*SmContextUpdateData) GetToBeSwitchedOk

func (o *SmContextUpdateData) GetToBeSwitchedOk() (*bool, bool)

GetToBeSwitchedOk returns a tuple with the ToBeSwitched field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetTraceData

func (o *SmContextUpdateData) GetTraceData() TraceData

GetTraceData returns the TraceData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SmContextUpdateData) GetTraceDataOk

func (o *SmContextUpdateData) GetTraceDataOk() (*TraceData, bool)

GetTraceDataOk returns a tuple with the TraceData 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 (*SmContextUpdateData) GetUeLocation

func (o *SmContextUpdateData) GetUeLocation() UserLocation

GetUeLocation returns the UeLocation field value if set, zero value otherwise.

func (*SmContextUpdateData) GetUeLocationOk

func (o *SmContextUpdateData) GetUeLocationOk() (*UserLocation, bool)

GetUeLocationOk returns a tuple with the UeLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetUeTimeZone

func (o *SmContextUpdateData) GetUeTimeZone() string

GetUeTimeZone returns the UeTimeZone field value if set, zero value otherwise.

func (*SmContextUpdateData) GetUeTimeZoneOk

func (o *SmContextUpdateData) 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 (*SmContextUpdateData) GetUpCnxState

func (o *SmContextUpdateData) GetUpCnxState() UpCnxState

GetUpCnxState returns the UpCnxState field value if set, zero value otherwise.

func (*SmContextUpdateData) GetUpCnxStateOk

func (o *SmContextUpdateData) GetUpCnxStateOk() (*UpCnxState, bool)

GetUpCnxStateOk returns a tuple with the UpCnxState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) GetVar5gMmCauseValue

func (o *SmContextUpdateData) GetVar5gMmCauseValue() int32

GetVar5gMmCauseValue returns the Var5gMmCauseValue field value if set, zero value otherwise.

func (*SmContextUpdateData) GetVar5gMmCauseValueOk

func (o *SmContextUpdateData) GetVar5gMmCauseValueOk() (*int32, bool)

GetVar5gMmCauseValueOk returns a tuple with the Var5gMmCauseValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateData) HasAddUeLocation

func (o *SmContextUpdateData) HasAddUeLocation() bool

HasAddUeLocation returns a boolean if a field has been set.

func (*SmContextUpdateData) HasAdditionalAnType

func (o *SmContextUpdateData) HasAdditionalAnType() bool

HasAdditionalAnType returns a boolean if a field has been set.

func (*SmContextUpdateData) HasAnType

func (o *SmContextUpdateData) HasAnType() bool

HasAnType returns a boolean if a field has been set.

func (*SmContextUpdateData) HasAnTypeCanBeChanged

func (o *SmContextUpdateData) HasAnTypeCanBeChanged() bool

HasAnTypeCanBeChanged returns a boolean if a field has been set.

func (*SmContextUpdateData) HasAnTypeToReactivate

func (o *SmContextUpdateData) HasAnTypeToReactivate() bool

HasAnTypeToReactivate returns a boolean if a field has been set.

func (*SmContextUpdateData) HasBackupAmfInfo

func (o *SmContextUpdateData) HasBackupAmfInfo() bool

HasBackupAmfInfo returns a boolean if a field has been set.

func (*SmContextUpdateData) HasCause

func (o *SmContextUpdateData) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*SmContextUpdateData) HasCnBasedMt

func (o *SmContextUpdateData) HasCnBasedMt() bool

HasCnBasedMt returns a boolean if a field has been set.

func (*SmContextUpdateData) HasDataForwarding

func (o *SmContextUpdateData) HasDataForwarding() bool

HasDataForwarding returns a boolean if a field has been set.

func (*SmContextUpdateData) HasDdnFailureSubs

func (o *SmContextUpdateData) HasDdnFailureSubs() bool

HasDdnFailureSubs returns a boolean if a field has been set.

func (*SmContextUpdateData) HasEpsBearerSetup

func (o *SmContextUpdateData) HasEpsBearerSetup() bool

HasEpsBearerSetup returns a boolean if a field has been set.

func (*SmContextUpdateData) HasEpsInterworkingInd

func (o *SmContextUpdateData) HasEpsInterworkingInd() bool

HasEpsInterworkingInd returns a boolean if a field has been set.

func (*SmContextUpdateData) HasExemptionInd

func (o *SmContextUpdateData) HasExemptionInd() bool

HasExemptionInd returns a boolean if a field has been set.

func (*SmContextUpdateData) HasExtendedNasSmTimerInd

func (o *SmContextUpdateData) HasExtendedNasSmTimerInd() bool

HasExtendedNasSmTimerInd returns a boolean if a field has been set.

func (*SmContextUpdateData) HasFailedToBeSwitched

func (o *SmContextUpdateData) HasFailedToBeSwitched() bool

HasFailedToBeSwitched returns a boolean if a field has been set.

func (*SmContextUpdateData) HasForwardingBearerContexts

func (o *SmContextUpdateData) HasForwardingBearerContexts() bool

HasForwardingBearerContexts returns a boolean if a field has been set.

func (*SmContextUpdateData) HasForwardingFTeid

func (o *SmContextUpdateData) HasForwardingFTeid() bool

HasForwardingFTeid returns a boolean if a field has been set.

func (*SmContextUpdateData) HasGuami

func (o *SmContextUpdateData) HasGuami() bool

HasGuami returns a boolean if a field has been set.

func (*SmContextUpdateData) HasHoState

func (o *SmContextUpdateData) HasHoState() bool

HasHoState returns a boolean if a field has been set.

func (*SmContextUpdateData) HasMaNwUpgradeInd

func (o *SmContextUpdateData) HasMaNwUpgradeInd() bool

HasMaNwUpgradeInd returns a boolean if a field has been set.

func (*SmContextUpdateData) HasMaReleaseInd

func (o *SmContextUpdateData) HasMaReleaseInd() bool

HasMaReleaseInd returns a boolean if a field has been set.

func (*SmContextUpdateData) HasMaRequestInd

func (o *SmContextUpdateData) HasMaRequestInd() bool

HasMaRequestInd returns a boolean if a field has been set.

func (*SmContextUpdateData) HasMoExpDataCounter

func (o *SmContextUpdateData) HasMoExpDataCounter() bool

HasMoExpDataCounter returns a boolean if a field has been set.

func (*SmContextUpdateData) HasN1SmMsg

func (o *SmContextUpdateData) HasN1SmMsg() bool

HasN1SmMsg returns a boolean if a field has been set.

func (*SmContextUpdateData) HasN2SmInfo

func (o *SmContextUpdateData) HasN2SmInfo() bool

HasN2SmInfo returns a boolean if a field has been set.

func (*SmContextUpdateData) HasN2SmInfoExt1

func (o *SmContextUpdateData) HasN2SmInfoExt1() bool

HasN2SmInfoExt1 returns a boolean if a field has been set.

func (*SmContextUpdateData) HasN2SmInfoType

func (o *SmContextUpdateData) HasN2SmInfoType() bool

HasN2SmInfoType returns a boolean if a field has been set.

func (*SmContextUpdateData) HasN2SmInfoTypeExt1

func (o *SmContextUpdateData) HasN2SmInfoTypeExt1() bool

HasN2SmInfoTypeExt1 returns a boolean if a field has been set.

func (*SmContextUpdateData) HasN9DlForwardingTnlList

func (o *SmContextUpdateData) HasN9DlForwardingTnlList() bool

HasN9DlForwardingTnlList returns a boolean if a field has been set.

func (*SmContextUpdateData) HasN9DlForwardingTunnel

func (o *SmContextUpdateData) HasN9DlForwardingTunnel() bool

HasN9DlForwardingTunnel returns a boolean if a field has been set.

func (*SmContextUpdateData) HasN9ForwardingTunnel

func (o *SmContextUpdateData) HasN9ForwardingTunnel() bool

HasN9ForwardingTunnel returns a boolean if a field has been set.

func (*SmContextUpdateData) HasN9InactivityTimer

func (o *SmContextUpdateData) HasN9InactivityTimer() bool

HasN9InactivityTimer returns a boolean if a field has been set.

func (*SmContextUpdateData) HasN9UlForwardingTnlList

func (o *SmContextUpdateData) HasN9UlForwardingTnlList() bool

HasN9UlForwardingTnlList returns a boolean if a field has been set.

func (*SmContextUpdateData) HasNgApCause

func (o *SmContextUpdateData) HasNgApCause() bool

HasNgApCause returns a boolean if a field has been set.

func (*SmContextUpdateData) HasPcfUeCallbackInfo

func (o *SmContextUpdateData) HasPcfUeCallbackInfo() bool

HasPcfUeCallbackInfo returns a boolean if a field has been set.

func (*SmContextUpdateData) HasPei

func (o *SmContextUpdateData) HasPei() bool

HasPei returns a boolean if a field has been set.

func (*SmContextUpdateData) HasPresenceInLadn

func (o *SmContextUpdateData) HasPresenceInLadn() bool

HasPresenceInLadn returns a boolean if a field has been set.

func (*SmContextUpdateData) HasRatType

func (o *SmContextUpdateData) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (*SmContextUpdateData) HasRelease

func (o *SmContextUpdateData) HasRelease() bool

HasRelease returns a boolean if a field has been set.

func (*SmContextUpdateData) HasRevokeEbiList

func (o *SmContextUpdateData) HasRevokeEbiList() bool

HasRevokeEbiList returns a boolean if a field has been set.

func (*SmContextUpdateData) HasSNssai

func (o *SmContextUpdateData) HasSNssai() bool

HasSNssai returns a boolean if a field has been set.

func (*SmContextUpdateData) HasSatelliteBackhaulCat

func (o *SmContextUpdateData) HasSatelliteBackhaulCat() bool

HasSatelliteBackhaulCat returns a boolean if a field has been set.

func (*SmContextUpdateData) HasSecondaryRatUsageDataReportContainer

func (o *SmContextUpdateData) HasSecondaryRatUsageDataReportContainer() bool

HasSecondaryRatUsageDataReportContainer returns a boolean if a field has been set.

func (*SmContextUpdateData) HasServingNetwork

func (o *SmContextUpdateData) HasServingNetwork() bool

HasServingNetwork returns a boolean if a field has been set.

func (*SmContextUpdateData) HasServingNfId

func (o *SmContextUpdateData) HasServingNfId() bool

HasServingNfId returns a boolean if a field has been set.

func (*SmContextUpdateData) HasSkipN2PduSessionResRelInd

func (o *SmContextUpdateData) HasSkipN2PduSessionResRelInd() bool

HasSkipN2PduSessionResRelInd returns a boolean if a field has been set.

func (*SmContextUpdateData) HasSmContextStatusUri

func (o *SmContextUpdateData) HasSmContextStatusUri() bool

HasSmContextStatusUri returns a boolean if a field has been set.

func (*SmContextUpdateData) HasSmPolicyNotifyInd

func (o *SmContextUpdateData) HasSmPolicyNotifyInd() bool

HasSmPolicyNotifyInd returns a boolean if a field has been set.

func (*SmContextUpdateData) HasSupportedFeatures

func (o *SmContextUpdateData) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*SmContextUpdateData) HasTargetId

func (o *SmContextUpdateData) HasTargetId() bool

HasTargetId returns a boolean if a field has been set.

func (*SmContextUpdateData) HasTargetServingNfId

func (o *SmContextUpdateData) HasTargetServingNfId() bool

HasTargetServingNfId returns a boolean if a field has been set.

func (*SmContextUpdateData) HasToBeSwitched

func (o *SmContextUpdateData) HasToBeSwitched() bool

HasToBeSwitched returns a boolean if a field has been set.

func (*SmContextUpdateData) HasTraceData

func (o *SmContextUpdateData) HasTraceData() bool

HasTraceData returns a boolean if a field has been set.

func (*SmContextUpdateData) HasUeLocation

func (o *SmContextUpdateData) HasUeLocation() bool

HasUeLocation returns a boolean if a field has been set.

func (*SmContextUpdateData) HasUeTimeZone

func (o *SmContextUpdateData) HasUeTimeZone() bool

HasUeTimeZone returns a boolean if a field has been set.

func (*SmContextUpdateData) HasUpCnxState

func (o *SmContextUpdateData) HasUpCnxState() bool

HasUpCnxState returns a boolean if a field has been set.

func (*SmContextUpdateData) HasVar5gMmCauseValue

func (o *SmContextUpdateData) HasVar5gMmCauseValue() bool

HasVar5gMmCauseValue returns a boolean if a field has been set.

func (SmContextUpdateData) MarshalJSON

func (o SmContextUpdateData) MarshalJSON() ([]byte, error)

func (*SmContextUpdateData) SetAddUeLocation

func (o *SmContextUpdateData) SetAddUeLocation(v UserLocation)

SetAddUeLocation gets a reference to the given UserLocation and assigns it to the AddUeLocation field.

func (*SmContextUpdateData) SetAdditionalAnType

func (o *SmContextUpdateData) SetAdditionalAnType(v AccessType)

SetAdditionalAnType gets a reference to the given AccessType and assigns it to the AdditionalAnType field.

func (*SmContextUpdateData) SetAnType

func (o *SmContextUpdateData) SetAnType(v AccessType)

SetAnType gets a reference to the given AccessType and assigns it to the AnType field.

func (*SmContextUpdateData) SetAnTypeCanBeChanged

func (o *SmContextUpdateData) SetAnTypeCanBeChanged(v bool)

SetAnTypeCanBeChanged gets a reference to the given bool and assigns it to the AnTypeCanBeChanged field.

func (*SmContextUpdateData) SetAnTypeToReactivate

func (o *SmContextUpdateData) SetAnTypeToReactivate(v AccessType)

SetAnTypeToReactivate gets a reference to the given AccessType and assigns it to the AnTypeToReactivate field.

func (*SmContextUpdateData) SetBackupAmfInfo

func (o *SmContextUpdateData) SetBackupAmfInfo(v []BackupAmfInfo)

SetBackupAmfInfo gets a reference to the given []BackupAmfInfo and assigns it to the BackupAmfInfo field.

func (*SmContextUpdateData) SetCause

func (o *SmContextUpdateData) SetCause(v Cause)

SetCause gets a reference to the given Cause and assigns it to the Cause field.

func (*SmContextUpdateData) SetCnBasedMt

func (o *SmContextUpdateData) SetCnBasedMt(v bool)

SetCnBasedMt gets a reference to the given bool and assigns it to the CnBasedMt field.

func (*SmContextUpdateData) SetDataForwarding

func (o *SmContextUpdateData) SetDataForwarding(v bool)

SetDataForwarding gets a reference to the given bool and assigns it to the DataForwarding field.

func (*SmContextUpdateData) SetDdnFailureSubs

func (o *SmContextUpdateData) SetDdnFailureSubs(v DdnFailureSubs)

SetDdnFailureSubs gets a reference to the given DdnFailureSubs and assigns it to the DdnFailureSubs field.

func (*SmContextUpdateData) SetEpsBearerSetup

func (o *SmContextUpdateData) SetEpsBearerSetup(v []string)

SetEpsBearerSetup gets a reference to the given []string and assigns it to the EpsBearerSetup field.

func (*SmContextUpdateData) SetEpsInterworkingInd

func (o *SmContextUpdateData) SetEpsInterworkingInd(v EpsInterworkingIndication)

SetEpsInterworkingInd gets a reference to the given EpsInterworkingIndication and assigns it to the EpsInterworkingInd field.

func (*SmContextUpdateData) SetExemptionInd

func (o *SmContextUpdateData) SetExemptionInd(v ExemptionInd)

SetExemptionInd gets a reference to the given ExemptionInd and assigns it to the ExemptionInd field.

func (*SmContextUpdateData) SetExtendedNasSmTimerInd

func (o *SmContextUpdateData) SetExtendedNasSmTimerInd(v bool)

SetExtendedNasSmTimerInd gets a reference to the given bool and assigns it to the ExtendedNasSmTimerInd field.

func (*SmContextUpdateData) SetFailedToBeSwitched

func (o *SmContextUpdateData) SetFailedToBeSwitched(v bool)

SetFailedToBeSwitched gets a reference to the given bool and assigns it to the FailedToBeSwitched field.

func (*SmContextUpdateData) SetForwardingBearerContexts

func (o *SmContextUpdateData) SetForwardingBearerContexts(v []string)

SetForwardingBearerContexts gets a reference to the given []string and assigns it to the ForwardingBearerContexts field.

func (*SmContextUpdateData) SetForwardingFTeid

func (o *SmContextUpdateData) SetForwardingFTeid(v string)

SetForwardingFTeid gets a reference to the given string and assigns it to the ForwardingFTeid field.

func (*SmContextUpdateData) SetGuami

func (o *SmContextUpdateData) SetGuami(v Guami)

SetGuami gets a reference to the given Guami and assigns it to the Guami field.

func (*SmContextUpdateData) SetHoState

func (o *SmContextUpdateData) SetHoState(v HoState)

SetHoState gets a reference to the given HoState and assigns it to the HoState field.

func (*SmContextUpdateData) SetMaNwUpgradeInd

func (o *SmContextUpdateData) SetMaNwUpgradeInd(v bool)

SetMaNwUpgradeInd gets a reference to the given bool and assigns it to the MaNwUpgradeInd field.

func (*SmContextUpdateData) SetMaReleaseInd

func (o *SmContextUpdateData) SetMaReleaseInd(v MaReleaseIndication)

SetMaReleaseInd gets a reference to the given MaReleaseIndication and assigns it to the MaReleaseInd field.

func (*SmContextUpdateData) SetMaRequestInd

func (o *SmContextUpdateData) SetMaRequestInd(v bool)

SetMaRequestInd gets a reference to the given bool and assigns it to the MaRequestInd field.

func (*SmContextUpdateData) SetMoExpDataCounter

func (o *SmContextUpdateData) SetMoExpDataCounter(v MoExpDataCounter)

SetMoExpDataCounter gets a reference to the given MoExpDataCounter and assigns it to the MoExpDataCounter field.

func (*SmContextUpdateData) SetN1SmMsg

func (o *SmContextUpdateData) SetN1SmMsg(v RefToBinaryData)

SetN1SmMsg gets a reference to the given RefToBinaryData and assigns it to the N1SmMsg field.

func (*SmContextUpdateData) SetN2SmInfo

func (o *SmContextUpdateData) SetN2SmInfo(v RefToBinaryData)

SetN2SmInfo gets a reference to the given RefToBinaryData and assigns it to the N2SmInfo field.

func (*SmContextUpdateData) SetN2SmInfoExt1

func (o *SmContextUpdateData) SetN2SmInfoExt1(v RefToBinaryData)

SetN2SmInfoExt1 gets a reference to the given RefToBinaryData and assigns it to the N2SmInfoExt1 field.

func (*SmContextUpdateData) SetN2SmInfoType

func (o *SmContextUpdateData) SetN2SmInfoType(v N2SmInfoType)

SetN2SmInfoType gets a reference to the given N2SmInfoType and assigns it to the N2SmInfoType field.

func (*SmContextUpdateData) SetN2SmInfoTypeExt1

func (o *SmContextUpdateData) SetN2SmInfoTypeExt1(v N2SmInfoType)

SetN2SmInfoTypeExt1 gets a reference to the given N2SmInfoType and assigns it to the N2SmInfoTypeExt1 field.

func (*SmContextUpdateData) SetN9DlForwardingTnlList

func (o *SmContextUpdateData) SetN9DlForwardingTnlList(v []IndirectDataForwardingTunnelInfo)

SetN9DlForwardingTnlList gets a reference to the given []IndirectDataForwardingTunnelInfo and assigns it to the N9DlForwardingTnlList field.

func (*SmContextUpdateData) SetN9DlForwardingTunnel

func (o *SmContextUpdateData) SetN9DlForwardingTunnel(v TunnelInfo)

SetN9DlForwardingTunnel gets a reference to the given TunnelInfo and assigns it to the N9DlForwardingTunnel field.

func (*SmContextUpdateData) SetN9ForwardingTunnel

func (o *SmContextUpdateData) SetN9ForwardingTunnel(v TunnelInfo)

SetN9ForwardingTunnel gets a reference to the given TunnelInfo and assigns it to the N9ForwardingTunnel field.

func (*SmContextUpdateData) SetN9InactivityTimer

func (o *SmContextUpdateData) SetN9InactivityTimer(v int32)

SetN9InactivityTimer gets a reference to the given int32 and assigns it to the N9InactivityTimer field.

func (*SmContextUpdateData) SetN9UlForwardingTnlList

func (o *SmContextUpdateData) SetN9UlForwardingTnlList(v []IndirectDataForwardingTunnelInfo)

SetN9UlForwardingTnlList gets a reference to the given []IndirectDataForwardingTunnelInfo and assigns it to the N9UlForwardingTnlList field.

func (*SmContextUpdateData) SetNgApCause

func (o *SmContextUpdateData) SetNgApCause(v NgApCause)

SetNgApCause gets a reference to the given NgApCause and assigns it to the NgApCause field.

func (*SmContextUpdateData) SetPcfUeCallbackInfo

func (o *SmContextUpdateData) SetPcfUeCallbackInfo(v PcfUeCallbackInfo)

SetPcfUeCallbackInfo gets a reference to the given NullablePcfUeCallbackInfo and assigns it to the PcfUeCallbackInfo field.

func (*SmContextUpdateData) SetPcfUeCallbackInfoNil

func (o *SmContextUpdateData) SetPcfUeCallbackInfoNil()

SetPcfUeCallbackInfoNil sets the value for PcfUeCallbackInfo to be an explicit nil

func (*SmContextUpdateData) SetPei

func (o *SmContextUpdateData) SetPei(v string)

SetPei gets a reference to the given string and assigns it to the Pei field.

func (*SmContextUpdateData) SetPresenceInLadn

func (o *SmContextUpdateData) SetPresenceInLadn(v PresenceState)

SetPresenceInLadn gets a reference to the given PresenceState and assigns it to the PresenceInLadn field.

func (*SmContextUpdateData) SetRatType

func (o *SmContextUpdateData) SetRatType(v RatType)

SetRatType gets a reference to the given RatType and assigns it to the RatType field.

func (*SmContextUpdateData) SetRelease

func (o *SmContextUpdateData) SetRelease(v bool)

SetRelease gets a reference to the given bool and assigns it to the Release field.

func (*SmContextUpdateData) SetRevokeEbiList

func (o *SmContextUpdateData) SetRevokeEbiList(v []int32)

SetRevokeEbiList gets a reference to the given []int32 and assigns it to the RevokeEbiList field.

func (*SmContextUpdateData) SetSNssai

func (o *SmContextUpdateData) SetSNssai(v Snssai)

SetSNssai gets a reference to the given Snssai and assigns it to the SNssai field.

func (*SmContextUpdateData) SetSatelliteBackhaulCat

func (o *SmContextUpdateData) SetSatelliteBackhaulCat(v SatelliteBackhaulCategory)

SetSatelliteBackhaulCat gets a reference to the given SatelliteBackhaulCategory and assigns it to the SatelliteBackhaulCat field.

func (*SmContextUpdateData) SetSecondaryRatUsageDataReportContainer

func (o *SmContextUpdateData) SetSecondaryRatUsageDataReportContainer(v []string)

SetSecondaryRatUsageDataReportContainer gets a reference to the given []string and assigns it to the SecondaryRatUsageDataReportContainer field.

func (*SmContextUpdateData) SetServingNetwork

func (o *SmContextUpdateData) SetServingNetwork(v PlmnIdNid)

SetServingNetwork gets a reference to the given PlmnIdNid and assigns it to the ServingNetwork field.

func (*SmContextUpdateData) SetServingNfId

func (o *SmContextUpdateData) SetServingNfId(v string)

SetServingNfId gets a reference to the given string and assigns it to the ServingNfId field.

func (*SmContextUpdateData) SetSkipN2PduSessionResRelInd

func (o *SmContextUpdateData) SetSkipN2PduSessionResRelInd(v bool)

SetSkipN2PduSessionResRelInd gets a reference to the given bool and assigns it to the SkipN2PduSessionResRelInd field.

func (*SmContextUpdateData) SetSmContextStatusUri

func (o *SmContextUpdateData) SetSmContextStatusUri(v string)

SetSmContextStatusUri gets a reference to the given string and assigns it to the SmContextStatusUri field.

func (*SmContextUpdateData) SetSmPolicyNotifyInd

func (o *SmContextUpdateData) SetSmPolicyNotifyInd(v bool)

SetSmPolicyNotifyInd gets a reference to the given bool and assigns it to the SmPolicyNotifyInd field.

func (*SmContextUpdateData) SetSupportedFeatures

func (o *SmContextUpdateData) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*SmContextUpdateData) SetTargetId

func (o *SmContextUpdateData) SetTargetId(v NgRanTargetId)

SetTargetId gets a reference to the given NgRanTargetId and assigns it to the TargetId field.

func (*SmContextUpdateData) SetTargetServingNfId

func (o *SmContextUpdateData) SetTargetServingNfId(v string)

SetTargetServingNfId gets a reference to the given string and assigns it to the TargetServingNfId field.

func (*SmContextUpdateData) SetToBeSwitched

func (o *SmContextUpdateData) SetToBeSwitched(v bool)

SetToBeSwitched gets a reference to the given bool and assigns it to the ToBeSwitched field.

func (*SmContextUpdateData) SetTraceData

func (o *SmContextUpdateData) SetTraceData(v TraceData)

SetTraceData gets a reference to the given NullableTraceData and assigns it to the TraceData field.

func (*SmContextUpdateData) SetTraceDataNil

func (o *SmContextUpdateData) SetTraceDataNil()

SetTraceDataNil sets the value for TraceData to be an explicit nil

func (*SmContextUpdateData) SetUeLocation

func (o *SmContextUpdateData) SetUeLocation(v UserLocation)

SetUeLocation gets a reference to the given UserLocation and assigns it to the UeLocation field.

func (*SmContextUpdateData) SetUeTimeZone

func (o *SmContextUpdateData) SetUeTimeZone(v string)

SetUeTimeZone gets a reference to the given string and assigns it to the UeTimeZone field.

func (*SmContextUpdateData) SetUpCnxState

func (o *SmContextUpdateData) SetUpCnxState(v UpCnxState)

SetUpCnxState gets a reference to the given UpCnxState and assigns it to the UpCnxState field.

func (*SmContextUpdateData) SetVar5gMmCauseValue

func (o *SmContextUpdateData) SetVar5gMmCauseValue(v int32)

SetVar5gMmCauseValue gets a reference to the given int32 and assigns it to the Var5gMmCauseValue field.

func (SmContextUpdateData) ToMap

func (o SmContextUpdateData) ToMap() (map[string]interface{}, error)

func (*SmContextUpdateData) UnsetPcfUeCallbackInfo

func (o *SmContextUpdateData) UnsetPcfUeCallbackInfo()

UnsetPcfUeCallbackInfo ensures that no value is present for PcfUeCallbackInfo, not even an explicit nil

func (*SmContextUpdateData) UnsetTraceData

func (o *SmContextUpdateData) UnsetTraceData()

UnsetTraceData ensures that no value is present for TraceData, not even an explicit nil

type SmContextUpdateError

type SmContextUpdateError struct {
	Error        ExtProblemDetails `json:"error"`
	N1SmMsg      *RefToBinaryData  `json:"n1SmMsg,omitempty"`
	N2SmInfo     *RefToBinaryData  `json:"n2SmInfo,omitempty"`
	N2SmInfoType *N2SmInfoType     `json:"n2SmInfoType,omitempty"`
	UpCnxState   *UpCnxState       `json:"upCnxState,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	RecoveryTime *time.Time `json:"recoveryTime,omitempty"`
}

SmContextUpdateError Error within Update SM Context Response

func NewSmContextUpdateError

func NewSmContextUpdateError(error_ ExtProblemDetails) *SmContextUpdateError

NewSmContextUpdateError instantiates a new SmContextUpdateError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmContextUpdateErrorWithDefaults

func NewSmContextUpdateErrorWithDefaults() *SmContextUpdateError

NewSmContextUpdateErrorWithDefaults instantiates a new SmContextUpdateError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmContextUpdateError) GetError

GetError returns the Error field value

func (*SmContextUpdateError) GetErrorOk

func (o *SmContextUpdateError) GetErrorOk() (*ExtProblemDetails, bool)

GetErrorOk returns a tuple with the Error field value and a boolean to check if the value has been set.

func (*SmContextUpdateError) GetN1SmMsg

func (o *SmContextUpdateError) GetN1SmMsg() RefToBinaryData

GetN1SmMsg returns the N1SmMsg field value if set, zero value otherwise.

func (*SmContextUpdateError) GetN1SmMsgOk

func (o *SmContextUpdateError) GetN1SmMsgOk() (*RefToBinaryData, bool)

GetN1SmMsgOk returns a tuple with the N1SmMsg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateError) GetN2SmInfo

func (o *SmContextUpdateError) GetN2SmInfo() RefToBinaryData

GetN2SmInfo returns the N2SmInfo field value if set, zero value otherwise.

func (*SmContextUpdateError) GetN2SmInfoOk

func (o *SmContextUpdateError) GetN2SmInfoOk() (*RefToBinaryData, bool)

GetN2SmInfoOk returns a tuple with the N2SmInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateError) GetN2SmInfoType

func (o *SmContextUpdateError) GetN2SmInfoType() N2SmInfoType

GetN2SmInfoType returns the N2SmInfoType field value if set, zero value otherwise.

func (*SmContextUpdateError) GetN2SmInfoTypeOk

func (o *SmContextUpdateError) GetN2SmInfoTypeOk() (*N2SmInfoType, bool)

GetN2SmInfoTypeOk returns a tuple with the N2SmInfoType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateError) GetRecoveryTime

func (o *SmContextUpdateError) GetRecoveryTime() time.Time

GetRecoveryTime returns the RecoveryTime field value if set, zero value otherwise.

func (*SmContextUpdateError) GetRecoveryTimeOk

func (o *SmContextUpdateError) GetRecoveryTimeOk() (*time.Time, bool)

GetRecoveryTimeOk returns a tuple with the RecoveryTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateError) GetUpCnxState

func (o *SmContextUpdateError) GetUpCnxState() UpCnxState

GetUpCnxState returns the UpCnxState field value if set, zero value otherwise.

func (*SmContextUpdateError) GetUpCnxStateOk

func (o *SmContextUpdateError) GetUpCnxStateOk() (*UpCnxState, bool)

GetUpCnxStateOk returns a tuple with the UpCnxState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdateError) HasN1SmMsg

func (o *SmContextUpdateError) HasN1SmMsg() bool

HasN1SmMsg returns a boolean if a field has been set.

func (*SmContextUpdateError) HasN2SmInfo

func (o *SmContextUpdateError) HasN2SmInfo() bool

HasN2SmInfo returns a boolean if a field has been set.

func (*SmContextUpdateError) HasN2SmInfoType

func (o *SmContextUpdateError) HasN2SmInfoType() bool

HasN2SmInfoType returns a boolean if a field has been set.

func (*SmContextUpdateError) HasRecoveryTime

func (o *SmContextUpdateError) HasRecoveryTime() bool

HasRecoveryTime returns a boolean if a field has been set.

func (*SmContextUpdateError) HasUpCnxState

func (o *SmContextUpdateError) HasUpCnxState() bool

HasUpCnxState returns a boolean if a field has been set.

func (SmContextUpdateError) MarshalJSON

func (o SmContextUpdateError) MarshalJSON() ([]byte, error)

func (*SmContextUpdateError) SetError

func (o *SmContextUpdateError) SetError(v ExtProblemDetails)

SetError sets field value

func (*SmContextUpdateError) SetN1SmMsg

func (o *SmContextUpdateError) SetN1SmMsg(v RefToBinaryData)

SetN1SmMsg gets a reference to the given RefToBinaryData and assigns it to the N1SmMsg field.

func (*SmContextUpdateError) SetN2SmInfo

func (o *SmContextUpdateError) SetN2SmInfo(v RefToBinaryData)

SetN2SmInfo gets a reference to the given RefToBinaryData and assigns it to the N2SmInfo field.

func (*SmContextUpdateError) SetN2SmInfoType

func (o *SmContextUpdateError) SetN2SmInfoType(v N2SmInfoType)

SetN2SmInfoType gets a reference to the given N2SmInfoType and assigns it to the N2SmInfoType field.

func (*SmContextUpdateError) SetRecoveryTime

func (o *SmContextUpdateError) SetRecoveryTime(v time.Time)

SetRecoveryTime gets a reference to the given time.Time and assigns it to the RecoveryTime field.

func (*SmContextUpdateError) SetUpCnxState

func (o *SmContextUpdateError) SetUpCnxState(v UpCnxState)

SetUpCnxState gets a reference to the given UpCnxState and assigns it to the UpCnxState field.

func (SmContextUpdateError) ToMap

func (o SmContextUpdateError) ToMap() (map[string]interface{}, error)

type SmContextUpdatedData

type SmContextUpdatedData struct {
	UpCnxState            *UpCnxState                        `json:"upCnxState,omitempty"`
	HoState               *HoState                           `json:"hoState,omitempty"`
	ReleaseEbiList        []int32                            `json:"releaseEbiList,omitempty"`
	AllocatedEbiList      []EbiArpMapping                    `json:"allocatedEbiList,omitempty"`
	ModifiedEbiList       []EbiArpMapping                    `json:"modifiedEbiList,omitempty"`
	N1SmMsg               *RefToBinaryData                   `json:"n1SmMsg,omitempty"`
	N2SmInfo              *RefToBinaryData                   `json:"n2SmInfo,omitempty"`
	N2SmInfoType          *N2SmInfoType                      `json:"n2SmInfoType,omitempty"`
	EpsBearerSetup        []string                           `json:"epsBearerSetup,omitempty"`
	DataForwarding        *bool                              `json:"dataForwarding,omitempty"`
	N3DlForwardingTnlList []IndirectDataForwardingTunnelInfo `json:"n3DlForwardingTnlList,omitempty"`
	N3UlForwardingTnlList []IndirectDataForwardingTunnelInfo `json:"n3UlForwardingTnlList,omitempty"`
	N9UlForwardingTunnel  *TunnelInfo                        `json:"n9UlForwardingTunnel,omitempty"`
	Cause                 *Cause                             `json:"cause,omitempty"`
	MaAcceptedInd         *bool                              `json:"maAcceptedInd,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"`
	// string with format 'bytes' as defined in OpenAPI
	ForwardingFTeid          *string  `json:"forwardingFTeid,omitempty"`
	ForwardingBearerContexts []string `json:"forwardingBearerContexts,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.
	SelectedSmfId *string `json:"selectedSmfId,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.
	SelectedOldSmfId *string `json:"selectedOldSmfId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	InterPlmnApiRoot  *string            `json:"interPlmnApiRoot,omitempty"`
	AnchorSmfFeatures *AnchorSmfFeatures `json:"anchorSmfFeatures,omitempty"`
}

SmContextUpdatedData Data within Update SM Context Response

func NewSmContextUpdatedData

func NewSmContextUpdatedData() *SmContextUpdatedData

NewSmContextUpdatedData instantiates a new SmContextUpdatedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmContextUpdatedDataWithDefaults

func NewSmContextUpdatedDataWithDefaults() *SmContextUpdatedData

NewSmContextUpdatedDataWithDefaults instantiates a new SmContextUpdatedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmContextUpdatedData) GetAllocatedEbiList

func (o *SmContextUpdatedData) GetAllocatedEbiList() []EbiArpMapping

GetAllocatedEbiList returns the AllocatedEbiList field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetAllocatedEbiListOk

func (o *SmContextUpdatedData) GetAllocatedEbiListOk() ([]EbiArpMapping, bool)

GetAllocatedEbiListOk returns a tuple with the AllocatedEbiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetAnchorSmfFeatures

func (o *SmContextUpdatedData) GetAnchorSmfFeatures() AnchorSmfFeatures

GetAnchorSmfFeatures returns the AnchorSmfFeatures field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetAnchorSmfFeaturesOk

func (o *SmContextUpdatedData) GetAnchorSmfFeaturesOk() (*AnchorSmfFeatures, bool)

GetAnchorSmfFeaturesOk returns a tuple with the AnchorSmfFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetCause

func (o *SmContextUpdatedData) GetCause() Cause

GetCause returns the Cause field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetCauseOk

func (o *SmContextUpdatedData) GetCauseOk() (*Cause, 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 (*SmContextUpdatedData) GetDataForwarding

func (o *SmContextUpdatedData) GetDataForwarding() bool

GetDataForwarding returns the DataForwarding field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetDataForwardingOk

func (o *SmContextUpdatedData) GetDataForwardingOk() (*bool, bool)

GetDataForwardingOk returns a tuple with the DataForwarding field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetEpsBearerSetup

func (o *SmContextUpdatedData) GetEpsBearerSetup() []string

GetEpsBearerSetup returns the EpsBearerSetup field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetEpsBearerSetupOk

func (o *SmContextUpdatedData) GetEpsBearerSetupOk() ([]string, bool)

GetEpsBearerSetupOk returns a tuple with the EpsBearerSetup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetForwardingBearerContexts

func (o *SmContextUpdatedData) GetForwardingBearerContexts() []string

GetForwardingBearerContexts returns the ForwardingBearerContexts field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetForwardingBearerContextsOk

func (o *SmContextUpdatedData) GetForwardingBearerContextsOk() ([]string, bool)

GetForwardingBearerContextsOk returns a tuple with the ForwardingBearerContexts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetForwardingFTeid

func (o *SmContextUpdatedData) GetForwardingFTeid() string

GetForwardingFTeid returns the ForwardingFTeid field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetForwardingFTeidOk

func (o *SmContextUpdatedData) GetForwardingFTeidOk() (*string, bool)

GetForwardingFTeidOk returns a tuple with the ForwardingFTeid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetHoState

func (o *SmContextUpdatedData) GetHoState() HoState

GetHoState returns the HoState field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetHoStateOk

func (o *SmContextUpdatedData) GetHoStateOk() (*HoState, bool)

GetHoStateOk returns a tuple with the HoState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetInterPlmnApiRoot

func (o *SmContextUpdatedData) GetInterPlmnApiRoot() string

GetInterPlmnApiRoot returns the InterPlmnApiRoot field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetInterPlmnApiRootOk

func (o *SmContextUpdatedData) GetInterPlmnApiRootOk() (*string, bool)

GetInterPlmnApiRootOk returns a tuple with the InterPlmnApiRoot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetMaAcceptedInd

func (o *SmContextUpdatedData) GetMaAcceptedInd() bool

GetMaAcceptedInd returns the MaAcceptedInd field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetMaAcceptedIndOk

func (o *SmContextUpdatedData) GetMaAcceptedIndOk() (*bool, bool)

GetMaAcceptedIndOk returns a tuple with the MaAcceptedInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetModifiedEbiList

func (o *SmContextUpdatedData) GetModifiedEbiList() []EbiArpMapping

GetModifiedEbiList returns the ModifiedEbiList field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetModifiedEbiListOk

func (o *SmContextUpdatedData) GetModifiedEbiListOk() ([]EbiArpMapping, bool)

GetModifiedEbiListOk returns a tuple with the ModifiedEbiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetN1SmMsg

func (o *SmContextUpdatedData) GetN1SmMsg() RefToBinaryData

GetN1SmMsg returns the N1SmMsg field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetN1SmMsgOk

func (o *SmContextUpdatedData) GetN1SmMsgOk() (*RefToBinaryData, bool)

GetN1SmMsgOk returns a tuple with the N1SmMsg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetN2SmInfo

func (o *SmContextUpdatedData) GetN2SmInfo() RefToBinaryData

GetN2SmInfo returns the N2SmInfo field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetN2SmInfoOk

func (o *SmContextUpdatedData) GetN2SmInfoOk() (*RefToBinaryData, bool)

GetN2SmInfoOk returns a tuple with the N2SmInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetN2SmInfoType

func (o *SmContextUpdatedData) GetN2SmInfoType() N2SmInfoType

GetN2SmInfoType returns the N2SmInfoType field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetN2SmInfoTypeOk

func (o *SmContextUpdatedData) GetN2SmInfoTypeOk() (*N2SmInfoType, bool)

GetN2SmInfoTypeOk returns a tuple with the N2SmInfoType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetN3DlForwardingTnlList

func (o *SmContextUpdatedData) GetN3DlForwardingTnlList() []IndirectDataForwardingTunnelInfo

GetN3DlForwardingTnlList returns the N3DlForwardingTnlList field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetN3DlForwardingTnlListOk

func (o *SmContextUpdatedData) GetN3DlForwardingTnlListOk() ([]IndirectDataForwardingTunnelInfo, bool)

GetN3DlForwardingTnlListOk returns a tuple with the N3DlForwardingTnlList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetN3UlForwardingTnlList

func (o *SmContextUpdatedData) GetN3UlForwardingTnlList() []IndirectDataForwardingTunnelInfo

GetN3UlForwardingTnlList returns the N3UlForwardingTnlList field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetN3UlForwardingTnlListOk

func (o *SmContextUpdatedData) GetN3UlForwardingTnlListOk() ([]IndirectDataForwardingTunnelInfo, bool)

GetN3UlForwardingTnlListOk returns a tuple with the N3UlForwardingTnlList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetN9UlForwardingTunnel

func (o *SmContextUpdatedData) GetN9UlForwardingTunnel() TunnelInfo

GetN9UlForwardingTunnel returns the N9UlForwardingTunnel field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetN9UlForwardingTunnelOk

func (o *SmContextUpdatedData) GetN9UlForwardingTunnelOk() (*TunnelInfo, bool)

GetN9UlForwardingTunnelOk returns a tuple with the N9UlForwardingTunnel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetReleaseEbiList

func (o *SmContextUpdatedData) GetReleaseEbiList() []int32

GetReleaseEbiList returns the ReleaseEbiList field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetReleaseEbiListOk

func (o *SmContextUpdatedData) GetReleaseEbiListOk() ([]int32, bool)

GetReleaseEbiListOk returns a tuple with the ReleaseEbiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetSelectedOldSmfId

func (o *SmContextUpdatedData) GetSelectedOldSmfId() string

GetSelectedOldSmfId returns the SelectedOldSmfId field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetSelectedOldSmfIdOk

func (o *SmContextUpdatedData) GetSelectedOldSmfIdOk() (*string, bool)

GetSelectedOldSmfIdOk returns a tuple with the SelectedOldSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetSelectedSmfId

func (o *SmContextUpdatedData) GetSelectedSmfId() string

GetSelectedSmfId returns the SelectedSmfId field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetSelectedSmfIdOk

func (o *SmContextUpdatedData) GetSelectedSmfIdOk() (*string, bool)

GetSelectedSmfIdOk returns a tuple with the SelectedSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) GetSupportedFeatures

func (o *SmContextUpdatedData) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetSupportedFeaturesOk

func (o *SmContextUpdatedData) 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 (*SmContextUpdatedData) GetUpCnxState

func (o *SmContextUpdatedData) GetUpCnxState() UpCnxState

GetUpCnxState returns the UpCnxState field value if set, zero value otherwise.

func (*SmContextUpdatedData) GetUpCnxStateOk

func (o *SmContextUpdatedData) GetUpCnxStateOk() (*UpCnxState, bool)

GetUpCnxStateOk returns a tuple with the UpCnxState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmContextUpdatedData) HasAllocatedEbiList

func (o *SmContextUpdatedData) HasAllocatedEbiList() bool

HasAllocatedEbiList returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasAnchorSmfFeatures

func (o *SmContextUpdatedData) HasAnchorSmfFeatures() bool

HasAnchorSmfFeatures returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasCause

func (o *SmContextUpdatedData) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasDataForwarding

func (o *SmContextUpdatedData) HasDataForwarding() bool

HasDataForwarding returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasEpsBearerSetup

func (o *SmContextUpdatedData) HasEpsBearerSetup() bool

HasEpsBearerSetup returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasForwardingBearerContexts

func (o *SmContextUpdatedData) HasForwardingBearerContexts() bool

HasForwardingBearerContexts returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasForwardingFTeid

func (o *SmContextUpdatedData) HasForwardingFTeid() bool

HasForwardingFTeid returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasHoState

func (o *SmContextUpdatedData) HasHoState() bool

HasHoState returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasInterPlmnApiRoot

func (o *SmContextUpdatedData) HasInterPlmnApiRoot() bool

HasInterPlmnApiRoot returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasMaAcceptedInd

func (o *SmContextUpdatedData) HasMaAcceptedInd() bool

HasMaAcceptedInd returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasModifiedEbiList

func (o *SmContextUpdatedData) HasModifiedEbiList() bool

HasModifiedEbiList returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasN1SmMsg

func (o *SmContextUpdatedData) HasN1SmMsg() bool

HasN1SmMsg returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasN2SmInfo

func (o *SmContextUpdatedData) HasN2SmInfo() bool

HasN2SmInfo returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasN2SmInfoType

func (o *SmContextUpdatedData) HasN2SmInfoType() bool

HasN2SmInfoType returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasN3DlForwardingTnlList

func (o *SmContextUpdatedData) HasN3DlForwardingTnlList() bool

HasN3DlForwardingTnlList returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasN3UlForwardingTnlList

func (o *SmContextUpdatedData) HasN3UlForwardingTnlList() bool

HasN3UlForwardingTnlList returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasN9UlForwardingTunnel

func (o *SmContextUpdatedData) HasN9UlForwardingTunnel() bool

HasN9UlForwardingTunnel returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasReleaseEbiList

func (o *SmContextUpdatedData) HasReleaseEbiList() bool

HasReleaseEbiList returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasSelectedOldSmfId

func (o *SmContextUpdatedData) HasSelectedOldSmfId() bool

HasSelectedOldSmfId returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasSelectedSmfId

func (o *SmContextUpdatedData) HasSelectedSmfId() bool

HasSelectedSmfId returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasSupportedFeatures

func (o *SmContextUpdatedData) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*SmContextUpdatedData) HasUpCnxState

func (o *SmContextUpdatedData) HasUpCnxState() bool

HasUpCnxState returns a boolean if a field has been set.

func (SmContextUpdatedData) MarshalJSON

func (o SmContextUpdatedData) MarshalJSON() ([]byte, error)

func (*SmContextUpdatedData) SetAllocatedEbiList

func (o *SmContextUpdatedData) SetAllocatedEbiList(v []EbiArpMapping)

SetAllocatedEbiList gets a reference to the given []EbiArpMapping and assigns it to the AllocatedEbiList field.

func (*SmContextUpdatedData) SetAnchorSmfFeatures

func (o *SmContextUpdatedData) SetAnchorSmfFeatures(v AnchorSmfFeatures)

SetAnchorSmfFeatures gets a reference to the given AnchorSmfFeatures and assigns it to the AnchorSmfFeatures field.

func (*SmContextUpdatedData) SetCause

func (o *SmContextUpdatedData) SetCause(v Cause)

SetCause gets a reference to the given Cause and assigns it to the Cause field.

func (*SmContextUpdatedData) SetDataForwarding

func (o *SmContextUpdatedData) SetDataForwarding(v bool)

SetDataForwarding gets a reference to the given bool and assigns it to the DataForwarding field.

func (*SmContextUpdatedData) SetEpsBearerSetup

func (o *SmContextUpdatedData) SetEpsBearerSetup(v []string)

SetEpsBearerSetup gets a reference to the given []string and assigns it to the EpsBearerSetup field.

func (*SmContextUpdatedData) SetForwardingBearerContexts

func (o *SmContextUpdatedData) SetForwardingBearerContexts(v []string)

SetForwardingBearerContexts gets a reference to the given []string and assigns it to the ForwardingBearerContexts field.

func (*SmContextUpdatedData) SetForwardingFTeid

func (o *SmContextUpdatedData) SetForwardingFTeid(v string)

SetForwardingFTeid gets a reference to the given string and assigns it to the ForwardingFTeid field.

func (*SmContextUpdatedData) SetHoState

func (o *SmContextUpdatedData) SetHoState(v HoState)

SetHoState gets a reference to the given HoState and assigns it to the HoState field.

func (*SmContextUpdatedData) SetInterPlmnApiRoot

func (o *SmContextUpdatedData) SetInterPlmnApiRoot(v string)

SetInterPlmnApiRoot gets a reference to the given string and assigns it to the InterPlmnApiRoot field.

func (*SmContextUpdatedData) SetMaAcceptedInd

func (o *SmContextUpdatedData) SetMaAcceptedInd(v bool)

SetMaAcceptedInd gets a reference to the given bool and assigns it to the MaAcceptedInd field.

func (*SmContextUpdatedData) SetModifiedEbiList

func (o *SmContextUpdatedData) SetModifiedEbiList(v []EbiArpMapping)

SetModifiedEbiList gets a reference to the given []EbiArpMapping and assigns it to the ModifiedEbiList field.

func (*SmContextUpdatedData) SetN1SmMsg

func (o *SmContextUpdatedData) SetN1SmMsg(v RefToBinaryData)

SetN1SmMsg gets a reference to the given RefToBinaryData and assigns it to the N1SmMsg field.

func (*SmContextUpdatedData) SetN2SmInfo

func (o *SmContextUpdatedData) SetN2SmInfo(v RefToBinaryData)

SetN2SmInfo gets a reference to the given RefToBinaryData and assigns it to the N2SmInfo field.

func (*SmContextUpdatedData) SetN2SmInfoType

func (o *SmContextUpdatedData) SetN2SmInfoType(v N2SmInfoType)

SetN2SmInfoType gets a reference to the given N2SmInfoType and assigns it to the N2SmInfoType field.

func (*SmContextUpdatedData) SetN3DlForwardingTnlList

func (o *SmContextUpdatedData) SetN3DlForwardingTnlList(v []IndirectDataForwardingTunnelInfo)

SetN3DlForwardingTnlList gets a reference to the given []IndirectDataForwardingTunnelInfo and assigns it to the N3DlForwardingTnlList field.

func (*SmContextUpdatedData) SetN3UlForwardingTnlList

func (o *SmContextUpdatedData) SetN3UlForwardingTnlList(v []IndirectDataForwardingTunnelInfo)

SetN3UlForwardingTnlList gets a reference to the given []IndirectDataForwardingTunnelInfo and assigns it to the N3UlForwardingTnlList field.

func (*SmContextUpdatedData) SetN9UlForwardingTunnel

func (o *SmContextUpdatedData) SetN9UlForwardingTunnel(v TunnelInfo)

SetN9UlForwardingTunnel gets a reference to the given TunnelInfo and assigns it to the N9UlForwardingTunnel field.

func (*SmContextUpdatedData) SetReleaseEbiList

func (o *SmContextUpdatedData) SetReleaseEbiList(v []int32)

SetReleaseEbiList gets a reference to the given []int32 and assigns it to the ReleaseEbiList field.

func (*SmContextUpdatedData) SetSelectedOldSmfId

func (o *SmContextUpdatedData) SetSelectedOldSmfId(v string)

SetSelectedOldSmfId gets a reference to the given string and assigns it to the SelectedOldSmfId field.

func (*SmContextUpdatedData) SetSelectedSmfId

func (o *SmContextUpdatedData) SetSelectedSmfId(v string)

SetSelectedSmfId gets a reference to the given string and assigns it to the SelectedSmfId field.

func (*SmContextUpdatedData) SetSupportedFeatures

func (o *SmContextUpdatedData) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*SmContextUpdatedData) SetUpCnxState

func (o *SmContextUpdatedData) SetUpCnxState(v UpCnxState)

SetUpCnxState gets a reference to the given UpCnxState and assigns it to the UpCnxState field.

func (SmContextUpdatedData) ToMap

func (o SmContextUpdatedData) ToMap() (map[string]interface{}, error)

type SmallDataRateStatus

type SmallDataRateStatus struct {
	// When present, it shall contain the number of packets the UE is allowed to send uplink in the given time unit for the given PDU session (see clause 5.31.14.3 of 3GPP TS 23.501.
	RemainPacketsUl *int32 `json:"remainPacketsUl,omitempty"`
	// When present it shall contain the number of packets the AF is allowed to send downlink in the given time unit for the given PDU session (see clause 5.31.14.3 of 3GPP TS 23.501.
	RemainPacketsDl *int32 `json:"remainPacketsDl,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	ValidityTime *time.Time `json:"validityTime,omitempty"`
	// When present, it shall indicate number of additional exception reports the UE is allowed to send uplink in the given time  unit for  the given PDU session (see clause 5.31.14.3 of 3GPP TS 23.501.
	RemainExReportsUl *int32 `json:"remainExReportsUl,omitempty"`
	// When present, it shall indicate number of additional exception reports the AF is allowed to send downlink  in the given time unit for the given PDU session (see clause 5.31.14.3 in 3GPP TS 23.501
	RemainExReportsDl *int32 `json:"remainExReportsDl,omitempty"`
}

SmallDataRateStatus It indicates theSmall Data Rate Control Status

func NewSmallDataRateStatus

func NewSmallDataRateStatus() *SmallDataRateStatus

NewSmallDataRateStatus instantiates a new SmallDataRateStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSmallDataRateStatusWithDefaults

func NewSmallDataRateStatusWithDefaults() *SmallDataRateStatus

NewSmallDataRateStatusWithDefaults instantiates a new SmallDataRateStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SmallDataRateStatus) GetRemainExReportsDl

func (o *SmallDataRateStatus) GetRemainExReportsDl() int32

GetRemainExReportsDl returns the RemainExReportsDl field value if set, zero value otherwise.

func (*SmallDataRateStatus) GetRemainExReportsDlOk

func (o *SmallDataRateStatus) GetRemainExReportsDlOk() (*int32, bool)

GetRemainExReportsDlOk returns a tuple with the RemainExReportsDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmallDataRateStatus) GetRemainExReportsUl

func (o *SmallDataRateStatus) GetRemainExReportsUl() int32

GetRemainExReportsUl returns the RemainExReportsUl field value if set, zero value otherwise.

func (*SmallDataRateStatus) GetRemainExReportsUlOk

func (o *SmallDataRateStatus) GetRemainExReportsUlOk() (*int32, bool)

GetRemainExReportsUlOk returns a tuple with the RemainExReportsUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmallDataRateStatus) GetRemainPacketsDl

func (o *SmallDataRateStatus) GetRemainPacketsDl() int32

GetRemainPacketsDl returns the RemainPacketsDl field value if set, zero value otherwise.

func (*SmallDataRateStatus) GetRemainPacketsDlOk

func (o *SmallDataRateStatus) GetRemainPacketsDlOk() (*int32, bool)

GetRemainPacketsDlOk returns a tuple with the RemainPacketsDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmallDataRateStatus) GetRemainPacketsUl

func (o *SmallDataRateStatus) GetRemainPacketsUl() int32

GetRemainPacketsUl returns the RemainPacketsUl field value if set, zero value otherwise.

func (*SmallDataRateStatus) GetRemainPacketsUlOk

func (o *SmallDataRateStatus) GetRemainPacketsUlOk() (*int32, bool)

GetRemainPacketsUlOk returns a tuple with the RemainPacketsUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmallDataRateStatus) GetValidityTime

func (o *SmallDataRateStatus) GetValidityTime() time.Time

GetValidityTime returns the ValidityTime field value if set, zero value otherwise.

func (*SmallDataRateStatus) GetValidityTimeOk

func (o *SmallDataRateStatus) GetValidityTimeOk() (*time.Time, bool)

GetValidityTimeOk returns a tuple with the ValidityTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SmallDataRateStatus) HasRemainExReportsDl

func (o *SmallDataRateStatus) HasRemainExReportsDl() bool

HasRemainExReportsDl returns a boolean if a field has been set.

func (*SmallDataRateStatus) HasRemainExReportsUl

func (o *SmallDataRateStatus) HasRemainExReportsUl() bool

HasRemainExReportsUl returns a boolean if a field has been set.

func (*SmallDataRateStatus) HasRemainPacketsDl

func (o *SmallDataRateStatus) HasRemainPacketsDl() bool

HasRemainPacketsDl returns a boolean if a field has been set.

func (*SmallDataRateStatus) HasRemainPacketsUl

func (o *SmallDataRateStatus) HasRemainPacketsUl() bool

HasRemainPacketsUl returns a boolean if a field has been set.

func (*SmallDataRateStatus) HasValidityTime

func (o *SmallDataRateStatus) HasValidityTime() bool

HasValidityTime returns a boolean if a field has been set.

func (SmallDataRateStatus) MarshalJSON

func (o SmallDataRateStatus) MarshalJSON() ([]byte, error)

func (*SmallDataRateStatus) SetRemainExReportsDl

func (o *SmallDataRateStatus) SetRemainExReportsDl(v int32)

SetRemainExReportsDl gets a reference to the given int32 and assigns it to the RemainExReportsDl field.

func (*SmallDataRateStatus) SetRemainExReportsUl

func (o *SmallDataRateStatus) SetRemainExReportsUl(v int32)

SetRemainExReportsUl gets a reference to the given int32 and assigns it to the RemainExReportsUl field.

func (*SmallDataRateStatus) SetRemainPacketsDl

func (o *SmallDataRateStatus) SetRemainPacketsDl(v int32)

SetRemainPacketsDl gets a reference to the given int32 and assigns it to the RemainPacketsDl field.

func (*SmallDataRateStatus) SetRemainPacketsUl

func (o *SmallDataRateStatus) SetRemainPacketsUl(v int32)

SetRemainPacketsUl gets a reference to the given int32 and assigns it to the RemainPacketsUl field.

func (*SmallDataRateStatus) SetValidityTime

func (o *SmallDataRateStatus) SetValidityTime(v time.Time)

SetValidityTime gets a reference to the given time.Time and assigns it to the ValidityTime field.

func (SmallDataRateStatus) ToMap

func (o SmallDataRateStatus) ToMap() (map[string]interface{}, error)

type SmfSelectionType

type SmfSelectionType struct {
	String *string
}

SmfSelectionType Smf Selection Type. Possible values are - CURRENT_PDU_SESSION - NEXT_PDU_SESSION

func (*SmfSelectionType) MarshalJSON

func (src *SmfSelectionType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SmfSelectionType) UnmarshalJSON

func (dst *SmfSelectionType) 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 StationaryIndication

type StationaryIndication struct {
	String *string
}

StationaryIndication Possible values are: - STATIONARY: Identifies the UE is stationary - MOBILE: Identifies the UE is mobile

func (*StationaryIndication) MarshalJSON

func (src *StationaryIndication) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*StationaryIndication) UnmarshalJSON

func (dst *StationaryIndication) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type StatusInfo

type StatusInfo struct {
	ResourceStatus    ResourceStatus     `json:"resourceStatus"`
	Cause             *Cause             `json:"cause,omitempty"`
	CnAssistedRanPara *CnAssistedRanPara `json:"cnAssistedRanPara,omitempty"`
	AnType            *AccessType        `json:"anType,omitempty"`
}

StatusInfo Status of SM context or of PDU session

func NewStatusInfo

func NewStatusInfo(resourceStatus ResourceStatus) *StatusInfo

NewStatusInfo instantiates a new StatusInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStatusInfoWithDefaults

func NewStatusInfoWithDefaults() *StatusInfo

NewStatusInfoWithDefaults instantiates a new StatusInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StatusInfo) GetAnType

func (o *StatusInfo) GetAnType() AccessType

GetAnType returns the AnType field value if set, zero value otherwise.

func (*StatusInfo) GetAnTypeOk

func (o *StatusInfo) GetAnTypeOk() (*AccessType, bool)

GetAnTypeOk returns a tuple with the AnType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatusInfo) GetCause

func (o *StatusInfo) GetCause() Cause

GetCause returns the Cause field value if set, zero value otherwise.

func (*StatusInfo) GetCauseOk

func (o *StatusInfo) GetCauseOk() (*Cause, 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 (*StatusInfo) GetCnAssistedRanPara

func (o *StatusInfo) GetCnAssistedRanPara() CnAssistedRanPara

GetCnAssistedRanPara returns the CnAssistedRanPara field value if set, zero value otherwise.

func (*StatusInfo) GetCnAssistedRanParaOk

func (o *StatusInfo) GetCnAssistedRanParaOk() (*CnAssistedRanPara, bool)

GetCnAssistedRanParaOk returns a tuple with the CnAssistedRanPara field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatusInfo) GetResourceStatus

func (o *StatusInfo) GetResourceStatus() ResourceStatus

GetResourceStatus returns the ResourceStatus field value

func (*StatusInfo) GetResourceStatusOk

func (o *StatusInfo) GetResourceStatusOk() (*ResourceStatus, bool)

GetResourceStatusOk returns a tuple with the ResourceStatus field value and a boolean to check if the value has been set.

func (*StatusInfo) HasAnType

func (o *StatusInfo) HasAnType() bool

HasAnType returns a boolean if a field has been set.

func (*StatusInfo) HasCause

func (o *StatusInfo) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*StatusInfo) HasCnAssistedRanPara

func (o *StatusInfo) HasCnAssistedRanPara() bool

HasCnAssistedRanPara returns a boolean if a field has been set.

func (StatusInfo) MarshalJSON

func (o StatusInfo) MarshalJSON() ([]byte, error)

func (*StatusInfo) SetAnType

func (o *StatusInfo) SetAnType(v AccessType)

SetAnType gets a reference to the given AccessType and assigns it to the AnType field.

func (*StatusInfo) SetCause

func (o *StatusInfo) SetCause(v Cause)

SetCause gets a reference to the given Cause and assigns it to the Cause field.

func (*StatusInfo) SetCnAssistedRanPara

func (o *StatusInfo) SetCnAssistedRanPara(v CnAssistedRanPara)

SetCnAssistedRanPara gets a reference to the given CnAssistedRanPara and assigns it to the CnAssistedRanPara field.

func (*StatusInfo) SetResourceStatus

func (o *StatusInfo) SetResourceStatus(v ResourceStatus)

SetResourceStatus sets field value

func (StatusInfo) ToMap

func (o StatusInfo) ToMap() (map[string]interface{}, error)

type StatusNotification

type StatusNotification struct {
	StatusInfo          StatusInfo           `json:"statusInfo"`
	SmallDataRateStatus *SmallDataRateStatus `json:"smallDataRateStatus,omitempty"`
	ApnRateStatus       *ApnRateStatus       `json:"apnRateStatus,omitempty"`
	TargetDnaiInfo      *TargetDnaiInfo      `json:"targetDnaiInfo,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	OldPduSessionRef *string `json:"oldPduSessionRef,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.
	NewSmfId      *string        `json:"newSmfId,omitempty"`
	EpsPdnCnxInfo *EpsPdnCnxInfo `json:"epsPdnCnxInfo,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	InterPlmnApiRoot *string `json:"interPlmnApiRoot,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	IntraPlmnApiRoot *string `json:"intraPlmnApiRoot,omitempty"`
}

StatusNotification Data within Notify Status Request

func NewStatusNotification

func NewStatusNotification(statusInfo StatusInfo) *StatusNotification

NewStatusNotification instantiates a new StatusNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStatusNotificationWithDefaults

func NewStatusNotificationWithDefaults() *StatusNotification

NewStatusNotificationWithDefaults instantiates a new StatusNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StatusNotification) GetApnRateStatus

func (o *StatusNotification) GetApnRateStatus() ApnRateStatus

GetApnRateStatus returns the ApnRateStatus field value if set, zero value otherwise.

func (*StatusNotification) GetApnRateStatusOk

func (o *StatusNotification) GetApnRateStatusOk() (*ApnRateStatus, bool)

GetApnRateStatusOk returns a tuple with the ApnRateStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatusNotification) GetEpsPdnCnxInfo

func (o *StatusNotification) GetEpsPdnCnxInfo() EpsPdnCnxInfo

GetEpsPdnCnxInfo returns the EpsPdnCnxInfo field value if set, zero value otherwise.

func (*StatusNotification) GetEpsPdnCnxInfoOk

func (o *StatusNotification) GetEpsPdnCnxInfoOk() (*EpsPdnCnxInfo, bool)

GetEpsPdnCnxInfoOk returns a tuple with the EpsPdnCnxInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatusNotification) GetInterPlmnApiRoot

func (o *StatusNotification) GetInterPlmnApiRoot() string

GetInterPlmnApiRoot returns the InterPlmnApiRoot field value if set, zero value otherwise.

func (*StatusNotification) GetInterPlmnApiRootOk

func (o *StatusNotification) GetInterPlmnApiRootOk() (*string, bool)

GetInterPlmnApiRootOk returns a tuple with the InterPlmnApiRoot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatusNotification) GetIntraPlmnApiRoot

func (o *StatusNotification) GetIntraPlmnApiRoot() string

GetIntraPlmnApiRoot returns the IntraPlmnApiRoot field value if set, zero value otherwise.

func (*StatusNotification) GetIntraPlmnApiRootOk

func (o *StatusNotification) GetIntraPlmnApiRootOk() (*string, bool)

GetIntraPlmnApiRootOk returns a tuple with the IntraPlmnApiRoot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatusNotification) GetNewSmfId

func (o *StatusNotification) GetNewSmfId() string

GetNewSmfId returns the NewSmfId field value if set, zero value otherwise.

func (*StatusNotification) GetNewSmfIdOk

func (o *StatusNotification) GetNewSmfIdOk() (*string, bool)

GetNewSmfIdOk returns a tuple with the NewSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatusNotification) GetOldPduSessionRef

func (o *StatusNotification) GetOldPduSessionRef() string

GetOldPduSessionRef returns the OldPduSessionRef field value if set, zero value otherwise.

func (*StatusNotification) GetOldPduSessionRefOk

func (o *StatusNotification) GetOldPduSessionRefOk() (*string, bool)

GetOldPduSessionRefOk returns a tuple with the OldPduSessionRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatusNotification) GetSmallDataRateStatus

func (o *StatusNotification) GetSmallDataRateStatus() SmallDataRateStatus

GetSmallDataRateStatus returns the SmallDataRateStatus field value if set, zero value otherwise.

func (*StatusNotification) GetSmallDataRateStatusOk

func (o *StatusNotification) GetSmallDataRateStatusOk() (*SmallDataRateStatus, bool)

GetSmallDataRateStatusOk returns a tuple with the SmallDataRateStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatusNotification) GetStatusInfo

func (o *StatusNotification) GetStatusInfo() StatusInfo

GetStatusInfo returns the StatusInfo field value

func (*StatusNotification) GetStatusInfoOk

func (o *StatusNotification) GetStatusInfoOk() (*StatusInfo, bool)

GetStatusInfoOk returns a tuple with the StatusInfo field value and a boolean to check if the value has been set.

func (*StatusNotification) GetTargetDnaiInfo

func (o *StatusNotification) GetTargetDnaiInfo() TargetDnaiInfo

GetTargetDnaiInfo returns the TargetDnaiInfo field value if set, zero value otherwise.

func (*StatusNotification) GetTargetDnaiInfoOk

func (o *StatusNotification) GetTargetDnaiInfoOk() (*TargetDnaiInfo, bool)

GetTargetDnaiInfoOk returns a tuple with the TargetDnaiInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatusNotification) HasApnRateStatus

func (o *StatusNotification) HasApnRateStatus() bool

HasApnRateStatus returns a boolean if a field has been set.

func (*StatusNotification) HasEpsPdnCnxInfo

func (o *StatusNotification) HasEpsPdnCnxInfo() bool

HasEpsPdnCnxInfo returns a boolean if a field has been set.

func (*StatusNotification) HasInterPlmnApiRoot

func (o *StatusNotification) HasInterPlmnApiRoot() bool

HasInterPlmnApiRoot returns a boolean if a field has been set.

func (*StatusNotification) HasIntraPlmnApiRoot

func (o *StatusNotification) HasIntraPlmnApiRoot() bool

HasIntraPlmnApiRoot returns a boolean if a field has been set.

func (*StatusNotification) HasNewSmfId

func (o *StatusNotification) HasNewSmfId() bool

HasNewSmfId returns a boolean if a field has been set.

func (*StatusNotification) HasOldPduSessionRef

func (o *StatusNotification) HasOldPduSessionRef() bool

HasOldPduSessionRef returns a boolean if a field has been set.

func (*StatusNotification) HasSmallDataRateStatus

func (o *StatusNotification) HasSmallDataRateStatus() bool

HasSmallDataRateStatus returns a boolean if a field has been set.

func (*StatusNotification) HasTargetDnaiInfo

func (o *StatusNotification) HasTargetDnaiInfo() bool

HasTargetDnaiInfo returns a boolean if a field has been set.

func (StatusNotification) MarshalJSON

func (o StatusNotification) MarshalJSON() ([]byte, error)

func (*StatusNotification) SetApnRateStatus

func (o *StatusNotification) SetApnRateStatus(v ApnRateStatus)

SetApnRateStatus gets a reference to the given ApnRateStatus and assigns it to the ApnRateStatus field.

func (*StatusNotification) SetEpsPdnCnxInfo

func (o *StatusNotification) SetEpsPdnCnxInfo(v EpsPdnCnxInfo)

SetEpsPdnCnxInfo gets a reference to the given EpsPdnCnxInfo and assigns it to the EpsPdnCnxInfo field.

func (*StatusNotification) SetInterPlmnApiRoot

func (o *StatusNotification) SetInterPlmnApiRoot(v string)

SetInterPlmnApiRoot gets a reference to the given string and assigns it to the InterPlmnApiRoot field.

func (*StatusNotification) SetIntraPlmnApiRoot

func (o *StatusNotification) SetIntraPlmnApiRoot(v string)

SetIntraPlmnApiRoot gets a reference to the given string and assigns it to the IntraPlmnApiRoot field.

func (*StatusNotification) SetNewSmfId

func (o *StatusNotification) SetNewSmfId(v string)

SetNewSmfId gets a reference to the given string and assigns it to the NewSmfId field.

func (*StatusNotification) SetOldPduSessionRef

func (o *StatusNotification) SetOldPduSessionRef(v string)

SetOldPduSessionRef gets a reference to the given string and assigns it to the OldPduSessionRef field.

func (*StatusNotification) SetSmallDataRateStatus

func (o *StatusNotification) SetSmallDataRateStatus(v SmallDataRateStatus)

SetSmallDataRateStatus gets a reference to the given SmallDataRateStatus and assigns it to the SmallDataRateStatus field.

func (*StatusNotification) SetStatusInfo

func (o *StatusNotification) SetStatusInfo(v StatusInfo)

SetStatusInfo sets field value

func (*StatusNotification) SetTargetDnaiInfo

func (o *StatusNotification) SetTargetDnaiInfo(v TargetDnaiInfo)

SetTargetDnaiInfo gets a reference to the given TargetDnaiInfo and assigns it to the TargetDnaiInfo field.

func (StatusNotification) ToMap

func (o StatusNotification) 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 TargetDnaiInfo

type TargetDnaiInfo struct {
	// DNAI (Data network access identifier), see clause 5.6.7 of 3GPP TS 23.501.
	TargetDnai       *string          `json:"targetDnai,omitempty"`
	SmfSelectionType SmfSelectionType `json:"smfSelectionType"`
}

TargetDnaiInfo Target DNAI Information

func NewTargetDnaiInfo

func NewTargetDnaiInfo(smfSelectionType SmfSelectionType) *TargetDnaiInfo

NewTargetDnaiInfo instantiates a new TargetDnaiInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTargetDnaiInfoWithDefaults

func NewTargetDnaiInfoWithDefaults() *TargetDnaiInfo

NewTargetDnaiInfoWithDefaults instantiates a new TargetDnaiInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TargetDnaiInfo) GetSmfSelectionType

func (o *TargetDnaiInfo) GetSmfSelectionType() SmfSelectionType

GetSmfSelectionType returns the SmfSelectionType field value

func (*TargetDnaiInfo) GetSmfSelectionTypeOk

func (o *TargetDnaiInfo) GetSmfSelectionTypeOk() (*SmfSelectionType, bool)

GetSmfSelectionTypeOk returns a tuple with the SmfSelectionType field value and a boolean to check if the value has been set.

func (*TargetDnaiInfo) GetTargetDnai

func (o *TargetDnaiInfo) GetTargetDnai() string

GetTargetDnai returns the TargetDnai field value if set, zero value otherwise.

func (*TargetDnaiInfo) GetTargetDnaiOk

func (o *TargetDnaiInfo) GetTargetDnaiOk() (*string, bool)

GetTargetDnaiOk returns a tuple with the TargetDnai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TargetDnaiInfo) HasTargetDnai

func (o *TargetDnaiInfo) HasTargetDnai() bool

HasTargetDnai returns a boolean if a field has been set.

func (TargetDnaiInfo) MarshalJSON

func (o TargetDnaiInfo) MarshalJSON() ([]byte, error)

func (*TargetDnaiInfo) SetSmfSelectionType

func (o *TargetDnaiInfo) SetSmfSelectionType(v SmfSelectionType)

SetSmfSelectionType sets field value

func (*TargetDnaiInfo) SetTargetDnai

func (o *TargetDnaiInfo) SetTargetDnai(v string)

SetTargetDnai gets a reference to the given string and assigns it to the TargetDnai field.

func (TargetDnaiInfo) ToMap

func (o TargetDnaiInfo) ToMap() (map[string]interface{}, error)

type TnapId

type TnapId struct {
	// This IE shall be present if the UE is accessing the 5GC via a trusted WLAN access network.When present, it shall contain the SSID of the access point to which the UE is attached, that is received over NGAP,  see IEEE Std 802.11-2012.
	SsId *string `json:"ssId,omitempty"`
	// When present, it shall contain the BSSID of the access point to which the UE is attached, that is received over NGAP, see IEEE Std 802.11-2012.
	BssId *string `json:"bssId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	CivicAddress *string `json:"civicAddress,omitempty"`
}

TnapId Contain the TNAP Identifier see clause5.6.2 of 3GPP TS 23.501.

func NewTnapId

func NewTnapId() *TnapId

NewTnapId instantiates a new TnapId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTnapIdWithDefaults

func NewTnapIdWithDefaults() *TnapId

NewTnapIdWithDefaults instantiates a new TnapId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TnapId) GetBssId

func (o *TnapId) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*TnapId) GetBssIdOk

func (o *TnapId) GetBssIdOk() (*string, bool)

GetBssIdOk returns a tuple with the BssId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) GetCivicAddress

func (o *TnapId) GetCivicAddress() string

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*TnapId) GetCivicAddressOk

func (o *TnapId) GetCivicAddressOk() (*string, bool)

GetCivicAddressOk returns a tuple with the CivicAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) GetSsId

func (o *TnapId) GetSsId() string

GetSsId returns the SsId field value if set, zero value otherwise.

func (*TnapId) GetSsIdOk

func (o *TnapId) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) HasBssId

func (o *TnapId) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*TnapId) HasCivicAddress

func (o *TnapId) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (*TnapId) HasSsId

func (o *TnapId) HasSsId() bool

HasSsId returns a boolean if a field has been set.

func (TnapId) MarshalJSON

func (o TnapId) MarshalJSON() ([]byte, error)

func (*TnapId) SetBssId

func (o *TnapId) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*TnapId) SetCivicAddress

func (o *TnapId) SetCivicAddress(v string)

SetCivicAddress gets a reference to the given string and assigns it to the CivicAddress field.

func (*TnapId) SetSsId

func (o *TnapId) SetSsId(v string)

SetSsId gets a reference to the given string and assigns it to the SsId field.

func (TnapId) ToMap

func (o TnapId) ToMap() (map[string]interface{}, error)

type TngfInfo

type TngfInfo struct {
	Interface *interface{}
}

TngfInfo Infomation of the TNGF endpoints

func (*TngfInfo) MarshalJSON

func (src *TngfInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TngfInfo) UnmarshalJSON

func (dst *TngfInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TraceData

type TraceData struct {
	// Trace Reference (see 3GPP TS 32.422).It shall be encoded as the concatenation of MCC, MNC and Trace ID as follows: 'MCC'<MNC'-'Trace ID'The Trace ID shall be encoded as a 3 octet string in hexadecimal representation. Each character in the Trace ID 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 Trace ID shall appear first  in the string, and the character representing the 4 least significant bit of the Trace ID shall appear last in the string.
	TraceRef   string     `json:"traceRef"`
	TraceDepth TraceDepth `json:"traceDepth"`
	// List of NE Types (see 3GPP TS 32.422).It shall be encoded as an octet string 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 shall appear first in the string, and the character representing the 4 least significant bit shall appear last in the string.Octets shall be coded according to 3GPP TS 32.422.
	NeTypeList string `json:"neTypeList"`
	// Triggering events (see 3GPP TS 32.422).It shall be encoded as an octet string 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 shall appear first in the string, and the character representing the 4 least significant bit shall appear last in the string. Octets shall be coded according to 3GPP TS 32.422.
	EventList string `json:"eventList"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	CollectionEntityIpv4Addr *string   `json:"collectionEntityIpv4Addr,omitempty"`
	CollectionEntityIpv6Addr *Ipv6Addr `json:"collectionEntityIpv6Addr,omitempty"`
	// List of Interfaces (see 3GPP TS 32.422).It shall be encoded as an octet string 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 shall appear first in the string, and the character representing the  4 least significant bit shall appear last in the string. Octets shall be coded according to 3GPP TS 32.422. If this attribute is not present, all the interfaces applicable to the list of NE types indicated in the neTypeList attribute should be traced.
	InterfaceList *string `json:"interfaceList,omitempty"`
}

TraceData contains Trace control and configuration parameters.

func NewTraceData

func NewTraceData(traceRef string, traceDepth TraceDepth, neTypeList string, eventList string) *TraceData

NewTraceData instantiates a new TraceData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTraceDataWithDefaults

func NewTraceDataWithDefaults() *TraceData

NewTraceDataWithDefaults instantiates a new TraceData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TraceData) GetCollectionEntityIpv4Addr

func (o *TraceData) GetCollectionEntityIpv4Addr() string

GetCollectionEntityIpv4Addr returns the CollectionEntityIpv4Addr field value if set, zero value otherwise.

func (*TraceData) GetCollectionEntityIpv4AddrOk

func (o *TraceData) GetCollectionEntityIpv4AddrOk() (*string, bool)

GetCollectionEntityIpv4AddrOk returns a tuple with the CollectionEntityIpv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TraceData) GetCollectionEntityIpv6Addr

func (o *TraceData) GetCollectionEntityIpv6Addr() Ipv6Addr

GetCollectionEntityIpv6Addr returns the CollectionEntityIpv6Addr field value if set, zero value otherwise.

func (*TraceData) GetCollectionEntityIpv6AddrOk

func (o *TraceData) GetCollectionEntityIpv6AddrOk() (*Ipv6Addr, bool)

GetCollectionEntityIpv6AddrOk returns a tuple with the CollectionEntityIpv6Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TraceData) GetEventList

func (o *TraceData) GetEventList() string

GetEventList returns the EventList field value

func (*TraceData) GetEventListOk

func (o *TraceData) GetEventListOk() (*string, bool)

GetEventListOk returns a tuple with the EventList field value and a boolean to check if the value has been set.

func (*TraceData) GetInterfaceList

func (o *TraceData) GetInterfaceList() string

GetInterfaceList returns the InterfaceList field value if set, zero value otherwise.

func (*TraceData) GetInterfaceListOk

func (o *TraceData) GetInterfaceListOk() (*string, bool)

GetInterfaceListOk returns a tuple with the InterfaceList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TraceData) GetNeTypeList

func (o *TraceData) GetNeTypeList() string

GetNeTypeList returns the NeTypeList field value

func (*TraceData) GetNeTypeListOk

func (o *TraceData) GetNeTypeListOk() (*string, bool)

GetNeTypeListOk returns a tuple with the NeTypeList field value and a boolean to check if the value has been set.

func (*TraceData) GetTraceDepth

func (o *TraceData) GetTraceDepth() TraceDepth

GetTraceDepth returns the TraceDepth field value

func (*TraceData) GetTraceDepthOk

func (o *TraceData) GetTraceDepthOk() (*TraceDepth, bool)

GetTraceDepthOk returns a tuple with the TraceDepth field value and a boolean to check if the value has been set.

func (*TraceData) GetTraceRef

func (o *TraceData) GetTraceRef() string

GetTraceRef returns the TraceRef field value

func (*TraceData) GetTraceRefOk

func (o *TraceData) GetTraceRefOk() (*string, bool)

GetTraceRefOk returns a tuple with the TraceRef field value and a boolean to check if the value has been set.

func (*TraceData) HasCollectionEntityIpv4Addr

func (o *TraceData) HasCollectionEntityIpv4Addr() bool

HasCollectionEntityIpv4Addr returns a boolean if a field has been set.

func (*TraceData) HasCollectionEntityIpv6Addr

func (o *TraceData) HasCollectionEntityIpv6Addr() bool

HasCollectionEntityIpv6Addr returns a boolean if a field has been set.

func (*TraceData) HasInterfaceList

func (o *TraceData) HasInterfaceList() bool

HasInterfaceList returns a boolean if a field has been set.

func (TraceData) MarshalJSON

func (o TraceData) MarshalJSON() ([]byte, error)

func (*TraceData) SetCollectionEntityIpv4Addr

func (o *TraceData) SetCollectionEntityIpv4Addr(v string)

SetCollectionEntityIpv4Addr gets a reference to the given string and assigns it to the CollectionEntityIpv4Addr field.

func (*TraceData) SetCollectionEntityIpv6Addr

func (o *TraceData) SetCollectionEntityIpv6Addr(v Ipv6Addr)

SetCollectionEntityIpv6Addr gets a reference to the given Ipv6Addr and assigns it to the CollectionEntityIpv6Addr field.

func (*TraceData) SetEventList

func (o *TraceData) SetEventList(v string)

SetEventList sets field value

func (*TraceData) SetInterfaceList

func (o *TraceData) SetInterfaceList(v string)

SetInterfaceList gets a reference to the given string and assigns it to the InterfaceList field.

func (*TraceData) SetNeTypeList

func (o *TraceData) SetNeTypeList(v string)

SetNeTypeList sets field value

func (*TraceData) SetTraceDepth

func (o *TraceData) SetTraceDepth(v TraceDepth)

SetTraceDepth sets field value

func (*TraceData) SetTraceRef

func (o *TraceData) SetTraceRef(v string)

SetTraceRef sets field value

func (TraceData) ToMap

func (o TraceData) ToMap() (map[string]interface{}, error)

type TraceDepth

type TraceDepth struct {
	String *string
}

TraceDepth The enumeration TraceDepth defines how detailed information should be recorded in the trace. See 3GPP TS 32.422 for further description of the values. It shall comply with the provisions defined in table 5.6.3.1-1

func (*TraceDepth) MarshalJSON

func (src *TraceDepth) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TraceDepth) UnmarshalJSON

func (dst *TraceDepth) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TrafficProfile

type TrafficProfile struct {
	String *string
}

TrafficProfile Possible values are: - SINGLE_TRANS_UL: Uplink single packet transmission. - SINGLE_TRANS_DL: Downlink single packet transmission. - DUAL_TRANS_UL_FIRST: Dual packet transmission, firstly uplink packet transmission with subsequent downlink packet transmission. - DUAL_TRANS_DL_FIRST: Dual packet transmission, firstly downlink packet transmission with subsequent uplink packet transmission.

func (*TrafficProfile) MarshalJSON

func (src *TrafficProfile) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TrafficProfile) UnmarshalJSON

func (dst *TrafficProfile) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TransferMoDataReqData

type TransferMoDataReqData struct {
	MoData           RefToBinaryData   `json:"moData"`
	MoExpDataCounter *MoExpDataCounter `json:"moExpDataCounter,omitempty"`
	UeLocation       *UserLocation     `json:"ueLocation,omitempty"`
}

TransferMoDataReqData Data within Transfer MO Data Request

func NewTransferMoDataReqData

func NewTransferMoDataReqData(moData RefToBinaryData) *TransferMoDataReqData

NewTransferMoDataReqData instantiates a new TransferMoDataReqData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTransferMoDataReqDataWithDefaults

func NewTransferMoDataReqDataWithDefaults() *TransferMoDataReqData

NewTransferMoDataReqDataWithDefaults instantiates a new TransferMoDataReqData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TransferMoDataReqData) GetMoData

func (o *TransferMoDataReqData) GetMoData() RefToBinaryData

GetMoData returns the MoData field value

func (*TransferMoDataReqData) GetMoDataOk

func (o *TransferMoDataReqData) GetMoDataOk() (*RefToBinaryData, bool)

GetMoDataOk returns a tuple with the MoData field value and a boolean to check if the value has been set.

func (*TransferMoDataReqData) GetMoExpDataCounter

func (o *TransferMoDataReqData) GetMoExpDataCounter() MoExpDataCounter

GetMoExpDataCounter returns the MoExpDataCounter field value if set, zero value otherwise.

func (*TransferMoDataReqData) GetMoExpDataCounterOk

func (o *TransferMoDataReqData) GetMoExpDataCounterOk() (*MoExpDataCounter, bool)

GetMoExpDataCounterOk returns a tuple with the MoExpDataCounter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransferMoDataReqData) GetUeLocation

func (o *TransferMoDataReqData) GetUeLocation() UserLocation

GetUeLocation returns the UeLocation field value if set, zero value otherwise.

func (*TransferMoDataReqData) GetUeLocationOk

func (o *TransferMoDataReqData) GetUeLocationOk() (*UserLocation, bool)

GetUeLocationOk returns a tuple with the UeLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransferMoDataReqData) HasMoExpDataCounter

func (o *TransferMoDataReqData) HasMoExpDataCounter() bool

HasMoExpDataCounter returns a boolean if a field has been set.

func (*TransferMoDataReqData) HasUeLocation

func (o *TransferMoDataReqData) HasUeLocation() bool

HasUeLocation returns a boolean if a field has been set.

func (TransferMoDataReqData) MarshalJSON

func (o TransferMoDataReqData) MarshalJSON() ([]byte, error)

func (*TransferMoDataReqData) SetMoData

func (o *TransferMoDataReqData) SetMoData(v RefToBinaryData)

SetMoData sets field value

func (*TransferMoDataReqData) SetMoExpDataCounter

func (o *TransferMoDataReqData) SetMoExpDataCounter(v MoExpDataCounter)

SetMoExpDataCounter gets a reference to the given MoExpDataCounter and assigns it to the MoExpDataCounter field.

func (*TransferMoDataReqData) SetUeLocation

func (o *TransferMoDataReqData) SetUeLocation(v UserLocation)

SetUeLocation gets a reference to the given UserLocation and assigns it to the UeLocation field.

func (TransferMoDataReqData) ToMap

func (o TransferMoDataReqData) ToMap() (map[string]interface{}, error)

type TransferMoDataRequest

type TransferMoDataRequest struct {
	JsonData     *TransferMoDataReqData `json:"jsonData,omitempty"`
	BinaryMoData **os.File              `json:"binaryMoData,omitempty"`
}

TransferMoDataRequest struct for TransferMoDataRequest

func NewTransferMoDataRequest

func NewTransferMoDataRequest() *TransferMoDataRequest

NewTransferMoDataRequest instantiates a new TransferMoDataRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTransferMoDataRequestWithDefaults

func NewTransferMoDataRequestWithDefaults() *TransferMoDataRequest

NewTransferMoDataRequestWithDefaults instantiates a new TransferMoDataRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TransferMoDataRequest) GetBinaryMoData

func (o *TransferMoDataRequest) GetBinaryMoData() *os.File

GetBinaryMoData returns the BinaryMoData field value if set, zero value otherwise.

func (*TransferMoDataRequest) GetBinaryMoDataOk

func (o *TransferMoDataRequest) GetBinaryMoDataOk() (**os.File, bool)

GetBinaryMoDataOk returns a tuple with the BinaryMoData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransferMoDataRequest) GetJsonData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*TransferMoDataRequest) GetJsonDataOk

func (o *TransferMoDataRequest) GetJsonDataOk() (*TransferMoDataReqData, bool)

GetJsonDataOk returns a tuple with the JsonData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransferMoDataRequest) HasBinaryMoData

func (o *TransferMoDataRequest) HasBinaryMoData() bool

HasBinaryMoData returns a boolean if a field has been set.

func (*TransferMoDataRequest) HasJsonData

func (o *TransferMoDataRequest) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (TransferMoDataRequest) MarshalJSON

func (o TransferMoDataRequest) MarshalJSON() ([]byte, error)

func (*TransferMoDataRequest) SetBinaryMoData

func (o *TransferMoDataRequest) SetBinaryMoData(v *os.File)

SetBinaryMoData gets a reference to the given *os.File and assigns it to the BinaryMoData field.

func (*TransferMoDataRequest) SetJsonData

func (o *TransferMoDataRequest) SetJsonData(v TransferMoDataReqData)

SetJsonData gets a reference to the given TransferMoDataReqData and assigns it to the JsonData field.

func (TransferMoDataRequest) ToMap

func (o TransferMoDataRequest) ToMap() (map[string]interface{}, error)

type TransferMtDataAddInfo

type TransferMtDataAddInfo struct {
	// indicating a time in seconds.
	MaxWaitingTime *int32 `json:"maxWaitingTime,omitempty"`
}

TransferMtDataAddInfo Transfer MT Data Error Response Additional Information

func NewTransferMtDataAddInfo

func NewTransferMtDataAddInfo() *TransferMtDataAddInfo

NewTransferMtDataAddInfo instantiates a new TransferMtDataAddInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTransferMtDataAddInfoWithDefaults

func NewTransferMtDataAddInfoWithDefaults() *TransferMtDataAddInfo

NewTransferMtDataAddInfoWithDefaults instantiates a new TransferMtDataAddInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TransferMtDataAddInfo) GetMaxWaitingTime

func (o *TransferMtDataAddInfo) GetMaxWaitingTime() int32

GetMaxWaitingTime returns the MaxWaitingTime field value if set, zero value otherwise.

func (*TransferMtDataAddInfo) GetMaxWaitingTimeOk

func (o *TransferMtDataAddInfo) GetMaxWaitingTimeOk() (*int32, bool)

GetMaxWaitingTimeOk returns a tuple with the MaxWaitingTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransferMtDataAddInfo) HasMaxWaitingTime

func (o *TransferMtDataAddInfo) HasMaxWaitingTime() bool

HasMaxWaitingTime returns a boolean if a field has been set.

func (TransferMtDataAddInfo) MarshalJSON

func (o TransferMtDataAddInfo) MarshalJSON() ([]byte, error)

func (*TransferMtDataAddInfo) SetMaxWaitingTime

func (o *TransferMtDataAddInfo) SetMaxWaitingTime(v int32)

SetMaxWaitingTime gets a reference to the given int32 and assigns it to the MaxWaitingTime field.

func (TransferMtDataAddInfo) ToMap

func (o TransferMtDataAddInfo) ToMap() (map[string]interface{}, error)

type TransferMtDataError

type TransferMtDataError struct {
	ExtProblemDetails
	// indicating a time in seconds.
	MaxWaitingTime *int32 `json:"maxWaitingTime,omitempty"`
}

TransferMtDataError Transfer MT Data Error Response

func NewTransferMtDataError

func NewTransferMtDataError() *TransferMtDataError

NewTransferMtDataError instantiates a new TransferMtDataError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTransferMtDataErrorWithDefaults

func NewTransferMtDataErrorWithDefaults() *TransferMtDataError

NewTransferMtDataErrorWithDefaults instantiates a new TransferMtDataError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TransferMtDataError) GetMaxWaitingTime

func (o *TransferMtDataError) GetMaxWaitingTime() int32

GetMaxWaitingTime returns the MaxWaitingTime field value if set, zero value otherwise.

func (*TransferMtDataError) GetMaxWaitingTimeOk

func (o *TransferMtDataError) GetMaxWaitingTimeOk() (*int32, bool)

GetMaxWaitingTimeOk returns a tuple with the MaxWaitingTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransferMtDataError) HasMaxWaitingTime

func (o *TransferMtDataError) HasMaxWaitingTime() bool

HasMaxWaitingTime returns a boolean if a field has been set.

func (TransferMtDataError) MarshalJSON

func (o TransferMtDataError) MarshalJSON() ([]byte, error)

func (*TransferMtDataError) SetMaxWaitingTime

func (o *TransferMtDataError) SetMaxWaitingTime(v int32)

SetMaxWaitingTime gets a reference to the given int32 and assigns it to the MaxWaitingTime field.

func (TransferMtDataError) ToMap

func (o TransferMtDataError) ToMap() (map[string]interface{}, error)

type TransferMtDataIsmfRequest

type TransferMtDataIsmfRequest struct {
	JsonData     *TransferMtDataReqData `json:"jsonData,omitempty"`
	BinaryMtData **os.File              `json:"binaryMtData,omitempty"`
}

TransferMtDataIsmfRequest struct for TransferMtDataIsmfRequest

func NewTransferMtDataIsmfRequest

func NewTransferMtDataIsmfRequest() *TransferMtDataIsmfRequest

NewTransferMtDataIsmfRequest instantiates a new TransferMtDataIsmfRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTransferMtDataIsmfRequestWithDefaults

func NewTransferMtDataIsmfRequestWithDefaults() *TransferMtDataIsmfRequest

NewTransferMtDataIsmfRequestWithDefaults instantiates a new TransferMtDataIsmfRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TransferMtDataIsmfRequest) GetBinaryMtData

func (o *TransferMtDataIsmfRequest) GetBinaryMtData() *os.File

GetBinaryMtData returns the BinaryMtData field value if set, zero value otherwise.

func (*TransferMtDataIsmfRequest) GetBinaryMtDataOk

func (o *TransferMtDataIsmfRequest) GetBinaryMtDataOk() (**os.File, bool)

GetBinaryMtDataOk returns a tuple with the BinaryMtData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransferMtDataIsmfRequest) GetJsonData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*TransferMtDataIsmfRequest) GetJsonDataOk

func (o *TransferMtDataIsmfRequest) GetJsonDataOk() (*TransferMtDataReqData, bool)

GetJsonDataOk returns a tuple with the JsonData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransferMtDataIsmfRequest) HasBinaryMtData

func (o *TransferMtDataIsmfRequest) HasBinaryMtData() bool

HasBinaryMtData returns a boolean if a field has been set.

func (*TransferMtDataIsmfRequest) HasJsonData

func (o *TransferMtDataIsmfRequest) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (TransferMtDataIsmfRequest) MarshalJSON

func (o TransferMtDataIsmfRequest) MarshalJSON() ([]byte, error)

func (*TransferMtDataIsmfRequest) SetBinaryMtData

func (o *TransferMtDataIsmfRequest) SetBinaryMtData(v *os.File)

SetBinaryMtData gets a reference to the given *os.File and assigns it to the BinaryMtData field.

func (*TransferMtDataIsmfRequest) SetJsonData

SetJsonData gets a reference to the given TransferMtDataReqData and assigns it to the JsonData field.

func (TransferMtDataIsmfRequest) ToMap

func (o TransferMtDataIsmfRequest) ToMap() (map[string]interface{}, error)

type TransferMtDataReqData

type TransferMtDataReqData struct {
	MtData RefToBinaryData `json:"mtData"`
}

TransferMtDataReqData Data within Transfer MT Data Request

func NewTransferMtDataReqData

func NewTransferMtDataReqData(mtData RefToBinaryData) *TransferMtDataReqData

NewTransferMtDataReqData instantiates a new TransferMtDataReqData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTransferMtDataReqDataWithDefaults

func NewTransferMtDataReqDataWithDefaults() *TransferMtDataReqData

NewTransferMtDataReqDataWithDefaults instantiates a new TransferMtDataReqData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TransferMtDataReqData) GetMtData

func (o *TransferMtDataReqData) GetMtData() RefToBinaryData

GetMtData returns the MtData field value

func (*TransferMtDataReqData) GetMtDataOk

func (o *TransferMtDataReqData) GetMtDataOk() (*RefToBinaryData, bool)

GetMtDataOk returns a tuple with the MtData field value and a boolean to check if the value has been set.

func (TransferMtDataReqData) MarshalJSON

func (o TransferMtDataReqData) MarshalJSON() ([]byte, error)

func (*TransferMtDataReqData) SetMtData

func (o *TransferMtDataReqData) SetMtData(v RefToBinaryData)

SetMtData sets field value

func (TransferMtDataReqData) ToMap

func (o TransferMtDataReqData) 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"`
	// string with format 'date-time' as defined in OpenAPI.
	TariffTimeChange *time.Time `json:"tariffTimeChange,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) GetTariffTimeChange

func (o *Trigger) GetTariffTimeChange() time.Time

GetTariffTimeChange returns the TariffTimeChange field value if set, zero value otherwise.

func (*Trigger) GetTariffTimeChangeOk

func (o *Trigger) GetTariffTimeChangeOk() (*time.Time, bool)

GetTariffTimeChangeOk returns a tuple with the TariffTimeChange 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) HasTariffTimeChange

func (o *Trigger) HasTariffTimeChange() bool

HasTariffTimeChange 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) SetTariffTimeChange

func (o *Trigger) SetTariffTimeChange(v time.Time)

SetTariffTimeChange gets a reference to the given time.Time and assigns it to the TariffTimeChange 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 TunnelInfo

type TunnelInfo struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string   `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
	// GTP Tunnel Endpoint Identifier
	GtpTeid string      `json:"gtpTeid"`
	AnType  *AccessType `json:"anType,omitempty"`
}

TunnelInfo Tunnel Information

func NewTunnelInfo

func NewTunnelInfo(gtpTeid string) *TunnelInfo

NewTunnelInfo instantiates a new TunnelInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTunnelInfoWithDefaults

func NewTunnelInfoWithDefaults() *TunnelInfo

NewTunnelInfoWithDefaults instantiates a new TunnelInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TunnelInfo) GetAnType

func (o *TunnelInfo) GetAnType() AccessType

GetAnType returns the AnType field value if set, zero value otherwise.

func (*TunnelInfo) GetAnTypeOk

func (o *TunnelInfo) GetAnTypeOk() (*AccessType, bool)

GetAnTypeOk returns a tuple with the AnType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TunnelInfo) GetGtpTeid

func (o *TunnelInfo) GetGtpTeid() string

GetGtpTeid returns the GtpTeid field value

func (*TunnelInfo) GetGtpTeidOk

func (o *TunnelInfo) GetGtpTeidOk() (*string, bool)

GetGtpTeidOk returns a tuple with the GtpTeid field value and a boolean to check if the value has been set.

func (*TunnelInfo) GetIpv4Addr

func (o *TunnelInfo) GetIpv4Addr() string

GetIpv4Addr returns the Ipv4Addr field value if set, zero value otherwise.

func (*TunnelInfo) GetIpv4AddrOk

func (o *TunnelInfo) GetIpv4AddrOk() (*string, bool)

GetIpv4AddrOk returns a tuple with the Ipv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TunnelInfo) GetIpv6Addr

func (o *TunnelInfo) GetIpv6Addr() Ipv6Addr

GetIpv6Addr returns the Ipv6Addr field value if set, zero value otherwise.

func (*TunnelInfo) GetIpv6AddrOk

func (o *TunnelInfo) GetIpv6AddrOk() (*Ipv6Addr, bool)

GetIpv6AddrOk returns a tuple with the Ipv6Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TunnelInfo) HasAnType

func (o *TunnelInfo) HasAnType() bool

HasAnType returns a boolean if a field has been set.

func (*TunnelInfo) HasIpv4Addr

func (o *TunnelInfo) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*TunnelInfo) HasIpv6Addr

func (o *TunnelInfo) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (TunnelInfo) MarshalJSON

func (o TunnelInfo) MarshalJSON() ([]byte, error)

func (*TunnelInfo) SetAnType

func (o *TunnelInfo) SetAnType(v AccessType)

SetAnType gets a reference to the given AccessType and assigns it to the AnType field.

func (*TunnelInfo) SetGtpTeid

func (o *TunnelInfo) SetGtpTeid(v string)

SetGtpTeid sets field value

func (*TunnelInfo) SetIpv4Addr

func (o *TunnelInfo) SetIpv4Addr(v string)

SetIpv4Addr gets a reference to the given string and assigns it to the Ipv4Addr field.

func (*TunnelInfo) SetIpv6Addr

func (o *TunnelInfo) SetIpv6Addr(v Ipv6Addr)

SetIpv6Addr gets a reference to the given Ipv6Addr and assigns it to the Ipv6Addr field.

func (TunnelInfo) ToMap

func (o TunnelInfo) ToMap() (map[string]interface{}, error)

type TwapId

type TwapId struct {
	// This IE shall contain the SSID of the access point to which the UE is attached, that is received over NGAP, see IEEE Std 802.11-2012.
	SsId string `json:"ssId"`
	// When present, it shall contain the BSSID of the access point to which the UE is attached, for trusted WLAN access, see IEEE Std 802.11-2012.
	BssId *string `json:"bssId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	CivicAddress *string `json:"civicAddress,omitempty"`
}

TwapId Contain the TWAP Identifier as defined in clause 4.2.8.5.3 of 3GPP TS 23.501 or the WLAN location information as defined in clause 4.5.7.2.8 of 3GPP TS 23.402.

func NewTwapId

func NewTwapId(ssId string) *TwapId

NewTwapId instantiates a new TwapId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTwapIdWithDefaults

func NewTwapIdWithDefaults() *TwapId

NewTwapIdWithDefaults instantiates a new TwapId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TwapId) GetBssId

func (o *TwapId) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*TwapId) GetBssIdOk

func (o *TwapId) GetBssIdOk() (*string, bool)

GetBssIdOk returns a tuple with the BssId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwapId) GetCivicAddress

func (o *TwapId) GetCivicAddress() string

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*TwapId) GetCivicAddressOk

func (o *TwapId) GetCivicAddressOk() (*string, bool)

GetCivicAddressOk returns a tuple with the CivicAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwapId) GetSsId

func (o *TwapId) GetSsId() string

GetSsId returns the SsId field value

func (*TwapId) GetSsIdOk

func (o *TwapId) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value and a boolean to check if the value has been set.

func (*TwapId) HasBssId

func (o *TwapId) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*TwapId) HasCivicAddress

func (o *TwapId) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (TwapId) MarshalJSON

func (o TwapId) MarshalJSON() ([]byte, error)

func (*TwapId) SetBssId

func (o *TwapId) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*TwapId) SetCivicAddress

func (o *TwapId) SetCivicAddress(v string)

SetCivicAddress gets a reference to the given string and assigns it to the CivicAddress field.

func (*TwapId) SetSsId

func (o *TwapId) SetSsId(v string)

SetSsId sets field value

func (TwapId) ToMap

func (o TwapId) ToMap() (map[string]interface{}, error)

type TwifInfo

type TwifInfo struct {
	Interface *interface{}
}

TwifInfo Addressing information (IP addresses, FQDN) of the TWIF

func (*TwifInfo) MarshalJSON

func (src *TwifInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TwifInfo) UnmarshalJSON

func (dst *TwifInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UlclBpInformation

type UlclBpInformation 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.
	UlclBpUpfId *string `json:"ulclBpUpfId,omitempty"`
}

UlclBpInformation UL CL or BP Information

func NewUlclBpInformation

func NewUlclBpInformation() *UlclBpInformation

NewUlclBpInformation instantiates a new UlclBpInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUlclBpInformationWithDefaults

func NewUlclBpInformationWithDefaults() *UlclBpInformation

NewUlclBpInformationWithDefaults instantiates a new UlclBpInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UlclBpInformation) GetUlclBpUpfId

func (o *UlclBpInformation) GetUlclBpUpfId() string

GetUlclBpUpfId returns the UlclBpUpfId field value if set, zero value otherwise.

func (*UlclBpInformation) GetUlclBpUpfIdOk

func (o *UlclBpInformation) GetUlclBpUpfIdOk() (*string, bool)

GetUlclBpUpfIdOk returns a tuple with the UlclBpUpfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UlclBpInformation) HasUlclBpUpfId

func (o *UlclBpInformation) HasUlclBpUpfId() bool

HasUlclBpUpfId returns a boolean if a field has been set.

func (UlclBpInformation) MarshalJSON

func (o UlclBpInformation) MarshalJSON() ([]byte, error)

func (*UlclBpInformation) SetUlclBpUpfId

func (o *UlclBpInformation) SetUlclBpUpfId(v string)

SetUlclBpUpfId gets a reference to the given string and assigns it to the UlclBpUpfId field.

func (UlclBpInformation) ToMap

func (o UlclBpInformation) ToMap() (map[string]interface{}, error)

type UnavailableAccessIndication

type UnavailableAccessIndication struct {
	String *string
}

UnavailableAccessIndication Indicates the access type of a MA PDU session that is unavailable. Possible values are - 3GA_UNAVAILABLE - N3GA_UNAVAILABLE

func (*UnavailableAccessIndication) MarshalJSON

func (src *UnavailableAccessIndication) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UnavailableAccessIndication) UnmarshalJSON

func (dst *UnavailableAccessIndication) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UpCnxState

type UpCnxState struct {
	String *string
}

UpCnxState User Plane Connection State. Possible values are - ACTIVATED - DEACTIVATED - ACTIVATING - SUSPENDED

func (*UpCnxState) MarshalJSON

func (src *UpCnxState) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpCnxState) UnmarshalJSON

func (dst *UpCnxState) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UpConfidentiality

type UpConfidentiality struct {
	String *string
}

UpConfidentiality indicates whether UP confidentiality protection is required, preferred or not needed for all the traffic on the PDU Session. It shall comply with the provisions defined in table 5.4.3.5-1.

func (*UpConfidentiality) MarshalJSON

func (src *UpConfidentiality) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpConfidentiality) UnmarshalJSON

func (dst *UpConfidentiality) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UpIntegrity

type UpIntegrity struct {
	String *string
}

UpIntegrity indicates whether UP integrity protection is required, preferred or not needed for all the traffic on the PDU Session. It shall comply with the provisions defined in table 5.4.3.4-1.

func (*UpIntegrity) MarshalJSON

func (src *UpIntegrity) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpIntegrity) UnmarshalJSON

func (dst *UpIntegrity) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UpSecurity

type UpSecurity struct {
	UpIntegr UpIntegrity       `json:"upIntegr"`
	UpConfid UpConfidentiality `json:"upConfid"`
}

UpSecurity Contains Userplain security information.

func NewUpSecurity

func NewUpSecurity(upIntegr UpIntegrity, upConfid UpConfidentiality) *UpSecurity

NewUpSecurity instantiates a new UpSecurity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpSecurityWithDefaults

func NewUpSecurityWithDefaults() *UpSecurity

NewUpSecurityWithDefaults instantiates a new UpSecurity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpSecurity) GetUpConfid

func (o *UpSecurity) GetUpConfid() UpConfidentiality

GetUpConfid returns the UpConfid field value

func (*UpSecurity) GetUpConfidOk

func (o *UpSecurity) GetUpConfidOk() (*UpConfidentiality, bool)

GetUpConfidOk returns a tuple with the UpConfid field value and a boolean to check if the value has been set.

func (*UpSecurity) GetUpIntegr

func (o *UpSecurity) GetUpIntegr() UpIntegrity

GetUpIntegr returns the UpIntegr field value

func (*UpSecurity) GetUpIntegrOk

func (o *UpSecurity) GetUpIntegrOk() (*UpIntegrity, bool)

GetUpIntegrOk returns a tuple with the UpIntegr field value and a boolean to check if the value has been set.

func (UpSecurity) MarshalJSON

func (o UpSecurity) MarshalJSON() ([]byte, error)

func (*UpSecurity) SetUpConfid

func (o *UpSecurity) SetUpConfid(v UpConfidentiality)

SetUpConfid sets field value

func (*UpSecurity) SetUpIntegr

func (o *UpSecurity) SetUpIntegr(v UpIntegrity)

SetUpIntegr sets field value

func (UpSecurity) ToMap

func (o UpSecurity) ToMap() (map[string]interface{}, error)

type UpSecurityInfo

type UpSecurityInfo struct {
	UpSecurity                      UpSecurity                     `json:"upSecurity"`
	MaxIntegrityProtectedDataRateUl *MaxIntegrityProtectedDataRate `json:"maxIntegrityProtectedDataRateUl,omitempty"`
	MaxIntegrityProtectedDataRateDl *MaxIntegrityProtectedDataRate `json:"maxIntegrityProtectedDataRateDl,omitempty"`
	SecurityResult                  *SecurityResult                `json:"securityResult,omitempty"`
}

UpSecurityInfo User Plane Security Information

func NewUpSecurityInfo

func NewUpSecurityInfo(upSecurity UpSecurity) *UpSecurityInfo

NewUpSecurityInfo instantiates a new UpSecurityInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpSecurityInfoWithDefaults

func NewUpSecurityInfoWithDefaults() *UpSecurityInfo

NewUpSecurityInfoWithDefaults instantiates a new UpSecurityInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpSecurityInfo) GetMaxIntegrityProtectedDataRateDl

func (o *UpSecurityInfo) GetMaxIntegrityProtectedDataRateDl() MaxIntegrityProtectedDataRate

GetMaxIntegrityProtectedDataRateDl returns the MaxIntegrityProtectedDataRateDl field value if set, zero value otherwise.

func (*UpSecurityInfo) GetMaxIntegrityProtectedDataRateDlOk

func (o *UpSecurityInfo) GetMaxIntegrityProtectedDataRateDlOk() (*MaxIntegrityProtectedDataRate, bool)

GetMaxIntegrityProtectedDataRateDlOk returns a tuple with the MaxIntegrityProtectedDataRateDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpSecurityInfo) GetMaxIntegrityProtectedDataRateUl

func (o *UpSecurityInfo) GetMaxIntegrityProtectedDataRateUl() MaxIntegrityProtectedDataRate

GetMaxIntegrityProtectedDataRateUl returns the MaxIntegrityProtectedDataRateUl field value if set, zero value otherwise.

func (*UpSecurityInfo) GetMaxIntegrityProtectedDataRateUlOk

func (o *UpSecurityInfo) GetMaxIntegrityProtectedDataRateUlOk() (*MaxIntegrityProtectedDataRate, bool)

GetMaxIntegrityProtectedDataRateUlOk returns a tuple with the MaxIntegrityProtectedDataRateUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpSecurityInfo) GetSecurityResult

func (o *UpSecurityInfo) GetSecurityResult() SecurityResult

GetSecurityResult returns the SecurityResult field value if set, zero value otherwise.

func (*UpSecurityInfo) GetSecurityResultOk

func (o *UpSecurityInfo) GetSecurityResultOk() (*SecurityResult, bool)

GetSecurityResultOk returns a tuple with the SecurityResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpSecurityInfo) GetUpSecurity

func (o *UpSecurityInfo) GetUpSecurity() UpSecurity

GetUpSecurity returns the UpSecurity field value

func (*UpSecurityInfo) GetUpSecurityOk

func (o *UpSecurityInfo) GetUpSecurityOk() (*UpSecurity, bool)

GetUpSecurityOk returns a tuple with the UpSecurity field value and a boolean to check if the value has been set.

func (*UpSecurityInfo) HasMaxIntegrityProtectedDataRateDl

func (o *UpSecurityInfo) HasMaxIntegrityProtectedDataRateDl() bool

HasMaxIntegrityProtectedDataRateDl returns a boolean if a field has been set.

func (*UpSecurityInfo) HasMaxIntegrityProtectedDataRateUl

func (o *UpSecurityInfo) HasMaxIntegrityProtectedDataRateUl() bool

HasMaxIntegrityProtectedDataRateUl returns a boolean if a field has been set.

func (*UpSecurityInfo) HasSecurityResult

func (o *UpSecurityInfo) HasSecurityResult() bool

HasSecurityResult returns a boolean if a field has been set.

func (UpSecurityInfo) MarshalJSON

func (o UpSecurityInfo) MarshalJSON() ([]byte, error)

func (*UpSecurityInfo) SetMaxIntegrityProtectedDataRateDl

func (o *UpSecurityInfo) SetMaxIntegrityProtectedDataRateDl(v MaxIntegrityProtectedDataRate)

SetMaxIntegrityProtectedDataRateDl gets a reference to the given MaxIntegrityProtectedDataRate and assigns it to the MaxIntegrityProtectedDataRateDl field.

func (*UpSecurityInfo) SetMaxIntegrityProtectedDataRateUl

func (o *UpSecurityInfo) SetMaxIntegrityProtectedDataRateUl(v MaxIntegrityProtectedDataRate)

SetMaxIntegrityProtectedDataRateUl gets a reference to the given MaxIntegrityProtectedDataRate and assigns it to the MaxIntegrityProtectedDataRateUl field.

func (*UpSecurityInfo) SetSecurityResult

func (o *UpSecurityInfo) SetSecurityResult(v SecurityResult)

SetSecurityResult gets a reference to the given SecurityResult and assigns it to the SecurityResult field.

func (*UpSecurityInfo) SetUpSecurity

func (o *UpSecurityInfo) SetUpSecurity(v UpSecurity)

SetUpSecurity sets field value

func (UpSecurityInfo) ToMap

func (o UpSecurityInfo) ToMap() (map[string]interface{}, error)

type UpdatePduSession200Response

type UpdatePduSession200Response struct {
	JsonData                    *HsmfUpdatedData `json:"jsonData,omitempty"`
	BinaryDataN1SmInfoToUe      **os.File        `json:"binaryDataN1SmInfoToUe,omitempty"`
	BinaryDataN4Information     **os.File        `json:"binaryDataN4Information,omitempty"`
	BinaryDataN4InformationExt1 **os.File        `json:"binaryDataN4InformationExt1,omitempty"`
	BinaryDataN4InformationExt2 **os.File        `json:"binaryDataN4InformationExt2,omitempty"`
}

UpdatePduSession200Response struct for UpdatePduSession200Response

func NewUpdatePduSession200Response

func NewUpdatePduSession200Response() *UpdatePduSession200Response

NewUpdatePduSession200Response instantiates a new UpdatePduSession200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePduSession200ResponseWithDefaults

func NewUpdatePduSession200ResponseWithDefaults() *UpdatePduSession200Response

NewUpdatePduSession200ResponseWithDefaults instantiates a new UpdatePduSession200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePduSession200Response) GetBinaryDataN1SmInfoToUe

func (o *UpdatePduSession200Response) GetBinaryDataN1SmInfoToUe() *os.File

GetBinaryDataN1SmInfoToUe returns the BinaryDataN1SmInfoToUe field value if set, zero value otherwise.

func (*UpdatePduSession200Response) GetBinaryDataN1SmInfoToUeOk

func (o *UpdatePduSession200Response) GetBinaryDataN1SmInfoToUeOk() (**os.File, bool)

GetBinaryDataN1SmInfoToUeOk returns a tuple with the BinaryDataN1SmInfoToUe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePduSession200Response) GetBinaryDataN4Information

func (o *UpdatePduSession200Response) GetBinaryDataN4Information() *os.File

GetBinaryDataN4Information returns the BinaryDataN4Information field value if set, zero value otherwise.

func (*UpdatePduSession200Response) GetBinaryDataN4InformationExt1

func (o *UpdatePduSession200Response) GetBinaryDataN4InformationExt1() *os.File

GetBinaryDataN4InformationExt1 returns the BinaryDataN4InformationExt1 field value if set, zero value otherwise.

func (*UpdatePduSession200Response) GetBinaryDataN4InformationExt1Ok

func (o *UpdatePduSession200Response) GetBinaryDataN4InformationExt1Ok() (**os.File, bool)

GetBinaryDataN4InformationExt1Ok returns a tuple with the BinaryDataN4InformationExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePduSession200Response) GetBinaryDataN4InformationExt2

func (o *UpdatePduSession200Response) GetBinaryDataN4InformationExt2() *os.File

GetBinaryDataN4InformationExt2 returns the BinaryDataN4InformationExt2 field value if set, zero value otherwise.

func (*UpdatePduSession200Response) GetBinaryDataN4InformationExt2Ok

func (o *UpdatePduSession200Response) GetBinaryDataN4InformationExt2Ok() (**os.File, bool)

GetBinaryDataN4InformationExt2Ok returns a tuple with the BinaryDataN4InformationExt2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePduSession200Response) GetBinaryDataN4InformationOk

func (o *UpdatePduSession200Response) GetBinaryDataN4InformationOk() (**os.File, bool)

GetBinaryDataN4InformationOk returns a tuple with the BinaryDataN4Information field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePduSession200Response) GetJsonData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*UpdatePduSession200Response) GetJsonDataOk

func (o *UpdatePduSession200Response) GetJsonDataOk() (*HsmfUpdatedData, bool)

GetJsonDataOk returns a tuple with the JsonData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePduSession200Response) HasBinaryDataN1SmInfoToUe

func (o *UpdatePduSession200Response) HasBinaryDataN1SmInfoToUe() bool

HasBinaryDataN1SmInfoToUe returns a boolean if a field has been set.

func (*UpdatePduSession200Response) HasBinaryDataN4Information

func (o *UpdatePduSession200Response) HasBinaryDataN4Information() bool

HasBinaryDataN4Information returns a boolean if a field has been set.

func (*UpdatePduSession200Response) HasBinaryDataN4InformationExt1

func (o *UpdatePduSession200Response) HasBinaryDataN4InformationExt1() bool

HasBinaryDataN4InformationExt1 returns a boolean if a field has been set.

func (*UpdatePduSession200Response) HasBinaryDataN4InformationExt2

func (o *UpdatePduSession200Response) HasBinaryDataN4InformationExt2() bool

HasBinaryDataN4InformationExt2 returns a boolean if a field has been set.

func (*UpdatePduSession200Response) HasJsonData

func (o *UpdatePduSession200Response) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (UpdatePduSession200Response) MarshalJSON

func (o UpdatePduSession200Response) MarshalJSON() ([]byte, error)

func (*UpdatePduSession200Response) SetBinaryDataN1SmInfoToUe

func (o *UpdatePduSession200Response) SetBinaryDataN1SmInfoToUe(v *os.File)

SetBinaryDataN1SmInfoToUe gets a reference to the given *os.File and assigns it to the BinaryDataN1SmInfoToUe field.

func (*UpdatePduSession200Response) SetBinaryDataN4Information

func (o *UpdatePduSession200Response) SetBinaryDataN4Information(v *os.File)

SetBinaryDataN4Information gets a reference to the given *os.File and assigns it to the BinaryDataN4Information field.

func (*UpdatePduSession200Response) SetBinaryDataN4InformationExt1

func (o *UpdatePduSession200Response) SetBinaryDataN4InformationExt1(v *os.File)

SetBinaryDataN4InformationExt1 gets a reference to the given *os.File and assigns it to the BinaryDataN4InformationExt1 field.

func (*UpdatePduSession200Response) SetBinaryDataN4InformationExt2

func (o *UpdatePduSession200Response) SetBinaryDataN4InformationExt2(v *os.File)

SetBinaryDataN4InformationExt2 gets a reference to the given *os.File and assigns it to the BinaryDataN4InformationExt2 field.

func (*UpdatePduSession200Response) SetJsonData

func (o *UpdatePduSession200Response) SetJsonData(v HsmfUpdatedData)

SetJsonData gets a reference to the given HsmfUpdatedData and assigns it to the JsonData field.

func (UpdatePduSession200Response) ToMap

func (o UpdatePduSession200Response) ToMap() (map[string]interface{}, error)

type UpdatePduSession400Response

type UpdatePduSession400Response struct {
	JsonData               *HsmfUpdateError `json:"jsonData,omitempty"`
	BinaryDataN1SmInfoToUe **os.File        `json:"binaryDataN1SmInfoToUe,omitempty"`
}

UpdatePduSession400Response struct for UpdatePduSession400Response

func NewUpdatePduSession400Response

func NewUpdatePduSession400Response() *UpdatePduSession400Response

NewUpdatePduSession400Response instantiates a new UpdatePduSession400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePduSession400ResponseWithDefaults

func NewUpdatePduSession400ResponseWithDefaults() *UpdatePduSession400Response

NewUpdatePduSession400ResponseWithDefaults instantiates a new UpdatePduSession400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePduSession400Response) GetBinaryDataN1SmInfoToUe

func (o *UpdatePduSession400Response) GetBinaryDataN1SmInfoToUe() *os.File

GetBinaryDataN1SmInfoToUe returns the BinaryDataN1SmInfoToUe field value if set, zero value otherwise.

func (*UpdatePduSession400Response) GetBinaryDataN1SmInfoToUeOk

func (o *UpdatePduSession400Response) GetBinaryDataN1SmInfoToUeOk() (**os.File, bool)

GetBinaryDataN1SmInfoToUeOk returns a tuple with the BinaryDataN1SmInfoToUe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePduSession400Response) GetJsonData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*UpdatePduSession400Response) GetJsonDataOk

func (o *UpdatePduSession400Response) GetJsonDataOk() (*HsmfUpdateError, bool)

GetJsonDataOk returns a tuple with the JsonData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePduSession400Response) HasBinaryDataN1SmInfoToUe

func (o *UpdatePduSession400Response) HasBinaryDataN1SmInfoToUe() bool

HasBinaryDataN1SmInfoToUe returns a boolean if a field has been set.

func (*UpdatePduSession400Response) HasJsonData

func (o *UpdatePduSession400Response) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (UpdatePduSession400Response) MarshalJSON

func (o UpdatePduSession400Response) MarshalJSON() ([]byte, error)

func (*UpdatePduSession400Response) SetBinaryDataN1SmInfoToUe

func (o *UpdatePduSession400Response) SetBinaryDataN1SmInfoToUe(v *os.File)

SetBinaryDataN1SmInfoToUe gets a reference to the given *os.File and assigns it to the BinaryDataN1SmInfoToUe field.

func (*UpdatePduSession400Response) SetJsonData

func (o *UpdatePduSession400Response) SetJsonData(v HsmfUpdateError)

SetJsonData gets a reference to the given HsmfUpdateError and assigns it to the JsonData field.

func (UpdatePduSession400Response) ToMap

func (o UpdatePduSession400Response) ToMap() (map[string]interface{}, error)

type UpdatePduSessionRequest

type UpdatePduSessionRequest struct {
	JsonData                    *HsmfUpdateData `json:"jsonData,omitempty"`
	BinaryDataN1SmInfoFromUe    **os.File       `json:"binaryDataN1SmInfoFromUe,omitempty"`
	BinaryDataUnknownN1SmInfo   **os.File       `json:"binaryDataUnknownN1SmInfo,omitempty"`
	BinaryDataN4Information     **os.File       `json:"binaryDataN4Information,omitempty"`
	BinaryDataN4InformationExt1 **os.File       `json:"binaryDataN4InformationExt1,omitempty"`
	BinaryDataN4InformationExt2 **os.File       `json:"binaryDataN4InformationExt2,omitempty"`
}

UpdatePduSessionRequest struct for UpdatePduSessionRequest

func NewUpdatePduSessionRequest

func NewUpdatePduSessionRequest() *UpdatePduSessionRequest

NewUpdatePduSessionRequest instantiates a new UpdatePduSessionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePduSessionRequestWithDefaults

func NewUpdatePduSessionRequestWithDefaults() *UpdatePduSessionRequest

NewUpdatePduSessionRequestWithDefaults instantiates a new UpdatePduSessionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePduSessionRequest) GetBinaryDataN1SmInfoFromUe

func (o *UpdatePduSessionRequest) GetBinaryDataN1SmInfoFromUe() *os.File

GetBinaryDataN1SmInfoFromUe returns the BinaryDataN1SmInfoFromUe field value if set, zero value otherwise.

func (*UpdatePduSessionRequest) GetBinaryDataN1SmInfoFromUeOk

func (o *UpdatePduSessionRequest) GetBinaryDataN1SmInfoFromUeOk() (**os.File, bool)

GetBinaryDataN1SmInfoFromUeOk returns a tuple with the BinaryDataN1SmInfoFromUe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePduSessionRequest) GetBinaryDataN4Information

func (o *UpdatePduSessionRequest) GetBinaryDataN4Information() *os.File

GetBinaryDataN4Information returns the BinaryDataN4Information field value if set, zero value otherwise.

func (*UpdatePduSessionRequest) GetBinaryDataN4InformationExt1

func (o *UpdatePduSessionRequest) GetBinaryDataN4InformationExt1() *os.File

GetBinaryDataN4InformationExt1 returns the BinaryDataN4InformationExt1 field value if set, zero value otherwise.

func (*UpdatePduSessionRequest) GetBinaryDataN4InformationExt1Ok

func (o *UpdatePduSessionRequest) GetBinaryDataN4InformationExt1Ok() (**os.File, bool)

GetBinaryDataN4InformationExt1Ok returns a tuple with the BinaryDataN4InformationExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePduSessionRequest) GetBinaryDataN4InformationExt2

func (o *UpdatePduSessionRequest) GetBinaryDataN4InformationExt2() *os.File

GetBinaryDataN4InformationExt2 returns the BinaryDataN4InformationExt2 field value if set, zero value otherwise.

func (*UpdatePduSessionRequest) GetBinaryDataN4InformationExt2Ok

func (o *UpdatePduSessionRequest) GetBinaryDataN4InformationExt2Ok() (**os.File, bool)

GetBinaryDataN4InformationExt2Ok returns a tuple with the BinaryDataN4InformationExt2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePduSessionRequest) GetBinaryDataN4InformationOk

func (o *UpdatePduSessionRequest) GetBinaryDataN4InformationOk() (**os.File, bool)

GetBinaryDataN4InformationOk returns a tuple with the BinaryDataN4Information field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePduSessionRequest) GetBinaryDataUnknownN1SmInfo

func (o *UpdatePduSessionRequest) GetBinaryDataUnknownN1SmInfo() *os.File

GetBinaryDataUnknownN1SmInfo returns the BinaryDataUnknownN1SmInfo field value if set, zero value otherwise.

func (*UpdatePduSessionRequest) GetBinaryDataUnknownN1SmInfoOk

func (o *UpdatePduSessionRequest) GetBinaryDataUnknownN1SmInfoOk() (**os.File, bool)

GetBinaryDataUnknownN1SmInfoOk returns a tuple with the BinaryDataUnknownN1SmInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePduSessionRequest) GetJsonData

func (o *UpdatePduSessionRequest) GetJsonData() HsmfUpdateData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*UpdatePduSessionRequest) GetJsonDataOk

func (o *UpdatePduSessionRequest) GetJsonDataOk() (*HsmfUpdateData, bool)

GetJsonDataOk returns a tuple with the JsonData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePduSessionRequest) HasBinaryDataN1SmInfoFromUe

func (o *UpdatePduSessionRequest) HasBinaryDataN1SmInfoFromUe() bool

HasBinaryDataN1SmInfoFromUe returns a boolean if a field has been set.

func (*UpdatePduSessionRequest) HasBinaryDataN4Information

func (o *UpdatePduSessionRequest) HasBinaryDataN4Information() bool

HasBinaryDataN4Information returns a boolean if a field has been set.

func (*UpdatePduSessionRequest) HasBinaryDataN4InformationExt1

func (o *UpdatePduSessionRequest) HasBinaryDataN4InformationExt1() bool

HasBinaryDataN4InformationExt1 returns a boolean if a field has been set.

func (*UpdatePduSessionRequest) HasBinaryDataN4InformationExt2

func (o *UpdatePduSessionRequest) HasBinaryDataN4InformationExt2() bool

HasBinaryDataN4InformationExt2 returns a boolean if a field has been set.

func (*UpdatePduSessionRequest) HasBinaryDataUnknownN1SmInfo

func (o *UpdatePduSessionRequest) HasBinaryDataUnknownN1SmInfo() bool

HasBinaryDataUnknownN1SmInfo returns a boolean if a field has been set.

func (*UpdatePduSessionRequest) HasJsonData

func (o *UpdatePduSessionRequest) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (UpdatePduSessionRequest) MarshalJSON

func (o UpdatePduSessionRequest) MarshalJSON() ([]byte, error)

func (*UpdatePduSessionRequest) SetBinaryDataN1SmInfoFromUe

func (o *UpdatePduSessionRequest) SetBinaryDataN1SmInfoFromUe(v *os.File)

SetBinaryDataN1SmInfoFromUe gets a reference to the given *os.File and assigns it to the BinaryDataN1SmInfoFromUe field.

func (*UpdatePduSessionRequest) SetBinaryDataN4Information

func (o *UpdatePduSessionRequest) SetBinaryDataN4Information(v *os.File)

SetBinaryDataN4Information gets a reference to the given *os.File and assigns it to the BinaryDataN4Information field.

func (*UpdatePduSessionRequest) SetBinaryDataN4InformationExt1

func (o *UpdatePduSessionRequest) SetBinaryDataN4InformationExt1(v *os.File)

SetBinaryDataN4InformationExt1 gets a reference to the given *os.File and assigns it to the BinaryDataN4InformationExt1 field.

func (*UpdatePduSessionRequest) SetBinaryDataN4InformationExt2

func (o *UpdatePduSessionRequest) SetBinaryDataN4InformationExt2(v *os.File)

SetBinaryDataN4InformationExt2 gets a reference to the given *os.File and assigns it to the BinaryDataN4InformationExt2 field.

func (*UpdatePduSessionRequest) SetBinaryDataUnknownN1SmInfo

func (o *UpdatePduSessionRequest) SetBinaryDataUnknownN1SmInfo(v *os.File)

SetBinaryDataUnknownN1SmInfo gets a reference to the given *os.File and assigns it to the BinaryDataUnknownN1SmInfo field.

func (*UpdatePduSessionRequest) SetJsonData

func (o *UpdatePduSessionRequest) SetJsonData(v HsmfUpdateData)

SetJsonData gets a reference to the given HsmfUpdateData and assigns it to the JsonData field.

func (UpdatePduSessionRequest) ToMap

func (o UpdatePduSessionRequest) ToMap() (map[string]interface{}, error)

type UpdateSmContext200Response

type UpdateSmContext200Response struct {
	JsonData                  *SmContextUpdatedData `json:"jsonData,omitempty"`
	BinaryDataN1SmMessage     **os.File             `json:"binaryDataN1SmMessage,omitempty"`
	BinaryDataN2SmInformation **os.File             `json:"binaryDataN2SmInformation,omitempty"`
}

UpdateSmContext200Response struct for UpdateSmContext200Response

func NewUpdateSmContext200Response

func NewUpdateSmContext200Response() *UpdateSmContext200Response

NewUpdateSmContext200Response instantiates a new UpdateSmContext200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateSmContext200ResponseWithDefaults

func NewUpdateSmContext200ResponseWithDefaults() *UpdateSmContext200Response

NewUpdateSmContext200ResponseWithDefaults instantiates a new UpdateSmContext200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateSmContext200Response) GetBinaryDataN1SmMessage

func (o *UpdateSmContext200Response) GetBinaryDataN1SmMessage() *os.File

GetBinaryDataN1SmMessage returns the BinaryDataN1SmMessage field value if set, zero value otherwise.

func (*UpdateSmContext200Response) GetBinaryDataN1SmMessageOk

func (o *UpdateSmContext200Response) GetBinaryDataN1SmMessageOk() (**os.File, bool)

GetBinaryDataN1SmMessageOk returns a tuple with the BinaryDataN1SmMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSmContext200Response) GetBinaryDataN2SmInformation

func (o *UpdateSmContext200Response) GetBinaryDataN2SmInformation() *os.File

GetBinaryDataN2SmInformation returns the BinaryDataN2SmInformation field value if set, zero value otherwise.

func (*UpdateSmContext200Response) GetBinaryDataN2SmInformationOk

func (o *UpdateSmContext200Response) GetBinaryDataN2SmInformationOk() (**os.File, bool)

GetBinaryDataN2SmInformationOk returns a tuple with the BinaryDataN2SmInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSmContext200Response) GetJsonData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*UpdateSmContext200Response) GetJsonDataOk

func (o *UpdateSmContext200Response) GetJsonDataOk() (*SmContextUpdatedData, bool)

GetJsonDataOk returns a tuple with the JsonData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSmContext200Response) HasBinaryDataN1SmMessage

func (o *UpdateSmContext200Response) HasBinaryDataN1SmMessage() bool

HasBinaryDataN1SmMessage returns a boolean if a field has been set.

func (*UpdateSmContext200Response) HasBinaryDataN2SmInformation

func (o *UpdateSmContext200Response) HasBinaryDataN2SmInformation() bool

HasBinaryDataN2SmInformation returns a boolean if a field has been set.

func (*UpdateSmContext200Response) HasJsonData

func (o *UpdateSmContext200Response) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (UpdateSmContext200Response) MarshalJSON

func (o UpdateSmContext200Response) MarshalJSON() ([]byte, error)

func (*UpdateSmContext200Response) SetBinaryDataN1SmMessage

func (o *UpdateSmContext200Response) SetBinaryDataN1SmMessage(v *os.File)

SetBinaryDataN1SmMessage gets a reference to the given *os.File and assigns it to the BinaryDataN1SmMessage field.

func (*UpdateSmContext200Response) SetBinaryDataN2SmInformation

func (o *UpdateSmContext200Response) SetBinaryDataN2SmInformation(v *os.File)

SetBinaryDataN2SmInformation gets a reference to the given *os.File and assigns it to the BinaryDataN2SmInformation field.

func (*UpdateSmContext200Response) SetJsonData

SetJsonData gets a reference to the given SmContextUpdatedData and assigns it to the JsonData field.

func (UpdateSmContext200Response) ToMap

func (o UpdateSmContext200Response) ToMap() (map[string]interface{}, error)

type UpdateSmContext400Response

type UpdateSmContext400Response struct {
	JsonData                  *SmContextUpdateError `json:"jsonData,omitempty"`
	BinaryDataN1SmMessage     **os.File             `json:"binaryDataN1SmMessage,omitempty"`
	BinaryDataN2SmInformation **os.File             `json:"binaryDataN2SmInformation,omitempty"`
}

UpdateSmContext400Response struct for UpdateSmContext400Response

func NewUpdateSmContext400Response

func NewUpdateSmContext400Response() *UpdateSmContext400Response

NewUpdateSmContext400Response instantiates a new UpdateSmContext400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateSmContext400ResponseWithDefaults

func NewUpdateSmContext400ResponseWithDefaults() *UpdateSmContext400Response

NewUpdateSmContext400ResponseWithDefaults instantiates a new UpdateSmContext400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateSmContext400Response) GetBinaryDataN1SmMessage

func (o *UpdateSmContext400Response) GetBinaryDataN1SmMessage() *os.File

GetBinaryDataN1SmMessage returns the BinaryDataN1SmMessage field value if set, zero value otherwise.

func (*UpdateSmContext400Response) GetBinaryDataN1SmMessageOk

func (o *UpdateSmContext400Response) GetBinaryDataN1SmMessageOk() (**os.File, bool)

GetBinaryDataN1SmMessageOk returns a tuple with the BinaryDataN1SmMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSmContext400Response) GetBinaryDataN2SmInformation

func (o *UpdateSmContext400Response) GetBinaryDataN2SmInformation() *os.File

GetBinaryDataN2SmInformation returns the BinaryDataN2SmInformation field value if set, zero value otherwise.

func (*UpdateSmContext400Response) GetBinaryDataN2SmInformationOk

func (o *UpdateSmContext400Response) GetBinaryDataN2SmInformationOk() (**os.File, bool)

GetBinaryDataN2SmInformationOk returns a tuple with the BinaryDataN2SmInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSmContext400Response) GetJsonData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*UpdateSmContext400Response) GetJsonDataOk

func (o *UpdateSmContext400Response) GetJsonDataOk() (*SmContextUpdateError, bool)

GetJsonDataOk returns a tuple with the JsonData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSmContext400Response) HasBinaryDataN1SmMessage

func (o *UpdateSmContext400Response) HasBinaryDataN1SmMessage() bool

HasBinaryDataN1SmMessage returns a boolean if a field has been set.

func (*UpdateSmContext400Response) HasBinaryDataN2SmInformation

func (o *UpdateSmContext400Response) HasBinaryDataN2SmInformation() bool

HasBinaryDataN2SmInformation returns a boolean if a field has been set.

func (*UpdateSmContext400Response) HasJsonData

func (o *UpdateSmContext400Response) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (UpdateSmContext400Response) MarshalJSON

func (o UpdateSmContext400Response) MarshalJSON() ([]byte, error)

func (*UpdateSmContext400Response) SetBinaryDataN1SmMessage

func (o *UpdateSmContext400Response) SetBinaryDataN1SmMessage(v *os.File)

SetBinaryDataN1SmMessage gets a reference to the given *os.File and assigns it to the BinaryDataN1SmMessage field.

func (*UpdateSmContext400Response) SetBinaryDataN2SmInformation

func (o *UpdateSmContext400Response) SetBinaryDataN2SmInformation(v *os.File)

SetBinaryDataN2SmInformation gets a reference to the given *os.File and assigns it to the BinaryDataN2SmInformation field.

func (*UpdateSmContext400Response) SetJsonData

SetJsonData gets a reference to the given SmContextUpdateError and assigns it to the JsonData field.

func (UpdateSmContext400Response) ToMap

func (o UpdateSmContext400Response) ToMap() (map[string]interface{}, error)

type UpdateSmContextRequest

type UpdateSmContextRequest struct {
	JsonData                      *SmContextUpdateData `json:"jsonData,omitempty"`
	BinaryDataN1SmMessage         **os.File            `json:"binaryDataN1SmMessage,omitempty"`
	BinaryDataN2SmInformation     **os.File            `json:"binaryDataN2SmInformation,omitempty"`
	BinaryDataN2SmInformationExt1 **os.File            `json:"binaryDataN2SmInformationExt1,omitempty"`
}

UpdateSmContextRequest struct for UpdateSmContextRequest

func NewUpdateSmContextRequest

func NewUpdateSmContextRequest() *UpdateSmContextRequest

NewUpdateSmContextRequest instantiates a new UpdateSmContextRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateSmContextRequestWithDefaults

func NewUpdateSmContextRequestWithDefaults() *UpdateSmContextRequest

NewUpdateSmContextRequestWithDefaults instantiates a new UpdateSmContextRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateSmContextRequest) GetBinaryDataN1SmMessage

func (o *UpdateSmContextRequest) GetBinaryDataN1SmMessage() *os.File

GetBinaryDataN1SmMessage returns the BinaryDataN1SmMessage field value if set, zero value otherwise.

func (*UpdateSmContextRequest) GetBinaryDataN1SmMessageOk

func (o *UpdateSmContextRequest) GetBinaryDataN1SmMessageOk() (**os.File, bool)

GetBinaryDataN1SmMessageOk returns a tuple with the BinaryDataN1SmMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSmContextRequest) GetBinaryDataN2SmInformation

func (o *UpdateSmContextRequest) GetBinaryDataN2SmInformation() *os.File

GetBinaryDataN2SmInformation returns the BinaryDataN2SmInformation field value if set, zero value otherwise.

func (*UpdateSmContextRequest) GetBinaryDataN2SmInformationExt1

func (o *UpdateSmContextRequest) GetBinaryDataN2SmInformationExt1() *os.File

GetBinaryDataN2SmInformationExt1 returns the BinaryDataN2SmInformationExt1 field value if set, zero value otherwise.

func (*UpdateSmContextRequest) GetBinaryDataN2SmInformationExt1Ok

func (o *UpdateSmContextRequest) GetBinaryDataN2SmInformationExt1Ok() (**os.File, bool)

GetBinaryDataN2SmInformationExt1Ok returns a tuple with the BinaryDataN2SmInformationExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSmContextRequest) GetBinaryDataN2SmInformationOk

func (o *UpdateSmContextRequest) GetBinaryDataN2SmInformationOk() (**os.File, bool)

GetBinaryDataN2SmInformationOk returns a tuple with the BinaryDataN2SmInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSmContextRequest) GetJsonData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*UpdateSmContextRequest) GetJsonDataOk

func (o *UpdateSmContextRequest) GetJsonDataOk() (*SmContextUpdateData, bool)

GetJsonDataOk returns a tuple with the JsonData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSmContextRequest) HasBinaryDataN1SmMessage

func (o *UpdateSmContextRequest) HasBinaryDataN1SmMessage() bool

HasBinaryDataN1SmMessage returns a boolean if a field has been set.

func (*UpdateSmContextRequest) HasBinaryDataN2SmInformation

func (o *UpdateSmContextRequest) HasBinaryDataN2SmInformation() bool

HasBinaryDataN2SmInformation returns a boolean if a field has been set.

func (*UpdateSmContextRequest) HasBinaryDataN2SmInformationExt1

func (o *UpdateSmContextRequest) HasBinaryDataN2SmInformationExt1() bool

HasBinaryDataN2SmInformationExt1 returns a boolean if a field has been set.

func (*UpdateSmContextRequest) HasJsonData

func (o *UpdateSmContextRequest) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (UpdateSmContextRequest) MarshalJSON

func (o UpdateSmContextRequest) MarshalJSON() ([]byte, error)

func (*UpdateSmContextRequest) SetBinaryDataN1SmMessage

func (o *UpdateSmContextRequest) SetBinaryDataN1SmMessage(v *os.File)

SetBinaryDataN1SmMessage gets a reference to the given *os.File and assigns it to the BinaryDataN1SmMessage field.

func (*UpdateSmContextRequest) SetBinaryDataN2SmInformation

func (o *UpdateSmContextRequest) SetBinaryDataN2SmInformation(v *os.File)

SetBinaryDataN2SmInformation gets a reference to the given *os.File and assigns it to the BinaryDataN2SmInformation field.

func (*UpdateSmContextRequest) SetBinaryDataN2SmInformationExt1

func (o *UpdateSmContextRequest) SetBinaryDataN2SmInformationExt1(v *os.File)

SetBinaryDataN2SmInformationExt1 gets a reference to the given *os.File and assigns it to the BinaryDataN2SmInformationExt1 field.

func (*UpdateSmContextRequest) SetJsonData

func (o *UpdateSmContextRequest) SetJsonData(v SmContextUpdateData)

SetJsonData gets a reference to the given SmContextUpdateData and assigns it to the JsonData field.

func (UpdateSmContextRequest) ToMap

func (o UpdateSmContextRequest) ToMap() (map[string]interface{}, error)

type UserLocation

type UserLocation struct {
	EutraLocation *EutraLocation `json:"eutraLocation,omitempty"`
	NrLocation    *NrLocation    `json:"nrLocation,omitempty"`
	N3gaLocation  *N3gaLocation  `json:"n3gaLocation,omitempty"`
	UtraLocation  *UtraLocation  `json:"utraLocation,omitempty"`
	GeraLocation  *GeraLocation  `json:"geraLocation,omitempty"`
}

UserLocation At least one of eutraLocation, nrLocation and n3gaLocation shall be present. Several of them may be present.

func NewUserLocation

func NewUserLocation() *UserLocation

NewUserLocation instantiates a new UserLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserLocationWithDefaults

func NewUserLocationWithDefaults() *UserLocation

NewUserLocationWithDefaults instantiates a new UserLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserLocation) GetEutraLocation

func (o *UserLocation) GetEutraLocation() EutraLocation

GetEutraLocation returns the EutraLocation field value if set, zero value otherwise.

func (*UserLocation) GetEutraLocationOk

func (o *UserLocation) GetEutraLocationOk() (*EutraLocation, bool)

GetEutraLocationOk returns a tuple with the EutraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetGeraLocation

func (o *UserLocation) GetGeraLocation() GeraLocation

GetGeraLocation returns the GeraLocation field value if set, zero value otherwise.

func (*UserLocation) GetGeraLocationOk

func (o *UserLocation) GetGeraLocationOk() (*GeraLocation, bool)

GetGeraLocationOk returns a tuple with the GeraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetN3gaLocation

func (o *UserLocation) GetN3gaLocation() N3gaLocation

GetN3gaLocation returns the N3gaLocation field value if set, zero value otherwise.

func (*UserLocation) GetN3gaLocationOk

func (o *UserLocation) GetN3gaLocationOk() (*N3gaLocation, bool)

GetN3gaLocationOk returns a tuple with the N3gaLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetNrLocation

func (o *UserLocation) GetNrLocation() NrLocation

GetNrLocation returns the NrLocation field value if set, zero value otherwise.

func (*UserLocation) GetNrLocationOk

func (o *UserLocation) GetNrLocationOk() (*NrLocation, bool)

GetNrLocationOk returns a tuple with the NrLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetUtraLocation

func (o *UserLocation) GetUtraLocation() UtraLocation

GetUtraLocation returns the UtraLocation field value if set, zero value otherwise.

func (*UserLocation) GetUtraLocationOk

func (o *UserLocation) GetUtraLocationOk() (*UtraLocation, bool)

GetUtraLocationOk returns a tuple with the UtraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) HasEutraLocation

func (o *UserLocation) HasEutraLocation() bool

HasEutraLocation returns a boolean if a field has been set.

func (*UserLocation) HasGeraLocation

func (o *UserLocation) HasGeraLocation() bool

HasGeraLocation returns a boolean if a field has been set.

func (*UserLocation) HasN3gaLocation

func (o *UserLocation) HasN3gaLocation() bool

HasN3gaLocation returns a boolean if a field has been set.

func (*UserLocation) HasNrLocation

func (o *UserLocation) HasNrLocation() bool

HasNrLocation returns a boolean if a field has been set.

func (*UserLocation) HasUtraLocation

func (o *UserLocation) HasUtraLocation() bool

HasUtraLocation returns a boolean if a field has been set.

func (UserLocation) MarshalJSON

func (o UserLocation) MarshalJSON() ([]byte, error)

func (*UserLocation) SetEutraLocation

func (o *UserLocation) SetEutraLocation(v EutraLocation)

SetEutraLocation gets a reference to the given EutraLocation and assigns it to the EutraLocation field.

func (*UserLocation) SetGeraLocation

func (o *UserLocation) SetGeraLocation(v GeraLocation)

SetGeraLocation gets a reference to the given GeraLocation and assigns it to the GeraLocation field.

func (*UserLocation) SetN3gaLocation

func (o *UserLocation) SetN3gaLocation(v N3gaLocation)

SetN3gaLocation gets a reference to the given N3gaLocation and assigns it to the N3gaLocation field.

func (*UserLocation) SetNrLocation

func (o *UserLocation) SetNrLocation(v NrLocation)

SetNrLocation gets a reference to the given NrLocation and assigns it to the NrLocation field.

func (*UserLocation) SetUtraLocation

func (o *UserLocation) SetUtraLocation(v UtraLocation)

SetUtraLocation gets a reference to the given UtraLocation and assigns it to the UtraLocation field.

func (UserLocation) ToMap

func (o UserLocation) ToMap() (map[string]interface{}, error)

type UtraLocation

type UtraLocation struct {
	Interface *interface{}
}

UtraLocation - Exactly one of cgi, sai or lai shall be present.

func InterfaceAsUtraLocation

func InterfaceAsUtraLocation(v *interface{}) UtraLocation

interface{}AsUtraLocation is a convenience function that returns interface{} wrapped in UtraLocation

func (*UtraLocation) GetActualInstance

func (obj *UtraLocation) GetActualInstance() interface{}

Get the actual instance

func (UtraLocation) MarshalJSON

func (src UtraLocation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UtraLocation) UnmarshalJSON

func (dst *UtraLocation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type VolumeTimedReport

type VolumeTimedReport struct {
	// string with format 'date-time' as defined in OpenAPI.
	StartTimeStamp time.Time `json:"startTimeStamp"`
	// string with format 'date-time' as defined in OpenAPI.
	EndTimeStamp time.Time `json:"endTimeStamp"`
	// string with format 'int64' as defined in OpenAPI.
	DownlinkVolume int64 `json:"downlinkVolume"`
	// string with format 'int64' as defined in OpenAPI.
	UplinkVolume int64 `json:"uplinkVolume"`
}

VolumeTimedReport Contains Usage data information.

func NewVolumeTimedReport

func NewVolumeTimedReport(startTimeStamp time.Time, endTimeStamp time.Time, downlinkVolume int64, uplinkVolume int64) *VolumeTimedReport

NewVolumeTimedReport instantiates a new VolumeTimedReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeTimedReportWithDefaults

func NewVolumeTimedReportWithDefaults() *VolumeTimedReport

NewVolumeTimedReportWithDefaults instantiates a new VolumeTimedReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeTimedReport) GetDownlinkVolume

func (o *VolumeTimedReport) GetDownlinkVolume() int64

GetDownlinkVolume returns the DownlinkVolume field value

func (*VolumeTimedReport) GetDownlinkVolumeOk

func (o *VolumeTimedReport) GetDownlinkVolumeOk() (*int64, bool)

GetDownlinkVolumeOk returns a tuple with the DownlinkVolume field value and a boolean to check if the value has been set.

func (*VolumeTimedReport) GetEndTimeStamp

func (o *VolumeTimedReport) GetEndTimeStamp() time.Time

GetEndTimeStamp returns the EndTimeStamp field value

func (*VolumeTimedReport) GetEndTimeStampOk

func (o *VolumeTimedReport) GetEndTimeStampOk() (*time.Time, bool)

GetEndTimeStampOk returns a tuple with the EndTimeStamp field value and a boolean to check if the value has been set.

func (*VolumeTimedReport) GetStartTimeStamp

func (o *VolumeTimedReport) GetStartTimeStamp() time.Time

GetStartTimeStamp returns the StartTimeStamp field value

func (*VolumeTimedReport) GetStartTimeStampOk

func (o *VolumeTimedReport) GetStartTimeStampOk() (*time.Time, bool)

GetStartTimeStampOk returns a tuple with the StartTimeStamp field value and a boolean to check if the value has been set.

func (*VolumeTimedReport) GetUplinkVolume

func (o *VolumeTimedReport) GetUplinkVolume() int64

GetUplinkVolume returns the UplinkVolume field value

func (*VolumeTimedReport) GetUplinkVolumeOk

func (o *VolumeTimedReport) GetUplinkVolumeOk() (*int64, bool)

GetUplinkVolumeOk returns a tuple with the UplinkVolume field value and a boolean to check if the value has been set.

func (VolumeTimedReport) MarshalJSON

func (o VolumeTimedReport) MarshalJSON() ([]byte, error)

func (*VolumeTimedReport) SetDownlinkVolume

func (o *VolumeTimedReport) SetDownlinkVolume(v int64)

SetDownlinkVolume sets field value

func (*VolumeTimedReport) SetEndTimeStamp

func (o *VolumeTimedReport) SetEndTimeStamp(v time.Time)

SetEndTimeStamp sets field value

func (*VolumeTimedReport) SetStartTimeStamp

func (o *VolumeTimedReport) SetStartTimeStamp(v time.Time)

SetStartTimeStamp sets field value

func (*VolumeTimedReport) SetUplinkVolume

func (o *VolumeTimedReport) SetUplinkVolume(v int64)

SetUplinkVolume sets field value

func (VolumeTimedReport) ToMap

func (o VolumeTimedReport) ToMap() (map[string]interface{}, error)

type VplmnQos

type VplmnQos 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"`
	SessionAmbr *Ambr  `json:"sessionAmbr,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MaxFbrDl *string `json:"maxFbrDl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MaxFbrUl *string `json:"maxFbrUl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	GuaFbrDl *string `json:"guaFbrDl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	GuaFbrUl *string `json:"guaFbrUl,omitempty"`
}

VplmnQos VPLMN QoS

func NewVplmnQos

func NewVplmnQos() *VplmnQos

NewVplmnQos instantiates a new VplmnQos object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVplmnQosWithDefaults

func NewVplmnQosWithDefaults() *VplmnQos

NewVplmnQosWithDefaults instantiates a new VplmnQos object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VplmnQos) GetArp

func (o *VplmnQos) GetArp() Arp

GetArp returns the Arp field value if set, zero value otherwise.

func (*VplmnQos) GetArpOk

func (o *VplmnQos) 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 (*VplmnQos) GetGuaFbrDl

func (o *VplmnQos) GetGuaFbrDl() string

GetGuaFbrDl returns the GuaFbrDl field value if set, zero value otherwise.

func (*VplmnQos) GetGuaFbrDlOk

func (o *VplmnQos) GetGuaFbrDlOk() (*string, bool)

GetGuaFbrDlOk returns a tuple with the GuaFbrDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VplmnQos) GetGuaFbrUl

func (o *VplmnQos) GetGuaFbrUl() string

GetGuaFbrUl returns the GuaFbrUl field value if set, zero value otherwise.

func (*VplmnQos) GetGuaFbrUlOk

func (o *VplmnQos) GetGuaFbrUlOk() (*string, bool)

GetGuaFbrUlOk returns a tuple with the GuaFbrUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VplmnQos) GetMaxFbrDl

func (o *VplmnQos) GetMaxFbrDl() string

GetMaxFbrDl returns the MaxFbrDl field value if set, zero value otherwise.

func (*VplmnQos) GetMaxFbrDlOk

func (o *VplmnQos) GetMaxFbrDlOk() (*string, bool)

GetMaxFbrDlOk returns a tuple with the MaxFbrDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VplmnQos) GetMaxFbrUl

func (o *VplmnQos) GetMaxFbrUl() string

GetMaxFbrUl returns the MaxFbrUl field value if set, zero value otherwise.

func (*VplmnQos) GetMaxFbrUlOk

func (o *VplmnQos) GetMaxFbrUlOk() (*string, bool)

GetMaxFbrUlOk returns a tuple with the MaxFbrUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VplmnQos) GetSessionAmbr

func (o *VplmnQos) GetSessionAmbr() Ambr

GetSessionAmbr returns the SessionAmbr field value if set, zero value otherwise.

func (*VplmnQos) GetSessionAmbrOk

func (o *VplmnQos) GetSessionAmbrOk() (*Ambr, bool)

GetSessionAmbrOk returns a tuple with the SessionAmbr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VplmnQos) GetVar5qi

func (o *VplmnQos) GetVar5qi() int32

GetVar5qi returns the Var5qi field value if set, zero value otherwise.

func (*VplmnQos) GetVar5qiOk

func (o *VplmnQos) 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 (*VplmnQos) HasArp

func (o *VplmnQos) HasArp() bool

HasArp returns a boolean if a field has been set.

func (*VplmnQos) HasGuaFbrDl

func (o *VplmnQos) HasGuaFbrDl() bool

HasGuaFbrDl returns a boolean if a field has been set.

func (*VplmnQos) HasGuaFbrUl

func (o *VplmnQos) HasGuaFbrUl() bool

HasGuaFbrUl returns a boolean if a field has been set.

func (*VplmnQos) HasMaxFbrDl

func (o *VplmnQos) HasMaxFbrDl() bool

HasMaxFbrDl returns a boolean if a field has been set.

func (*VplmnQos) HasMaxFbrUl

func (o *VplmnQos) HasMaxFbrUl() bool

HasMaxFbrUl returns a boolean if a field has been set.

func (*VplmnQos) HasSessionAmbr

func (o *VplmnQos) HasSessionAmbr() bool

HasSessionAmbr returns a boolean if a field has been set.

func (*VplmnQos) HasVar5qi

func (o *VplmnQos) HasVar5qi() bool

HasVar5qi returns a boolean if a field has been set.

func (VplmnQos) MarshalJSON

func (o VplmnQos) MarshalJSON() ([]byte, error)

func (*VplmnQos) SetArp

func (o *VplmnQos) SetArp(v Arp)

SetArp gets a reference to the given Arp and assigns it to the Arp field.

func (*VplmnQos) SetGuaFbrDl

func (o *VplmnQos) SetGuaFbrDl(v string)

SetGuaFbrDl gets a reference to the given string and assigns it to the GuaFbrDl field.

func (*VplmnQos) SetGuaFbrUl

func (o *VplmnQos) SetGuaFbrUl(v string)

SetGuaFbrUl gets a reference to the given string and assigns it to the GuaFbrUl field.

func (*VplmnQos) SetMaxFbrDl

func (o *VplmnQos) SetMaxFbrDl(v string)

SetMaxFbrDl gets a reference to the given string and assigns it to the MaxFbrDl field.

func (*VplmnQos) SetMaxFbrUl

func (o *VplmnQos) SetMaxFbrUl(v string)

SetMaxFbrUl gets a reference to the given string and assigns it to the MaxFbrUl field.

func (*VplmnQos) SetSessionAmbr

func (o *VplmnQos) SetSessionAmbr(v Ambr)

SetSessionAmbr gets a reference to the given Ambr and assigns it to the SessionAmbr field.

func (*VplmnQos) SetVar5qi

func (o *VplmnQos) SetVar5qi(v int32)

SetVar5qi gets a reference to the given int32 and assigns it to the Var5qi field.

func (VplmnQos) ToMap

func (o VplmnQos) ToMap() (map[string]interface{}, error)

type VsmfUpdateData

type VsmfUpdateData struct {
	RequestIndication         RequestIndication             `json:"requestIndication"`
	SessionAmbr               *Ambr                         `json:"sessionAmbr,omitempty"`
	QosFlowsAddModRequestList []QosFlowAddModifyRequestItem `json:"qosFlowsAddModRequestList,omitempty"`
	QosFlowsRelRequestList    []QosFlowReleaseRequestItem   `json:"qosFlowsRelRequestList,omitempty"`
	EpsBearerInfo             []EpsBearerInfo               `json:"epsBearerInfo,omitempty"`
	AssignEbiList             []Arp                         `json:"assignEbiList,omitempty"`
	RevokeEbiList             []int32                       `json:"revokeEbiList,omitempty"`
	ModifiedEbiList           []EbiArpMapping               `json:"modifiedEbiList,omitempty"`
	// Procedure Transaction Identifier
	Pti             *int32           `json:"pti,omitempty"`
	N1SmInfoToUe    *RefToBinaryData `json:"n1SmInfoToUe,omitempty"`
	AlwaysOnGranted *bool            `json:"alwaysOnGranted,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	HsmfPduSessionUri *string `json:"hsmfPduSessionUri,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.
	NewSmfId *string `json:"newSmfId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	NewSmfPduSessionUri *string `json:"newSmfPduSessionUri,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"`
	Cause             *Cause  `json:"cause,omitempty"`
	N1smCause         *string `json:"n1smCause,omitempty"`
	// indicating a time in seconds.
	BackOffTimer                *int32               `json:"backOffTimer,omitempty"`
	MaReleaseInd                *MaReleaseIndication `json:"maReleaseInd,omitempty"`
	MaAcceptedInd               *bool                `json:"maAcceptedInd,omitempty"`
	AdditionalCnTunnelInfo      *TunnelInfo          `json:"additionalCnTunnelInfo,omitempty"`
	DnaiList                    []string             `json:"dnaiList,omitempty"`
	N4Info                      *N4Information       `json:"n4Info,omitempty"`
	N4InfoExt1                  *N4Information       `json:"n4InfoExt1,omitempty"`
	N4InfoExt2                  *N4Information       `json:"n4InfoExt2,omitempty"`
	N4InfoExt3                  *N4Information       `json:"n4InfoExt3,omitempty"`
	SmallDataRateControlEnabled *bool                `json:"smallDataRateControlEnabled,omitempty"`
	QosMonitoringInfo           *QosMonitoringInfo   `json:"qosMonitoringInfo,omitempty"`
	EpsPdnCnxInfo               *EpsPdnCnxInfo       `json:"epsPdnCnxInfo,omitempty"`
	N9DataForwardingInd         *bool                `json:"n9DataForwardingInd,omitempty"`
	// indicating a time in seconds.
	N9InactivityTimer *int32 `json:"n9InactivityTimer,omitempty"`
}

VsmfUpdateData Data within Update Request towards V-SMF, or from SMF to I-SMF

func NewVsmfUpdateData

func NewVsmfUpdateData(requestIndication RequestIndication) *VsmfUpdateData

NewVsmfUpdateData instantiates a new VsmfUpdateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVsmfUpdateDataWithDefaults

func NewVsmfUpdateDataWithDefaults() *VsmfUpdateData

NewVsmfUpdateDataWithDefaults instantiates a new VsmfUpdateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VsmfUpdateData) GetAdditionalCnTunnelInfo

func (o *VsmfUpdateData) GetAdditionalCnTunnelInfo() TunnelInfo

GetAdditionalCnTunnelInfo returns the AdditionalCnTunnelInfo field value if set, zero value otherwise.

func (*VsmfUpdateData) GetAdditionalCnTunnelInfoOk

func (o *VsmfUpdateData) GetAdditionalCnTunnelInfoOk() (*TunnelInfo, bool)

GetAdditionalCnTunnelInfoOk returns a tuple with the AdditionalCnTunnelInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetAlwaysOnGranted

func (o *VsmfUpdateData) GetAlwaysOnGranted() bool

GetAlwaysOnGranted returns the AlwaysOnGranted field value if set, zero value otherwise.

func (*VsmfUpdateData) GetAlwaysOnGrantedOk

func (o *VsmfUpdateData) GetAlwaysOnGrantedOk() (*bool, bool)

GetAlwaysOnGrantedOk returns a tuple with the AlwaysOnGranted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetAssignEbiList

func (o *VsmfUpdateData) GetAssignEbiList() []Arp

GetAssignEbiList returns the AssignEbiList field value if set, zero value otherwise.

func (*VsmfUpdateData) GetAssignEbiListOk

func (o *VsmfUpdateData) GetAssignEbiListOk() ([]Arp, bool)

GetAssignEbiListOk returns a tuple with the AssignEbiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetBackOffTimer

func (o *VsmfUpdateData) GetBackOffTimer() int32

GetBackOffTimer returns the BackOffTimer field value if set, zero value otherwise.

func (*VsmfUpdateData) GetBackOffTimerOk

func (o *VsmfUpdateData) GetBackOffTimerOk() (*int32, bool)

GetBackOffTimerOk returns a tuple with the BackOffTimer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetCause

func (o *VsmfUpdateData) GetCause() Cause

GetCause returns the Cause field value if set, zero value otherwise.

func (*VsmfUpdateData) GetCauseOk

func (o *VsmfUpdateData) GetCauseOk() (*Cause, 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 (*VsmfUpdateData) GetDnaiList

func (o *VsmfUpdateData) GetDnaiList() []string

GetDnaiList returns the DnaiList field value if set, zero value otherwise.

func (*VsmfUpdateData) GetDnaiListOk

func (o *VsmfUpdateData) GetDnaiListOk() ([]string, bool)

GetDnaiListOk returns a tuple with the DnaiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetEpsBearerInfo

func (o *VsmfUpdateData) GetEpsBearerInfo() []EpsBearerInfo

GetEpsBearerInfo returns the EpsBearerInfo field value if set, zero value otherwise.

func (*VsmfUpdateData) GetEpsBearerInfoOk

func (o *VsmfUpdateData) GetEpsBearerInfoOk() ([]EpsBearerInfo, bool)

GetEpsBearerInfoOk returns a tuple with the EpsBearerInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetEpsPdnCnxInfo

func (o *VsmfUpdateData) GetEpsPdnCnxInfo() EpsPdnCnxInfo

GetEpsPdnCnxInfo returns the EpsPdnCnxInfo field value if set, zero value otherwise.

func (*VsmfUpdateData) GetEpsPdnCnxInfoOk

func (o *VsmfUpdateData) GetEpsPdnCnxInfoOk() (*EpsPdnCnxInfo, bool)

GetEpsPdnCnxInfoOk returns a tuple with the EpsPdnCnxInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetHsmfPduSessionUri

func (o *VsmfUpdateData) GetHsmfPduSessionUri() string

GetHsmfPduSessionUri returns the HsmfPduSessionUri field value if set, zero value otherwise.

func (*VsmfUpdateData) GetHsmfPduSessionUriOk

func (o *VsmfUpdateData) GetHsmfPduSessionUriOk() (*string, bool)

GetHsmfPduSessionUriOk returns a tuple with the HsmfPduSessionUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetMaAcceptedInd

func (o *VsmfUpdateData) GetMaAcceptedInd() bool

GetMaAcceptedInd returns the MaAcceptedInd field value if set, zero value otherwise.

func (*VsmfUpdateData) GetMaAcceptedIndOk

func (o *VsmfUpdateData) GetMaAcceptedIndOk() (*bool, bool)

GetMaAcceptedIndOk returns a tuple with the MaAcceptedInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetMaReleaseInd

func (o *VsmfUpdateData) GetMaReleaseInd() MaReleaseIndication

GetMaReleaseInd returns the MaReleaseInd field value if set, zero value otherwise.

func (*VsmfUpdateData) GetMaReleaseIndOk

func (o *VsmfUpdateData) GetMaReleaseIndOk() (*MaReleaseIndication, bool)

GetMaReleaseIndOk returns a tuple with the MaReleaseInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetModifiedEbiList

func (o *VsmfUpdateData) GetModifiedEbiList() []EbiArpMapping

GetModifiedEbiList returns the ModifiedEbiList field value if set, zero value otherwise.

func (*VsmfUpdateData) GetModifiedEbiListOk

func (o *VsmfUpdateData) GetModifiedEbiListOk() ([]EbiArpMapping, bool)

GetModifiedEbiListOk returns a tuple with the ModifiedEbiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetN1SmInfoToUe

func (o *VsmfUpdateData) GetN1SmInfoToUe() RefToBinaryData

GetN1SmInfoToUe returns the N1SmInfoToUe field value if set, zero value otherwise.

func (*VsmfUpdateData) GetN1SmInfoToUeOk

func (o *VsmfUpdateData) GetN1SmInfoToUeOk() (*RefToBinaryData, bool)

GetN1SmInfoToUeOk returns a tuple with the N1SmInfoToUe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetN1smCause

func (o *VsmfUpdateData) GetN1smCause() string

GetN1smCause returns the N1smCause field value if set, zero value otherwise.

func (*VsmfUpdateData) GetN1smCauseOk

func (o *VsmfUpdateData) GetN1smCauseOk() (*string, bool)

GetN1smCauseOk returns a tuple with the N1smCause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetN4Info

func (o *VsmfUpdateData) GetN4Info() N4Information

GetN4Info returns the N4Info field value if set, zero value otherwise.

func (*VsmfUpdateData) GetN4InfoExt1

func (o *VsmfUpdateData) GetN4InfoExt1() N4Information

GetN4InfoExt1 returns the N4InfoExt1 field value if set, zero value otherwise.

func (*VsmfUpdateData) GetN4InfoExt1Ok

func (o *VsmfUpdateData) GetN4InfoExt1Ok() (*N4Information, bool)

GetN4InfoExt1Ok returns a tuple with the N4InfoExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetN4InfoExt2

func (o *VsmfUpdateData) GetN4InfoExt2() N4Information

GetN4InfoExt2 returns the N4InfoExt2 field value if set, zero value otherwise.

func (*VsmfUpdateData) GetN4InfoExt2Ok

func (o *VsmfUpdateData) GetN4InfoExt2Ok() (*N4Information, bool)

GetN4InfoExt2Ok returns a tuple with the N4InfoExt2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetN4InfoExt3

func (o *VsmfUpdateData) GetN4InfoExt3() N4Information

GetN4InfoExt3 returns the N4InfoExt3 field value if set, zero value otherwise.

func (*VsmfUpdateData) GetN4InfoExt3Ok

func (o *VsmfUpdateData) GetN4InfoExt3Ok() (*N4Information, bool)

GetN4InfoExt3Ok returns a tuple with the N4InfoExt3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetN4InfoOk

func (o *VsmfUpdateData) GetN4InfoOk() (*N4Information, bool)

GetN4InfoOk returns a tuple with the N4Info field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetN9DataForwardingInd

func (o *VsmfUpdateData) GetN9DataForwardingInd() bool

GetN9DataForwardingInd returns the N9DataForwardingInd field value if set, zero value otherwise.

func (*VsmfUpdateData) GetN9DataForwardingIndOk

func (o *VsmfUpdateData) GetN9DataForwardingIndOk() (*bool, bool)

GetN9DataForwardingIndOk returns a tuple with the N9DataForwardingInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetN9InactivityTimer

func (o *VsmfUpdateData) GetN9InactivityTimer() int32

GetN9InactivityTimer returns the N9InactivityTimer field value if set, zero value otherwise.

func (*VsmfUpdateData) GetN9InactivityTimerOk

func (o *VsmfUpdateData) GetN9InactivityTimerOk() (*int32, bool)

GetN9InactivityTimerOk returns a tuple with the N9InactivityTimer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetNewSmfId

func (o *VsmfUpdateData) GetNewSmfId() string

GetNewSmfId returns the NewSmfId field value if set, zero value otherwise.

func (*VsmfUpdateData) GetNewSmfIdOk

func (o *VsmfUpdateData) GetNewSmfIdOk() (*string, bool)

GetNewSmfIdOk returns a tuple with the NewSmfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetNewSmfPduSessionUri

func (o *VsmfUpdateData) GetNewSmfPduSessionUri() string

GetNewSmfPduSessionUri returns the NewSmfPduSessionUri field value if set, zero value otherwise.

func (*VsmfUpdateData) GetNewSmfPduSessionUriOk

func (o *VsmfUpdateData) GetNewSmfPduSessionUriOk() (*string, bool)

GetNewSmfPduSessionUriOk returns a tuple with the NewSmfPduSessionUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetPti

func (o *VsmfUpdateData) GetPti() int32

GetPti returns the Pti field value if set, zero value otherwise.

func (*VsmfUpdateData) GetPtiOk

func (o *VsmfUpdateData) GetPtiOk() (*int32, bool)

GetPtiOk returns a tuple with the Pti field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetQosFlowsAddModRequestList

func (o *VsmfUpdateData) GetQosFlowsAddModRequestList() []QosFlowAddModifyRequestItem

GetQosFlowsAddModRequestList returns the QosFlowsAddModRequestList field value if set, zero value otherwise.

func (*VsmfUpdateData) GetQosFlowsAddModRequestListOk

func (o *VsmfUpdateData) GetQosFlowsAddModRequestListOk() ([]QosFlowAddModifyRequestItem, bool)

GetQosFlowsAddModRequestListOk returns a tuple with the QosFlowsAddModRequestList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetQosFlowsRelRequestList

func (o *VsmfUpdateData) GetQosFlowsRelRequestList() []QosFlowReleaseRequestItem

GetQosFlowsRelRequestList returns the QosFlowsRelRequestList field value if set, zero value otherwise.

func (*VsmfUpdateData) GetQosFlowsRelRequestListOk

func (o *VsmfUpdateData) GetQosFlowsRelRequestListOk() ([]QosFlowReleaseRequestItem, bool)

GetQosFlowsRelRequestListOk returns a tuple with the QosFlowsRelRequestList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetQosMonitoringInfo

func (o *VsmfUpdateData) GetQosMonitoringInfo() QosMonitoringInfo

GetQosMonitoringInfo returns the QosMonitoringInfo field value if set, zero value otherwise.

func (*VsmfUpdateData) GetQosMonitoringInfoOk

func (o *VsmfUpdateData) GetQosMonitoringInfoOk() (*QosMonitoringInfo, bool)

GetQosMonitoringInfoOk returns a tuple with the QosMonitoringInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetRequestIndication

func (o *VsmfUpdateData) GetRequestIndication() RequestIndication

GetRequestIndication returns the RequestIndication field value

func (*VsmfUpdateData) GetRequestIndicationOk

func (o *VsmfUpdateData) GetRequestIndicationOk() (*RequestIndication, bool)

GetRequestIndicationOk returns a tuple with the RequestIndication field value and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetRevokeEbiList

func (o *VsmfUpdateData) GetRevokeEbiList() []int32

GetRevokeEbiList returns the RevokeEbiList field value if set, zero value otherwise.

func (*VsmfUpdateData) GetRevokeEbiListOk

func (o *VsmfUpdateData) GetRevokeEbiListOk() ([]int32, bool)

GetRevokeEbiListOk returns a tuple with the RevokeEbiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetSessionAmbr

func (o *VsmfUpdateData) GetSessionAmbr() Ambr

GetSessionAmbr returns the SessionAmbr field value if set, zero value otherwise.

func (*VsmfUpdateData) GetSessionAmbrOk

func (o *VsmfUpdateData) GetSessionAmbrOk() (*Ambr, bool)

GetSessionAmbrOk returns a tuple with the SessionAmbr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetSmallDataRateControlEnabled

func (o *VsmfUpdateData) GetSmallDataRateControlEnabled() bool

GetSmallDataRateControlEnabled returns the SmallDataRateControlEnabled field value if set, zero value otherwise.

func (*VsmfUpdateData) GetSmallDataRateControlEnabledOk

func (o *VsmfUpdateData) GetSmallDataRateControlEnabledOk() (*bool, bool)

GetSmallDataRateControlEnabledOk returns a tuple with the SmallDataRateControlEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateData) GetSupportedFeatures

func (o *VsmfUpdateData) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*VsmfUpdateData) GetSupportedFeaturesOk

func (o *VsmfUpdateData) 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 (*VsmfUpdateData) HasAdditionalCnTunnelInfo

func (o *VsmfUpdateData) HasAdditionalCnTunnelInfo() bool

HasAdditionalCnTunnelInfo returns a boolean if a field has been set.

func (*VsmfUpdateData) HasAlwaysOnGranted

func (o *VsmfUpdateData) HasAlwaysOnGranted() bool

HasAlwaysOnGranted returns a boolean if a field has been set.

func (*VsmfUpdateData) HasAssignEbiList

func (o *VsmfUpdateData) HasAssignEbiList() bool

HasAssignEbiList returns a boolean if a field has been set.

func (*VsmfUpdateData) HasBackOffTimer

func (o *VsmfUpdateData) HasBackOffTimer() bool

HasBackOffTimer returns a boolean if a field has been set.

func (*VsmfUpdateData) HasCause

func (o *VsmfUpdateData) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*VsmfUpdateData) HasDnaiList

func (o *VsmfUpdateData) HasDnaiList() bool

HasDnaiList returns a boolean if a field has been set.

func (*VsmfUpdateData) HasEpsBearerInfo

func (o *VsmfUpdateData) HasEpsBearerInfo() bool

HasEpsBearerInfo returns a boolean if a field has been set.

func (*VsmfUpdateData) HasEpsPdnCnxInfo

func (o *VsmfUpdateData) HasEpsPdnCnxInfo() bool

HasEpsPdnCnxInfo returns a boolean if a field has been set.

func (*VsmfUpdateData) HasHsmfPduSessionUri

func (o *VsmfUpdateData) HasHsmfPduSessionUri() bool

HasHsmfPduSessionUri returns a boolean if a field has been set.

func (*VsmfUpdateData) HasMaAcceptedInd

func (o *VsmfUpdateData) HasMaAcceptedInd() bool

HasMaAcceptedInd returns a boolean if a field has been set.

func (*VsmfUpdateData) HasMaReleaseInd

func (o *VsmfUpdateData) HasMaReleaseInd() bool

HasMaReleaseInd returns a boolean if a field has been set.

func (*VsmfUpdateData) HasModifiedEbiList

func (o *VsmfUpdateData) HasModifiedEbiList() bool

HasModifiedEbiList returns a boolean if a field has been set.

func (*VsmfUpdateData) HasN1SmInfoToUe

func (o *VsmfUpdateData) HasN1SmInfoToUe() bool

HasN1SmInfoToUe returns a boolean if a field has been set.

func (*VsmfUpdateData) HasN1smCause

func (o *VsmfUpdateData) HasN1smCause() bool

HasN1smCause returns a boolean if a field has been set.

func (*VsmfUpdateData) HasN4Info

func (o *VsmfUpdateData) HasN4Info() bool

HasN4Info returns a boolean if a field has been set.

func (*VsmfUpdateData) HasN4InfoExt1

func (o *VsmfUpdateData) HasN4InfoExt1() bool

HasN4InfoExt1 returns a boolean if a field has been set.

func (*VsmfUpdateData) HasN4InfoExt2

func (o *VsmfUpdateData) HasN4InfoExt2() bool

HasN4InfoExt2 returns a boolean if a field has been set.

func (*VsmfUpdateData) HasN4InfoExt3

func (o *VsmfUpdateData) HasN4InfoExt3() bool

HasN4InfoExt3 returns a boolean if a field has been set.

func (*VsmfUpdateData) HasN9DataForwardingInd

func (o *VsmfUpdateData) HasN9DataForwardingInd() bool

HasN9DataForwardingInd returns a boolean if a field has been set.

func (*VsmfUpdateData) HasN9InactivityTimer

func (o *VsmfUpdateData) HasN9InactivityTimer() bool

HasN9InactivityTimer returns a boolean if a field has been set.

func (*VsmfUpdateData) HasNewSmfId

func (o *VsmfUpdateData) HasNewSmfId() bool

HasNewSmfId returns a boolean if a field has been set.

func (*VsmfUpdateData) HasNewSmfPduSessionUri

func (o *VsmfUpdateData) HasNewSmfPduSessionUri() bool

HasNewSmfPduSessionUri returns a boolean if a field has been set.

func (*VsmfUpdateData) HasPti

func (o *VsmfUpdateData) HasPti() bool

HasPti returns a boolean if a field has been set.

func (*VsmfUpdateData) HasQosFlowsAddModRequestList

func (o *VsmfUpdateData) HasQosFlowsAddModRequestList() bool

HasQosFlowsAddModRequestList returns a boolean if a field has been set.

func (*VsmfUpdateData) HasQosFlowsRelRequestList

func (o *VsmfUpdateData) HasQosFlowsRelRequestList() bool

HasQosFlowsRelRequestList returns a boolean if a field has been set.

func (*VsmfUpdateData) HasQosMonitoringInfo

func (o *VsmfUpdateData) HasQosMonitoringInfo() bool

HasQosMonitoringInfo returns a boolean if a field has been set.

func (*VsmfUpdateData) HasRevokeEbiList

func (o *VsmfUpdateData) HasRevokeEbiList() bool

HasRevokeEbiList returns a boolean if a field has been set.

func (*VsmfUpdateData) HasSessionAmbr

func (o *VsmfUpdateData) HasSessionAmbr() bool

HasSessionAmbr returns a boolean if a field has been set.

func (*VsmfUpdateData) HasSmallDataRateControlEnabled

func (o *VsmfUpdateData) HasSmallDataRateControlEnabled() bool

HasSmallDataRateControlEnabled returns a boolean if a field has been set.

func (*VsmfUpdateData) HasSupportedFeatures

func (o *VsmfUpdateData) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (VsmfUpdateData) MarshalJSON

func (o VsmfUpdateData) MarshalJSON() ([]byte, error)

func (*VsmfUpdateData) SetAdditionalCnTunnelInfo

func (o *VsmfUpdateData) SetAdditionalCnTunnelInfo(v TunnelInfo)

SetAdditionalCnTunnelInfo gets a reference to the given TunnelInfo and assigns it to the AdditionalCnTunnelInfo field.

func (*VsmfUpdateData) SetAlwaysOnGranted

func (o *VsmfUpdateData) SetAlwaysOnGranted(v bool)

SetAlwaysOnGranted gets a reference to the given bool and assigns it to the AlwaysOnGranted field.

func (*VsmfUpdateData) SetAssignEbiList

func (o *VsmfUpdateData) SetAssignEbiList(v []Arp)

SetAssignEbiList gets a reference to the given []Arp and assigns it to the AssignEbiList field.

func (*VsmfUpdateData) SetBackOffTimer

func (o *VsmfUpdateData) SetBackOffTimer(v int32)

SetBackOffTimer gets a reference to the given int32 and assigns it to the BackOffTimer field.

func (*VsmfUpdateData) SetCause

func (o *VsmfUpdateData) SetCause(v Cause)

SetCause gets a reference to the given Cause and assigns it to the Cause field.

func (*VsmfUpdateData) SetDnaiList

func (o *VsmfUpdateData) SetDnaiList(v []string)

SetDnaiList gets a reference to the given []string and assigns it to the DnaiList field.

func (*VsmfUpdateData) SetEpsBearerInfo

func (o *VsmfUpdateData) SetEpsBearerInfo(v []EpsBearerInfo)

SetEpsBearerInfo gets a reference to the given []EpsBearerInfo and assigns it to the EpsBearerInfo field.

func (*VsmfUpdateData) SetEpsPdnCnxInfo

func (o *VsmfUpdateData) SetEpsPdnCnxInfo(v EpsPdnCnxInfo)

SetEpsPdnCnxInfo gets a reference to the given EpsPdnCnxInfo and assigns it to the EpsPdnCnxInfo field.

func (*VsmfUpdateData) SetHsmfPduSessionUri

func (o *VsmfUpdateData) SetHsmfPduSessionUri(v string)

SetHsmfPduSessionUri gets a reference to the given string and assigns it to the HsmfPduSessionUri field.

func (*VsmfUpdateData) SetMaAcceptedInd

func (o *VsmfUpdateData) SetMaAcceptedInd(v bool)

SetMaAcceptedInd gets a reference to the given bool and assigns it to the MaAcceptedInd field.

func (*VsmfUpdateData) SetMaReleaseInd

func (o *VsmfUpdateData) SetMaReleaseInd(v MaReleaseIndication)

SetMaReleaseInd gets a reference to the given MaReleaseIndication and assigns it to the MaReleaseInd field.

func (*VsmfUpdateData) SetModifiedEbiList

func (o *VsmfUpdateData) SetModifiedEbiList(v []EbiArpMapping)

SetModifiedEbiList gets a reference to the given []EbiArpMapping and assigns it to the ModifiedEbiList field.

func (*VsmfUpdateData) SetN1SmInfoToUe

func (o *VsmfUpdateData) SetN1SmInfoToUe(v RefToBinaryData)

SetN1SmInfoToUe gets a reference to the given RefToBinaryData and assigns it to the N1SmInfoToUe field.

func (*VsmfUpdateData) SetN1smCause

func (o *VsmfUpdateData) SetN1smCause(v string)

SetN1smCause gets a reference to the given string and assigns it to the N1smCause field.

func (*VsmfUpdateData) SetN4Info

func (o *VsmfUpdateData) SetN4Info(v N4Information)

SetN4Info gets a reference to the given N4Information and assigns it to the N4Info field.

func (*VsmfUpdateData) SetN4InfoExt1

func (o *VsmfUpdateData) SetN4InfoExt1(v N4Information)

SetN4InfoExt1 gets a reference to the given N4Information and assigns it to the N4InfoExt1 field.

func (*VsmfUpdateData) SetN4InfoExt2

func (o *VsmfUpdateData) SetN4InfoExt2(v N4Information)

SetN4InfoExt2 gets a reference to the given N4Information and assigns it to the N4InfoExt2 field.

func (*VsmfUpdateData) SetN4InfoExt3

func (o *VsmfUpdateData) SetN4InfoExt3(v N4Information)

SetN4InfoExt3 gets a reference to the given N4Information and assigns it to the N4InfoExt3 field.

func (*VsmfUpdateData) SetN9DataForwardingInd

func (o *VsmfUpdateData) SetN9DataForwardingInd(v bool)

SetN9DataForwardingInd gets a reference to the given bool and assigns it to the N9DataForwardingInd field.

func (*VsmfUpdateData) SetN9InactivityTimer

func (o *VsmfUpdateData) SetN9InactivityTimer(v int32)

SetN9InactivityTimer gets a reference to the given int32 and assigns it to the N9InactivityTimer field.

func (*VsmfUpdateData) SetNewSmfId

func (o *VsmfUpdateData) SetNewSmfId(v string)

SetNewSmfId gets a reference to the given string and assigns it to the NewSmfId field.

func (*VsmfUpdateData) SetNewSmfPduSessionUri

func (o *VsmfUpdateData) SetNewSmfPduSessionUri(v string)

SetNewSmfPduSessionUri gets a reference to the given string and assigns it to the NewSmfPduSessionUri field.

func (*VsmfUpdateData) SetPti

func (o *VsmfUpdateData) SetPti(v int32)

SetPti gets a reference to the given int32 and assigns it to the Pti field.

func (*VsmfUpdateData) SetQosFlowsAddModRequestList

func (o *VsmfUpdateData) SetQosFlowsAddModRequestList(v []QosFlowAddModifyRequestItem)

SetQosFlowsAddModRequestList gets a reference to the given []QosFlowAddModifyRequestItem and assigns it to the QosFlowsAddModRequestList field.

func (*VsmfUpdateData) SetQosFlowsRelRequestList

func (o *VsmfUpdateData) SetQosFlowsRelRequestList(v []QosFlowReleaseRequestItem)

SetQosFlowsRelRequestList gets a reference to the given []QosFlowReleaseRequestItem and assigns it to the QosFlowsRelRequestList field.

func (*VsmfUpdateData) SetQosMonitoringInfo

func (o *VsmfUpdateData) SetQosMonitoringInfo(v QosMonitoringInfo)

SetQosMonitoringInfo gets a reference to the given QosMonitoringInfo and assigns it to the QosMonitoringInfo field.

func (*VsmfUpdateData) SetRequestIndication

func (o *VsmfUpdateData) SetRequestIndication(v RequestIndication)

SetRequestIndication sets field value

func (*VsmfUpdateData) SetRevokeEbiList

func (o *VsmfUpdateData) SetRevokeEbiList(v []int32)

SetRevokeEbiList gets a reference to the given []int32 and assigns it to the RevokeEbiList field.

func (*VsmfUpdateData) SetSessionAmbr

func (o *VsmfUpdateData) SetSessionAmbr(v Ambr)

SetSessionAmbr gets a reference to the given Ambr and assigns it to the SessionAmbr field.

func (*VsmfUpdateData) SetSmallDataRateControlEnabled

func (o *VsmfUpdateData) SetSmallDataRateControlEnabled(v bool)

SetSmallDataRateControlEnabled gets a reference to the given bool and assigns it to the SmallDataRateControlEnabled field.

func (*VsmfUpdateData) SetSupportedFeatures

func (o *VsmfUpdateData) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (VsmfUpdateData) ToMap

func (o VsmfUpdateData) ToMap() (map[string]interface{}, error)

type VsmfUpdateError

type VsmfUpdateError struct {
	Error ExtProblemDetails `json:"error"`
	// Procedure Transaction Identifier
	Pti                   *int32           `json:"pti,omitempty"`
	N1smCause             *string          `json:"n1smCause,omitempty"`
	N1SmInfoFromUe        *RefToBinaryData `json:"n1SmInfoFromUe,omitempty"`
	UnknownN1SmInfo       *RefToBinaryData `json:"unknownN1SmInfo,omitempty"`
	FailedToAssignEbiList []Arp            `json:"failedToAssignEbiList,omitempty"`
	NgApCause             *NgApCause       `json:"ngApCause,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Var5gMmCauseValue *int32 `json:"5gMmCauseValue,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	RecoveryTime *time.Time     `json:"recoveryTime,omitempty"`
	N4Info       *N4Information `json:"n4Info,omitempty"`
	N4InfoExt1   *N4Information `json:"n4InfoExt1,omitempty"`
	N4InfoExt2   *N4Information `json:"n4InfoExt2,omitempty"`
	N4InfoExt3   *N4Information `json:"n4InfoExt3,omitempty"`
}

VsmfUpdateError Error within Update Response from V-SMF, or from I-SMF to SMF

func NewVsmfUpdateError

func NewVsmfUpdateError(error_ ExtProblemDetails) *VsmfUpdateError

NewVsmfUpdateError instantiates a new VsmfUpdateError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVsmfUpdateErrorWithDefaults

func NewVsmfUpdateErrorWithDefaults() *VsmfUpdateError

NewVsmfUpdateErrorWithDefaults instantiates a new VsmfUpdateError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VsmfUpdateError) GetError

func (o *VsmfUpdateError) GetError() ExtProblemDetails

GetError returns the Error field value

func (*VsmfUpdateError) GetErrorOk

func (o *VsmfUpdateError) GetErrorOk() (*ExtProblemDetails, bool)

GetErrorOk returns a tuple with the Error field value and a boolean to check if the value has been set.

func (*VsmfUpdateError) GetFailedToAssignEbiList

func (o *VsmfUpdateError) GetFailedToAssignEbiList() []Arp

GetFailedToAssignEbiList returns the FailedToAssignEbiList field value if set, zero value otherwise.

func (*VsmfUpdateError) GetFailedToAssignEbiListOk

func (o *VsmfUpdateError) GetFailedToAssignEbiListOk() ([]Arp, bool)

GetFailedToAssignEbiListOk returns a tuple with the FailedToAssignEbiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateError) GetN1SmInfoFromUe

func (o *VsmfUpdateError) GetN1SmInfoFromUe() RefToBinaryData

GetN1SmInfoFromUe returns the N1SmInfoFromUe field value if set, zero value otherwise.

func (*VsmfUpdateError) GetN1SmInfoFromUeOk

func (o *VsmfUpdateError) GetN1SmInfoFromUeOk() (*RefToBinaryData, bool)

GetN1SmInfoFromUeOk returns a tuple with the N1SmInfoFromUe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateError) GetN1smCause

func (o *VsmfUpdateError) GetN1smCause() string

GetN1smCause returns the N1smCause field value if set, zero value otherwise.

func (*VsmfUpdateError) GetN1smCauseOk

func (o *VsmfUpdateError) GetN1smCauseOk() (*string, bool)

GetN1smCauseOk returns a tuple with the N1smCause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateError) GetN4Info

func (o *VsmfUpdateError) GetN4Info() N4Information

GetN4Info returns the N4Info field value if set, zero value otherwise.

func (*VsmfUpdateError) GetN4InfoExt1

func (o *VsmfUpdateError) GetN4InfoExt1() N4Information

GetN4InfoExt1 returns the N4InfoExt1 field value if set, zero value otherwise.

func (*VsmfUpdateError) GetN4InfoExt1Ok

func (o *VsmfUpdateError) GetN4InfoExt1Ok() (*N4Information, bool)

GetN4InfoExt1Ok returns a tuple with the N4InfoExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateError) GetN4InfoExt2

func (o *VsmfUpdateError) GetN4InfoExt2() N4Information

GetN4InfoExt2 returns the N4InfoExt2 field value if set, zero value otherwise.

func (*VsmfUpdateError) GetN4InfoExt2Ok

func (o *VsmfUpdateError) GetN4InfoExt2Ok() (*N4Information, bool)

GetN4InfoExt2Ok returns a tuple with the N4InfoExt2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateError) GetN4InfoExt3

func (o *VsmfUpdateError) GetN4InfoExt3() N4Information

GetN4InfoExt3 returns the N4InfoExt3 field value if set, zero value otherwise.

func (*VsmfUpdateError) GetN4InfoExt3Ok

func (o *VsmfUpdateError) GetN4InfoExt3Ok() (*N4Information, bool)

GetN4InfoExt3Ok returns a tuple with the N4InfoExt3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateError) GetN4InfoOk

func (o *VsmfUpdateError) GetN4InfoOk() (*N4Information, bool)

GetN4InfoOk returns a tuple with the N4Info field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateError) GetNgApCause

func (o *VsmfUpdateError) GetNgApCause() NgApCause

GetNgApCause returns the NgApCause field value if set, zero value otherwise.

func (*VsmfUpdateError) GetNgApCauseOk

func (o *VsmfUpdateError) 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 (*VsmfUpdateError) GetPti

func (o *VsmfUpdateError) GetPti() int32

GetPti returns the Pti field value if set, zero value otherwise.

func (*VsmfUpdateError) GetPtiOk

func (o *VsmfUpdateError) GetPtiOk() (*int32, bool)

GetPtiOk returns a tuple with the Pti field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateError) GetRecoveryTime

func (o *VsmfUpdateError) GetRecoveryTime() time.Time

GetRecoveryTime returns the RecoveryTime field value if set, zero value otherwise.

func (*VsmfUpdateError) GetRecoveryTimeOk

func (o *VsmfUpdateError) GetRecoveryTimeOk() (*time.Time, bool)

GetRecoveryTimeOk returns a tuple with the RecoveryTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateError) GetUnknownN1SmInfo

func (o *VsmfUpdateError) GetUnknownN1SmInfo() RefToBinaryData

GetUnknownN1SmInfo returns the UnknownN1SmInfo field value if set, zero value otherwise.

func (*VsmfUpdateError) GetUnknownN1SmInfoOk

func (o *VsmfUpdateError) GetUnknownN1SmInfoOk() (*RefToBinaryData, bool)

GetUnknownN1SmInfoOk returns a tuple with the UnknownN1SmInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateError) GetVar5gMmCauseValue

func (o *VsmfUpdateError) GetVar5gMmCauseValue() int32

GetVar5gMmCauseValue returns the Var5gMmCauseValue field value if set, zero value otherwise.

func (*VsmfUpdateError) GetVar5gMmCauseValueOk

func (o *VsmfUpdateError) GetVar5gMmCauseValueOk() (*int32, bool)

GetVar5gMmCauseValueOk returns a tuple with the Var5gMmCauseValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdateError) HasFailedToAssignEbiList

func (o *VsmfUpdateError) HasFailedToAssignEbiList() bool

HasFailedToAssignEbiList returns a boolean if a field has been set.

func (*VsmfUpdateError) HasN1SmInfoFromUe

func (o *VsmfUpdateError) HasN1SmInfoFromUe() bool

HasN1SmInfoFromUe returns a boolean if a field has been set.

func (*VsmfUpdateError) HasN1smCause

func (o *VsmfUpdateError) HasN1smCause() bool

HasN1smCause returns a boolean if a field has been set.

func (*VsmfUpdateError) HasN4Info

func (o *VsmfUpdateError) HasN4Info() bool

HasN4Info returns a boolean if a field has been set.

func (*VsmfUpdateError) HasN4InfoExt1

func (o *VsmfUpdateError) HasN4InfoExt1() bool

HasN4InfoExt1 returns a boolean if a field has been set.

func (*VsmfUpdateError) HasN4InfoExt2

func (o *VsmfUpdateError) HasN4InfoExt2() bool

HasN4InfoExt2 returns a boolean if a field has been set.

func (*VsmfUpdateError) HasN4InfoExt3

func (o *VsmfUpdateError) HasN4InfoExt3() bool

HasN4InfoExt3 returns a boolean if a field has been set.

func (*VsmfUpdateError) HasNgApCause

func (o *VsmfUpdateError) HasNgApCause() bool

HasNgApCause returns a boolean if a field has been set.

func (*VsmfUpdateError) HasPti

func (o *VsmfUpdateError) HasPti() bool

HasPti returns a boolean if a field has been set.

func (*VsmfUpdateError) HasRecoveryTime

func (o *VsmfUpdateError) HasRecoveryTime() bool

HasRecoveryTime returns a boolean if a field has been set.

func (*VsmfUpdateError) HasUnknownN1SmInfo

func (o *VsmfUpdateError) HasUnknownN1SmInfo() bool

HasUnknownN1SmInfo returns a boolean if a field has been set.

func (*VsmfUpdateError) HasVar5gMmCauseValue

func (o *VsmfUpdateError) HasVar5gMmCauseValue() bool

HasVar5gMmCauseValue returns a boolean if a field has been set.

func (VsmfUpdateError) MarshalJSON

func (o VsmfUpdateError) MarshalJSON() ([]byte, error)

func (*VsmfUpdateError) SetError

func (o *VsmfUpdateError) SetError(v ExtProblemDetails)

SetError sets field value

func (*VsmfUpdateError) SetFailedToAssignEbiList

func (o *VsmfUpdateError) SetFailedToAssignEbiList(v []Arp)

SetFailedToAssignEbiList gets a reference to the given []Arp and assigns it to the FailedToAssignEbiList field.

func (*VsmfUpdateError) SetN1SmInfoFromUe

func (o *VsmfUpdateError) SetN1SmInfoFromUe(v RefToBinaryData)

SetN1SmInfoFromUe gets a reference to the given RefToBinaryData and assigns it to the N1SmInfoFromUe field.

func (*VsmfUpdateError) SetN1smCause

func (o *VsmfUpdateError) SetN1smCause(v string)

SetN1smCause gets a reference to the given string and assigns it to the N1smCause field.

func (*VsmfUpdateError) SetN4Info

func (o *VsmfUpdateError) SetN4Info(v N4Information)

SetN4Info gets a reference to the given N4Information and assigns it to the N4Info field.

func (*VsmfUpdateError) SetN4InfoExt1

func (o *VsmfUpdateError) SetN4InfoExt1(v N4Information)

SetN4InfoExt1 gets a reference to the given N4Information and assigns it to the N4InfoExt1 field.

func (*VsmfUpdateError) SetN4InfoExt2

func (o *VsmfUpdateError) SetN4InfoExt2(v N4Information)

SetN4InfoExt2 gets a reference to the given N4Information and assigns it to the N4InfoExt2 field.

func (*VsmfUpdateError) SetN4InfoExt3

func (o *VsmfUpdateError) SetN4InfoExt3(v N4Information)

SetN4InfoExt3 gets a reference to the given N4Information and assigns it to the N4InfoExt3 field.

func (*VsmfUpdateError) SetNgApCause

func (o *VsmfUpdateError) SetNgApCause(v NgApCause)

SetNgApCause gets a reference to the given NgApCause and assigns it to the NgApCause field.

func (*VsmfUpdateError) SetPti

func (o *VsmfUpdateError) SetPti(v int32)

SetPti gets a reference to the given int32 and assigns it to the Pti field.

func (*VsmfUpdateError) SetRecoveryTime

func (o *VsmfUpdateError) SetRecoveryTime(v time.Time)

SetRecoveryTime gets a reference to the given time.Time and assigns it to the RecoveryTime field.

func (*VsmfUpdateError) SetUnknownN1SmInfo

func (o *VsmfUpdateError) SetUnknownN1SmInfo(v RefToBinaryData)

SetUnknownN1SmInfo gets a reference to the given RefToBinaryData and assigns it to the UnknownN1SmInfo field.

func (*VsmfUpdateError) SetVar5gMmCauseValue

func (o *VsmfUpdateError) SetVar5gMmCauseValue(v int32)

SetVar5gMmCauseValue gets a reference to the given int32 and assigns it to the Var5gMmCauseValue field.

func (VsmfUpdateError) ToMap

func (o VsmfUpdateError) ToMap() (map[string]interface{}, error)

type VsmfUpdatedData

type VsmfUpdatedData struct {
	QosFlowsAddModList         []QosFlowItem    `json:"qosFlowsAddModList,omitempty"`
	QosFlowsRelList            []QosFlowItem    `json:"qosFlowsRelList,omitempty"`
	QosFlowsFailedtoAddModList []QosFlowItem    `json:"qosFlowsFailedtoAddModList,omitempty"`
	QosFlowsFailedtoRelList    []QosFlowItem    `json:"qosFlowsFailedtoRelList,omitempty"`
	N1SmInfoFromUe             *RefToBinaryData `json:"n1SmInfoFromUe,omitempty"`
	UnknownN1SmInfo            *RefToBinaryData `json:"unknownN1SmInfo,omitempty"`
	UeLocation                 *UserLocation    `json:"ueLocation,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"`
	AddUeLocation           *UserLocation             `json:"addUeLocation,omitempty"`
	AssignedEbiList         []EbiArpMapping           `json:"assignedEbiList,omitempty"`
	FailedToAssignEbiList   []Arp                     `json:"failedToAssignEbiList,omitempty"`
	ReleasedEbiList         []int32                   `json:"releasedEbiList,omitempty"`
	SecondaryRatUsageReport []SecondaryRatUsageReport `json:"secondaryRatUsageReport,omitempty"`
	SecondaryRatUsageInfo   []SecondaryRatUsageInfo   `json:"secondaryRatUsageInfo,omitempty"`
	N4Info                  *N4Information            `json:"n4Info,omitempty"`
	N4InfoExt1              *N4Information            `json:"n4InfoExt1,omitempty"`
	N4InfoExt2              *N4Information            `json:"n4InfoExt2,omitempty"`
	N4InfoExt3              *N4Information            `json:"n4InfoExt3,omitempty"`
}

VsmfUpdatedData Data within Update Response from V-SMF, or from I-SMF to SMF

func NewVsmfUpdatedData

func NewVsmfUpdatedData() *VsmfUpdatedData

NewVsmfUpdatedData instantiates a new VsmfUpdatedData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVsmfUpdatedDataWithDefaults

func NewVsmfUpdatedDataWithDefaults() *VsmfUpdatedData

NewVsmfUpdatedDataWithDefaults instantiates a new VsmfUpdatedData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VsmfUpdatedData) GetAddUeLocation

func (o *VsmfUpdatedData) GetAddUeLocation() UserLocation

GetAddUeLocation returns the AddUeLocation field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetAddUeLocationOk

func (o *VsmfUpdatedData) GetAddUeLocationOk() (*UserLocation, bool)

GetAddUeLocationOk returns a tuple with the AddUeLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetAssignedEbiList

func (o *VsmfUpdatedData) GetAssignedEbiList() []EbiArpMapping

GetAssignedEbiList returns the AssignedEbiList field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetAssignedEbiListOk

func (o *VsmfUpdatedData) GetAssignedEbiListOk() ([]EbiArpMapping, bool)

GetAssignedEbiListOk returns a tuple with the AssignedEbiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetFailedToAssignEbiList

func (o *VsmfUpdatedData) GetFailedToAssignEbiList() []Arp

GetFailedToAssignEbiList returns the FailedToAssignEbiList field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetFailedToAssignEbiListOk

func (o *VsmfUpdatedData) GetFailedToAssignEbiListOk() ([]Arp, bool)

GetFailedToAssignEbiListOk returns a tuple with the FailedToAssignEbiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetN1SmInfoFromUe

func (o *VsmfUpdatedData) GetN1SmInfoFromUe() RefToBinaryData

GetN1SmInfoFromUe returns the N1SmInfoFromUe field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetN1SmInfoFromUeOk

func (o *VsmfUpdatedData) GetN1SmInfoFromUeOk() (*RefToBinaryData, bool)

GetN1SmInfoFromUeOk returns a tuple with the N1SmInfoFromUe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetN4Info

func (o *VsmfUpdatedData) GetN4Info() N4Information

GetN4Info returns the N4Info field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetN4InfoExt1

func (o *VsmfUpdatedData) GetN4InfoExt1() N4Information

GetN4InfoExt1 returns the N4InfoExt1 field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetN4InfoExt1Ok

func (o *VsmfUpdatedData) GetN4InfoExt1Ok() (*N4Information, bool)

GetN4InfoExt1Ok returns a tuple with the N4InfoExt1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetN4InfoExt2

func (o *VsmfUpdatedData) GetN4InfoExt2() N4Information

GetN4InfoExt2 returns the N4InfoExt2 field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetN4InfoExt2Ok

func (o *VsmfUpdatedData) GetN4InfoExt2Ok() (*N4Information, bool)

GetN4InfoExt2Ok returns a tuple with the N4InfoExt2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetN4InfoExt3

func (o *VsmfUpdatedData) GetN4InfoExt3() N4Information

GetN4InfoExt3 returns the N4InfoExt3 field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetN4InfoExt3Ok

func (o *VsmfUpdatedData) GetN4InfoExt3Ok() (*N4Information, bool)

GetN4InfoExt3Ok returns a tuple with the N4InfoExt3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetN4InfoOk

func (o *VsmfUpdatedData) GetN4InfoOk() (*N4Information, bool)

GetN4InfoOk returns a tuple with the N4Info field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetQosFlowsAddModList

func (o *VsmfUpdatedData) GetQosFlowsAddModList() []QosFlowItem

GetQosFlowsAddModList returns the QosFlowsAddModList field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetQosFlowsAddModListOk

func (o *VsmfUpdatedData) GetQosFlowsAddModListOk() ([]QosFlowItem, bool)

GetQosFlowsAddModListOk returns a tuple with the QosFlowsAddModList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetQosFlowsFailedtoAddModList

func (o *VsmfUpdatedData) GetQosFlowsFailedtoAddModList() []QosFlowItem

GetQosFlowsFailedtoAddModList returns the QosFlowsFailedtoAddModList field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetQosFlowsFailedtoAddModListOk

func (o *VsmfUpdatedData) GetQosFlowsFailedtoAddModListOk() ([]QosFlowItem, bool)

GetQosFlowsFailedtoAddModListOk returns a tuple with the QosFlowsFailedtoAddModList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetQosFlowsFailedtoRelList

func (o *VsmfUpdatedData) GetQosFlowsFailedtoRelList() []QosFlowItem

GetQosFlowsFailedtoRelList returns the QosFlowsFailedtoRelList field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetQosFlowsFailedtoRelListOk

func (o *VsmfUpdatedData) GetQosFlowsFailedtoRelListOk() ([]QosFlowItem, bool)

GetQosFlowsFailedtoRelListOk returns a tuple with the QosFlowsFailedtoRelList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetQosFlowsRelList

func (o *VsmfUpdatedData) GetQosFlowsRelList() []QosFlowItem

GetQosFlowsRelList returns the QosFlowsRelList field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetQosFlowsRelListOk

func (o *VsmfUpdatedData) GetQosFlowsRelListOk() ([]QosFlowItem, bool)

GetQosFlowsRelListOk returns a tuple with the QosFlowsRelList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetReleasedEbiList

func (o *VsmfUpdatedData) GetReleasedEbiList() []int32

GetReleasedEbiList returns the ReleasedEbiList field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetReleasedEbiListOk

func (o *VsmfUpdatedData) GetReleasedEbiListOk() ([]int32, bool)

GetReleasedEbiListOk returns a tuple with the ReleasedEbiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetSecondaryRatUsageInfo

func (o *VsmfUpdatedData) GetSecondaryRatUsageInfo() []SecondaryRatUsageInfo

GetSecondaryRatUsageInfo returns the SecondaryRatUsageInfo field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetSecondaryRatUsageInfoOk

func (o *VsmfUpdatedData) GetSecondaryRatUsageInfoOk() ([]SecondaryRatUsageInfo, bool)

GetSecondaryRatUsageInfoOk returns a tuple with the SecondaryRatUsageInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetSecondaryRatUsageReport

func (o *VsmfUpdatedData) GetSecondaryRatUsageReport() []SecondaryRatUsageReport

GetSecondaryRatUsageReport returns the SecondaryRatUsageReport field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetSecondaryRatUsageReportOk

func (o *VsmfUpdatedData) GetSecondaryRatUsageReportOk() ([]SecondaryRatUsageReport, bool)

GetSecondaryRatUsageReportOk returns a tuple with the SecondaryRatUsageReport field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetUeLocation

func (o *VsmfUpdatedData) GetUeLocation() UserLocation

GetUeLocation returns the UeLocation field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetUeLocationOk

func (o *VsmfUpdatedData) GetUeLocationOk() (*UserLocation, bool)

GetUeLocationOk returns a tuple with the UeLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) GetUeTimeZone

func (o *VsmfUpdatedData) GetUeTimeZone() string

GetUeTimeZone returns the UeTimeZone field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetUeTimeZoneOk

func (o *VsmfUpdatedData) 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 (*VsmfUpdatedData) GetUnknownN1SmInfo

func (o *VsmfUpdatedData) GetUnknownN1SmInfo() RefToBinaryData

GetUnknownN1SmInfo returns the UnknownN1SmInfo field value if set, zero value otherwise.

func (*VsmfUpdatedData) GetUnknownN1SmInfoOk

func (o *VsmfUpdatedData) GetUnknownN1SmInfoOk() (*RefToBinaryData, bool)

GetUnknownN1SmInfoOk returns a tuple with the UnknownN1SmInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VsmfUpdatedData) HasAddUeLocation

func (o *VsmfUpdatedData) HasAddUeLocation() bool

HasAddUeLocation returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasAssignedEbiList

func (o *VsmfUpdatedData) HasAssignedEbiList() bool

HasAssignedEbiList returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasFailedToAssignEbiList

func (o *VsmfUpdatedData) HasFailedToAssignEbiList() bool

HasFailedToAssignEbiList returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasN1SmInfoFromUe

func (o *VsmfUpdatedData) HasN1SmInfoFromUe() bool

HasN1SmInfoFromUe returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasN4Info

func (o *VsmfUpdatedData) HasN4Info() bool

HasN4Info returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasN4InfoExt1

func (o *VsmfUpdatedData) HasN4InfoExt1() bool

HasN4InfoExt1 returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasN4InfoExt2

func (o *VsmfUpdatedData) HasN4InfoExt2() bool

HasN4InfoExt2 returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasN4InfoExt3

func (o *VsmfUpdatedData) HasN4InfoExt3() bool

HasN4InfoExt3 returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasQosFlowsAddModList

func (o *VsmfUpdatedData) HasQosFlowsAddModList() bool

HasQosFlowsAddModList returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasQosFlowsFailedtoAddModList

func (o *VsmfUpdatedData) HasQosFlowsFailedtoAddModList() bool

HasQosFlowsFailedtoAddModList returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasQosFlowsFailedtoRelList

func (o *VsmfUpdatedData) HasQosFlowsFailedtoRelList() bool

HasQosFlowsFailedtoRelList returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasQosFlowsRelList

func (o *VsmfUpdatedData) HasQosFlowsRelList() bool

HasQosFlowsRelList returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasReleasedEbiList

func (o *VsmfUpdatedData) HasReleasedEbiList() bool

HasReleasedEbiList returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasSecondaryRatUsageInfo

func (o *VsmfUpdatedData) HasSecondaryRatUsageInfo() bool

HasSecondaryRatUsageInfo returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasSecondaryRatUsageReport

func (o *VsmfUpdatedData) HasSecondaryRatUsageReport() bool

HasSecondaryRatUsageReport returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasUeLocation

func (o *VsmfUpdatedData) HasUeLocation() bool

HasUeLocation returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasUeTimeZone

func (o *VsmfUpdatedData) HasUeTimeZone() bool

HasUeTimeZone returns a boolean if a field has been set.

func (*VsmfUpdatedData) HasUnknownN1SmInfo

func (o *VsmfUpdatedData) HasUnknownN1SmInfo() bool

HasUnknownN1SmInfo returns a boolean if a field has been set.

func (VsmfUpdatedData) MarshalJSON

func (o VsmfUpdatedData) MarshalJSON() ([]byte, error)

func (*VsmfUpdatedData) SetAddUeLocation

func (o *VsmfUpdatedData) SetAddUeLocation(v UserLocation)

SetAddUeLocation gets a reference to the given UserLocation and assigns it to the AddUeLocation field.

func (*VsmfUpdatedData) SetAssignedEbiList

func (o *VsmfUpdatedData) SetAssignedEbiList(v []EbiArpMapping)

SetAssignedEbiList gets a reference to the given []EbiArpMapping and assigns it to the AssignedEbiList field.

func (*VsmfUpdatedData) SetFailedToAssignEbiList

func (o *VsmfUpdatedData) SetFailedToAssignEbiList(v []Arp)

SetFailedToAssignEbiList gets a reference to the given []Arp and assigns it to the FailedToAssignEbiList field.

func (*VsmfUpdatedData) SetN1SmInfoFromUe

func (o *VsmfUpdatedData) SetN1SmInfoFromUe(v RefToBinaryData)

SetN1SmInfoFromUe gets a reference to the given RefToBinaryData and assigns it to the N1SmInfoFromUe field.

func (*VsmfUpdatedData) SetN4Info

func (o *VsmfUpdatedData) SetN4Info(v N4Information)

SetN4Info gets a reference to the given N4Information and assigns it to the N4Info field.

func (*VsmfUpdatedData) SetN4InfoExt1

func (o *VsmfUpdatedData) SetN4InfoExt1(v N4Information)

SetN4InfoExt1 gets a reference to the given N4Information and assigns it to the N4InfoExt1 field.

func (*VsmfUpdatedData) SetN4InfoExt2

func (o *VsmfUpdatedData) SetN4InfoExt2(v N4Information)

SetN4InfoExt2 gets a reference to the given N4Information and assigns it to the N4InfoExt2 field.

func (*VsmfUpdatedData) SetN4InfoExt3

func (o *VsmfUpdatedData) SetN4InfoExt3(v N4Information)

SetN4InfoExt3 gets a reference to the given N4Information and assigns it to the N4InfoExt3 field.

func (*VsmfUpdatedData) SetQosFlowsAddModList

func (o *VsmfUpdatedData) SetQosFlowsAddModList(v []QosFlowItem)

SetQosFlowsAddModList gets a reference to the given []QosFlowItem and assigns it to the QosFlowsAddModList field.

func (*VsmfUpdatedData) SetQosFlowsFailedtoAddModList

func (o *VsmfUpdatedData) SetQosFlowsFailedtoAddModList(v []QosFlowItem)

SetQosFlowsFailedtoAddModList gets a reference to the given []QosFlowItem and assigns it to the QosFlowsFailedtoAddModList field.

func (*VsmfUpdatedData) SetQosFlowsFailedtoRelList

func (o *VsmfUpdatedData) SetQosFlowsFailedtoRelList(v []QosFlowItem)

SetQosFlowsFailedtoRelList gets a reference to the given []QosFlowItem and assigns it to the QosFlowsFailedtoRelList field.

func (*VsmfUpdatedData) SetQosFlowsRelList

func (o *VsmfUpdatedData) SetQosFlowsRelList(v []QosFlowItem)

SetQosFlowsRelList gets a reference to the given []QosFlowItem and assigns it to the QosFlowsRelList field.

func (*VsmfUpdatedData) SetReleasedEbiList

func (o *VsmfUpdatedData) SetReleasedEbiList(v []int32)

SetReleasedEbiList gets a reference to the given []int32 and assigns it to the ReleasedEbiList field.

func (*VsmfUpdatedData) SetSecondaryRatUsageInfo

func (o *VsmfUpdatedData) SetSecondaryRatUsageInfo(v []SecondaryRatUsageInfo)

SetSecondaryRatUsageInfo gets a reference to the given []SecondaryRatUsageInfo and assigns it to the SecondaryRatUsageInfo field.

func (*VsmfUpdatedData) SetSecondaryRatUsageReport

func (o *VsmfUpdatedData) SetSecondaryRatUsageReport(v []SecondaryRatUsageReport)

SetSecondaryRatUsageReport gets a reference to the given []SecondaryRatUsageReport and assigns it to the SecondaryRatUsageReport field.

func (*VsmfUpdatedData) SetUeLocation

func (o *VsmfUpdatedData) SetUeLocation(v UserLocation)

SetUeLocation gets a reference to the given UserLocation and assigns it to the UeLocation field.

func (*VsmfUpdatedData) SetUeTimeZone

func (o *VsmfUpdatedData) SetUeTimeZone(v string)

SetUeTimeZone gets a reference to the given string and assigns it to the UeTimeZone field.

func (*VsmfUpdatedData) SetUnknownN1SmInfo

func (o *VsmfUpdatedData) SetUnknownN1SmInfo(v RefToBinaryData)

SetUnknownN1SmInfo gets a reference to the given RefToBinaryData and assigns it to the UnknownN1SmInfo field.

func (VsmfUpdatedData) ToMap

func (o VsmfUpdatedData) ToMap() (map[string]interface{}, error)

type WAgfInfo

type WAgfInfo struct {
	Interface *interface{}
}

WAgfInfo Information of the W-AGF end-points

func (*WAgfInfo) MarshalJSON

func (src *WAgfInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*WAgfInfo) UnmarshalJSON

func (dst *WAgfInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL