OpenAPI_Nsmf_PDUSession

package
v0.0.0-...-e403a3c Latest Latest
Warning

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

Go to latest
Published: Dec 22, 2023 License: MIT Imports: 21 Imported by: 0

README

Go API client for OpenAPI_Nsmf_PDUSession

SMF PDU Session Service.
© 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.

Overview

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

  • API version: 1.2.4
  • 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 "gitee.com/konglinglong/openapi/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 OpenAPI_Nsmf_PDUSession.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 OpenAPI_Nsmf_PDUSession.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 OpenAPI_Nsmf_PDUSession.ContextOperationServerIndices and OpenAPI_Nsmf_PDUSession.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

Authentication schemes defined for the API:

oAuth2ClientCredentials
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • nsmf-pdusession: Access to the nsmf-pdusession API

Example

auth := context.WithValue(context.Background(), OpenAPI_Nsmf_PDUSession.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, OpenAPI_Nsmf_PDUSession.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 (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

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

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

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

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

All allowed values of AccessType enum

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

All allowed values of NullValue enum

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	IndividualPDUSessionHSMFOrSMFAPI *IndividualPDUSessionHSMFOrSMFAPIService

	IndividualSMContextAPI *IndividualSMContextAPIService

	PDUSessionsCollectionAPI *PDUSessionsCollectionAPIService

	SMContextsCollectionAPI *SMContextsCollectionAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Nsmf_PDUSession API v1.2.4 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)

func (*AccessTokenErr) UnmarshalJSON

func (o *AccessTokenErr) UnmarshalJSON(bytes []byte) (err 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)

func (*AccessTokenReq) UnmarshalJSON

func (o *AccessTokenReq) UnmarshalJSON(bytes []byte) (err error)

type AccessType

type AccessType string

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

const (
	ACCESSTYPE__3_GPP_ACCESS    AccessType = "3GPP_ACCESS"
	ACCESSTYPE_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 {
}

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 NewAdditionalQosFlowInfo

func NewAdditionalQosFlowInfo() *AdditionalQosFlowInfo

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

func NewAdditionalQosFlowInfoWithDefaults

func NewAdditionalQosFlowInfoWithDefaults() *AdditionalQosFlowInfo

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

func (AdditionalQosFlowInfo) MarshalJSON

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

func (AdditionalQosFlowInfo) ToMap

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

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)

func (*AlternativeQosProfile) UnmarshalJSON

func (o *AlternativeQosProfile) UnmarshalJSON(bytes []byte) (err 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)

func (*Ambr) UnmarshalJSON

func (o *Ambr) UnmarshalJSON(bytes []byte) (err 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)

func (*Arp) UnmarshalJSON

func (o *Arp) UnmarshalJSON(bytes []byte) (err 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)

func (*BackupAmfInfo) UnmarshalJSON

func (o *BackupAmfInfo) UnmarshalJSON(bytes []byte) (err 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 {
	// contains filtered or unexported fields
}

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)

func (*CellGlobalId) UnmarshalJSON

func (o *CellGlobalId) UnmarshalJSON(bytes []byte) (err 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)

func (*ChargingInformation) UnmarshalJSON

func (o *ChargingInformation) UnmarshalJSON(bytes []byte) (err 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)

func (*DdnFailureSubInfo) UnmarshalJSON

func (o *DdnFailureSubInfo) UnmarshalJSON(bytes []byte) (err 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)

func (*DnaiInformation) UnmarshalJSON

func (o *DnaiInformation) UnmarshalJSON(bytes []byte) (err error)

type DnnSelectionMode

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

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)

func (*Dynamic5Qi) UnmarshalJSON

func (o *Dynamic5Qi) UnmarshalJSON(bytes []byte) (err 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)

func (*EbiArpMapping) UnmarshalJSON

func (o *EbiArpMapping) UnmarshalJSON(bytes []byte) (err 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)

func (*Ecgi) UnmarshalJSON

func (o *Ecgi) UnmarshalJSON(bytes []byte) (err 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)

func (*EpsBearerInfo) UnmarshalJSON

func (o *EpsBearerInfo) UnmarshalJSON(bytes []byte) (err error)

type EpsInterworkingIndication

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

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"`
	// 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) 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) 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) 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)

func (*EpsPdnCnxInfo) UnmarshalJSON

func (o *EpsPdnCnxInfo) UnmarshalJSON(bytes []byte) (err 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       NullableGlobalRanNodeId `json:"globalNgenbId,omitempty"`
	GlobalENbId         NullableGlobalRanNodeId `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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EutraLocation) GetGlobalNgenbId

func (o *EutraLocation) GetGlobalNgenbId() GlobalRanNodeId

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

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableGlobalRanNodeId and assigns it to the GlobalENbId field.

func (*EutraLocation) SetGlobalENbIdNil

func (o *EutraLocation) SetGlobalENbIdNil()

SetGlobalENbIdNil sets the value for GlobalENbId to be an explicit nil

func (*EutraLocation) SetGlobalNgenbId

func (o *EutraLocation) SetGlobalNgenbId(v GlobalRanNodeId)

SetGlobalNgenbId gets a reference to the given NullableGlobalRanNodeId and assigns it to the GlobalNgenbId field.

func (*EutraLocation) SetGlobalNgenbIdNil

func (o *EutraLocation) SetGlobalNgenbIdNil()

SetGlobalNgenbIdNil sets the value for GlobalNgenbId to be an explicit nil

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)

func (*EutraLocation) UnmarshalJSON

func (o *EutraLocation) UnmarshalJSON(bytes []byte) (err error)

func (*EutraLocation) UnsetGlobalENbId

func (o *EutraLocation) UnsetGlobalENbId()

UnsetGlobalENbId ensures that no value is present for GlobalENbId, not even an explicit nil

func (*EutraLocation) UnsetGlobalNgenbId

func (o *EutraLocation) UnsetGlobalNgenbId()

UnsetGlobalNgenbId ensures that no value is present for GlobalNgenbId, not even an explicit nil

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)

func (*GNbId) UnmarshalJSON

func (o *GNbId) UnmarshalJSON(bytes []byte) (err 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)

func (*GbrQosFlowInformation) UnmarshalJSON

func (o *GbrQosFlowInformation) UnmarshalJSON(bytes []byte) (err 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 {
	// Location number within the PLMN. See 3GPP TS 23.003, clause 4.5.
	LocationNumber *string         `json:"locationNumber,omitempty"`
	Cgi            *CellGlobalId   `json:"cgi,omitempty"`
	Rai            *RoutingAreaId  `json:"rai,omitempty"`
	Sai            *ServiceAreaId  `json:"sai,omitempty"`
	Lai            *LocationAreaId `json:"lai,omitempty"`
	// VLR number. See 3GPP TS 23.003 clause 5.1.
	VlrNumber *string `json:"vlrNumber,omitempty"`
	// MSC number. See 3GPP TS 23.003 clause 5.1.
	MscNumber *string `json:"mscNumber,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 location reporting procedure 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) clause 3.88.2.  Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeodeticInformation *string `json:"geodeticInformation,omitempty"`
}

GeraLocation Exactly one of cgi, sai or lai shall be present.

func NewGeraLocation

func NewGeraLocation() *GeraLocation

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

func NewGeraLocationWithDefaults

func NewGeraLocationWithDefaults() *GeraLocation

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

func (*GeraLocation) GetAgeOfLocationInformation

func (o *GeraLocation) GetAgeOfLocationInformation() int32

GetAgeOfLocationInformation returns the AgeOfLocationInformation field value if set, zero value otherwise.

func (*GeraLocation) GetAgeOfLocationInformationOk

func (o *GeraLocation) 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 (*GeraLocation) GetCgi

func (o *GeraLocation) GetCgi() CellGlobalId

GetCgi returns the Cgi field value if set, zero value otherwise.

func (*GeraLocation) GetCgiOk

func (o *GeraLocation) GetCgiOk() (*CellGlobalId, bool)

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

func (*GeraLocation) GetGeodeticInformation

func (o *GeraLocation) GetGeodeticInformation() string

GetGeodeticInformation returns the GeodeticInformation field value if set, zero value otherwise.

func (*GeraLocation) GetGeodeticInformationOk

func (o *GeraLocation) 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 (*GeraLocation) GetGeographicalInformation

func (o *GeraLocation) GetGeographicalInformation() string

GetGeographicalInformation returns the GeographicalInformation field value if set, zero value otherwise.

func (*GeraLocation) GetGeographicalInformationOk

func (o *GeraLocation) 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 (*GeraLocation) GetLai

func (o *GeraLocation) GetLai() LocationAreaId

GetLai returns the Lai field value if set, zero value otherwise.

func (*GeraLocation) GetLaiOk

func (o *GeraLocation) GetLaiOk() (*LocationAreaId, bool)

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

func (*GeraLocation) GetLocationNumber

func (o *GeraLocation) GetLocationNumber() string

GetLocationNumber returns the LocationNumber field value if set, zero value otherwise.

func (*GeraLocation) GetLocationNumberOk

func (o *GeraLocation) GetLocationNumberOk() (*string, bool)

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

func (*GeraLocation) GetMscNumber

func (o *GeraLocation) GetMscNumber() string

GetMscNumber returns the MscNumber field value if set, zero value otherwise.

func (*GeraLocation) GetMscNumberOk

func (o *GeraLocation) GetMscNumberOk() (*string, bool)

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

func (*GeraLocation) GetRai

func (o *GeraLocation) GetRai() RoutingAreaId

GetRai returns the Rai field value if set, zero value otherwise.

func (*GeraLocation) GetRaiOk

func (o *GeraLocation) GetRaiOk() (*RoutingAreaId, bool)

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

func (*GeraLocation) GetSai

func (o *GeraLocation) GetSai() ServiceAreaId

GetSai returns the Sai field value if set, zero value otherwise.

func (*GeraLocation) GetSaiOk

func (o *GeraLocation) GetSaiOk() (*ServiceAreaId, bool)

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

func (*GeraLocation) GetUeLocationTimestamp

func (o *GeraLocation) GetUeLocationTimestamp() time.Time

GetUeLocationTimestamp returns the UeLocationTimestamp field value if set, zero value otherwise.

func (*GeraLocation) GetUeLocationTimestampOk

func (o *GeraLocation) 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 (*GeraLocation) GetVlrNumber

func (o *GeraLocation) GetVlrNumber() string

GetVlrNumber returns the VlrNumber field value if set, zero value otherwise.

func (*GeraLocation) GetVlrNumberOk

func (o *GeraLocation) GetVlrNumberOk() (*string, bool)

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

func (*GeraLocation) HasAgeOfLocationInformation

func (o *GeraLocation) HasAgeOfLocationInformation() bool

HasAgeOfLocationInformation returns a boolean if a field has been set.

func (*GeraLocation) HasCgi

func (o *GeraLocation) HasCgi() bool

HasCgi returns a boolean if a field has been set.

func (*GeraLocation) HasGeodeticInformation

func (o *GeraLocation) HasGeodeticInformation() bool

HasGeodeticInformation returns a boolean if a field has been set.

func (*GeraLocation) HasGeographicalInformation

func (o *GeraLocation) HasGeographicalInformation() bool

HasGeographicalInformation returns a boolean if a field has been set.

func (*GeraLocation) HasLai

func (o *GeraLocation) HasLai() bool

HasLai returns a boolean if a field has been set.

func (*GeraLocation) HasLocationNumber

func (o *GeraLocation) HasLocationNumber() bool

HasLocationNumber returns a boolean if a field has been set.

func (*GeraLocation) HasMscNumber

func (o *GeraLocation) HasMscNumber() bool

HasMscNumber returns a boolean if a field has been set.

func (*GeraLocation) HasRai

func (o *GeraLocation) HasRai() bool

HasRai returns a boolean if a field has been set.

func (*GeraLocation) HasSai

func (o *GeraLocation) HasSai() bool

HasSai returns a boolean if a field has been set.

func (*GeraLocation) HasUeLocationTimestamp

func (o *GeraLocation) HasUeLocationTimestamp() bool

HasUeLocationTimestamp returns a boolean if a field has been set.

func (*GeraLocation) HasVlrNumber

func (o *GeraLocation) HasVlrNumber() bool

HasVlrNumber returns a boolean if a field has been set.

func (GeraLocation) MarshalJSON

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

func (*GeraLocation) SetAgeOfLocationInformation

func (o *GeraLocation) SetAgeOfLocationInformation(v int32)

SetAgeOfLocationInformation gets a reference to the given int32 and assigns it to the AgeOfLocationInformation field.

func (*GeraLocation) SetCgi

func (o *GeraLocation) SetCgi(v CellGlobalId)

SetCgi gets a reference to the given CellGlobalId and assigns it to the Cgi field.

func (*GeraLocation) SetGeodeticInformation

func (o *GeraLocation) SetGeodeticInformation(v string)

SetGeodeticInformation gets a reference to the given string and assigns it to the GeodeticInformation field.

func (*GeraLocation) SetGeographicalInformation

func (o *GeraLocation) SetGeographicalInformation(v string)

SetGeographicalInformation gets a reference to the given string and assigns it to the GeographicalInformation field.

func (*GeraLocation) SetLai

func (o *GeraLocation) SetLai(v LocationAreaId)

SetLai gets a reference to the given LocationAreaId and assigns it to the Lai field.

func (*GeraLocation) SetLocationNumber

func (o *GeraLocation) SetLocationNumber(v string)

SetLocationNumber gets a reference to the given string and assigns it to the LocationNumber field.

func (*GeraLocation) SetMscNumber

func (o *GeraLocation) SetMscNumber(v string)

SetMscNumber gets a reference to the given string and assigns it to the MscNumber field.

func (*GeraLocation) SetRai

func (o *GeraLocation) SetRai(v RoutingAreaId)

SetRai gets a reference to the given RoutingAreaId and assigns it to the Rai field.

func (*GeraLocation) SetSai

func (o *GeraLocation) SetSai(v ServiceAreaId)

SetSai gets a reference to the given ServiceAreaId and assigns it to the Sai field.

func (*GeraLocation) SetUeLocationTimestamp

func (o *GeraLocation) SetUeLocationTimestamp(v time.Time)

SetUeLocationTimestamp gets a reference to the given time.Time and assigns it to the UeLocationTimestamp field.

func (*GeraLocation) SetVlrNumber

func (o *GeraLocation) SetVlrNumber(v string)

SetVlrNumber gets a reference to the given string and assigns it to the VlrNumber field.

func (GeraLocation) ToMap

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

type GlobalRanNodeId

type GlobalRanNodeId struct {
	PlmnId PlmnId `json:"plmnId"`
	// This represents the identifier of the N3IWF ID as specified in clause 9.3.1.57 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 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"`
	GNbId   *GNbId  `json:"gNbId,omitempty"`
	// This represents the identifier of the ng-eNB ID as specified in clause 9.3.1.8 of  3GPP TS 38.413. The value of the ng-eNB 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, so the most  significant character representing the padding 0 if required together with the 4 most  significant bits of the ng-eNB ID shall appear first in the string, and the character  representing the 4 least significant bit of the ng-eNB ID (to form a nibble) shall appear last  in the string.
	NgeNbId *string `json:"ngeNbId,omitempty"`
	// This represents the identifier of the W-AGF ID as specified in clause 9.3.1.162 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 W-AGF ID shall appear first in the  string, and the character representing the 4 least significant bit of the W-AGF ID shall  appear last in the string.
	WagfId *string `json:"wagfId,omitempty"`
	// This represents the identifier of the TNGF ID as specified in clause 9.3.1.161 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 TNGF ID shall appear first in the string, and the character  representing the 4 least significant bit of the TNGF ID shall appear last in the string.
	TngfId *string `json:"tngfId,omitempty"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
	// This represents the identifier of the eNB ID as specified in clause 9.2.1.37 of  3GPP TS 36.413. The string shall be formatted with the following pattern  '^('MacroeNB-[A-Fa-f0-9]{5}|LMacroeNB-[A-Fa-f0-9]{6}|SMacroeNB-[A-Fa-f0-9]{5} |HomeeNB-[A-Fa-f0-9]{7})$'. The value of the eNB 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, so the most significant character  representing the padding 0 if required together with the 4 most significant bits of the eNB ID  shall appear first in the string, and the character representing the 4 least significant bit  of the eNB ID (to form a nibble) shall appear last in the string.
	ENbId *string `json:"eNbId,omitempty"`
}

GlobalRanNodeId One of the six attributes n3IwfId, gNbIdm, ngeNbId, wagfId, tngfId, eNbId shall be present.

func NewGlobalRanNodeId

func NewGlobalRanNodeId(plmnId PlmnId) *GlobalRanNodeId

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

func NewGlobalRanNodeIdWithDefaults

func NewGlobalRanNodeIdWithDefaults() *GlobalRanNodeId

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

func (*GlobalRanNodeId) GetENbId

func (o *GlobalRanNodeId) GetENbId() string

GetENbId returns the ENbId field value if set, zero value otherwise.

func (*GlobalRanNodeId) GetENbIdOk

func (o *GlobalRanNodeId) GetENbIdOk() (*string, bool)

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

func (*GlobalRanNodeId) GetGNbId

func (o *GlobalRanNodeId) GetGNbId() GNbId

GetGNbId returns the GNbId field value if set, zero value otherwise.

func (*GlobalRanNodeId) GetGNbIdOk

func (o *GlobalRanNodeId) GetGNbIdOk() (*GNbId, bool)

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

func (*GlobalRanNodeId) GetN3IwfId

func (o *GlobalRanNodeId) GetN3IwfId() string

GetN3IwfId returns the N3IwfId field value if set, zero value otherwise.

func (*GlobalRanNodeId) GetN3IwfIdOk

func (o *GlobalRanNodeId) 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 (*GlobalRanNodeId) GetNgeNbId

func (o *GlobalRanNodeId) GetNgeNbId() string

GetNgeNbId returns the NgeNbId field value if set, zero value otherwise.

func (*GlobalRanNodeId) GetNgeNbIdOk

func (o *GlobalRanNodeId) GetNgeNbIdOk() (*string, bool)

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

func (*GlobalRanNodeId) GetNid

func (o *GlobalRanNodeId) GetNid() string

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

func (*GlobalRanNodeId) GetNidOk

func (o *GlobalRanNodeId) 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 (*GlobalRanNodeId) GetPlmnId

func (o *GlobalRanNodeId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*GlobalRanNodeId) GetPlmnIdOk

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

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

func (*GlobalRanNodeId) GetTngfId

func (o *GlobalRanNodeId) GetTngfId() string

GetTngfId returns the TngfId field value if set, zero value otherwise.

func (*GlobalRanNodeId) GetTngfIdOk

func (o *GlobalRanNodeId) GetTngfIdOk() (*string, bool)

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

func (*GlobalRanNodeId) GetWagfId

func (o *GlobalRanNodeId) GetWagfId() string

GetWagfId returns the WagfId field value if set, zero value otherwise.

func (*GlobalRanNodeId) GetWagfIdOk

func (o *GlobalRanNodeId) GetWagfIdOk() (*string, bool)

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

func (*GlobalRanNodeId) HasENbId

func (o *GlobalRanNodeId) HasENbId() bool

HasENbId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasGNbId

func (o *GlobalRanNodeId) HasGNbId() bool

HasGNbId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasN3IwfId

func (o *GlobalRanNodeId) HasN3IwfId() bool

HasN3IwfId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasNgeNbId

func (o *GlobalRanNodeId) HasNgeNbId() bool

HasNgeNbId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasNid

func (o *GlobalRanNodeId) HasNid() bool

HasNid returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasTngfId

func (o *GlobalRanNodeId) HasTngfId() bool

HasTngfId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasWagfId

func (o *GlobalRanNodeId) HasWagfId() bool

HasWagfId returns a boolean if a field has been set.

func (GlobalRanNodeId) MarshalJSON

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

func (*GlobalRanNodeId) SetENbId

func (o *GlobalRanNodeId) SetENbId(v string)

SetENbId gets a reference to the given string and assigns it to the ENbId field.

func (*GlobalRanNodeId) SetGNbId

func (o *GlobalRanNodeId) SetGNbId(v GNbId)

SetGNbId gets a reference to the given GNbId and assigns it to the GNbId field.

func (*GlobalRanNodeId) SetN3IwfId

func (o *GlobalRanNodeId) SetN3IwfId(v string)

SetN3IwfId gets a reference to the given string and assigns it to the N3IwfId field.

func (*GlobalRanNodeId) SetNgeNbId

func (o *GlobalRanNodeId) SetNgeNbId(v string)

SetNgeNbId gets a reference to the given string and assigns it to the NgeNbId field.

func (*GlobalRanNodeId) SetNid

func (o *GlobalRanNodeId) SetNid(v string)

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

func (*GlobalRanNodeId) SetPlmnId

func (o *GlobalRanNodeId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*GlobalRanNodeId) SetTngfId

func (o *GlobalRanNodeId) SetTngfId(v string)

SetTngfId gets a reference to the given string and assigns it to the TngfId field.

func (*GlobalRanNodeId) SetWagfId

func (o *GlobalRanNodeId) SetWagfId(v string)

SetWagfId gets a reference to the given string and assigns it to the WagfId field.

func (GlobalRanNodeId) ToMap

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

func (*GlobalRanNodeId) UnmarshalJSON

func (o *GlobalRanNodeId) UnmarshalJSON(bytes []byte) (err error)

type Guami

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

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

func NewGuami

func NewGuami(plmnId PlmnIdNid, amfId string) *Guami

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

func NewGuamiWithDefaults

func NewGuamiWithDefaults() *Guami

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

func (*Guami) GetAmfId

func (o *Guami) GetAmfId() string

GetAmfId returns the AmfId field value

func (*Guami) GetAmfIdOk

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

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

func (*Guami) GetPlmnId

func (o *Guami) GetPlmnId() PlmnIdNid

GetPlmnId returns the PlmnId field value

func (*Guami) GetPlmnIdOk

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

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

func (Guami) MarshalJSON

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

func (*Guami) SetAmfId

func (o *Guami) SetAmfId(v string)

SetAmfId sets field value

func (*Guami) SetPlmnId

func (o *Guami) SetPlmnId(v PlmnIdNid)

SetPlmnId sets field value

func (Guami) ToMap

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

func (*Guami) UnmarshalJSON

func (o *Guami) UnmarshalJSON(bytes []byte) (err 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)

func (*HfcNodeId) UnmarshalJSON

func (o *HfcNodeId) UnmarshalJSON(bytes []byte) (err error)

type HoState

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

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) UnmarshalJSON

func (o *HsmfUpdateData) UnmarshalJSON(bytes []byte) (err 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)

func (*HsmfUpdateError) UnmarshalJSON

func (o *HsmfUpdateError) UnmarshalJSON(bytes []byte) (err 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)

func (*IndirectDataForwardingTunnelInfo) UnmarshalJSON

func (o *IndirectDataForwardingTunnelInfo) UnmarshalJSON(bytes []byte) (err 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)

func (*InvalidParam) UnmarshalJSON

func (o *InvalidParam) UnmarshalJSON(bytes []byte) (err error)

type IpAddress

type IpAddress 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"`
	Ipv6Prefix *Ipv6Prefix `json:"ipv6Prefix,omitempty"`
}

IpAddress IP Address

func NewIpAddress

func NewIpAddress() *IpAddress

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

func NewIpAddressWithDefaults

func NewIpAddressWithDefaults() *IpAddress

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

func (*IpAddress) GetIpv4Addr

func (o *IpAddress) GetIpv4Addr() string

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

func (*IpAddress) GetIpv4AddrOk

func (o *IpAddress) 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 (*IpAddress) GetIpv6Addr

func (o *IpAddress) GetIpv6Addr() Ipv6Addr

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

func (*IpAddress) GetIpv6AddrOk

func (o *IpAddress) 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 (*IpAddress) GetIpv6Prefix

func (o *IpAddress) GetIpv6Prefix() Ipv6Prefix

GetIpv6Prefix returns the Ipv6Prefix field value if set, zero value otherwise.

func (*IpAddress) GetIpv6PrefixOk

func (o *IpAddress) GetIpv6PrefixOk() (*Ipv6Prefix, bool)

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

func (*IpAddress) HasIpv4Addr

func (o *IpAddress) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*IpAddress) HasIpv6Addr

func (o *IpAddress) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*IpAddress) HasIpv6Prefix

func (o *IpAddress) HasIpv6Prefix() bool

HasIpv6Prefix returns a boolean if a field has been set.

func (IpAddress) MarshalJSON

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

func (*IpAddress) SetIpv4Addr

func (o *IpAddress) SetIpv4Addr(v string)

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

func (*IpAddress) SetIpv6Addr

func (o *IpAddress) SetIpv6Addr(v Ipv6Addr)

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

func (*IpAddress) SetIpv6Prefix

func (o *IpAddress) SetIpv6Prefix(v Ipv6Prefix)

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

func (IpAddress) ToMap

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

type Ipv6Addr

type Ipv6Addr struct {
}

Ipv6Addr String identifying an IPv6 address formatted according to clause 4 of RFC5952. The mixed IPv4 IPv6 notation according to clause 5 of RFC5952 shall not be used.

func NewIpv6Addr

func NewIpv6Addr() *Ipv6Addr

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

func NewIpv6AddrWithDefaults

func NewIpv6AddrWithDefaults() *Ipv6Addr

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

func (Ipv6Addr) MarshalJSON

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

func (Ipv6Addr) ToMap

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

type Ipv6Prefix

type Ipv6Prefix struct {
}

Ipv6Prefix String identifying an IPv6 address prefix formatted according to clause 4 of RFC 5952. IPv6Prefix data type may contain an individual /128 IPv6 address.

func NewIpv6Prefix

func NewIpv6Prefix() *Ipv6Prefix

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

func NewIpv6PrefixWithDefaults

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

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

func (Ipv6Prefix) MarshalJSON

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

func (Ipv6Prefix) ToMap

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

type LineType

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

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)

func (*LocationAreaId) UnmarshalJSON

func (o *LocationAreaId) UnmarshalJSON(bytes []byte) (err error)

type MaReleaseIndication

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

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 {
	// contains filtered or unexported fields
}

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)

func (*MoExpDataCounter) UnmarshalJSON

func (o *MoExpDataCounter) UnmarshalJSON(bytes []byte) (err error)

type N2SmInfoType

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

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)

func (*N4Information) UnmarshalJSON

func (o *N4Information) UnmarshalJSON(bytes []byte) (err error)

type N4MessageType

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

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 {
	// contains filtered or unexported fields
}

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)

func (*Ncgi) UnmarshalJSON

func (o *Ncgi) UnmarshalJSON(bytes []byte) (err 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)

func (*NgApCause) UnmarshalJSON

func (o *NgApCause) UnmarshalJSON(bytes []byte) (err error)

type NgRanTargetId

type NgRanTargetId struct {
	RanNodeId NullableGlobalRanNodeId `json:"ranNodeId"`
	Tai       Tai                     `json:"tai"`
}

NgRanTargetId Indicates a NG RAN as target of the handover

func NewNgRanTargetId

func NewNgRanTargetId(ranNodeId NullableGlobalRanNodeId, 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 If the value is explicit nil, the zero value for GlobalRanNodeId will be returned

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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)

func (*NgRanTargetId) UnmarshalJSON

func (o *NgRanTargetId) UnmarshalJSON(bytes []byte) (err 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 {
	// contains filtered or unexported fields
}

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 {
	// contains filtered or unexported fields
}

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)

func (*NotificationInfo) UnmarshalJSON

func (o *NotificationInfo) UnmarshalJSON(bytes []byte) (err 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         NullableGlobalRanNodeId `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 (both if not set or set to explicit null).

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. NOTE: If the value is an explicit nil, `nil, true` will be returned

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 NullableGlobalRanNodeId and assigns it to the GlobalGnbId field.

func (*NrLocation) SetGlobalGnbIdNil

func (o *NrLocation) SetGlobalGnbIdNil()

SetGlobalGnbIdNil sets the value for GlobalGnbId to be an explicit nil

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)

func (*NrLocation) UnmarshalJSON

func (o *NrLocation) UnmarshalJSON(bytes []byte) (err error)

func (*NrLocation) UnsetGlobalGnbId

func (o *NrLocation) UnsetGlobalGnbId()

UnsetGlobalGnbId ensures that no value is present for GlobalGnbId, not even an explicit nil

type NullValue

type NullValue string

NullValue JSON's null value.

const (
	NULLVALUE_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 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
}