openapi_Nsmf_EventExposure

package
v1.18.2 Latest Latest
Warning

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

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

README

Go API client for openapi_Nsmf_EventExposure

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

Overview

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

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

Installation

Install the following dependencies:

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

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

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

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

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

Class Method HTTP request Description
IndividualSubscriptionDocumentApi DeleteIndividualSubcription Delete /subscriptions/{subId} Delete an individual subscription for event notifications from the SMF
IndividualSubscriptionDocumentApi GetIndividualSubcription Get /subscriptions/{subId} Read an individual subscription for event notifications from the SMF
IndividualSubscriptionDocumentApi ReplaceIndividualSubcription Put /subscriptions/{subId} Replace an individual subscription for event notifications from the SMF
SubscriptionsCollectionApi CreateIndividualSubcription Post /subscriptions Create an individual subscription for event notifications from the SMF

Documentation For Models

Documentation For Authorization

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

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

All allowed values of AccessType enum

Functions

func CacheExpires

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

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

func IsNil added in v1.18.2

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	IndividualSubscriptionDocumentApi *IndividualSubscriptionDocumentApiService

	SubscriptionsCollectionApi *SubscriptionsCollectionApiService
	// contains filtered or unexported fields
}

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

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AccessTokenErr

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

AccessTokenErr Error returned in the access token response message

func NewAccessTokenErr

func NewAccessTokenErr(error_ string) *AccessTokenErr

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

func NewAccessTokenErrWithDefaults

func NewAccessTokenErrWithDefaults() *AccessTokenErr

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

func (*AccessTokenErr) GetError

func (o *AccessTokenErr) GetError() string

GetError returns the Error field value

func (*AccessTokenErr) GetErrorDescription

func (o *AccessTokenErr) GetErrorDescription() string

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

func (*AccessTokenErr) GetErrorDescriptionOk

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

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

func (*AccessTokenErr) GetErrorOk

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

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

func (*AccessTokenErr) GetErrorUri

func (o *AccessTokenErr) GetErrorUri() string

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

func (*AccessTokenErr) GetErrorUriOk

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

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

func (*AccessTokenErr) HasErrorDescription

func (o *AccessTokenErr) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*AccessTokenErr) HasErrorUri

func (o *AccessTokenErr) HasErrorUri() bool

HasErrorUri returns a boolean if a field has been set.

func (AccessTokenErr) MarshalJSON

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

func (*AccessTokenErr) SetError

func (o *AccessTokenErr) SetError(v string)

SetError sets field value

func (*AccessTokenErr) SetErrorDescription

func (o *AccessTokenErr) SetErrorDescription(v string)

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

func (*AccessTokenErr) SetErrorUri

func (o *AccessTokenErr) SetErrorUri(v string)

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

func (AccessTokenErr) ToMap

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

type AccessTokenReq

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

AccessTokenReq Contains information related to the access token request

func NewAccessTokenReq

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

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

func NewAccessTokenReqWithDefaults

func NewAccessTokenReqWithDefaults() *AccessTokenReq

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

func (*AccessTokenReq) GetGrantType

func (o *AccessTokenReq) GetGrantType() string

GetGrantType returns the GrantType field value

func (*AccessTokenReq) GetGrantTypeOk

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

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

func (*AccessTokenReq) GetHnrfAccessTokenUri

func (o *AccessTokenReq) GetHnrfAccessTokenUri() string

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

func (*AccessTokenReq) GetHnrfAccessTokenUriOk

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

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

func (*AccessTokenReq) GetNfInstanceId

func (o *AccessTokenReq) GetNfInstanceId() string

GetNfInstanceId returns the NfInstanceId field value

func (*AccessTokenReq) GetNfInstanceIdOk

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

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

func (*AccessTokenReq) GetNfType

func (o *AccessTokenReq) GetNfType() NFType

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

func (*AccessTokenReq) GetNfTypeOk

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

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

func (*AccessTokenReq) GetRequesterFqdn

func (o *AccessTokenReq) GetRequesterFqdn() string

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

func (*AccessTokenReq) GetRequesterFqdnOk

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

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

func (*AccessTokenReq) GetRequesterPlmn

func (o *AccessTokenReq) GetRequesterPlmn() PlmnId

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

func (*AccessTokenReq) GetRequesterPlmnList

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

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

func (*AccessTokenReq) GetRequesterPlmnListOk

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

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

func (*AccessTokenReq) GetRequesterPlmnOk

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

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

func (*AccessTokenReq) GetRequesterSnpnList

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

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

func (*AccessTokenReq) GetRequesterSnpnListOk

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

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

func (*AccessTokenReq) GetRequesterSnssaiList

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

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

func (*AccessTokenReq) GetRequesterSnssaiListOk

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

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

func (*AccessTokenReq) GetScope

func (o *AccessTokenReq) GetScope() string

GetScope returns the Scope field value

func (*AccessTokenReq) GetScopeOk

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

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

func (*AccessTokenReq) GetSourceNfInstanceId

func (o *AccessTokenReq) GetSourceNfInstanceId() string

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

func (*AccessTokenReq) GetSourceNfInstanceIdOk

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

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

func (*AccessTokenReq) GetTargetNfInstanceId

func (o *AccessTokenReq) GetTargetNfInstanceId() string

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

func (*AccessTokenReq) GetTargetNfInstanceIdOk

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

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

func (*AccessTokenReq) GetTargetNfServiceSetId

func (o *AccessTokenReq) GetTargetNfServiceSetId() string

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

func (*AccessTokenReq) GetTargetNfServiceSetIdOk

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

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

func (*AccessTokenReq) GetTargetNfSetId

func (o *AccessTokenReq) GetTargetNfSetId() string

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

func (*AccessTokenReq) GetTargetNfSetIdOk

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

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

func (*AccessTokenReq) GetTargetNfType

func (o *AccessTokenReq) GetTargetNfType() NFType

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

func (*AccessTokenReq) GetTargetNfTypeOk

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

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

func (*AccessTokenReq) GetTargetNsiList

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

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

func (*AccessTokenReq) GetTargetNsiListOk

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

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

func (*AccessTokenReq) GetTargetPlmn

func (o *AccessTokenReq) GetTargetPlmn() PlmnId

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

func (*AccessTokenReq) GetTargetPlmnOk

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

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

func (*AccessTokenReq) GetTargetSnpn

func (o *AccessTokenReq) GetTargetSnpn() PlmnIdNid

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

func (*AccessTokenReq) GetTargetSnpnOk

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

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

func (*AccessTokenReq) GetTargetSnssaiList

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

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

func (*AccessTokenReq) GetTargetSnssaiListOk

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

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

func (*AccessTokenReq) HasHnrfAccessTokenUri

func (o *AccessTokenReq) HasHnrfAccessTokenUri() bool

HasHnrfAccessTokenUri returns a boolean if a field has been set.

func (*AccessTokenReq) HasNfType

func (o *AccessTokenReq) HasNfType() bool

HasNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterFqdn

func (o *AccessTokenReq) HasRequesterFqdn() bool

HasRequesterFqdn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmn

func (o *AccessTokenReq) HasRequesterPlmn() bool

HasRequesterPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmnList

func (o *AccessTokenReq) HasRequesterPlmnList() bool

HasRequesterPlmnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnpnList

func (o *AccessTokenReq) HasRequesterSnpnList() bool

HasRequesterSnpnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnssaiList

func (o *AccessTokenReq) HasRequesterSnssaiList() bool

HasRequesterSnssaiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasSourceNfInstanceId

func (o *AccessTokenReq) HasSourceNfInstanceId() bool

HasSourceNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfInstanceId

func (o *AccessTokenReq) HasTargetNfInstanceId() bool

HasTargetNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfServiceSetId

func (o *AccessTokenReq) HasTargetNfServiceSetId() bool

HasTargetNfServiceSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfSetId

func (o *AccessTokenReq) HasTargetNfSetId() bool

HasTargetNfSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfType

func (o *AccessTokenReq) HasTargetNfType() bool

HasTargetNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNsiList

func (o *AccessTokenReq) HasTargetNsiList() bool

HasTargetNsiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetPlmn

func (o *AccessTokenReq) HasTargetPlmn() bool

HasTargetPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnpn

func (o *AccessTokenReq) HasTargetSnpn() bool

HasTargetSnpn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnssaiList

func (o *AccessTokenReq) HasTargetSnssaiList() bool

HasTargetSnssaiList returns a boolean if a field has been set.

func (AccessTokenReq) MarshalJSON

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

func (*AccessTokenReq) SetGrantType

func (o *AccessTokenReq) SetGrantType(v string)

SetGrantType sets field value

func (*AccessTokenReq) SetHnrfAccessTokenUri

func (o *AccessTokenReq) SetHnrfAccessTokenUri(v string)

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

func (*AccessTokenReq) SetNfInstanceId

func (o *AccessTokenReq) SetNfInstanceId(v string)

SetNfInstanceId sets field value

func (*AccessTokenReq) SetNfType

func (o *AccessTokenReq) SetNfType(v NFType)

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

func (*AccessTokenReq) SetRequesterFqdn

func (o *AccessTokenReq) SetRequesterFqdn(v string)

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

func (*AccessTokenReq) SetRequesterPlmn

func (o *AccessTokenReq) SetRequesterPlmn(v PlmnId)

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

func (*AccessTokenReq) SetRequesterPlmnList

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

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

func (*AccessTokenReq) SetRequesterSnpnList

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

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

func (*AccessTokenReq) SetRequesterSnssaiList

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

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

func (*AccessTokenReq) SetScope

func (o *AccessTokenReq) SetScope(v string)

SetScope sets field value

func (*AccessTokenReq) SetSourceNfInstanceId

func (o *AccessTokenReq) SetSourceNfInstanceId(v string)

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

func (*AccessTokenReq) SetTargetNfInstanceId

func (o *AccessTokenReq) SetTargetNfInstanceId(v string)

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

func (*AccessTokenReq) SetTargetNfServiceSetId

func (o *AccessTokenReq) SetTargetNfServiceSetId(v string)

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

func (*AccessTokenReq) SetTargetNfSetId

func (o *AccessTokenReq) SetTargetNfSetId(v string)

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

func (*AccessTokenReq) SetTargetNfType

func (o *AccessTokenReq) SetTargetNfType(v NFType)

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

func (*AccessTokenReq) SetTargetNsiList

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

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

func (*AccessTokenReq) SetTargetPlmn

func (o *AccessTokenReq) SetTargetPlmn(v PlmnId)

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

func (*AccessTokenReq) SetTargetSnpn

func (o *AccessTokenReq) SetTargetSnpn(v PlmnIdNid)

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

func (*AccessTokenReq) SetTargetSnssaiList

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

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

func (AccessTokenReq) ToMap

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

type AccessType

type AccessType string

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

const (
	NON_3_GPP_ACCESS AccessType = "NON_3GPP_ACCESS"
)

List of AccessType

func NewAccessTypeFromValue

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

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

func (AccessType) IsValid

func (v AccessType) IsValid() bool

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

func (AccessType) Ptr

func (v AccessType) Ptr() *AccessType

Ptr returns reference to AccessType value

func (*AccessType) UnmarshalJSON

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

type AckOfNotify

type AckOfNotify struct {
	NotifId   string       `json:"notifId"`
	AckResult AfResultInfo `json:"ackResult"`
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,omitempty"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi *string `json:"gpsi,omitempty"`
}

AckOfNotify Represents an acknowledgement information of an event notification.

func NewAckOfNotify

func NewAckOfNotify(notifId string, ackResult AfResultInfo) *AckOfNotify

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

func NewAckOfNotifyWithDefaults

func NewAckOfNotifyWithDefaults() *AckOfNotify

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

func (*AckOfNotify) GetAckResult

func (o *AckOfNotify) GetAckResult() AfResultInfo

GetAckResult returns the AckResult field value

func (*AckOfNotify) GetAckResultOk

func (o *AckOfNotify) GetAckResultOk() (*AfResultInfo, bool)

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

func (*AckOfNotify) GetGpsi

func (o *AckOfNotify) GetGpsi() string

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

func (*AckOfNotify) GetGpsiOk

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

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

func (*AckOfNotify) GetNotifId

func (o *AckOfNotify) GetNotifId() string

GetNotifId returns the NotifId field value

func (*AckOfNotify) GetNotifIdOk

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

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

func (*AckOfNotify) GetSupi

func (o *AckOfNotify) GetSupi() string

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

func (*AckOfNotify) GetSupiOk

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

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

func (*AckOfNotify) HasGpsi

func (o *AckOfNotify) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*AckOfNotify) HasSupi

func (o *AckOfNotify) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (AckOfNotify) MarshalJSON

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

func (*AckOfNotify) SetAckResult

func (o *AckOfNotify) SetAckResult(v AfResultInfo)

SetAckResult sets field value

func (*AckOfNotify) SetGpsi

func (o *AckOfNotify) SetGpsi(v string)

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

func (*AckOfNotify) SetNotifId

func (o *AckOfNotify) SetNotifId(v string)

SetNotifId sets field value

func (*AckOfNotify) SetSupi

func (o *AckOfNotify) SetSupi(v string)

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

func (AckOfNotify) ToMap

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

type AddrFqdn

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

AddrFqdn IP address and/or FQDN.

func NewAddrFqdn

func NewAddrFqdn() *AddrFqdn

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

func NewAddrFqdnWithDefaults

func NewAddrFqdnWithDefaults() *AddrFqdn

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

func (*AddrFqdn) GetFqdn

func (o *AddrFqdn) GetFqdn() string

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

func (*AddrFqdn) GetFqdnOk

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

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

func (*AddrFqdn) GetIpAddr

func (o *AddrFqdn) GetIpAddr() IpAddr

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

func (*AddrFqdn) GetIpAddrOk

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

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

func (*AddrFqdn) HasFqdn

func (o *AddrFqdn) HasFqdn() bool

HasFqdn returns a boolean if a field has been set.

func (*AddrFqdn) HasIpAddr

func (o *AddrFqdn) HasIpAddr() bool

HasIpAddr returns a boolean if a field has been set.

func (AddrFqdn) MarshalJSON

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

func (*AddrFqdn) SetFqdn

func (o *AddrFqdn) SetFqdn(v string)

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

func (*AddrFqdn) SetIpAddr

func (o *AddrFqdn) SetIpAddr(v IpAddr)

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

func (AddrFqdn) ToMap

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

type AfResultInfo

type AfResultInfo struct {
	AfStatus     AfResultStatus          `json:"afStatus"`
	TrafficRoute NullableRouteToLocation `json:"trafficRoute,omitempty"`
	// If present and set to \"true\" it indicates that buffering of uplink traffic to the target DNAI is needed.
	UpBuffInd *bool `json:"upBuffInd,omitempty"`
	// Contains EAS IP replacement information.
	EasIpReplaceInfos []EasIpReplacementInfo `json:"easIpReplaceInfos,omitempty"`
}

AfResultInfo Identifies the result of application layer handling.

func NewAfResultInfo

func NewAfResultInfo(afStatus AfResultStatus) *AfResultInfo

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

func NewAfResultInfoWithDefaults

func NewAfResultInfoWithDefaults() *AfResultInfo

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

func (*AfResultInfo) GetAfStatus

func (o *AfResultInfo) GetAfStatus() AfResultStatus

GetAfStatus returns the AfStatus field value

func (*AfResultInfo) GetAfStatusOk

func (o *AfResultInfo) GetAfStatusOk() (*AfResultStatus, bool)

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

func (*AfResultInfo) GetEasIpReplaceInfos

func (o *AfResultInfo) GetEasIpReplaceInfos() []EasIpReplacementInfo

GetEasIpReplaceInfos returns the EasIpReplaceInfos field value if set, zero value otherwise.

func (*AfResultInfo) GetEasIpReplaceInfosOk

func (o *AfResultInfo) GetEasIpReplaceInfosOk() ([]EasIpReplacementInfo, bool)

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

func (*AfResultInfo) GetTrafficRoute

func (o *AfResultInfo) GetTrafficRoute() RouteToLocation

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

func (*AfResultInfo) GetTrafficRouteOk

func (o *AfResultInfo) GetTrafficRouteOk() (*RouteToLocation, bool)

GetTrafficRouteOk returns a tuple with the TrafficRoute 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 (*AfResultInfo) GetUpBuffInd

func (o *AfResultInfo) GetUpBuffInd() bool

GetUpBuffInd returns the UpBuffInd field value if set, zero value otherwise.

func (*AfResultInfo) GetUpBuffIndOk

func (o *AfResultInfo) GetUpBuffIndOk() (*bool, bool)

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

func (*AfResultInfo) HasEasIpReplaceInfos

func (o *AfResultInfo) HasEasIpReplaceInfos() bool

HasEasIpReplaceInfos returns a boolean if a field has been set.

func (*AfResultInfo) HasTrafficRoute

func (o *AfResultInfo) HasTrafficRoute() bool

HasTrafficRoute returns a boolean if a field has been set.

func (*AfResultInfo) HasUpBuffInd

func (o *AfResultInfo) HasUpBuffInd() bool

HasUpBuffInd returns a boolean if a field has been set.

func (AfResultInfo) MarshalJSON

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

func (*AfResultInfo) SetAfStatus

func (o *AfResultInfo) SetAfStatus(v AfResultStatus)

SetAfStatus sets field value

func (*AfResultInfo) SetEasIpReplaceInfos

func (o *AfResultInfo) SetEasIpReplaceInfos(v []EasIpReplacementInfo)

SetEasIpReplaceInfos gets a reference to the given []EasIpReplacementInfo and assigns it to the EasIpReplaceInfos field.

func (*AfResultInfo) SetTrafficRoute

func (o *AfResultInfo) SetTrafficRoute(v RouteToLocation)

SetTrafficRoute gets a reference to the given NullableRouteToLocation and assigns it to the TrafficRoute field.

func (*AfResultInfo) SetTrafficRouteNil

func (o *AfResultInfo) SetTrafficRouteNil()

SetTrafficRouteNil sets the value for TrafficRoute to be an explicit nil

func (*AfResultInfo) SetUpBuffInd

func (o *AfResultInfo) SetUpBuffInd(v bool)

SetUpBuffInd gets a reference to the given bool and assigns it to the UpBuffInd field.

func (AfResultInfo) ToMap

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

func (*AfResultInfo) UnsetTrafficRoute

func (o *AfResultInfo) UnsetTrafficRoute()

UnsetTrafficRoute ensures that no value is present for TrafficRoute, not even an explicit nil

type AfResultStatus

type AfResultStatus struct {
	String *string
}

AfResultStatus Possible values are: - SUCCESS: The application layer is ready or the relocation is completed. - TEMPORARY_CONGESTION: The application relocation fails due to temporary congestion. - RELOC_NO_ALLOWED: The application relocation fails because application relocation is not allowed. - OTHER: The application relocation fails due to other reason.

func (*AfResultStatus) MarshalJSON

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

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

func (*AfResultStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ApiCreateIndividualSubcriptionRequest

type ApiCreateIndividualSubcriptionRequest struct {
	ApiService *SubscriptionsCollectionApiService
	// contains filtered or unexported fields
}

func (ApiCreateIndividualSubcriptionRequest) Execute

func (ApiCreateIndividualSubcriptionRequest) NsmfEventExposure

type ApiDeleteIndividualSubcriptionRequest

type ApiDeleteIndividualSubcriptionRequest struct {
	ApiService *IndividualSubscriptionDocumentApiService
	// contains filtered or unexported fields
}

func (ApiDeleteIndividualSubcriptionRequest) Execute

type ApiGetIndividualSubcriptionRequest

type ApiGetIndividualSubcriptionRequest struct {
	ApiService *IndividualSubscriptionDocumentApiService
	// contains filtered or unexported fields
}

func (ApiGetIndividualSubcriptionRequest) Execute

type ApiReplaceIndividualSubcriptionRequest

type ApiReplaceIndividualSubcriptionRequest struct {
	ApiService *IndividualSubscriptionDocumentApiService
	// contains filtered or unexported fields
}

func (ApiReplaceIndividualSubcriptionRequest) Execute

func (ApiReplaceIndividualSubcriptionRequest) NsmfEventExposure

type AppliedSmccType

type AppliedSmccType struct {
	String *string
}

AppliedSmccType Possible values are: - DNN_CC: Indicates the DNN based congestion control. - SNSSAI_CC: Indicates the S-NSSAI based congestion control.

func (*AppliedSmccType) MarshalJSON

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

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

func (*AppliedSmccType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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

type CommunicationFailure struct {
	NasReleaseCode *string    `json:"nasReleaseCode,omitempty"`
	RanReleaseCode *NgApCause `json:"ranReleaseCode,omitempty"`
}

CommunicationFailure Describes a communication failure detected by AMF

func NewCommunicationFailure

func NewCommunicationFailure() *CommunicationFailure

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

func NewCommunicationFailureWithDefaults

func NewCommunicationFailureWithDefaults() *CommunicationFailure

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

func (*CommunicationFailure) GetNasReleaseCode

func (o *CommunicationFailure) GetNasReleaseCode() string

GetNasReleaseCode returns the NasReleaseCode field value if set, zero value otherwise.

func (*CommunicationFailure) GetNasReleaseCodeOk

func (o *CommunicationFailure) GetNasReleaseCodeOk() (*string, bool)

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

func (*CommunicationFailure) GetRanReleaseCode

func (o *CommunicationFailure) GetRanReleaseCode() NgApCause

GetRanReleaseCode returns the RanReleaseCode field value if set, zero value otherwise.

func (*CommunicationFailure) GetRanReleaseCodeOk

func (o *CommunicationFailure) GetRanReleaseCodeOk() (*NgApCause, bool)

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

func (*CommunicationFailure) HasNasReleaseCode

func (o *CommunicationFailure) HasNasReleaseCode() bool

HasNasReleaseCode returns a boolean if a field has been set.

func (*CommunicationFailure) HasRanReleaseCode

func (o *CommunicationFailure) HasRanReleaseCode() bool

HasRanReleaseCode returns a boolean if a field has been set.

func (CommunicationFailure) MarshalJSON

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

func (*CommunicationFailure) SetNasReleaseCode

func (o *CommunicationFailure) SetNasReleaseCode(v string)

SetNasReleaseCode gets a reference to the given string and assigns it to the NasReleaseCode field.

func (*CommunicationFailure) SetRanReleaseCode

func (o *CommunicationFailure) SetRanReleaseCode(v NgApCause)

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

func (CommunicationFailure) ToMap

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

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

type DlDataDeliveryStatus struct {
	String *string
}

DlDataDeliveryStatus Possible values are: - BUFFERED: The first downlink data is buffered with extended buffering matching the source of the downlink traffic. - TRANSMITTED: The first downlink data matching the source of the downlink traffic is transmitted after previous buffering or discarding of corresponding packet(s) because the UE of the PDU Session becomes ACTIVE, and buffered data can be delivered to UE. - DISCARDED: The first downlink data matching the source of the downlink traffic is discarded because the Extended Buffering time, as determined by the SMF, expires or the amount of downlink data to be buffered is exceeded.

func (*DlDataDeliveryStatus) MarshalJSON

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

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

func (*DlDataDeliveryStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type DnaiChangeType

type DnaiChangeType struct {
	String *string
}

DnaiChangeType Possible values are: - EARLY: Early notification of UP path reconfiguration. - EARLY_LATE: Early and late notification of UP path reconfiguration. This value shall only be present in the subscription to the DNAI change event. - LATE: Late notification of UP path reconfiguration.

func (*DnaiChangeType) MarshalJSON

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

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

func (*DnaiChangeType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type EasIpReplacementInfo

type EasIpReplacementInfo struct {
	Source EasServerAddress `json:"source"`
	Target EasServerAddress `json:"target"`
}

EasIpReplacementInfo Contains EAS IP replacement information for a Source and a Target EAS.

func NewEasIpReplacementInfo

func NewEasIpReplacementInfo(source EasServerAddress, target EasServerAddress) *EasIpReplacementInfo

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

func NewEasIpReplacementInfoWithDefaults

func NewEasIpReplacementInfoWithDefaults() *EasIpReplacementInfo

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

func (*EasIpReplacementInfo) GetSource

func (o *EasIpReplacementInfo) GetSource() EasServerAddress

GetSource returns the Source field value

func (*EasIpReplacementInfo) GetSourceOk

func (o *EasIpReplacementInfo) GetSourceOk() (*EasServerAddress, bool)

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

func (*EasIpReplacementInfo) GetTarget

func (o *EasIpReplacementInfo) GetTarget() EasServerAddress

GetTarget returns the Target field value

func (*EasIpReplacementInfo) GetTargetOk

func (o *EasIpReplacementInfo) GetTargetOk() (*EasServerAddress, bool)

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

func (EasIpReplacementInfo) MarshalJSON

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

func (*EasIpReplacementInfo) SetSource

func (o *EasIpReplacementInfo) SetSource(v EasServerAddress)

SetSource sets field value

func (*EasIpReplacementInfo) SetTarget

func (o *EasIpReplacementInfo) SetTarget(v EasServerAddress)

SetTarget sets field value

func (EasIpReplacementInfo) ToMap

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

type EasServerAddress

type EasServerAddress struct {
	Ip IpAddr `json:"ip"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Port int32 `json:"port"`
}

EasServerAddress Represents the IP address and port of an EAS server.

func NewEasServerAddress

func NewEasServerAddress(ip IpAddr, port int32) *EasServerAddress

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

func NewEasServerAddressWithDefaults

func NewEasServerAddressWithDefaults() *EasServerAddress

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

func (*EasServerAddress) GetIp

func (o *EasServerAddress) GetIp() IpAddr

GetIp returns the Ip field value

func (*EasServerAddress) GetIpOk

func (o *EasServerAddress) GetIpOk() (*IpAddr, bool)

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

func (*EasServerAddress) GetPort

func (o *EasServerAddress) GetPort() int32

GetPort returns the Port field value

func (*EasServerAddress) GetPortOk

func (o *EasServerAddress) GetPortOk() (*int32, bool)

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

func (EasServerAddress) MarshalJSON

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

func (*EasServerAddress) SetIp

func (o *EasServerAddress) SetIp(v IpAddr)

SetIp sets field value

func (*EasServerAddress) SetPort

func (o *EasServerAddress) SetPort(v int32)

SetPort sets field value

func (EasServerAddress) ToMap

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

type EthFlowDescription

type EthFlowDescription struct {
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	DestMacAddr *string `json:"destMacAddr,omitempty"`
	EthType     string  `json:"ethType"`
	// Defines a packet filter of an IP flow.
	FDesc *string        `json:"fDesc,omitempty"`
	FDir  *FlowDirection `json:"fDir,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	SourceMacAddr *string  `json:"sourceMacAddr,omitempty"`
	VlanTags      []string `json:"vlanTags,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	SrcMacAddrEnd *string `json:"srcMacAddrEnd,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	DestMacAddrEnd *string `json:"destMacAddrEnd,omitempty"`
}

EthFlowDescription Identifies an Ethernet flow.

func NewEthFlowDescription

func NewEthFlowDescription(ethType string) *EthFlowDescription

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

func NewEthFlowDescriptionWithDefaults

func NewEthFlowDescriptionWithDefaults() *EthFlowDescription

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

func (*EthFlowDescription) GetDestMacAddr

func (o *EthFlowDescription) GetDestMacAddr() string

GetDestMacAddr returns the DestMacAddr field value if set, zero value otherwise.

func (*EthFlowDescription) GetDestMacAddrEnd

func (o *EthFlowDescription) GetDestMacAddrEnd() string

GetDestMacAddrEnd returns the DestMacAddrEnd field value if set, zero value otherwise.

func (*EthFlowDescription) GetDestMacAddrEndOk

func (o *EthFlowDescription) GetDestMacAddrEndOk() (*string, bool)

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

func (*EthFlowDescription) GetDestMacAddrOk

func (o *EthFlowDescription) GetDestMacAddrOk() (*string, bool)

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

func (*EthFlowDescription) GetEthType

func (o *EthFlowDescription) GetEthType() string

GetEthType returns the EthType field value

func (*EthFlowDescription) GetEthTypeOk

func (o *EthFlowDescription) GetEthTypeOk() (*string, bool)

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

func (*EthFlowDescription) GetFDesc

func (o *EthFlowDescription) GetFDesc() string

GetFDesc returns the FDesc field value if set, zero value otherwise.

func (*EthFlowDescription) GetFDescOk

func (o *EthFlowDescription) GetFDescOk() (*string, bool)

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

func (*EthFlowDescription) GetFDir

func (o *EthFlowDescription) GetFDir() FlowDirection

GetFDir returns the FDir field value if set, zero value otherwise.

func (*EthFlowDescription) GetFDirOk

func (o *EthFlowDescription) GetFDirOk() (*FlowDirection, bool)

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

func (*EthFlowDescription) GetSourceMacAddr

func (o *EthFlowDescription) GetSourceMacAddr() string

GetSourceMacAddr returns the SourceMacAddr field value if set, zero value otherwise.

func (*EthFlowDescription) GetSourceMacAddrOk

func (o *EthFlowDescription) GetSourceMacAddrOk() (*string, bool)

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

func (*EthFlowDescription) GetSrcMacAddrEnd

func (o *EthFlowDescription) GetSrcMacAddrEnd() string

GetSrcMacAddrEnd returns the SrcMacAddrEnd field value if set, zero value otherwise.

func (*EthFlowDescription) GetSrcMacAddrEndOk

func (o *EthFlowDescription) GetSrcMacAddrEndOk() (*string, bool)

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

func (*EthFlowDescription) GetVlanTags

func (o *EthFlowDescription) GetVlanTags() []string

GetVlanTags returns the VlanTags field value if set, zero value otherwise.

func (*EthFlowDescription) GetVlanTagsOk

func (o *EthFlowDescription) GetVlanTagsOk() ([]string, bool)

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

func (*EthFlowDescription) HasDestMacAddr

func (o *EthFlowDescription) HasDestMacAddr() bool

HasDestMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasDestMacAddrEnd

func (o *EthFlowDescription) HasDestMacAddrEnd() bool

HasDestMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDesc

func (o *EthFlowDescription) HasFDesc() bool

HasFDesc returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDir

func (o *EthFlowDescription) HasFDir() bool

HasFDir returns a boolean if a field has been set.

func (*EthFlowDescription) HasSourceMacAddr

func (o *EthFlowDescription) HasSourceMacAddr() bool

HasSourceMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasSrcMacAddrEnd

func (o *EthFlowDescription) HasSrcMacAddrEnd() bool

HasSrcMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasVlanTags

func (o *EthFlowDescription) HasVlanTags() bool

HasVlanTags returns a boolean if a field has been set.

func (EthFlowDescription) MarshalJSON

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

func (*EthFlowDescription) SetDestMacAddr

func (o *EthFlowDescription) SetDestMacAddr(v string)

SetDestMacAddr gets a reference to the given string and assigns it to the DestMacAddr field.

func (*EthFlowDescription) SetDestMacAddrEnd

func (o *EthFlowDescription) SetDestMacAddrEnd(v string)

SetDestMacAddrEnd gets a reference to the given string and assigns it to the DestMacAddrEnd field.

func (*EthFlowDescription) SetEthType

func (o *EthFlowDescription) SetEthType(v string)

SetEthType sets field value

func (*EthFlowDescription) SetFDesc

func (o *EthFlowDescription) SetFDesc(v string)

SetFDesc gets a reference to the given string and assigns it to the FDesc field.

func (*EthFlowDescription) SetFDir

func (o *EthFlowDescription) SetFDir(v FlowDirection)

SetFDir gets a reference to the given FlowDirection and assigns it to the FDir field.

func (*EthFlowDescription) SetSourceMacAddr

func (o *EthFlowDescription) SetSourceMacAddr(v string)

SetSourceMacAddr gets a reference to the given string and assigns it to the SourceMacAddr field.

func (*EthFlowDescription) SetSrcMacAddrEnd

func (o *EthFlowDescription) SetSrcMacAddrEnd(v string)

SetSrcMacAddrEnd gets a reference to the given string and assigns it to the SrcMacAddrEnd field.

func (*EthFlowDescription) SetVlanTags

func (o *EthFlowDescription) SetVlanTags(v []string)

SetVlanTags gets a reference to the given []string and assigns it to the VlanTags field.

func (EthFlowDescription) ToMap

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

type EventNotification

type EventNotification struct {
	Event SmfEvent `json:"event"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp time.Time `json:"timeStamp"`
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,omitempty"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi     *string `json:"gpsi,omitempty"`
	UeIpAddr *IpAddr `json:"ueIpAddr,omitempty"`
	// Transaction Information.
	TransacInfos []TransactionInfo `json:"transacInfos,omitempty"`
	// DNAI (Data network access identifier), see clause 5.6.7 of 3GPP TS 23.501.
	SourceDnai *string `json:"sourceDnai,omitempty"`
	// DNAI (Data network access identifier), see clause 5.6.7 of 3GPP TS 23.501.
	TargetDnai  *string         `json:"targetDnai,omitempty"`
	DnaiChgType *DnaiChangeType `json:"dnaiChgType,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	SourceUeIpv4Addr   *string     `json:"sourceUeIpv4Addr,omitempty"`
	SourceUeIpv6Prefix *Ipv6Prefix `json:"sourceUeIpv6Prefix,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	TargetUeIpv4Addr   *string                 `json:"targetUeIpv4Addr,omitempty"`
	TargetUeIpv6Prefix *Ipv6Prefix             `json:"targetUeIpv6Prefix,omitempty"`
	SourceTraRouting   NullableRouteToLocation `json:"sourceTraRouting,omitempty"`
	TargetTraRouting   NullableRouteToLocation `json:"targetTraRouting,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	UeMac *string `json:"ueMac,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	AdIpv4Addr   *string     `json:"adIpv4Addr,omitempty"`
	AdIpv6Prefix *Ipv6Prefix `json:"adIpv6Prefix,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	ReIpv4Addr   *string     `json:"reIpv4Addr,omitempty"`
	ReIpv6Prefix *Ipv6Prefix `json:"reIpv6Prefix,omitempty"`
	PlmnId       *PlmnId     `json:"plmnId,omitempty"`
	AccType      *AccessType `json:"accType,omitempty"`
	// Unsigned integer identifying a PDU session, within the range 0 to 255, as specified in  clause 11.2.3.1b, bits 1 to 8, of 3GPP TS 24.007. If the PDU Session ID is allocated by the  Core Network for UEs not supporting N1 mode, reserved range 64 to 95 is used. PDU Session ID  within the reserved range is only visible in the Core Network.
	PduSeId          *int32                `json:"pduSeId,omitempty"`
	RatType          *RatType              `json:"ratType,omitempty"`
	DddStatus        *DlDataDeliveryStatus `json:"dddStatus,omitempty"`
	DddTraDescriptor *DddTrafficDescriptor `json:"dddTraDescriptor,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	MaxWaitTime *time.Time            `json:"maxWaitTime,omitempty"`
	CommFailure *CommunicationFailure `json:"commFailure,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr     *string         `json:"ipv4Addr,omitempty"`
	Ipv6Prefixes []Ipv6Prefix    `json:"ipv6Prefixes,omitempty"`
	Ipv6Addrs    []Ipv6Addr      `json:"ipv6Addrs,omitempty"`
	PduSessType  *PduSessionType `json:"pduSessType,omitempty"`
	// Unsigned integer identifying a QoS flow, within the range 0 to 63.
	Qfi *int32 `json:"qfi,omitempty"`
	// String providing an application identifier.
	AppId *string `json:"appId,omitempty"`
	// Descriptor(s) for non-IP traffic. It allows the encoding of multiple UL and/or DL flows. Each entry of the array describes a single Ethernet flow.
	EthFlowDescs []EthFlowDescription `json:"ethFlowDescs,omitempty"`
	// Contains the UL and/or DL Ethernet flows. Each entry of the array describes a single Ethernet flow.
	EthfDescs []EthFlowDescription `json:"ethfDescs,omitempty"`
	// Descriptor(s) for IP traffic. It allows the encoding of multiple UL and/or DL flows. Each entry of the array describes a single IP flow.
	FlowDescs []string `json:"flowDescs,omitempty"`
	// Contains the UL and/or DL IP flows. Each entry of the array describes a single IP flow.
	FDescs []string `json:"fDescs,omitempty"`
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn          *string       `json:"dnn,omitempty"`
	Snssai       *Snssai       `json:"snssai,omitempty"`
	UlDelays     []int32       `json:"ulDelays,omitempty"`
	DlDelays     []int32       `json:"dlDelays,omitempty"`
	RtDelays     []int32       `json:"rtDelays,omitempty"`
	TimeWindow   *TimeWindow   `json:"timeWindow,omitempty"`
	SmNasFromUe  *SmNasFromUe  `json:"smNasFromUe,omitempty"`
	SmNasFromSmf *SmNasFromSmf `json:"smNasFromSmf,omitempty"`
	// Indicates whether the redundant transmission is setup or terminated. Set to \"true\" if  the redundant transmission is setup, otherwise set to \"false\" if the redundant  transmission is terminated. Default value is set to \"false\".
	UpRedTrans *bool   `json:"upRedTrans,omitempty"`
	SsId       *string `json:"ssId,omitempty"`
	BssId      *string `json:"bssId,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	StartWlan *time.Time `json:"startWlan,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	EndWlan      *time.Time              `json:"endWlan,omitempty"`
	PduSessInfos []PduSessionInformation `json:"pduSessInfos,omitempty"`
	UpfInfo      *UpfInformation         `json:"upfInfo,omitempty"`
}

EventNotification Represents a notification related to a single event that occurred.

func NewEventNotification

func NewEventNotification(event SmfEvent, timeStamp time.Time) *EventNotification

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

func NewEventNotificationWithDefaults

func NewEventNotificationWithDefaults() *EventNotification

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

func (*EventNotification) GetAccType

func (o *EventNotification) GetAccType() AccessType

GetAccType returns the AccType field value if set, zero value otherwise.

func (*EventNotification) GetAccTypeOk

func (o *EventNotification) GetAccTypeOk() (*AccessType, bool)

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

func (*EventNotification) GetAdIpv4Addr

func (o *EventNotification) GetAdIpv4Addr() string

GetAdIpv4Addr returns the AdIpv4Addr field value if set, zero value otherwise.

func (*EventNotification) GetAdIpv4AddrOk

func (o *EventNotification) GetAdIpv4AddrOk() (*string, bool)

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

func (*EventNotification) GetAdIpv6Prefix

func (o *EventNotification) GetAdIpv6Prefix() Ipv6Prefix

GetAdIpv6Prefix returns the AdIpv6Prefix field value if set, zero value otherwise.

func (*EventNotification) GetAdIpv6PrefixOk

func (o *EventNotification) GetAdIpv6PrefixOk() (*Ipv6Prefix, bool)

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

func (*EventNotification) GetAppId

func (o *EventNotification) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*EventNotification) GetAppIdOk

func (o *EventNotification) GetAppIdOk() (*string, bool)

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

func (*EventNotification) GetBssId

func (o *EventNotification) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*EventNotification) GetBssIdOk

func (o *EventNotification) GetBssIdOk() (*string, bool)

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

func (*EventNotification) GetCommFailure

func (o *EventNotification) GetCommFailure() CommunicationFailure

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

func (*EventNotification) GetCommFailureOk

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

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

func (*EventNotification) GetDddStatus

func (o *EventNotification) GetDddStatus() DlDataDeliveryStatus

GetDddStatus returns the DddStatus field value if set, zero value otherwise.

func (*EventNotification) GetDddStatusOk

func (o *EventNotification) GetDddStatusOk() (*DlDataDeliveryStatus, bool)

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

func (*EventNotification) GetDddTraDescriptor

func (o *EventNotification) GetDddTraDescriptor() DddTrafficDescriptor

GetDddTraDescriptor returns the DddTraDescriptor field value if set, zero value otherwise.

func (*EventNotification) GetDddTraDescriptorOk

func (o *EventNotification) GetDddTraDescriptorOk() (*DddTrafficDescriptor, bool)

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

func (*EventNotification) GetDlDelays

func (o *EventNotification) GetDlDelays() []int32

GetDlDelays returns the DlDelays field value if set, zero value otherwise.

func (*EventNotification) GetDlDelaysOk

func (o *EventNotification) GetDlDelaysOk() ([]int32, bool)

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

func (*EventNotification) GetDnaiChgType

func (o *EventNotification) GetDnaiChgType() DnaiChangeType

GetDnaiChgType returns the DnaiChgType field value if set, zero value otherwise.

func (*EventNotification) GetDnaiChgTypeOk

func (o *EventNotification) GetDnaiChgTypeOk() (*DnaiChangeType, bool)

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

func (*EventNotification) GetDnn

func (o *EventNotification) GetDnn() string

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

func (*EventNotification) GetDnnOk

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

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

func (*EventNotification) GetEndWlan

func (o *EventNotification) GetEndWlan() time.Time

GetEndWlan returns the EndWlan field value if set, zero value otherwise.

func (*EventNotification) GetEndWlanOk

func (o *EventNotification) GetEndWlanOk() (*time.Time, bool)

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

func (*EventNotification) GetEthFlowDescs

func (o *EventNotification) GetEthFlowDescs() []EthFlowDescription

GetEthFlowDescs returns the EthFlowDescs field value if set, zero value otherwise.

func (*EventNotification) GetEthFlowDescsOk

func (o *EventNotification) GetEthFlowDescsOk() ([]EthFlowDescription, bool)

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

func (*EventNotification) GetEthfDescs

func (o *EventNotification) GetEthfDescs() []EthFlowDescription

GetEthfDescs returns the EthfDescs field value if set, zero value otherwise.

func (*EventNotification) GetEthfDescsOk

func (o *EventNotification) GetEthfDescsOk() ([]EthFlowDescription, bool)

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

func (*EventNotification) GetEvent

func (o *EventNotification) GetEvent() SmfEvent

GetEvent returns the Event field value

func (*EventNotification) GetEventOk

func (o *EventNotification) GetEventOk() (*SmfEvent, bool)

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

func (*EventNotification) GetFDescs

func (o *EventNotification) GetFDescs() []string

GetFDescs returns the FDescs field value if set, zero value otherwise.

func (*EventNotification) GetFDescsOk

func (o *EventNotification) GetFDescsOk() ([]string, bool)

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

func (*EventNotification) GetFlowDescs

func (o *EventNotification) GetFlowDescs() []string

GetFlowDescs returns the FlowDescs field value if set, zero value otherwise.

func (*EventNotification) GetFlowDescsOk

func (o *EventNotification) GetFlowDescsOk() ([]string, bool)

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

func (*EventNotification) GetGpsi

func (o *EventNotification) GetGpsi() string

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

func (*EventNotification) GetGpsiOk

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

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

func (*EventNotification) GetIpv4Addr

func (o *EventNotification) GetIpv4Addr() string

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

func (*EventNotification) GetIpv4AddrOk

func (o *EventNotification) 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 (*EventNotification) GetIpv6Addrs

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

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

func (*EventNotification) GetIpv6AddrsOk

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

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

func (*EventNotification) GetIpv6Prefixes

func (o *EventNotification) GetIpv6Prefixes() []Ipv6Prefix

GetIpv6Prefixes returns the Ipv6Prefixes field value if set, zero value otherwise.

func (*EventNotification) GetIpv6PrefixesOk

func (o *EventNotification) GetIpv6PrefixesOk() ([]Ipv6Prefix, bool)

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

func (*EventNotification) GetMaxWaitTime

func (o *EventNotification) GetMaxWaitTime() time.Time

GetMaxWaitTime returns the MaxWaitTime field value if set, zero value otherwise.

func (*EventNotification) GetMaxWaitTimeOk

func (o *EventNotification) GetMaxWaitTimeOk() (*time.Time, bool)

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

func (*EventNotification) GetPduSeId

func (o *EventNotification) GetPduSeId() int32

GetPduSeId returns the PduSeId field value if set, zero value otherwise.

func (*EventNotification) GetPduSeIdOk

func (o *EventNotification) GetPduSeIdOk() (*int32, bool)

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

func (*EventNotification) GetPduSessInfos

func (o *EventNotification) GetPduSessInfos() []PduSessionInformation

GetPduSessInfos returns the PduSessInfos field value if set, zero value otherwise.

func (*EventNotification) GetPduSessInfosOk

func (o *EventNotification) GetPduSessInfosOk() ([]PduSessionInformation, bool)

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

func (*EventNotification) GetPduSessType

func (o *EventNotification) GetPduSessType() PduSessionType

GetPduSessType returns the PduSessType field value if set, zero value otherwise.

func (*EventNotification) GetPduSessTypeOk

func (o *EventNotification) GetPduSessTypeOk() (*PduSessionType, bool)

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

func (*EventNotification) GetPlmnId

func (o *EventNotification) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value if set, zero value otherwise.

func (*EventNotification) GetPlmnIdOk

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

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

func (*EventNotification) GetQfi

func (o *EventNotification) GetQfi() int32

GetQfi returns the Qfi field value if set, zero value otherwise.

func (*EventNotification) GetQfiOk

func (o *EventNotification) GetQfiOk() (*int32, bool)

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

func (*EventNotification) GetRatType

func (o *EventNotification) GetRatType() RatType

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

func (*EventNotification) GetRatTypeOk

func (o *EventNotification) 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 (*EventNotification) GetReIpv4Addr

func (o *EventNotification) GetReIpv4Addr() string

GetReIpv4Addr returns the ReIpv4Addr field value if set, zero value otherwise.

func (*EventNotification) GetReIpv4AddrOk

func (o *EventNotification) GetReIpv4AddrOk() (*string, bool)

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

func (*EventNotification) GetReIpv6Prefix

func (o *EventNotification) GetReIpv6Prefix() Ipv6Prefix

GetReIpv6Prefix returns the ReIpv6Prefix field value if set, zero value otherwise.

func (*EventNotification) GetReIpv6PrefixOk

func (o *EventNotification) GetReIpv6PrefixOk() (*Ipv6Prefix, bool)

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

func (*EventNotification) GetRtDelays

func (o *EventNotification) GetRtDelays() []int32

GetRtDelays returns the RtDelays field value if set, zero value otherwise.

func (*EventNotification) GetRtDelaysOk

func (o *EventNotification) GetRtDelaysOk() ([]int32, bool)

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

func (*EventNotification) GetSmNasFromSmf

func (o *EventNotification) GetSmNasFromSmf() SmNasFromSmf

GetSmNasFromSmf returns the SmNasFromSmf field value if set, zero value otherwise.

func (*EventNotification) GetSmNasFromSmfOk

func (o *EventNotification) GetSmNasFromSmfOk() (*SmNasFromSmf, bool)

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

func (*EventNotification) GetSmNasFromUe

func (o *EventNotification) GetSmNasFromUe() SmNasFromUe

GetSmNasFromUe returns the SmNasFromUe field value if set, zero value otherwise.

func (*EventNotification) GetSmNasFromUeOk

func (o *EventNotification) GetSmNasFromUeOk() (*SmNasFromUe, bool)

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

func (*EventNotification) GetSnssai

func (o *EventNotification) GetSnssai() Snssai

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

func (*EventNotification) GetSnssaiOk

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

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

func (*EventNotification) GetSourceDnai

func (o *EventNotification) GetSourceDnai() string

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

func (*EventNotification) GetSourceDnaiOk

func (o *EventNotification) 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 (*EventNotification) GetSourceTraRouting

func (o *EventNotification) GetSourceTraRouting() RouteToLocation

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

func (*EventNotification) GetSourceTraRoutingOk

func (o *EventNotification) GetSourceTraRoutingOk() (*RouteToLocation, bool)

GetSourceTraRoutingOk returns a tuple with the SourceTraRouting field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EventNotification) GetSourceUeIpv4Addr

func (o *EventNotification) GetSourceUeIpv4Addr() string

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

func (*EventNotification) GetSourceUeIpv4AddrOk

func (o *EventNotification) 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 (*EventNotification) GetSourceUeIpv6Prefix

func (o *EventNotification) GetSourceUeIpv6Prefix() Ipv6Prefix

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

func (*EventNotification) GetSourceUeIpv6PrefixOk

func (o *EventNotification) 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 (*EventNotification) GetSsId

func (o *EventNotification) GetSsId() string

GetSsId returns the SsId field value if set, zero value otherwise.

func (*EventNotification) GetSsIdOk

func (o *EventNotification) GetSsIdOk() (*string, bool)

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

func (*EventNotification) GetStartWlan

func (o *EventNotification) GetStartWlan() time.Time

GetStartWlan returns the StartWlan field value if set, zero value otherwise.

func (*EventNotification) GetStartWlanOk

func (o *EventNotification) GetStartWlanOk() (*time.Time, bool)

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

func (*EventNotification) GetSupi

func (o *EventNotification) GetSupi() string

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

func (*EventNotification) GetSupiOk

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

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

func (*EventNotification) GetTargetDnai

func (o *EventNotification) GetTargetDnai() string

GetTargetDnai returns the TargetDnai field value if set, zero value otherwise.

func (*EventNotification) GetTargetDnaiOk

func (o *EventNotification) GetTargetDnaiOk() (*string, bool)

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

func (*EventNotification) GetTargetTraRouting

func (o *EventNotification) GetTargetTraRouting() RouteToLocation

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

func (*EventNotification) GetTargetTraRoutingOk

func (o *EventNotification) GetTargetTraRoutingOk() (*RouteToLocation, bool)

GetTargetTraRoutingOk returns a tuple with the TargetTraRouting field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EventNotification) GetTargetUeIpv4Addr

func (o *EventNotification) GetTargetUeIpv4Addr() string

GetTargetUeIpv4Addr returns the TargetUeIpv4Addr field value if set, zero value otherwise.

func (*EventNotification) GetTargetUeIpv4AddrOk

func (o *EventNotification) GetTargetUeIpv4AddrOk() (*string, bool)

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

func (*EventNotification) GetTargetUeIpv6Prefix

func (o *EventNotification) GetTargetUeIpv6Prefix() Ipv6Prefix

GetTargetUeIpv6Prefix returns the TargetUeIpv6Prefix field value if set, zero value otherwise.

func (*EventNotification) GetTargetUeIpv6PrefixOk

func (o *EventNotification) GetTargetUeIpv6PrefixOk() (*Ipv6Prefix, bool)

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

func (*EventNotification) GetTimeStamp

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

GetTimeStamp returns the TimeStamp field value

func (*EventNotification) GetTimeStampOk

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

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

func (*EventNotification) GetTimeWindow

func (o *EventNotification) GetTimeWindow() TimeWindow

GetTimeWindow returns the TimeWindow field value if set, zero value otherwise.

func (*EventNotification) GetTimeWindowOk

func (o *EventNotification) GetTimeWindowOk() (*TimeWindow, bool)

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

func (*EventNotification) GetTransacInfos

func (o *EventNotification) GetTransacInfos() []TransactionInfo

GetTransacInfos returns the TransacInfos field value if set, zero value otherwise.

func (*EventNotification) GetTransacInfosOk

func (o *EventNotification) GetTransacInfosOk() ([]TransactionInfo, bool)

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

func (*EventNotification) GetUeIpAddr

func (o *EventNotification) GetUeIpAddr() IpAddr

GetUeIpAddr returns the UeIpAddr field value if set, zero value otherwise.

func (*EventNotification) GetUeIpAddrOk

func (o *EventNotification) GetUeIpAddrOk() (*IpAddr, bool)

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

func (*EventNotification) GetUeMac

func (o *EventNotification) GetUeMac() string

GetUeMac returns the UeMac field value if set, zero value otherwise.

func (*EventNotification) GetUeMacOk

func (o *EventNotification) GetUeMacOk() (*string, bool)

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

func (*EventNotification) GetUlDelays

func (o *EventNotification) GetUlDelays() []int32

GetUlDelays returns the UlDelays field value if set, zero value otherwise.

func (*EventNotification) GetUlDelaysOk

func (o *EventNotification) GetUlDelaysOk() ([]int32, bool)

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

func (*EventNotification) GetUpRedTrans

func (o *EventNotification) GetUpRedTrans() bool

GetUpRedTrans returns the UpRedTrans field value if set, zero value otherwise.

func (*EventNotification) GetUpRedTransOk

func (o *EventNotification) GetUpRedTransOk() (*bool, bool)

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

func (*EventNotification) GetUpfInfo

func (o *EventNotification) GetUpfInfo() UpfInformation

GetUpfInfo returns the UpfInfo field value if set, zero value otherwise.

func (*EventNotification) GetUpfInfoOk

func (o *EventNotification) GetUpfInfoOk() (*UpfInformation, bool)

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

func (*EventNotification) HasAccType

func (o *EventNotification) HasAccType() bool

HasAccType returns a boolean if a field has been set.

func (*EventNotification) HasAdIpv4Addr

func (o *EventNotification) HasAdIpv4Addr() bool

HasAdIpv4Addr returns a boolean if a field has been set.

func (*EventNotification) HasAdIpv6Prefix

func (o *EventNotification) HasAdIpv6Prefix() bool

HasAdIpv6Prefix returns a boolean if a field has been set.

func (*EventNotification) HasAppId

func (o *EventNotification) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*EventNotification) HasBssId

func (o *EventNotification) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*EventNotification) HasCommFailure

func (o *EventNotification) HasCommFailure() bool

HasCommFailure returns a boolean if a field has been set.

func (*EventNotification) HasDddStatus

func (o *EventNotification) HasDddStatus() bool

HasDddStatus returns a boolean if a field has been set.

func (*EventNotification) HasDddTraDescriptor

func (o *EventNotification) HasDddTraDescriptor() bool

HasDddTraDescriptor returns a boolean if a field has been set.

func (*EventNotification) HasDlDelays

func (o *EventNotification) HasDlDelays() bool

HasDlDelays returns a boolean if a field has been set.

func (*EventNotification) HasDnaiChgType

func (o *EventNotification) HasDnaiChgType() bool

HasDnaiChgType returns a boolean if a field has been set.

func (*EventNotification) HasDnn

func (o *EventNotification) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*EventNotification) HasEndWlan

func (o *EventNotification) HasEndWlan() bool

HasEndWlan returns a boolean if a field has been set.

func (*EventNotification) HasEthFlowDescs

func (o *EventNotification) HasEthFlowDescs() bool

HasEthFlowDescs returns a boolean if a field has been set.

func (*EventNotification) HasEthfDescs

func (o *EventNotification) HasEthfDescs() bool

HasEthfDescs returns a boolean if a field has been set.

func (*EventNotification) HasFDescs

func (o *EventNotification) HasFDescs() bool

HasFDescs returns a boolean if a field has been set.

func (*EventNotification) HasFlowDescs

func (o *EventNotification) HasFlowDescs() bool

HasFlowDescs returns a boolean if a field has been set.

func (*EventNotification) HasGpsi

func (o *EventNotification) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*EventNotification) HasIpv4Addr

func (o *EventNotification) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*EventNotification) HasIpv6Addrs

func (o *EventNotification) HasIpv6Addrs() bool

HasIpv6Addrs returns a boolean if a field has been set.

func (*EventNotification) HasIpv6Prefixes

func (o *EventNotification) HasIpv6Prefixes() bool

HasIpv6Prefixes returns a boolean if a field has been set.

func (*EventNotification) HasMaxWaitTime

func (o *EventNotification) HasMaxWaitTime() bool

HasMaxWaitTime returns a boolean if a field has been set.

func (*EventNotification) HasPduSeId

func (o *EventNotification) HasPduSeId() bool

HasPduSeId returns a boolean if a field has been set.

func (*EventNotification) HasPduSessInfos

func (o *EventNotification) HasPduSessInfos() bool

HasPduSessInfos returns a boolean if a field has been set.

func (*EventNotification) HasPduSessType

func (o *EventNotification) HasPduSessType() bool

HasPduSessType returns a boolean if a field has been set.

func (*EventNotification) HasPlmnId

func (o *EventNotification) HasPlmnId() bool

HasPlmnId returns a boolean if a field has been set.

func (*EventNotification) HasQfi

func (o *EventNotification) HasQfi() bool

HasQfi returns a boolean if a field has been set.

func (*EventNotification) HasRatType

func (o *EventNotification) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (*EventNotification) HasReIpv4Addr

func (o *EventNotification) HasReIpv4Addr() bool

HasReIpv4Addr returns a boolean if a field has been set.

func (*EventNotification) HasReIpv6Prefix

func (o *EventNotification) HasReIpv6Prefix() bool

HasReIpv6Prefix returns a boolean if a field has been set.

func (*EventNotification) HasRtDelays

func (o *EventNotification) HasRtDelays() bool

HasRtDelays returns a boolean if a field has been set.

func (*EventNotification) HasSmNasFromSmf

func (o *EventNotification) HasSmNasFromSmf() bool

HasSmNasFromSmf returns a boolean if a field has been set.

func (*EventNotification) HasSmNasFromUe

func (o *EventNotification) HasSmNasFromUe() bool

HasSmNasFromUe returns a boolean if a field has been set.

func (*EventNotification) HasSnssai

func (o *EventNotification) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*EventNotification) HasSourceDnai

func (o *EventNotification) HasSourceDnai() bool

HasSourceDnai returns a boolean if a field has been set.

func (*EventNotification) HasSourceTraRouting

func (o *EventNotification) HasSourceTraRouting() bool

HasSourceTraRouting returns a boolean if a field has been set.

func (*EventNotification) HasSourceUeIpv4Addr

func (o *EventNotification) HasSourceUeIpv4Addr() bool

HasSourceUeIpv4Addr returns a boolean if a field has been set.

func (*EventNotification) HasSourceUeIpv6Prefix

func (o *EventNotification) HasSourceUeIpv6Prefix() bool

HasSourceUeIpv6Prefix returns a boolean if a field has been set.

func (*EventNotification) HasSsId

func (o *EventNotification) HasSsId() bool

HasSsId returns a boolean if a field has been set.

func (*EventNotification) HasStartWlan

func (o *EventNotification) HasStartWlan() bool

HasStartWlan returns a boolean if a field has been set.

func (*EventNotification) HasSupi

func (o *EventNotification) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (*EventNotification) HasTargetDnai

func (o *EventNotification) HasTargetDnai() bool

HasTargetDnai returns a boolean if a field has been set.

func (*EventNotification) HasTargetTraRouting

func (o *EventNotification) HasTargetTraRouting() bool

HasTargetTraRouting returns a boolean if a field has been set.

func (*EventNotification) HasTargetUeIpv4Addr

func (o *EventNotification) HasTargetUeIpv4Addr() bool

HasTargetUeIpv4Addr returns a boolean if a field has been set.

func (*EventNotification) HasTargetUeIpv6Prefix

func (o *EventNotification) HasTargetUeIpv6Prefix() bool

HasTargetUeIpv6Prefix returns a boolean if a field has been set.

func (*EventNotification) HasTimeWindow

func (o *EventNotification) HasTimeWindow() bool

HasTimeWindow returns a boolean if a field has been set.

func (*EventNotification) HasTransacInfos

func (o *EventNotification) HasTransacInfos() bool

HasTransacInfos returns a boolean if a field has been set.

func (*EventNotification) HasUeIpAddr

func (o *EventNotification) HasUeIpAddr() bool

HasUeIpAddr returns a boolean if a field has been set.

func (*EventNotification) HasUeMac

func (o *EventNotification) HasUeMac() bool

HasUeMac returns a boolean if a field has been set.

func (*EventNotification) HasUlDelays

func (o *EventNotification) HasUlDelays() bool

HasUlDelays returns a boolean if a field has been set.

func (*EventNotification) HasUpRedTrans

func (o *EventNotification) HasUpRedTrans() bool

HasUpRedTrans returns a boolean if a field has been set.

func (*EventNotification) HasUpfInfo

func (o *EventNotification) HasUpfInfo() bool

HasUpfInfo returns a boolean if a field has been set.

func (EventNotification) MarshalJSON

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

func (*EventNotification) SetAccType

func (o *EventNotification) SetAccType(v AccessType)

SetAccType gets a reference to the given AccessType and assigns it to the AccType field.

func (*EventNotification) SetAdIpv4Addr

func (o *EventNotification) SetAdIpv4Addr(v string)

SetAdIpv4Addr gets a reference to the given string and assigns it to the AdIpv4Addr field.

func (*EventNotification) SetAdIpv6Prefix

func (o *EventNotification) SetAdIpv6Prefix(v Ipv6Prefix)

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

func (*EventNotification) SetAppId

func (o *EventNotification) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*EventNotification) SetBssId

func (o *EventNotification) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*EventNotification) SetCommFailure

func (o *EventNotification) SetCommFailure(v CommunicationFailure)

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

func (*EventNotification) SetDddStatus

func (o *EventNotification) SetDddStatus(v DlDataDeliveryStatus)

SetDddStatus gets a reference to the given DlDataDeliveryStatus and assigns it to the DddStatus field.

func (*EventNotification) SetDddTraDescriptor

func (o *EventNotification) SetDddTraDescriptor(v DddTrafficDescriptor)

SetDddTraDescriptor gets a reference to the given DddTrafficDescriptor and assigns it to the DddTraDescriptor field.

func (*EventNotification) SetDlDelays

func (o *EventNotification) SetDlDelays(v []int32)

SetDlDelays gets a reference to the given []int32 and assigns it to the DlDelays field.

func (*EventNotification) SetDnaiChgType

func (o *EventNotification) SetDnaiChgType(v DnaiChangeType)

SetDnaiChgType gets a reference to the given DnaiChangeType and assigns it to the DnaiChgType field.

func (*EventNotification) SetDnn

func (o *EventNotification) SetDnn(v string)

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

func (*EventNotification) SetEndWlan

func (o *EventNotification) SetEndWlan(v time.Time)

SetEndWlan gets a reference to the given time.Time and assigns it to the EndWlan field.

func (*EventNotification) SetEthFlowDescs

func (o *EventNotification) SetEthFlowDescs(v []EthFlowDescription)

SetEthFlowDescs gets a reference to the given []EthFlowDescription and assigns it to the EthFlowDescs field.

func (*EventNotification) SetEthfDescs

func (o *EventNotification) SetEthfDescs(v []EthFlowDescription)

SetEthfDescs gets a reference to the given []EthFlowDescription and assigns it to the EthfDescs field.

func (*EventNotification) SetEvent

func (o *EventNotification) SetEvent(v SmfEvent)

SetEvent sets field value

func (*EventNotification) SetFDescs

func (o *EventNotification) SetFDescs(v []string)

SetFDescs gets a reference to the given []string and assigns it to the FDescs field.

func (*EventNotification) SetFlowDescs

func (o *EventNotification) SetFlowDescs(v []string)

SetFlowDescs gets a reference to the given []string and assigns it to the FlowDescs field.

func (*EventNotification) SetGpsi

func (o *EventNotification) SetGpsi(v string)

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

func (*EventNotification) SetIpv4Addr

func (o *EventNotification) SetIpv4Addr(v string)

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

func (*EventNotification) SetIpv6Addrs

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

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

func (*EventNotification) SetIpv6Prefixes

func (o *EventNotification) SetIpv6Prefixes(v []Ipv6Prefix)

SetIpv6Prefixes gets a reference to the given []Ipv6Prefix and assigns it to the Ipv6Prefixes field.

func (*EventNotification) SetMaxWaitTime

func (o *EventNotification) SetMaxWaitTime(v time.Time)

SetMaxWaitTime gets a reference to the given time.Time and assigns it to the MaxWaitTime field.

func (*EventNotification) SetPduSeId

func (o *EventNotification) SetPduSeId(v int32)

SetPduSeId gets a reference to the given int32 and assigns it to the PduSeId field.

func (*EventNotification) SetPduSessInfos

func (o *EventNotification) SetPduSessInfos(v []PduSessionInformation)

SetPduSessInfos gets a reference to the given []PduSessionInformation and assigns it to the PduSessInfos field.

func (*EventNotification) SetPduSessType

func (o *EventNotification) SetPduSessType(v PduSessionType)

SetPduSessType gets a reference to the given PduSessionType and assigns it to the PduSessType field.

func (*EventNotification) SetPlmnId

func (o *EventNotification) SetPlmnId(v PlmnId)

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

func (*EventNotification) SetQfi

func (o *EventNotification) SetQfi(v int32)

SetQfi gets a reference to the given int32 and assigns it to the Qfi field.

func (*EventNotification) SetRatType

func (o *EventNotification) SetRatType(v RatType)

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

func (*EventNotification) SetReIpv4Addr

func (o *EventNotification) SetReIpv4Addr(v string)

SetReIpv4Addr gets a reference to the given string and assigns it to the ReIpv4Addr field.

func (*EventNotification) SetReIpv6Prefix

func (o *EventNotification) SetReIpv6Prefix(v Ipv6Prefix)

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

func (*EventNotification) SetRtDelays

func (o *EventNotification) SetRtDelays(v []int32)

SetRtDelays gets a reference to the given []int32 and assigns it to the RtDelays field.

func (*EventNotification) SetSmNasFromSmf

func (o *EventNotification) SetSmNasFromSmf(v SmNasFromSmf)

SetSmNasFromSmf gets a reference to the given SmNasFromSmf and assigns it to the SmNasFromSmf field.

func (*EventNotification) SetSmNasFromUe

func (o *EventNotification) SetSmNasFromUe(v SmNasFromUe)

SetSmNasFromUe gets a reference to the given SmNasFromUe and assigns it to the SmNasFromUe field.

func (*EventNotification) SetSnssai

func (o *EventNotification) SetSnssai(v Snssai)

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

func (*EventNotification) SetSourceDnai

func (o *EventNotification) SetSourceDnai(v string)

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

func (*EventNotification) SetSourceTraRouting

func (o *EventNotification) SetSourceTraRouting(v RouteToLocation)

SetSourceTraRouting gets a reference to the given NullableRouteToLocation and assigns it to the SourceTraRouting field.

func (*EventNotification) SetSourceTraRoutingNil

func (o *EventNotification) SetSourceTraRoutingNil()

SetSourceTraRoutingNil sets the value for SourceTraRouting to be an explicit nil

func (*EventNotification) SetSourceUeIpv4Addr

func (o *EventNotification) SetSourceUeIpv4Addr(v string)

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

func (*EventNotification) SetSourceUeIpv6Prefix

func (o *EventNotification) SetSourceUeIpv6Prefix(v Ipv6Prefix)

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

func (*EventNotification) SetSsId

func (o *EventNotification) SetSsId(v string)

SetSsId gets a reference to the given string and assigns it to the SsId field.

func (*EventNotification) SetStartWlan

func (o *EventNotification) SetStartWlan(v time.Time)

SetStartWlan gets a reference to the given time.Time and assigns it to the StartWlan field.

func (*EventNotification) SetSupi

func (o *EventNotification) SetSupi(v string)

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

func (*EventNotification) SetTargetDnai

func (o *EventNotification) SetTargetDnai(v string)

SetTargetDnai gets a reference to the given string and assigns it to the TargetDnai field.

func (*EventNotification) SetTargetTraRouting

func (o *EventNotification) SetTargetTraRouting(v RouteToLocation)

SetTargetTraRouting gets a reference to the given NullableRouteToLocation and assigns it to the TargetTraRouting field.

func (*EventNotification) SetTargetTraRoutingNil

func (o *EventNotification) SetTargetTraRoutingNil()

SetTargetTraRoutingNil sets the value for TargetTraRouting to be an explicit nil

func (*EventNotification) SetTargetUeIpv4Addr

func (o *EventNotification) SetTargetUeIpv4Addr(v string)

SetTargetUeIpv4Addr gets a reference to the given string and assigns it to the TargetUeIpv4Addr field.

func (*EventNotification) SetTargetUeIpv6Prefix

func (o *EventNotification) SetTargetUeIpv6Prefix(v Ipv6Prefix)

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

func (*EventNotification) SetTimeStamp

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

SetTimeStamp sets field value

func (*EventNotification) SetTimeWindow

func (o *EventNotification) SetTimeWindow(v TimeWindow)

SetTimeWindow gets a reference to the given TimeWindow and assigns it to the TimeWindow field.

func (*EventNotification) SetTransacInfos

func (o *EventNotification) SetTransacInfos(v []TransactionInfo)

SetTransacInfos gets a reference to the given []TransactionInfo and assigns it to the TransacInfos field.

func (*EventNotification) SetUeIpAddr

func (o *EventNotification) SetUeIpAddr(v IpAddr)

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

func (*EventNotification) SetUeMac

func (o *EventNotification) SetUeMac(v string)

SetUeMac gets a reference to the given string and assigns it to the UeMac field.

func (*EventNotification) SetUlDelays

func (o *EventNotification) SetUlDelays(v []int32)

SetUlDelays gets a reference to the given []int32 and assigns it to the UlDelays field.

func (*EventNotification) SetUpRedTrans

func (o *EventNotification) SetUpRedTrans(v bool)

SetUpRedTrans gets a reference to the given bool and assigns it to the UpRedTrans field.

func (*EventNotification) SetUpfInfo

func (o *EventNotification) SetUpfInfo(v UpfInformation)

SetUpfInfo gets a reference to the given UpfInformation and assigns it to the UpfInfo field.

func (EventNotification) ToMap

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

func (*EventNotification) UnsetSourceTraRouting

func (o *EventNotification) UnsetSourceTraRouting()

UnsetSourceTraRouting ensures that no value is present for SourceTraRouting, not even an explicit nil

func (*EventNotification) UnsetTargetTraRouting

func (o *EventNotification) UnsetTargetTraRouting()

UnsetTargetTraRouting ensures that no value is present for TargetTraRouting, not even an explicit nil

type EventSubscription

type EventSubscription struct {
	Event             SmfEvent               `json:"event"`
	DnaiChgType       *DnaiChangeType        `json:"dnaiChgType,omitempty"`
	DddTraDescriptors []DddTrafficDescriptor `json:"dddTraDescriptors,omitempty"`
	DddStati          []DlDataDeliveryStatus `json:"dddStati,omitempty"`
	AppIds            []string               `json:"appIds,omitempty"`
	TargetPeriod      *TimeWindow            `json:"targetPeriod,omitempty"`
	// Indicates the subscription for UE transaction dispersion collectionon, if it is included and set to \"true\". Default value is \"false\".
	TransacDispInd *bool `json:"transacDispInd,omitempty"`
	// Indicates Session Management Transaction metrics.
	TransacMetrics []TransactionMetric `json:"transacMetrics,omitempty"`
	UeIpAddr       *IpAddr             `json:"ueIpAddr,omitempty"`
}

EventSubscription Represents a subscription to a single event.

func NewEventSubscription

func NewEventSubscription(event SmfEvent) *EventSubscription

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

func NewEventSubscriptionWithDefaults

func NewEventSubscriptionWithDefaults() *EventSubscription

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

func (*EventSubscription) GetAppIds

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

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

func (*EventSubscription) GetAppIdsOk

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

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

func (*EventSubscription) GetDddStati

func (o *EventSubscription) GetDddStati() []DlDataDeliveryStatus

GetDddStati returns the DddStati field value if set, zero value otherwise.

func (*EventSubscription) GetDddStatiOk

func (o *EventSubscription) GetDddStatiOk() ([]DlDataDeliveryStatus, bool)

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

func (*EventSubscription) GetDddTraDescriptors

func (o *EventSubscription) GetDddTraDescriptors() []DddTrafficDescriptor

GetDddTraDescriptors returns the DddTraDescriptors field value if set, zero value otherwise.

func (*EventSubscription) GetDddTraDescriptorsOk

func (o *EventSubscription) GetDddTraDescriptorsOk() ([]DddTrafficDescriptor, bool)

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

func (*EventSubscription) GetDnaiChgType

func (o *EventSubscription) GetDnaiChgType() DnaiChangeType

GetDnaiChgType returns the DnaiChgType field value if set, zero value otherwise.

func (*EventSubscription) GetDnaiChgTypeOk

func (o *EventSubscription) GetDnaiChgTypeOk() (*DnaiChangeType, bool)

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

func (*EventSubscription) GetEvent

func (o *EventSubscription) GetEvent() SmfEvent

GetEvent returns the Event field value

func (*EventSubscription) GetEventOk

func (o *EventSubscription) GetEventOk() (*SmfEvent, bool)

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

func (*EventSubscription) GetTargetPeriod

func (o *EventSubscription) GetTargetPeriod() TimeWindow

GetTargetPeriod returns the TargetPeriod field value if set, zero value otherwise.

func (*EventSubscription) GetTargetPeriodOk

func (o *EventSubscription) GetTargetPeriodOk() (*TimeWindow, bool)

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

func (*EventSubscription) GetTransacDispInd

func (o *EventSubscription) GetTransacDispInd() bool

GetTransacDispInd returns the TransacDispInd field value if set, zero value otherwise.

func (*EventSubscription) GetTransacDispIndOk

func (o *EventSubscription) GetTransacDispIndOk() (*bool, bool)

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

func (*EventSubscription) GetTransacMetrics

func (o *EventSubscription) GetTransacMetrics() []TransactionMetric

GetTransacMetrics returns the TransacMetrics field value if set, zero value otherwise.

func (*EventSubscription) GetTransacMetricsOk

func (o *EventSubscription) GetTransacMetricsOk() ([]TransactionMetric, bool)

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

func (*EventSubscription) GetUeIpAddr

func (o *EventSubscription) GetUeIpAddr() IpAddr

GetUeIpAddr returns the UeIpAddr field value if set, zero value otherwise.

func (*EventSubscription) GetUeIpAddrOk

func (o *EventSubscription) GetUeIpAddrOk() (*IpAddr, bool)

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

func (*EventSubscription) HasAppIds

func (o *EventSubscription) HasAppIds() bool

HasAppIds returns a boolean if a field has been set.

func (*EventSubscription) HasDddStati

func (o *EventSubscription) HasDddStati() bool

HasDddStati returns a boolean if a field has been set.

func (*EventSubscription) HasDddTraDescriptors

func (o *EventSubscription) HasDddTraDescriptors() bool

HasDddTraDescriptors returns a boolean if a field has been set.

func (*EventSubscription) HasDnaiChgType

func (o *EventSubscription) HasDnaiChgType() bool

HasDnaiChgType returns a boolean if a field has been set.

func (*EventSubscription) HasTargetPeriod

func (o *EventSubscription) HasTargetPeriod() bool

HasTargetPeriod returns a boolean if a field has been set.

func (*EventSubscription) HasTransacDispInd

func (o *EventSubscription) HasTransacDispInd() bool

HasTransacDispInd returns a boolean if a field has been set.

func (*EventSubscription) HasTransacMetrics

func (o *EventSubscription) HasTransacMetrics() bool

HasTransacMetrics returns a boolean if a field has been set.

func (*EventSubscription) HasUeIpAddr

func (o *EventSubscription) HasUeIpAddr() bool

HasUeIpAddr returns a boolean if a field has been set.

func (EventSubscription) MarshalJSON

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

func (*EventSubscription) SetAppIds

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

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

func (*EventSubscription) SetDddStati

func (o *EventSubscription) SetDddStati(v []DlDataDeliveryStatus)

SetDddStati gets a reference to the given []DlDataDeliveryStatus and assigns it to the DddStati field.

func (*EventSubscription) SetDddTraDescriptors

func (o *EventSubscription) SetDddTraDescriptors(v []DddTrafficDescriptor)

SetDddTraDescriptors gets a reference to the given []DddTrafficDescriptor and assigns it to the DddTraDescriptors field.

func (*EventSubscription) SetDnaiChgType

func (o *EventSubscription) SetDnaiChgType(v DnaiChangeType)

SetDnaiChgType gets a reference to the given DnaiChangeType and assigns it to the DnaiChgType field.

func (*EventSubscription) SetEvent

func (o *EventSubscription) SetEvent(v SmfEvent)

SetEvent sets field value

func (*EventSubscription) SetTargetPeriod

func (o *EventSubscription) SetTargetPeriod(v TimeWindow)

SetTargetPeriod gets a reference to the given TimeWindow and assigns it to the TargetPeriod field.

func (*EventSubscription) SetTransacDispInd

func (o *EventSubscription) SetTransacDispInd(v bool)

SetTransacDispInd gets a reference to the given bool and assigns it to the TransacDispInd field.

func (*EventSubscription) SetTransacMetrics

func (o *EventSubscription) SetTransacMetrics(v []TransactionMetric)

SetTransacMetrics gets a reference to the given []TransactionMetric and assigns it to the TransacMetrics field.

func (*EventSubscription) SetUeIpAddr

func (o *EventSubscription) SetUeIpAddr(v IpAddr)

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

func (EventSubscription) ToMap

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

type FlowDirection

type FlowDirection struct {
	String *string
}

FlowDirection Possible values are: - DOWNLINK: The corresponding filter applies for traffic to the UE. - UPLINK: The corresponding filter applies for traffic from the UE. - BIDIRECTIONAL: The corresponding filter applies for traffic both to and from the UE. - UNSPECIFIED: The corresponding filter applies for traffic to the UE (downlink), but has no specific direction declared. The service data flow detection shall apply the filter for uplink traffic as if the filter was bidirectional. The PCF shall not use the value UNSPECIFIED in filters created by the network in NW-initiated procedures. The PCF shall only include the value UNSPECIFIED in filters in UE-initiated procedures if the same value is received from the SMF.

func (*FlowDirection) MarshalJSON

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

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

func (*FlowDirection) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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

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

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

func NewGuami

func NewGuami(plmnId PlmnIdNid, amfId string) *Guami

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

func NewGuamiWithDefaults

func NewGuamiWithDefaults() *Guami

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

func (*Guami) GetAmfId

func (o *Guami) GetAmfId() string

GetAmfId returns the AmfId field value

func (*Guami) GetAmfIdOk

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

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

func (*Guami) GetPlmnId

func (o *Guami) GetPlmnId() PlmnIdNid

GetPlmnId returns the PlmnId field value

func (*Guami) GetPlmnIdOk

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

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

func (Guami) MarshalJSON

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

func (*Guami) SetAmfId

func (o *Guami) SetAmfId(v string)

SetAmfId sets field value

func (*Guami) SetPlmnId

func (o *Guami) SetPlmnId(v PlmnIdNid)

SetPlmnId sets field value

func (Guami) ToMap

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

type IndividualSubscriptionDocumentApiService

type IndividualSubscriptionDocumentApiService service

IndividualSubscriptionDocumentApiService IndividualSubscriptionDocumentApi service

func (*IndividualSubscriptionDocumentApiService) DeleteIndividualSubcription

DeleteIndividualSubcription Delete an individual subscription for event notifications from the SMF

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

func (*IndividualSubscriptionDocumentApiService) DeleteIndividualSubcriptionExecute

Execute executes the request

func (*IndividualSubscriptionDocumentApiService) GetIndividualSubcription

GetIndividualSubcription Read an individual subscription for event notifications from the SMF

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

func (*IndividualSubscriptionDocumentApiService) GetIndividualSubcriptionExecute

Execute executes the request

@return NsmfEventExposure

func (*IndividualSubscriptionDocumentApiService) ReplaceIndividualSubcription

ReplaceIndividualSubcription Replace an individual subscription for event notifications from the SMF

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

func (*IndividualSubscriptionDocumentApiService) ReplaceIndividualSubcriptionExecute

Execute executes the request

@return NsmfEventExposure

type InvalidParam

type InvalidParam struct {
	// If the invalid parameter is an attribute in a JSON body, this IE shall contain the  attribute's name and shall be encoded as a JSON Pointer. If the invalid parameter is  an HTTP header, this IE shall be formatted as the concatenation of the string \"header \"  plus the name of such header. If the invalid parameter is a query parameter, this IE  shall be formatted as the concatenation of the string \"query \" plus the name of such  query parameter. If the invalid parameter is a variable part in the path of a resource  URI, this IE shall contain the name of the variable, including the symbols \"{\" and \"}\"  used in OpenAPI specification as the notation to represent variable path segments.
	Param string `json:"param"`
	// A human-readable reason, e.g. \"must be a positive integer\". In cases involving failed  operations in a PATCH request, the reason string should identify the operation that  failed using the operation's array index to assist in correlation of the invalid  parameter with the failed operation, e.g.\" Replacement value invalid for attribute  (failed operation index= 4)\"
	Reason *string `json:"reason,omitempty"`
}

InvalidParam It contains an invalid parameter and a related description.

func NewInvalidParam

func NewInvalidParam(param string) *InvalidParam

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

func NewInvalidParamWithDefaults

func NewInvalidParamWithDefaults() *InvalidParam

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

func (*InvalidParam) GetParam

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk

func (o *InvalidParam) GetParamOk() (*string, bool)

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

func (*InvalidParam) GetReason

func (o *InvalidParam) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*InvalidParam) GetReasonOk

func (o *InvalidParam) GetReasonOk() (*string, bool)

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

func (*InvalidParam) HasReason

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON

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

func (*InvalidParam) SetParam

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason

func (o *InvalidParam) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (InvalidParam) ToMap

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

type IpAddr

type IpAddr struct {
	Interface *interface{}
}

IpAddr - Contains an IP adresse.

func InterfaceAsIpAddr

func InterfaceAsIpAddr(v *interface{}) IpAddr

interface{}AsIpAddr is a convenience function that returns interface{} wrapped in IpAddr

func (*IpAddr) GetActualInstance

func (obj *IpAddr) GetActualInstance() interface{}

Get the actual instance

func (IpAddr) MarshalJSON

func (src IpAddr) MarshalJSON() ([]byte, error)

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

func (*IpAddr) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

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

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

type NFType

type NFType struct {
	String *string
}

NFType NF types known to NRF

func (*NFType) MarshalJSON

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

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

func (*NFType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NgApCause

type NgApCause struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Group int32 `json:"group"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Value int32 `json:"value"`
}

NgApCause Represents the NGAP cause.

func NewNgApCause

func NewNgApCause(group int32, value int32) *NgApCause

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

func NewNgApCauseWithDefaults

func NewNgApCauseWithDefaults() *NgApCause

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

func (*NgApCause) GetGroup

func (o *NgApCause) GetGroup() int32

GetGroup returns the Group field value

func (*NgApCause) GetGroupOk

func (o *NgApCause) GetGroupOk() (*int32, bool)

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

func (*NgApCause) GetValue

func (o *NgApCause) GetValue() int32

GetValue returns the Value field value

func (*NgApCause) GetValueOk

func (o *NgApCause) GetValueOk() (*int32, bool)

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

func (NgApCause) MarshalJSON

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

func (*NgApCause) SetGroup

func (o *NgApCause) SetGroup(v int32)

SetGroup sets field value

func (*NgApCause) SetValue

func (o *NgApCause) SetValue(v int32)

SetValue sets field value

func (NgApCause) ToMap

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

type NotificationFlag

type NotificationFlag struct {
	String *string
}

NotificationFlag Possible values are: - ACTIVATE: The event notification is activated. - DEACTIVATE: The event notification is deactivated and shall be muted. The available event(s) shall be stored. - RETRIEVAL: The event notification shall be sent to the NF service consumer(s), after that, is muted again.

func (*NotificationFlag) MarshalJSON

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

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

func (*NotificationFlag) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NotificationMethod

type NotificationMethod struct {
	String *string
}

NotificationMethod Possible values are: - PERIODIC - ONE_TIME - ON_EVENT_DETECTION

func (*NotificationMethod) MarshalJSON

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

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

func (*NotificationMethod) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NsmfEventExposure

type NsmfEventExposure struct {
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,omitempty"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi *string `json:"gpsi,omitempty"`
	// Any UE indication. This IE shall be present if the event subscription is applicable to  any UE. Default value \"false\" is used, if not present.
	AnyUeInd *bool `json:"anyUeInd,omitempty"`
	// String identifying a group of devices network internal globally unique ID which identifies a set of IMSIs, as specified in clause 19.9 of 3GPP TS 23.003.
	GroupId *string `json:"groupId,omitempty"`
	// Unsigned integer identifying a PDU session, within the range 0 to 255, as specified in  clause 11.2.3.1b, bits 1 to 8, of 3GPP TS 24.007. If the PDU Session ID is allocated by the  Core Network for UEs not supporting N1 mode, reserved range 64 to 95 is used. PDU Session ID  within the reserved range is only visible in the Core Network.
	PduSeId *int32 `json:"pduSeId,omitempty"`
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn    *string `json:"dnn,omitempty"`
	Snssai *Snssai `json:"snssai,omitempty"`
	// Identifies an Individual SMF Notification Subscription. To enable that the value is used as part of a URI, the string shall only contain characters allowed according to the \"lower-with-hyphen\" naming convention defined in 3GPP TS 29.501. In an OpenAPI schema, the format shall be designated as \"SubId\".
	SubId *string `json:"subId,omitempty"`
	// Notification Correlation ID assigned by the NF service consumer.
	NotifId string `json:"notifId"`
	// String providing an URI formatted according to RFC 3986.
	NotifUri string `json:"notifUri"`
	// Alternate or backup IPv4 address(es) where to send Notifications.
	AltNotifIpv4Addrs []string `json:"altNotifIpv4Addrs,omitempty"`
	// Alternate or backup IPv6 address(es) where to send Notifications.
	AltNotifIpv6Addrs []Ipv6Addr `json:"altNotifIpv6Addrs,omitempty"`
	// Alternate or backup FQDN(s) where to send Notifications.
	AltNotifFqdns []string `json:"altNotifFqdns,omitempty"`
	// Subscribed events
	EventSubs   []EventSubscription `json:"eventSubs"`
	EventNotifs []EventNotification `json:"eventNotifs,omitempty"`
	ImmeRep     *bool               `json:"ImmeRep,omitempty"`
	NotifMethod *NotificationMethod `json:"notifMethod,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	MaxReportNbr *int32 `json:"maxReportNbr,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	Expiry *time.Time `json:"expiry,omitempty"`
	// indicating a time in seconds.
	RepPeriod   *int32       `json:"repPeriod,omitempty"`
	Guami       *Guami       `json:"guami,omitempty"`
	ServiveName *ServiceName `json:"serviveName,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures *string `json:"supportedFeatures,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	SampRatio *int32 `json:"sampRatio,omitempty"`
	// Criteria for partitioning the UEs before applying the sampling ratio.
	PartitionCriteria []PartitioningCriteria `json:"partitionCriteria,omitempty"`
	// indicating a time in seconds.
	GrpRepTime *int32            `json:"grpRepTime,omitempty"`
	NotifFlag  *NotificationFlag `json:"notifFlag,omitempty"`
}

NsmfEventExposure Represents an Individual SMF Notification Subscription resource. The serviveName property corresponds to the serviceName in the main body of the specification.

func NewNsmfEventExposure

func NewNsmfEventExposure(notifId string, notifUri string, eventSubs []EventSubscription) *NsmfEventExposure

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

func NewNsmfEventExposureWithDefaults

func NewNsmfEventExposureWithDefaults() *NsmfEventExposure

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

func (*NsmfEventExposure) GetAltNotifFqdns

func (o *NsmfEventExposure) GetAltNotifFqdns() []string

GetAltNotifFqdns returns the AltNotifFqdns field value if set, zero value otherwise.

func (*NsmfEventExposure) GetAltNotifFqdnsOk

func (o *NsmfEventExposure) GetAltNotifFqdnsOk() ([]string, bool)

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

func (*NsmfEventExposure) GetAltNotifIpv4Addrs

func (o *NsmfEventExposure) GetAltNotifIpv4Addrs() []string

GetAltNotifIpv4Addrs returns the AltNotifIpv4Addrs field value if set, zero value otherwise.

func (*NsmfEventExposure) GetAltNotifIpv4AddrsOk

func (o *NsmfEventExposure) GetAltNotifIpv4AddrsOk() ([]string, bool)

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

func (*NsmfEventExposure) GetAltNotifIpv6Addrs

func (o *NsmfEventExposure) GetAltNotifIpv6Addrs() []Ipv6Addr

GetAltNotifIpv6Addrs returns the AltNotifIpv6Addrs field value if set, zero value otherwise.

func (*NsmfEventExposure) GetAltNotifIpv6AddrsOk

func (o *NsmfEventExposure) GetAltNotifIpv6AddrsOk() ([]Ipv6Addr, bool)

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

func (*NsmfEventExposure) GetAnyUeInd

func (o *NsmfEventExposure) GetAnyUeInd() bool

GetAnyUeInd returns the AnyUeInd field value if set, zero value otherwise.

func (*NsmfEventExposure) GetAnyUeIndOk

func (o *NsmfEventExposure) GetAnyUeIndOk() (*bool, bool)

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

func (*NsmfEventExposure) GetDnn

func (o *NsmfEventExposure) GetDnn() string

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

func (*NsmfEventExposure) GetDnnOk

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

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

func (*NsmfEventExposure) GetEventNotifs

func (o *NsmfEventExposure) GetEventNotifs() []EventNotification

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

func (*NsmfEventExposure) GetEventNotifsOk

func (o *NsmfEventExposure) GetEventNotifsOk() ([]EventNotification, bool)

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

func (*NsmfEventExposure) GetEventSubs

func (o *NsmfEventExposure) GetEventSubs() []EventSubscription

GetEventSubs returns the EventSubs field value

func (*NsmfEventExposure) GetEventSubsOk

func (o *NsmfEventExposure) GetEventSubsOk() ([]EventSubscription, bool)

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

func (*NsmfEventExposure) GetExpiry

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

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

func (*NsmfEventExposure) GetExpiryOk

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

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

func (*NsmfEventExposure) GetGpsi

func (o *NsmfEventExposure) GetGpsi() string

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

func (*NsmfEventExposure) GetGpsiOk

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

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

func (*NsmfEventExposure) GetGroupId

func (o *NsmfEventExposure) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*NsmfEventExposure) GetGroupIdOk

func (o *NsmfEventExposure) GetGroupIdOk() (*string, bool)

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

func (*NsmfEventExposure) GetGrpRepTime

func (o *NsmfEventExposure) GetGrpRepTime() int32

GetGrpRepTime returns the GrpRepTime field value if set, zero value otherwise.

func (*NsmfEventExposure) GetGrpRepTimeOk

func (o *NsmfEventExposure) GetGrpRepTimeOk() (*int32, bool)

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

func (*NsmfEventExposure) GetGuami

func (o *NsmfEventExposure) GetGuami() Guami

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

func (*NsmfEventExposure) GetGuamiOk

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

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

func (*NsmfEventExposure) GetImmeRep

func (o *NsmfEventExposure) GetImmeRep() bool

GetImmeRep returns the ImmeRep field value if set, zero value otherwise.

func (*NsmfEventExposure) GetImmeRepOk

func (o *NsmfEventExposure) GetImmeRepOk() (*bool, bool)

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

func (*NsmfEventExposure) GetMaxReportNbr

func (o *NsmfEventExposure) GetMaxReportNbr() int32

GetMaxReportNbr returns the MaxReportNbr field value if set, zero value otherwise.

func (*NsmfEventExposure) GetMaxReportNbrOk

func (o *NsmfEventExposure) GetMaxReportNbrOk() (*int32, bool)

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

func (*NsmfEventExposure) GetNotifFlag

func (o *NsmfEventExposure) GetNotifFlag() NotificationFlag

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

func (*NsmfEventExposure) GetNotifFlagOk

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

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

func (*NsmfEventExposure) GetNotifId

func (o *NsmfEventExposure) GetNotifId() string

GetNotifId returns the NotifId field value

func (*NsmfEventExposure) GetNotifIdOk

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

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

func (*NsmfEventExposure) GetNotifMethod

func (o *NsmfEventExposure) GetNotifMethod() NotificationMethod

GetNotifMethod returns the NotifMethod field value if set, zero value otherwise.

func (*NsmfEventExposure) GetNotifMethodOk

func (o *NsmfEventExposure) GetNotifMethodOk() (*NotificationMethod, bool)

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

func (*NsmfEventExposure) GetNotifUri

func (o *NsmfEventExposure) GetNotifUri() string

GetNotifUri returns the NotifUri field value

func (*NsmfEventExposure) GetNotifUriOk

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

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

func (*NsmfEventExposure) GetPartitionCriteria

func (o *NsmfEventExposure) GetPartitionCriteria() []PartitioningCriteria

GetPartitionCriteria returns the PartitionCriteria field value if set, zero value otherwise.

func (*NsmfEventExposure) GetPartitionCriteriaOk

func (o *NsmfEventExposure) GetPartitionCriteriaOk() ([]PartitioningCriteria, bool)

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

func (*NsmfEventExposure) GetPduSeId

func (o *NsmfEventExposure) GetPduSeId() int32

GetPduSeId returns the PduSeId field value if set, zero value otherwise.

func (*NsmfEventExposure) GetPduSeIdOk

func (o *NsmfEventExposure) GetPduSeIdOk() (*int32, bool)

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

func (*NsmfEventExposure) GetRepPeriod

func (o *NsmfEventExposure) GetRepPeriod() int32

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

func (*NsmfEventExposure) GetRepPeriodOk

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

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

func (*NsmfEventExposure) GetSampRatio

func (o *NsmfEventExposure) GetSampRatio() int32

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

func (*NsmfEventExposure) GetSampRatioOk

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

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

func (*NsmfEventExposure) GetServiveName

func (o *NsmfEventExposure) GetServiveName() ServiceName

GetServiveName returns the ServiveName field value if set, zero value otherwise.

func (*NsmfEventExposure) GetServiveNameOk

func (o *NsmfEventExposure) GetServiveNameOk() (*ServiceName, bool)

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

func (*NsmfEventExposure) GetSnssai

func (o *NsmfEventExposure) GetSnssai() Snssai

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

func (*NsmfEventExposure) GetSnssaiOk

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

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

func (*NsmfEventExposure) GetSubId

func (o *NsmfEventExposure) GetSubId() string

GetSubId returns the SubId field value if set, zero value otherwise.

func (*NsmfEventExposure) GetSubIdOk

func (o *NsmfEventExposure) GetSubIdOk() (*string, bool)

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

func (*NsmfEventExposure) GetSupi

func (o *NsmfEventExposure) GetSupi() string

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

func (*NsmfEventExposure) GetSupiOk

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

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

func (*NsmfEventExposure) GetSupportedFeatures

func (o *NsmfEventExposure) GetSupportedFeatures() string

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

func (*NsmfEventExposure) GetSupportedFeaturesOk

func (o *NsmfEventExposure) GetSupportedFeaturesOk() (*string, bool)

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

func (*NsmfEventExposure) HasAltNotifFqdns

func (o *NsmfEventExposure) HasAltNotifFqdns() bool

HasAltNotifFqdns returns a boolean if a field has been set.

func (*NsmfEventExposure) HasAltNotifIpv4Addrs

func (o *NsmfEventExposure) HasAltNotifIpv4Addrs() bool

HasAltNotifIpv4Addrs returns a boolean if a field has been set.

func (*NsmfEventExposure) HasAltNotifIpv6Addrs

func (o *NsmfEventExposure) HasAltNotifIpv6Addrs() bool

HasAltNotifIpv6Addrs returns a boolean if a field has been set.

func (*NsmfEventExposure) HasAnyUeInd

func (o *NsmfEventExposure) HasAnyUeInd() bool

HasAnyUeInd returns a boolean if a field has been set.

func (*NsmfEventExposure) HasDnn

func (o *NsmfEventExposure) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*NsmfEventExposure) HasEventNotifs

func (o *NsmfEventExposure) HasEventNotifs() bool

HasEventNotifs returns a boolean if a field has been set.

func (*NsmfEventExposure) HasExpiry

func (o *NsmfEventExposure) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*NsmfEventExposure) HasGpsi

func (o *NsmfEventExposure) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*NsmfEventExposure) HasGroupId

func (o *NsmfEventExposure) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*NsmfEventExposure) HasGrpRepTime

func (o *NsmfEventExposure) HasGrpRepTime() bool

HasGrpRepTime returns a boolean if a field has been set.

func (*NsmfEventExposure) HasGuami

func (o *NsmfEventExposure) HasGuami() bool

HasGuami returns a boolean if a field has been set.

func (*NsmfEventExposure) HasImmeRep

func (o *NsmfEventExposure) HasImmeRep() bool

HasImmeRep returns a boolean if a field has been set.

func (*NsmfEventExposure) HasMaxReportNbr

func (o *NsmfEventExposure) HasMaxReportNbr() bool

HasMaxReportNbr returns a boolean if a field has been set.

func (*NsmfEventExposure) HasNotifFlag

func (o *NsmfEventExposure) HasNotifFlag() bool

HasNotifFlag returns a boolean if a field has been set.

func (*NsmfEventExposure) HasNotifMethod

func (o *NsmfEventExposure) HasNotifMethod() bool

HasNotifMethod returns a boolean if a field has been set.

func (*NsmfEventExposure) HasPartitionCriteria

func (o *NsmfEventExposure) HasPartitionCriteria() bool

HasPartitionCriteria returns a boolean if a field has been set.

func (*NsmfEventExposure) HasPduSeId

func (o *NsmfEventExposure) HasPduSeId() bool

HasPduSeId returns a boolean if a field has been set.

func (*NsmfEventExposure) HasRepPeriod

func (o *NsmfEventExposure) HasRepPeriod() bool

HasRepPeriod returns a boolean if a field has been set.

func (*NsmfEventExposure) HasSampRatio

func (o *NsmfEventExposure) HasSampRatio() bool

HasSampRatio returns a boolean if a field has been set.

func (*NsmfEventExposure) HasServiveName

func (o *NsmfEventExposure) HasServiveName() bool

HasServiveName returns a boolean if a field has been set.

func (*NsmfEventExposure) HasSnssai

func (o *NsmfEventExposure) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*NsmfEventExposure) HasSubId

func (o *NsmfEventExposure) HasSubId() bool

HasSubId returns a boolean if a field has been set.

func (*NsmfEventExposure) HasSupi

func (o *NsmfEventExposure) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (*NsmfEventExposure) HasSupportedFeatures

func (o *NsmfEventExposure) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (NsmfEventExposure) MarshalJSON

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

func (*NsmfEventExposure) SetAltNotifFqdns

func (o *NsmfEventExposure) SetAltNotifFqdns(v []string)

SetAltNotifFqdns gets a reference to the given []string and assigns it to the AltNotifFqdns field.

func (*NsmfEventExposure) SetAltNotifIpv4Addrs

func (o *NsmfEventExposure) SetAltNotifIpv4Addrs(v []string)

SetAltNotifIpv4Addrs gets a reference to the given []string and assigns it to the AltNotifIpv4Addrs field.

func (*NsmfEventExposure) SetAltNotifIpv6Addrs

func (o *NsmfEventExposure) SetAltNotifIpv6Addrs(v []Ipv6Addr)

SetAltNotifIpv6Addrs gets a reference to the given []Ipv6Addr and assigns it to the AltNotifIpv6Addrs field.

func (*NsmfEventExposure) SetAnyUeInd

func (o *NsmfEventExposure) SetAnyUeInd(v bool)

SetAnyUeInd gets a reference to the given bool and assigns it to the AnyUeInd field.

func (*NsmfEventExposure) SetDnn

func (o *NsmfEventExposure) SetDnn(v string)

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

func (*NsmfEventExposure) SetEventNotifs

func (o *NsmfEventExposure) SetEventNotifs(v []EventNotification)

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

func (*NsmfEventExposure) SetEventSubs

func (o *NsmfEventExposure) SetEventSubs(v []EventSubscription)

SetEventSubs sets field value

func (*NsmfEventExposure) SetExpiry

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

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

func (*NsmfEventExposure) SetGpsi

func (o *NsmfEventExposure) SetGpsi(v string)

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

func (*NsmfEventExposure) SetGroupId

func (o *NsmfEventExposure) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*NsmfEventExposure) SetGrpRepTime

func (o *NsmfEventExposure) SetGrpRepTime(v int32)

SetGrpRepTime gets a reference to the given int32 and assigns it to the GrpRepTime field.

func (*NsmfEventExposure) SetGuami

func (o *NsmfEventExposure) SetGuami(v Guami)

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

func (*NsmfEventExposure) SetImmeRep

func (o *NsmfEventExposure) SetImmeRep(v bool)

SetImmeRep gets a reference to the given bool and assigns it to the ImmeRep field.

func (*NsmfEventExposure) SetMaxReportNbr

func (o *NsmfEventExposure) SetMaxReportNbr(v int32)

SetMaxReportNbr gets a reference to the given int32 and assigns it to the MaxReportNbr field.

func (*NsmfEventExposure) SetNotifFlag

func (o *NsmfEventExposure) SetNotifFlag(v NotificationFlag)

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

func (*NsmfEventExposure) SetNotifId

func (o *NsmfEventExposure) SetNotifId(v string)

SetNotifId sets field value

func (*NsmfEventExposure) SetNotifMethod

func (o *NsmfEventExposure) SetNotifMethod(v NotificationMethod)

SetNotifMethod gets a reference to the given NotificationMethod and assigns it to the NotifMethod field.

func (*NsmfEventExposure) SetNotifUri

func (o *NsmfEventExposure) SetNotifUri(v string)

SetNotifUri sets field value

func (*NsmfEventExposure) SetPartitionCriteria

func (o *NsmfEventExposure) SetPartitionCriteria(v []PartitioningCriteria)

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

func (*NsmfEventExposure) SetPduSeId

func (o *NsmfEventExposure) SetPduSeId(v int32)

SetPduSeId gets a reference to the given int32 and assigns it to the PduSeId field.

func (*NsmfEventExposure) SetRepPeriod

func (o *NsmfEventExposure) SetRepPeriod(v int32)

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

func (*NsmfEventExposure) SetSampRatio

func (o *NsmfEventExposure) SetSampRatio(v int32)

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

func (*NsmfEventExposure) SetServiveName

func (o *NsmfEventExposure) SetServiveName(v ServiceName)

SetServiveName gets a reference to the given ServiceName and assigns it to the ServiveName field.

func (*NsmfEventExposure) SetSnssai

func (o *NsmfEventExposure) SetSnssai(v Snssai)

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

func (*NsmfEventExposure) SetSubId

func (o *NsmfEventExposure) SetSubId(v string)

SetSubId gets a reference to the given string and assigns it to the SubId field.

func (*NsmfEventExposure) SetSupi

func (o *NsmfEventExposure) SetSupi(v string)

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

func (*NsmfEventExposure) SetSupportedFeatures

func (o *NsmfEventExposure) SetSupportedFeatures(v string)

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

func (NsmfEventExposure) ToMap

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

type NsmfEventExposureNotification

type NsmfEventExposureNotification struct {
	// Notification correlation ID
	NotifId string `json:"notifId"`
	// Notifications about Individual Events
	EventNotifs []EventNotification `json:"eventNotifs"`
	// String providing an URI formatted according to RFC 3986.
	AckUri *string `json:"ackUri,omitempty"`
}

NsmfEventExposureNotification Represents notifications on events that occurred.

func NewNsmfEventExposureNotification

func NewNsmfEventExposureNotification(notifId string, eventNotifs []EventNotification) *NsmfEventExposureNotification

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

func NewNsmfEventExposureNotificationWithDefaults

func NewNsmfEventExposureNotificationWithDefaults() *NsmfEventExposureNotification

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

func (*NsmfEventExposureNotification) GetAckUri

func (o *NsmfEventExposureNotification) GetAckUri() string

GetAckUri returns the AckUri field value if set, zero value otherwise.

func (*NsmfEventExposureNotification) GetAckUriOk

func (o *NsmfEventExposureNotification) GetAckUriOk() (*string, bool)

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

func (*NsmfEventExposureNotification) GetEventNotifs

func (o *NsmfEventExposureNotification) GetEventNotifs() []EventNotification

GetEventNotifs returns the EventNotifs field value

func (*NsmfEventExposureNotification) GetEventNotifsOk

func (o *NsmfEventExposureNotification) GetEventNotifsOk() ([]EventNotification, bool)

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

func (*NsmfEventExposureNotification) GetNotifId

func (o *NsmfEventExposureNotification) GetNotifId() string

GetNotifId returns the NotifId field value

func (*NsmfEventExposureNotification) GetNotifIdOk

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

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

func (*NsmfEventExposureNotification) HasAckUri

func (o *NsmfEventExposureNotification) HasAckUri() bool

HasAckUri returns a boolean if a field has been set.

func (NsmfEventExposureNotification) MarshalJSON

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

func (*NsmfEventExposureNotification) SetAckUri

func (o *NsmfEventExposureNotification) SetAckUri(v string)

SetAckUri gets a reference to the given string and assigns it to the AckUri field.

func (*NsmfEventExposureNotification) SetEventNotifs

func (o *NsmfEventExposureNotification) SetEventNotifs(v []EventNotification)

SetEventNotifs sets field value

func (*NsmfEventExposureNotification) SetNotifId

func (o *NsmfEventExposureNotification) SetNotifId(v string)

SetNotifId sets field value

func (NsmfEventExposureNotification) ToMap

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

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

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

func NewNullableAckOfNotify

func NewNullableAckOfNotify(val *AckOfNotify) *NullableAckOfNotify

func (NullableAckOfNotify) Get

func (NullableAckOfNotify) IsSet

func (v NullableAckOfNotify) IsSet() bool

func (NullableAckOfNotify) MarshalJSON

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

func (*NullableAckOfNotify) Set

func (v *NullableAckOfNotify) Set(val *AckOfNotify)

func (*NullableAckOfNotify) UnmarshalJSON

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

func (*NullableAckOfNotify) Unset

func (v *NullableAckOfNotify) Unset()

type NullableAddrFqdn

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

func NewNullableAddrFqdn

func NewNullableAddrFqdn(val *AddrFqdn) *NullableAddrFqdn

func (NullableAddrFqdn) Get

func (v NullableAddrFqdn) Get() *AddrFqdn

func (NullableAddrFqdn) IsSet

func (v NullableAddrFqdn) IsSet() bool

func (NullableAddrFqdn) MarshalJSON

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

func (*NullableAddrFqdn) Set

func (v *NullableAddrFqdn) Set(val *AddrFqdn)

func (*NullableAddrFqdn) UnmarshalJSON

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

func (*NullableAddrFqdn) Unset

func (v *NullableAddrFqdn) Unset()

type NullableAfResultInfo

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

func NewNullableAfResultInfo

func NewNullableAfResultInfo(val *AfResultInfo) *NullableAfResultInfo

func (NullableAfResultInfo) Get

func (NullableAfResultInfo) IsSet

func (v NullableAfResultInfo) IsSet() bool

func (NullableAfResultInfo) MarshalJSON

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

func (*NullableAfResultInfo) Set

func (v *NullableAfResultInfo) Set(val *AfResultInfo)

func (*NullableAfResultInfo) UnmarshalJSON

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

func (*NullableAfResultInfo) Unset

func (v *NullableAfResultInfo) Unset()

type NullableAfResultStatus

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

func NewNullableAfResultStatus

func NewNullableAfResultStatus(val *AfResultStatus) *NullableAfResultStatus

func (NullableAfResultStatus) Get

func (NullableAfResultStatus) IsSet

func (v NullableAfResultStatus) IsSet() bool

func (NullableAfResultStatus) MarshalJSON

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

func (*NullableAfResultStatus) Set

func (*NullableAfResultStatus) UnmarshalJSON

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

func (*NullableAfResultStatus) Unset

func (v *NullableAfResultStatus) Unset()

type NullableAppliedSmccType

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

func NewNullableAppliedSmccType

func NewNullableAppliedSmccType(val *AppliedSmccType) *NullableAppliedSmccType

func (NullableAppliedSmccType) Get

func (NullableAppliedSmccType) IsSet

func (v NullableAppliedSmccType) IsSet() bool

func (NullableAppliedSmccType) MarshalJSON

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

func (*NullableAppliedSmccType) Set

func (*NullableAppliedSmccType) UnmarshalJSON

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

func (*NullableAppliedSmccType) Unset

func (v *NullableAppliedSmccType) Unset()

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

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

func NewNullableCommunicationFailure

func NewNullableCommunicationFailure(val *CommunicationFailure) *NullableCommunicationFailure

func (NullableCommunicationFailure) Get

func (NullableCommunicationFailure) IsSet

func (NullableCommunicationFailure) MarshalJSON

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

func (*NullableCommunicationFailure) Set

func (*NullableCommunicationFailure) UnmarshalJSON

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

func (*NullableCommunicationFailure) Unset

func (v *NullableCommunicationFailure) Unset()

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

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

func NewNullableDlDataDeliveryStatus

func NewNullableDlDataDeliveryStatus(val *DlDataDeliveryStatus) *NullableDlDataDeliveryStatus

func (NullableDlDataDeliveryStatus) Get

func (NullableDlDataDeliveryStatus) IsSet

func (NullableDlDataDeliveryStatus) MarshalJSON

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

func (*NullableDlDataDeliveryStatus) Set

func (*NullableDlDataDeliveryStatus) UnmarshalJSON

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

func (*NullableDlDataDeliveryStatus) Unset

func (v *NullableDlDataDeliveryStatus) Unset()

type NullableDnaiChangeType

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

func NewNullableDnaiChangeType

func NewNullableDnaiChangeType(val *DnaiChangeType) *NullableDnaiChangeType

func (NullableDnaiChangeType) Get

func (NullableDnaiChangeType) IsSet

func (v NullableDnaiChangeType) IsSet() bool

func (NullableDnaiChangeType) MarshalJSON

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

func (*NullableDnaiChangeType) Set

func (*NullableDnaiChangeType) UnmarshalJSON

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

func (*NullableDnaiChangeType) Unset

func (v *NullableDnaiChangeType) Unset()

type NullableEasIpReplacementInfo

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

func NewNullableEasIpReplacementInfo

func NewNullableEasIpReplacementInfo(val *EasIpReplacementInfo) *NullableEasIpReplacementInfo

func (NullableEasIpReplacementInfo) Get

func (NullableEasIpReplacementInfo) IsSet

func (NullableEasIpReplacementInfo) MarshalJSON

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

func (*NullableEasIpReplacementInfo) Set

func (*NullableEasIpReplacementInfo) UnmarshalJSON

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

func (*NullableEasIpReplacementInfo) Unset

func (v *NullableEasIpReplacementInfo) Unset()

type NullableEasServerAddress

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

func NewNullableEasServerAddress

func NewNullableEasServerAddress(val *EasServerAddress) *NullableEasServerAddress

func (NullableEasServerAddress) Get

func (NullableEasServerAddress) IsSet

func (v NullableEasServerAddress) IsSet() bool

func (NullableEasServerAddress) MarshalJSON

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

func (*NullableEasServerAddress) Set

func (*NullableEasServerAddress) UnmarshalJSON

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

func (*NullableEasServerAddress) Unset

func (v *NullableEasServerAddress) Unset()

type NullableEthFlowDescription

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

func NewNullableEthFlowDescription

func NewNullableEthFlowDescription(val *EthFlowDescription) *NullableEthFlowDescription

func (NullableEthFlowDescription) Get

func (NullableEthFlowDescription) IsSet

func (v NullableEthFlowDescription) IsSet() bool

func (NullableEthFlowDescription) MarshalJSON

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

func (*NullableEthFlowDescription) Set

func (*NullableEthFlowDescription) UnmarshalJSON

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

func (*NullableEthFlowDescription) Unset

func (v *NullableEthFlowDescription) Unset()

type NullableEventNotification

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

func NewNullableEventNotification

func NewNullableEventNotification(val *EventNotification) *NullableEventNotification

func (NullableEventNotification) Get

func (NullableEventNotification) IsSet

func (v NullableEventNotification) IsSet() bool

func (NullableEventNotification) MarshalJSON

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

func (*NullableEventNotification) Set

func (*NullableEventNotification) UnmarshalJSON

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

func (*NullableEventNotification) Unset

func (v *NullableEventNotification) Unset()

type NullableEventSubscription

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

func NewNullableEventSubscription

func NewNullableEventSubscription(val *EventSubscription) *NullableEventSubscription

func (NullableEventSubscription) Get

func (NullableEventSubscription) IsSet

func (v NullableEventSubscription) IsSet() bool

func (NullableEventSubscription) MarshalJSON

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

func (*NullableEventSubscription) Set

func (*NullableEventSubscription) UnmarshalJSON

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

func (*NullableEventSubscription) Unset

func (v *NullableEventSubscription) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableFlowDirection

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

func NewNullableFlowDirection

func NewNullableFlowDirection(val *FlowDirection) *NullableFlowDirection

func (NullableFlowDirection) Get

func (NullableFlowDirection) IsSet

func (v NullableFlowDirection) IsSet() bool

func (NullableFlowDirection) MarshalJSON

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

func (*NullableFlowDirection) Set

func (v *NullableFlowDirection) Set(val *FlowDirection)

func (*NullableFlowDirection) UnmarshalJSON

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

func (*NullableFlowDirection) Unset

func (v *NullableFlowDirection) Unset()

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

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

func NewNullableIpAddr

func NewNullableIpAddr(val *IpAddr) *NullableIpAddr

func (NullableIpAddr) Get

func (v NullableIpAddr) Get() *IpAddr

func (NullableIpAddr) IsSet

func (v NullableIpAddr) IsSet() bool

func (NullableIpAddr) MarshalJSON

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

func (*NullableIpAddr) Set

func (v *NullableIpAddr) Set(val *IpAddr)

func (*NullableIpAddr) UnmarshalJSON

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

func (*NullableIpAddr) Unset

func (v *NullableIpAddr) Unset()

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

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

func NewNullableNotificationFlag

func NewNullableNotificationFlag(val *NotificationFlag) *NullableNotificationFlag

func (NullableNotificationFlag) Get

func (NullableNotificationFlag) IsSet

func (v NullableNotificationFlag) IsSet() bool

func (NullableNotificationFlag) MarshalJSON

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

func (*NullableNotificationFlag) Set

func (*NullableNotificationFlag) UnmarshalJSON

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

func (*NullableNotificationFlag) Unset

func (v *NullableNotificationFlag) Unset()

type NullableNotificationMethod

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

func NewNullableNotificationMethod

func NewNullableNotificationMethod(val *NotificationMethod) *NullableNotificationMethod

func (NullableNotificationMethod) Get

func (NullableNotificationMethod) IsSet

func (v NullableNotificationMethod) IsSet() bool

func (NullableNotificationMethod) MarshalJSON

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

func (*NullableNotificationMethod) Set

func (*NullableNotificationMethod) UnmarshalJSON

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

func (*NullableNotificationMethod) Unset

func (v *NullableNotificationMethod) Unset()

type NullableNsmfEventExposure

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

func NewNullableNsmfEventExposure

func NewNullableNsmfEventExposure(val *NsmfEventExposure) *NullableNsmfEventExposure

func (NullableNsmfEventExposure) Get

func (NullableNsmfEventExposure) IsSet

func (v NullableNsmfEventExposure) IsSet() bool

func (NullableNsmfEventExposure) MarshalJSON

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

func (*NullableNsmfEventExposure) Set

func (*NullableNsmfEventExposure) UnmarshalJSON

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

func (*NullableNsmfEventExposure) Unset

func (v *NullableNsmfEventExposure) Unset()

type NullableNsmfEventExposureNotification

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

func (NullableNsmfEventExposureNotification) Get

func (NullableNsmfEventExposureNotification) IsSet

func (NullableNsmfEventExposureNotification) MarshalJSON

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

func (*NullableNsmfEventExposureNotification) Set

func (*NullableNsmfEventExposureNotification) UnmarshalJSON

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

func (*NullableNsmfEventExposureNotification) Unset

type NullablePartitioningCriteria

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

func NewNullablePartitioningCriteria

func NewNullablePartitioningCriteria(val *PartitioningCriteria) *NullablePartitioningCriteria

func (NullablePartitioningCriteria) Get

func (NullablePartitioningCriteria) IsSet

func (NullablePartitioningCriteria) MarshalJSON

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

func (*NullablePartitioningCriteria) Set

func (*NullablePartitioningCriteria) UnmarshalJSON

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

func (*NullablePartitioningCriteria) Unset

func (v *NullablePartitioningCriteria) Unset()

type NullablePduSessionInfo

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

func NewNullablePduSessionInfo

func NewNullablePduSessionInfo(val *PduSessionInfo) *NullablePduSessionInfo

func (NullablePduSessionInfo) Get

func (NullablePduSessionInfo) IsSet

func (v NullablePduSessionInfo) IsSet() bool

func (NullablePduSessionInfo) MarshalJSON

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

func (*NullablePduSessionInfo) Set

func (*NullablePduSessionInfo) UnmarshalJSON

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

func (*NullablePduSessionInfo) Unset

func (v *NullablePduSessionInfo) Unset()

type NullablePduSessionInformation

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

func (NullablePduSessionInformation) Get

func (NullablePduSessionInformation) IsSet

func (NullablePduSessionInformation) MarshalJSON

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

func (*NullablePduSessionInformation) Set

func (*NullablePduSessionInformation) UnmarshalJSON

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

func (*NullablePduSessionInformation) Unset

func (v *NullablePduSessionInformation) Unset()

type NullablePduSessionStatus

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

func NewNullablePduSessionStatus

func NewNullablePduSessionStatus(val *PduSessionStatus) *NullablePduSessionStatus

func (NullablePduSessionStatus) Get

func (NullablePduSessionStatus) IsSet

func (v NullablePduSessionStatus) IsSet() bool

func (NullablePduSessionStatus) MarshalJSON

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

func (*NullablePduSessionStatus) Set

func (*NullablePduSessionStatus) UnmarshalJSON

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

func (*NullablePduSessionStatus) Unset

func (v *NullablePduSessionStatus) Unset()

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

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

func NewNullableRouteInformation

func NewNullableRouteInformation(val *RouteInformation) *NullableRouteInformation

func (NullableRouteInformation) Get

func (NullableRouteInformation) IsSet

func (v NullableRouteInformation) IsSet() bool

func (NullableRouteInformation) MarshalJSON

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

func (*NullableRouteInformation) Set

func (*NullableRouteInformation) UnmarshalJSON

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

func (*NullableRouteInformation) Unset

func (v *NullableRouteInformation) Unset()

type NullableRouteToLocation

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

func NewNullableRouteToLocation

func NewNullableRouteToLocation(val *RouteToLocation) *NullableRouteToLocation

func (NullableRouteToLocation) Get

func (NullableRouteToLocation) IsSet

func (v NullableRouteToLocation) IsSet() bool

func (NullableRouteToLocation) MarshalJSON

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

func (*NullableRouteToLocation) Set

func (*NullableRouteToLocation) UnmarshalJSON

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

func (*NullableRouteToLocation) Unset

func (v *NullableRouteToLocation) Unset()

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

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

func NewNullableSmNasFromSmf

func NewNullableSmNasFromSmf(val *SmNasFromSmf) *NullableSmNasFromSmf

func (NullableSmNasFromSmf) Get

func (NullableSmNasFromSmf) IsSet

func (v NullableSmNasFromSmf) IsSet() bool

func (NullableSmNasFromSmf) MarshalJSON

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

func (*NullableSmNasFromSmf) Set

func (v *NullableSmNasFromSmf) Set(val *SmNasFromSmf)

func (*NullableSmNasFromSmf) UnmarshalJSON

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

func (*NullableSmNasFromSmf) Unset

func (v *NullableSmNasFromSmf) Unset()

type NullableSmNasFromUe

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

func NewNullableSmNasFromUe

func NewNullableSmNasFromUe(val *SmNasFromUe) *NullableSmNasFromUe

func (NullableSmNasFromUe) Get

func (NullableSmNasFromUe) IsSet

func (v NullableSmNasFromUe) IsSet() bool

func (NullableSmNasFromUe) MarshalJSON

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

func (*NullableSmNasFromUe) Set

func (v *NullableSmNasFromUe) Set(val *SmNasFromUe)

func (*NullableSmNasFromUe) UnmarshalJSON

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

func (*NullableSmNasFromUe) Unset

func (v *NullableSmNasFromUe) Unset()

type NullableSmfEvent

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

func NewNullableSmfEvent

func NewNullableSmfEvent(val *SmfEvent) *NullableSmfEvent

func (NullableSmfEvent) Get

func (v NullableSmfEvent) Get() *SmfEvent

func (NullableSmfEvent) IsSet

func (v NullableSmfEvent) IsSet() bool

func (NullableSmfEvent) MarshalJSON

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

func (*NullableSmfEvent) Set

func (v *NullableSmfEvent) Set(val *SmfEvent)

func (*NullableSmfEvent) UnmarshalJSON

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

func (*NullableSmfEvent) Unset

func (v *NullableSmfEvent) Unset()

type NullableSnssai

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

func NewNullableSnssai

func NewNullableSnssai(val *Snssai) *NullableSnssai

func (NullableSnssai) Get

func (v NullableSnssai) Get() *Snssai

func (NullableSnssai) IsSet

func (v NullableSnssai) IsSet() bool

func (NullableSnssai) MarshalJSON

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

func (*NullableSnssai) Set

func (v *NullableSnssai) Set(val *Snssai)

func (*NullableSnssai) UnmarshalJSON

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

func (*NullableSnssai) Unset

func (v *NullableSnssai) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTimeWindow

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

func NewNullableTimeWindow

func NewNullableTimeWindow(val *TimeWindow) *NullableTimeWindow

func (NullableTimeWindow) Get

func (v NullableTimeWindow) Get() *TimeWindow

func (NullableTimeWindow) IsSet

func (v NullableTimeWindow) IsSet() bool

func (NullableTimeWindow) MarshalJSON

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

func (*NullableTimeWindow) Set

func (v *NullableTimeWindow) Set(val *TimeWindow)

func (*NullableTimeWindow) UnmarshalJSON

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

func (*NullableTimeWindow) Unset

func (v *NullableTimeWindow) Unset()

type NullableTransactionInfo

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

func NewNullableTransactionInfo

func NewNullableTransactionInfo(val *TransactionInfo) *NullableTransactionInfo

func (NullableTransactionInfo) Get

func (NullableTransactionInfo) IsSet

func (v NullableTransactionInfo) IsSet() bool

func (NullableTransactionInfo) MarshalJSON

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

func (*NullableTransactionInfo) Set

func (*NullableTransactionInfo) UnmarshalJSON

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

func (*NullableTransactionInfo) Unset

func (v *NullableTransactionInfo) Unset()

type NullableTransactionMetric

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

func NewNullableTransactionMetric

func NewNullableTransactionMetric(val *TransactionMetric) *NullableTransactionMetric

func (NullableTransactionMetric) Get

func (NullableTransactionMetric) IsSet

func (v NullableTransactionMetric) IsSet() bool

func (NullableTransactionMetric) MarshalJSON

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

func (*NullableTransactionMetric) Set

func (*NullableTransactionMetric) UnmarshalJSON

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

func (*NullableTransactionMetric) Unset

func (v *NullableTransactionMetric) Unset()

type NullableUpfInformation

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

func NewNullableUpfInformation

func NewNullableUpfInformation(val *UpfInformation) *NullableUpfInformation

func (NullableUpfInformation) Get

func (NullableUpfInformation) IsSet

func (v NullableUpfInformation) IsSet() bool

func (NullableUpfInformation) MarshalJSON

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

func (*NullableUpfInformation) Set

func (*NullableUpfInformation) UnmarshalJSON

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

func (*NullableUpfInformation) Unset

func (v *NullableUpfInformation) Unset()

type PartitioningCriteria

type PartitioningCriteria struct {
	String *string
}

PartitioningCriteria Possible values are: - \"TAC\": Type Allocation Code - \"SUBPLMN\": Subscriber PLMN ID - \"GEOAREA\": Geographical area, i.e. list(s) of TAI(s) - \"SNSSAI\": S-NSSAI - \"DNN\": DNN

func (*PartitioningCriteria) MarshalJSON

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

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

func (*PartitioningCriteria) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type PduSessionInfo

type PduSessionInfo struct {
	// The identifier of the N4 session for the reported PDU Session.
	N4SessId *string `json:"n4SessId,omitempty"`
	// indicating a time in seconds.
	SessInactiveTimer *int32            `json:"sessInactiveTimer,omitempty"`
	PduSessStatus     *PduSessionStatus `json:"pduSessStatus,omitempty"`
}

PduSessionInfo Represents session information.

func NewPduSessionInfo

func NewPduSessionInfo() *PduSessionInfo

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

func NewPduSessionInfoWithDefaults

func NewPduSessionInfoWithDefaults() *PduSessionInfo

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

func (*PduSessionInfo) GetN4SessId

func (o *PduSessionInfo) GetN4SessId() string

GetN4SessId returns the N4SessId field value if set, zero value otherwise.

func (*PduSessionInfo) GetN4SessIdOk

func (o *PduSessionInfo) GetN4SessIdOk() (*string, bool)

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

func (*PduSessionInfo) GetPduSessStatus

func (o *PduSessionInfo) GetPduSessStatus() PduSessionStatus

GetPduSessStatus returns the PduSessStatus field value if set, zero value otherwise.

func (*PduSessionInfo) GetPduSessStatusOk

func (o *PduSessionInfo) GetPduSessStatusOk() (*PduSessionStatus, bool)

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

func (*PduSessionInfo) GetSessInactiveTimer

func (o *PduSessionInfo) GetSessInactiveTimer() int32

GetSessInactiveTimer returns the SessInactiveTimer field value if set, zero value otherwise.

func (*PduSessionInfo) GetSessInactiveTimerOk

func (o *PduSessionInfo) GetSessInactiveTimerOk() (*int32, bool)

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

func (*PduSessionInfo) HasN4SessId

func (o *PduSessionInfo) HasN4SessId() bool

HasN4SessId returns a boolean if a field has been set.

func (*PduSessionInfo) HasPduSessStatus

func (o *PduSessionInfo) HasPduSessStatus() bool

HasPduSessStatus returns a boolean if a field has been set.

func (*PduSessionInfo) HasSessInactiveTimer

func (o *PduSessionInfo) HasSessInactiveTimer() bool

HasSessInactiveTimer returns a boolean if a field has been set.

func (PduSessionInfo) MarshalJSON

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

func (*PduSessionInfo) SetN4SessId

func (o *PduSessionInfo) SetN4SessId(v string)

SetN4SessId gets a reference to the given string and assigns it to the N4SessId field.

func (*PduSessionInfo) SetPduSessStatus

func (o *PduSessionInfo) SetPduSessStatus(v PduSessionStatus)

SetPduSessStatus gets a reference to the given PduSessionStatus and assigns it to the PduSessStatus field.

func (*PduSessionInfo) SetSessInactiveTimer

func (o *PduSessionInfo) SetSessInactiveTimer(v int32)

SetSessInactiveTimer gets a reference to the given int32 and assigns it to the SessInactiveTimer field.

func (PduSessionInfo) ToMap

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

type PduSessionInformation

type PduSessionInformation struct {
	// Unsigned integer identifying a PDU session, within the range 0 to 255, as specified in  clause 11.2.3.1b, bits 1 to 8, of 3GPP TS 24.007. If the PDU Session ID is allocated by the  Core Network for UEs not supporting N1 mode, reserved range 64 to 95 is used. PDU Session ID  within the reserved range is only visible in the Core Network.
	PduSessId *int32          `json:"pduSessId,omitempty"`
	SessInfo  *PduSessionInfo `json:"sessInfo,omitempty"`
}

PduSessionInformation Represents the PDU session related information.

func NewPduSessionInformation

func NewPduSessionInformation() *PduSessionInformation

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

func NewPduSessionInformationWithDefaults

func NewPduSessionInformationWithDefaults() *PduSessionInformation

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

func (*PduSessionInformation) GetPduSessId

func (o *PduSessionInformation) GetPduSessId() int32

GetPduSessId returns the PduSessId field value if set, zero value otherwise.

func (*PduSessionInformation) GetPduSessIdOk

func (o *PduSessionInformation) GetPduSessIdOk() (*int32, bool)

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

func (*PduSessionInformation) GetSessInfo

func (o *PduSessionInformation) GetSessInfo() PduSessionInfo

GetSessInfo returns the SessInfo field value if set, zero value otherwise.

func (*PduSessionInformation) GetSessInfoOk

func (o *PduSessionInformation) GetSessInfoOk() (*PduSessionInfo, bool)

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

func (*PduSessionInformation) HasPduSessId

func (o *PduSessionInformation) HasPduSessId() bool

HasPduSessId returns a boolean if a field has been set.

func (*PduSessionInformation) HasSessInfo

func (o *PduSessionInformation) HasSessInfo() bool

HasSessInfo returns a boolean if a field has been set.

func (PduSessionInformation) MarshalJSON

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

func (*PduSessionInformation) SetPduSessId

func (o *PduSessionInformation) SetPduSessId(v int32)

SetPduSessId gets a reference to the given int32 and assigns it to the PduSessId field.

func (*PduSessionInformation) SetSessInfo

func (o *PduSessionInformation) SetSessInfo(v PduSessionInfo)

SetSessInfo gets a reference to the given PduSessionInfo and assigns it to the SessInfo field.

func (PduSessionInformation) ToMap

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

type PduSessionStatus

type PduSessionStatus struct {
	String *string
}

PduSessionStatus Possible values are: - ACTIVATED: PDU Session status is activated. - DEACTIVATED: PDU Session status is deactivated.

func (*PduSessionStatus) MarshalJSON

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

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

func (*PduSessionStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type PduSessionType

type PduSessionType struct {
	String *string
}

PduSessionType PduSessionType indicates the type of a PDU session. It shall comply with the provisions defined in table 5.4.3.3-1.

func (*PduSessionType) MarshalJSON

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

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

func (*PduSessionType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type PlmnId

type PlmnId struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
}

PlmnId When PlmnId needs to be converted to string (e.g. when used in maps as key), the string shall be composed of three digits \"mcc\" followed by \"-\" and two or three digits \"mnc\".

func NewPlmnId

func NewPlmnId(mcc string, mnc string) *PlmnId

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

func NewPlmnIdWithDefaults

func NewPlmnIdWithDefaults() *PlmnId

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

func (*PlmnId) GetMcc

func (o *PlmnId) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnId) GetMccOk

func (o *PlmnId) GetMccOk() (*string, bool)

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

func (*PlmnId) GetMnc

func (o *PlmnId) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnId) GetMncOk

func (o *PlmnId) GetMncOk() (*string, bool)

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

func (PlmnId) MarshalJSON

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

func (*PlmnId) SetMcc

func (o *PlmnId) SetMcc(v string)

SetMcc sets field value

func (*PlmnId) SetMnc

func (o *PlmnId) SetMnc(v string)

SetMnc sets field value

func (PlmnId) ToMap

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

type PlmnIdNid

type PlmnIdNid struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

PlmnIdNid Contains the serving core network operator PLMN ID and, for an SNPN, the NID that together with the PLMN ID identifies the SNPN.

func NewPlmnIdNid

func NewPlmnIdNid(mcc string, mnc string) *PlmnIdNid

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

func NewPlmnIdNidWithDefaults

func NewPlmnIdNidWithDefaults() *PlmnIdNid

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

func (*PlmnIdNid) GetMcc

func (o *PlmnIdNid) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnIdNid) GetMccOk

func (o *PlmnIdNid) GetMccOk() (*string, bool)

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

func (*PlmnIdNid) GetMnc

func (o *PlmnIdNid) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnIdNid) GetMncOk

func (o *PlmnIdNid) GetMncOk() (*string, bool)

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

func (*PlmnIdNid) GetNid

func (o *PlmnIdNid) GetNid() string

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

func (*PlmnIdNid) GetNidOk

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

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

func (*PlmnIdNid) HasNid

func (o *PlmnIdNid) HasNid() bool

HasNid returns a boolean if a field has been set.

func (PlmnIdNid) MarshalJSON

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

func (*PlmnIdNid) SetMcc

func (o *PlmnIdNid) SetMcc(v string)

SetMcc sets field value

func (*PlmnIdNid) SetMnc

func (o *PlmnIdNid) SetMnc(v string)

SetMnc sets field value

func (*PlmnIdNid) SetNid

func (o *PlmnIdNid) SetNid(v string)

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

func (PlmnIdNid) ToMap

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

type ProblemDetails

type ProblemDetails struct {
	// String providing an URI formatted according to RFC 3986.
	Type   *string `json:"type,omitempty"`
	Title  *string `json:"title,omitempty"`
	Status *int32  `json:"status,omitempty"`
	// A human-readable explanation specific to this occurrence of the problem.
	Detail *string `json:"detail,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	Instance *string `json:"instance,omitempty"`
	// A machine-readable application error cause specific to this occurrence of the problem.  This IE should be present and provide application-related error information, if available.
	Cause         *string        `json:"cause,omitempty"`
	InvalidParams []InvalidParam `json:"invalidParams,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures  *string         `json:"supportedFeatures,omitempty"`
	AccessTokenError   *AccessTokenErr `json:"accessTokenError,omitempty"`
	AccessTokenRequest *AccessTokenReq `json:"accessTokenRequest,omitempty"`
	// Fully Qualified Domain Name
	NrfId                *string  `json:"nrfId,omitempty"`
	SupportedApiVersions []string `json:"supportedApiVersions,omitempty"`
}

ProblemDetails Provides additional information in an error response.

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

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

func NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

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

func (*ProblemDetails) GetAccessTokenError

func (o *ProblemDetails) GetAccessTokenError() AccessTokenErr

GetAccessTokenError returns the AccessTokenError field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenErrorOk

func (o *ProblemDetails) GetAccessTokenErrorOk() (*AccessTokenErr, bool)

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

func (*ProblemDetails) GetAccessTokenRequest

func (o *ProblemDetails) GetAccessTokenRequest() AccessTokenReq

GetAccessTokenRequest returns the AccessTokenRequest field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenRequestOk

func (o *ProblemDetails) GetAccessTokenRequestOk() (*AccessTokenReq, bool)

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

func (*ProblemDetails) GetCause

func (o *ProblemDetails) GetCause() string

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

func (*ProblemDetails) GetCauseOk

func (o *ProblemDetails) GetCauseOk() (*string, bool)

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

func (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ProblemDetails) GetDetailOk

func (o *ProblemDetails) GetDetailOk() (*string, bool)

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

func (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise.

func (*ProblemDetails) GetInstanceOk

func (o *ProblemDetails) GetInstanceOk() (*string, bool)

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

func (*ProblemDetails) GetInvalidParams

func (o *ProblemDetails) GetInvalidParams() []InvalidParam

GetInvalidParams returns the InvalidParams field value if set, zero value otherwise.

func (*ProblemDetails) GetInvalidParamsOk

func (o *ProblemDetails) GetInvalidParamsOk() ([]InvalidParam, bool)

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

func (*ProblemDetails) GetNrfId

func (o *ProblemDetails) GetNrfId() string

GetNrfId returns the NrfId field value if set, zero value otherwise.

func (*ProblemDetails) GetNrfIdOk

func (o *ProblemDetails) GetNrfIdOk() (*string, bool)

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

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ProblemDetails) GetStatusOk

func (o *ProblemDetails) GetStatusOk() (*int32, bool)

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

func (*ProblemDetails) GetSupportedApiVersions

func (o *ProblemDetails) GetSupportedApiVersions() []string

GetSupportedApiVersions returns the SupportedApiVersions field value if set, zero value otherwise.

func (*ProblemDetails) GetSupportedApiVersionsOk

func (o *ProblemDetails) GetSupportedApiVersionsOk() ([]string, bool)

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

func (*ProblemDetails) GetSupportedFeatures

func (o *ProblemDetails) GetSupportedFeatures() string

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

func (*ProblemDetails) GetSupportedFeaturesOk

func (o *ProblemDetails) GetSupportedFeaturesOk() (*string, bool)

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

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ProblemDetails) GetTitleOk

func (o *ProblemDetails) GetTitleOk() (*string, bool)

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

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProblemDetails) GetTypeOk

func (o *ProblemDetails) GetTypeOk() (*string, bool)

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

func (*ProblemDetails) HasAccessTokenError

func (o *ProblemDetails) HasAccessTokenError() bool

HasAccessTokenError returns a boolean if a field has been set.

func (*ProblemDetails) HasAccessTokenRequest

func (o *ProblemDetails) HasAccessTokenRequest() bool

HasAccessTokenRequest returns a boolean if a field has been set.

func (*ProblemDetails) HasCause

func (o *ProblemDetails) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasInvalidParams

func (o *ProblemDetails) HasInvalidParams() bool

HasInvalidParams returns a boolean if a field has been set.

func (*ProblemDetails) HasNrfId

func (o *ProblemDetails) HasNrfId() bool

HasNrfId returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedApiVersions

func (o *ProblemDetails) HasSupportedApiVersions() bool

HasSupportedApiVersions returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

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

func (*ProblemDetails) SetAccessTokenError

func (o *ProblemDetails) SetAccessTokenError(v AccessTokenErr)

SetAccessTokenError gets a reference to the given AccessTokenErr and assigns it to the AccessTokenError field.

func (*ProblemDetails) SetAccessTokenRequest

func (o *ProblemDetails) SetAccessTokenRequest(v AccessTokenReq)

SetAccessTokenRequest gets a reference to the given AccessTokenReq and assigns it to the AccessTokenRequest field.

func (*ProblemDetails) SetCause

func (o *ProblemDetails) SetCause(v string)

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

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given string and assigns it to the Instance field.

func (*ProblemDetails) SetInvalidParams

func (o *ProblemDetails) SetInvalidParams(v []InvalidParam)

SetInvalidParams gets a reference to the given []InvalidParam and assigns it to the InvalidParams field.

func (*ProblemDetails) SetNrfId

func (o *ProblemDetails) SetNrfId(v string)

SetNrfId gets a reference to the given string and assigns it to the NrfId field.

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*ProblemDetails) SetSupportedApiVersions

func (o *ProblemDetails) SetSupportedApiVersions(v []string)

SetSupportedApiVersions gets a reference to the given []string and assigns it to the SupportedApiVersions field.

func (*ProblemDetails) SetSupportedFeatures

func (o *ProblemDetails) SetSupportedFeatures(v string)

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

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ProblemDetails) ToMap

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

type RatType

type RatType struct {
	String *string
}

RatType Indicates the radio access used.

func (*RatType) MarshalJSON

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

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

func (*RatType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type RedirectResponse

type RedirectResponse struct {
	Cause *string `json:"cause,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetScp *string `json:"targetScp,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetSepp *string `json:"targetSepp,omitempty"`
}

RedirectResponse The response shall include a Location header field containing a different URI (pointing to a different URI of an other service instance), or the same URI if a request is redirected to the same target resource via a different SCP.

func NewRedirectResponse

func NewRedirectResponse() *RedirectResponse

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

func NewRedirectResponseWithDefaults

func NewRedirectResponseWithDefaults() *RedirectResponse

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

func (*RedirectResponse) GetCause

func (o *RedirectResponse) GetCause() string

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

func (*RedirectResponse) GetCauseOk

func (o *RedirectResponse) GetCauseOk() (*string, bool)

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

func (*RedirectResponse) GetTargetScp

func (o *RedirectResponse) GetTargetScp() string

GetTargetScp returns the TargetScp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetScpOk

func (o *RedirectResponse) GetTargetScpOk() (*string, bool)

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

func (*RedirectResponse) GetTargetSepp

func (o *RedirectResponse) GetTargetSepp() string

GetTargetSepp returns the TargetSepp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetSeppOk

func (o *RedirectResponse) GetTargetSeppOk() (*string, bool)

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

func (*RedirectResponse) HasCause

func (o *RedirectResponse) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetScp

func (o *RedirectResponse) HasTargetScp() bool

HasTargetScp returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetSepp

func (o *RedirectResponse) HasTargetSepp() bool

HasTargetSepp returns a boolean if a field has been set.

func (RedirectResponse) MarshalJSON

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

func (*RedirectResponse) SetCause

func (o *RedirectResponse) SetCause(v string)

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

func (*RedirectResponse) SetTargetScp

func (o *RedirectResponse) SetTargetScp(v string)

SetTargetScp gets a reference to the given string and assigns it to the TargetScp field.

func (*RedirectResponse) SetTargetSepp

func (o *RedirectResponse) SetTargetSepp(v string)

SetTargetSepp gets a reference to the given string and assigns it to the TargetSepp field.

func (RedirectResponse) ToMap

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

type RouteInformation

type RouteInformation struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string   `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber int32 `json:"portNumber"`
}

RouteInformation At least one of the \"ipv4Addr\" attribute and the \"ipv6Addr\" attribute shall be included in the \"RouteInformation\" data type.

func NewRouteInformation

func NewRouteInformation(portNumber int32) *RouteInformation

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

func NewRouteInformationWithDefaults

func NewRouteInformationWithDefaults() *RouteInformation

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

func (*RouteInformation) GetIpv4Addr

func (o *RouteInformation) GetIpv4Addr() string

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

func (*RouteInformation) GetIpv4AddrOk

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

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

func (*RouteInformation) GetIpv6Addr

func (o *RouteInformation) GetIpv6Addr() Ipv6Addr

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

func (*RouteInformation) GetIpv6AddrOk

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

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

func (*RouteInformation) GetPortNumber

func (o *RouteInformation) GetPortNumber() int32

GetPortNumber returns the PortNumber field value

func (*RouteInformation) GetPortNumberOk

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

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

func (*RouteInformation) HasIpv4Addr

func (o *RouteInformation) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*RouteInformation) HasIpv6Addr

func (o *RouteInformation) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (RouteInformation) MarshalJSON

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

func (*RouteInformation) SetIpv4Addr

func (o *RouteInformation) SetIpv4Addr(v string)

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

func (*RouteInformation) SetIpv6Addr

func (o *RouteInformation) SetIpv6Addr(v Ipv6Addr)

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

func (*RouteInformation) SetPortNumber

func (o *RouteInformation) SetPortNumber(v int32)

SetPortNumber sets field value

func (RouteInformation) ToMap

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

type RouteToLocation

type RouteToLocation struct {
	Interface *interface{}
}

RouteToLocation At least one of the \"routeInfo\" attribute and the \"routeProfId\" attribute shall be included in the \"RouteToLocation\" data type.

func (*RouteToLocation) MarshalJSON

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

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

func (*RouteToLocation) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type ServiceName

type ServiceName struct {
	String *string
}

ServiceName Service names known to NRF

func (*ServiceName) MarshalJSON

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

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

func (*ServiceName) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type SmNasFromSmf

type SmNasFromSmf struct {
	SmNasType string `json:"smNasType"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp time.Time `json:"timeStamp"`
	// indicating a time in seconds.
	BackoffTimer    int32           `json:"backoffTimer"`
	AppliedSmccType AppliedSmccType `json:"appliedSmccType"`
}

SmNasFromSmf Represents information on the SM congestion control applied SM NAS messages that SMF sends to UE for PDU Session.

func NewSmNasFromSmf

func NewSmNasFromSmf(smNasType string, timeStamp time.Time, backoffTimer int32, appliedSmccType AppliedSmccType) *SmNasFromSmf

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

func NewSmNasFromSmfWithDefaults

func NewSmNasFromSmfWithDefaults() *SmNasFromSmf

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

func (*SmNasFromSmf) GetAppliedSmccType

func (o *SmNasFromSmf) GetAppliedSmccType() AppliedSmccType

GetAppliedSmccType returns the AppliedSmccType field value

func (*SmNasFromSmf) GetAppliedSmccTypeOk

func (o *SmNasFromSmf) GetAppliedSmccTypeOk() (*AppliedSmccType, bool)

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

func (*SmNasFromSmf) GetBackoffTimer

func (o *SmNasFromSmf) GetBackoffTimer() int32

GetBackoffTimer returns the BackoffTimer field value

func (*SmNasFromSmf) GetBackoffTimerOk

func (o *SmNasFromSmf) GetBackoffTimerOk() (*int32, bool)

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

func (*SmNasFromSmf) GetSmNasType

func (o *SmNasFromSmf) GetSmNasType() string

GetSmNasType returns the SmNasType field value

func (*SmNasFromSmf) GetSmNasTypeOk

func (o *SmNasFromSmf) GetSmNasTypeOk() (*string, bool)

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

func (*SmNasFromSmf) GetTimeStamp

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

GetTimeStamp returns the TimeStamp field value

func (*SmNasFromSmf) GetTimeStampOk

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

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

func (SmNasFromSmf) MarshalJSON

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

func (*SmNasFromSmf) SetAppliedSmccType

func (o *SmNasFromSmf) SetAppliedSmccType(v AppliedSmccType)

SetAppliedSmccType sets field value

func (*SmNasFromSmf) SetBackoffTimer

func (o *SmNasFromSmf) SetBackoffTimer(v int32)

SetBackoffTimer sets field value

func (*SmNasFromSmf) SetSmNasType

func (o *SmNasFromSmf) SetSmNasType(v string)

SetSmNasType sets field value

func (*SmNasFromSmf) SetTimeStamp

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

SetTimeStamp sets field value

func (SmNasFromSmf) ToMap

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

type SmNasFromUe

type SmNasFromUe struct {
	SmNasType string `json:"smNasType"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp time.Time `json:"timeStamp"`
}

SmNasFromUe Represents information on the SM NAS messages that SMF receives from UE for PDU Session.

func NewSmNasFromUe

func NewSmNasFromUe(smNasType string, timeStamp time.Time) *SmNasFromUe

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

func NewSmNasFromUeWithDefaults

func NewSmNasFromUeWithDefaults() *SmNasFromUe

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

func (*SmNasFromUe) GetSmNasType

func (o *SmNasFromUe) GetSmNasType() string

GetSmNasType returns the SmNasType field value

func (*SmNasFromUe) GetSmNasTypeOk

func (o *SmNasFromUe) GetSmNasTypeOk() (*string, bool)

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

func (*SmNasFromUe) GetTimeStamp

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

GetTimeStamp returns the TimeStamp field value

func (*SmNasFromUe) GetTimeStampOk

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

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

func (SmNasFromUe) MarshalJSON

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

func (*SmNasFromUe) SetSmNasType

func (o *SmNasFromUe) SetSmNasType(v string)

SetSmNasType sets field value

func (*SmNasFromUe) SetTimeStamp

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

SetTimeStamp sets field value

func (SmNasFromUe) ToMap

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

type SmfEvent

type SmfEvent struct {
	String *string
}

SmfEvent Possible values are: - AC_TY_CH: Access Type Change - UP_PATH_CH: UP Path Change - PDU_SES_REL: PDU Session Release - PLMN_CH: PLMN Change - UE_IP_CH: UE IP address change - RAT_TY_CH: RAT Type Change - DDDS: Downlink data delivery status - COMM_FAIL: Communication Failure - PDU_SES_EST: PDU Session Establishment - QFI_ALLOC: QFI allocation - QOS_MON: QoS Monitoring - SMCC_EXP: SM congestion control experience for PDU Session - DISPERSION: Session Management transaction dispersion - RED_TRANS_EXP: Redundant transmission experience for PDU Session - WLAN_INFO: WLAN information on PDU session for which Access Type is NON_3GPP_ACCESS and RAT Type is TRUSTED_WLAN - UPF_INFO: The UPF information, including the UPF ID/address/FQDN information. - UP_STATUS_INFO: The User Plane status information.

func (*SmfEvent) MarshalJSON

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

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

func (*SmfEvent) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Snssai

type Snssai struct {
	// Unsigned integer, within the range 0 to 255, representing the Slice/Service Type.  It indicates the expected Network Slice behaviour in terms of features and services. Values 0 to 127 correspond to the standardized SST range. Values 128 to 255 correspond  to the Operator-specific range. See clause 28.4.2 of 3GPP TS 23.003. Standardized values are defined in clause 5.15.2.2 of 3GPP TS 23.501.
	Sst int32 `json:"sst"`
	// 3-octet string, representing the Slice Differentiator, in hexadecimal representation. Each character in the string shall take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant character representing the 4 most significant bits of the SD shall appear first in the string, and the character representing the 4 least significant bit of the SD shall appear last in the string. This is an optional parameter that complements the Slice/Service type(s) to allow to  differentiate amongst multiple Network Slices of the same Slice/Service type. This IE shall be absent if no SD value is associated with the SST.
	Sd *string `json:"sd,omitempty"`
}

Snssai When Snssai needs to be converted to string (e.g. when used in maps as key), the string shall be composed of one to three digits \"sst\" optionally followed by \"-\" and 6 hexadecimal digits \"sd\".

func NewSnssai

func NewSnssai(sst int32) *Snssai

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

func NewSnssaiWithDefaults

func NewSnssaiWithDefaults() *Snssai

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

func (*Snssai) GetSd

func (o *Snssai) GetSd() string

GetSd returns the Sd field value if set, zero value otherwise.

func (*Snssai) GetSdOk

func (o *Snssai) GetSdOk() (*string, bool)

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

func (*Snssai) GetSst

func (o *Snssai) GetSst() int32

GetSst returns the Sst field value

func (*Snssai) GetSstOk

func (o *Snssai) GetSstOk() (*int32, bool)

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

func (*Snssai) HasSd

func (o *Snssai) HasSd() bool

HasSd returns a boolean if a field has been set.

func (Snssai) MarshalJSON

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

func (*Snssai) SetSd

func (o *Snssai) SetSd(v string)

SetSd gets a reference to the given string and assigns it to the Sd field.

func (*Snssai) SetSst

func (o *Snssai) SetSst(v int32)

SetSst sets field value

func (Snssai) ToMap

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

type SubscriptionsCollectionApiService

type SubscriptionsCollectionApiService service

SubscriptionsCollectionApiService SubscriptionsCollectionApi service

func (*SubscriptionsCollectionApiService) CreateIndividualSubcription

CreateIndividualSubcription Create an individual subscription for event notifications from the SMF

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

func (*SubscriptionsCollectionApiService) CreateIndividualSubcriptionExecute

Execute executes the request

@return NsmfEventExposure

type TimeWindow

type TimeWindow struct {
	// string with format \"date-time\" as defined in OpenAPI.
	StartTime time.Time `json:"startTime"`
	// string with format \"date-time\" as defined in OpenAPI.
	StopTime time.Time `json:"stopTime"`
}

TimeWindow Represents a time window identified by a start time and a stop time.

func NewTimeWindow

func NewTimeWindow(startTime time.Time, stopTime time.Time) *TimeWindow

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

func NewTimeWindowWithDefaults

func NewTimeWindowWithDefaults() *TimeWindow

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

func (*TimeWindow) GetStartTime

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

GetStartTime returns the StartTime field value

func (*TimeWindow) GetStartTimeOk

func (o *TimeWindow) GetStartTimeOk() (*time.Time, bool)

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

func (*TimeWindow) GetStopTime

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

GetStopTime returns the StopTime field value

func (*TimeWindow) GetStopTimeOk

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

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

func (TimeWindow) MarshalJSON

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

func (*TimeWindow) SetStartTime

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

SetStartTime sets field value

func (*TimeWindow) SetStopTime

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

SetStopTime sets field value

func (TimeWindow) ToMap

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

type TransactionInfo

type TransactionInfo struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Transaction    int32               `json:"transaction"`
	Snssai         *Snssai             `json:"snssai,omitempty"`
	AppIds         []string            `json:"appIds,omitempty"`
	TransacMetrics []TransactionMetric `json:"transacMetrics,omitempty"`
}

TransactionInfo Represents SMF Transaction Information.

func NewTransactionInfo

func NewTransactionInfo(transaction int32) *TransactionInfo

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

func NewTransactionInfoWithDefaults

func NewTransactionInfoWithDefaults() *TransactionInfo

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

func (*TransactionInfo) GetAppIds

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

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

func (*TransactionInfo) GetAppIdsOk

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

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

func (*TransactionInfo) GetSnssai

func (o *TransactionInfo) GetSnssai() Snssai

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

func (*TransactionInfo) GetSnssaiOk

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

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

func (*TransactionInfo) GetTransacMetrics

func (o *TransactionInfo) GetTransacMetrics() []TransactionMetric

GetTransacMetrics returns the TransacMetrics field value if set, zero value otherwise.

func (*TransactionInfo) GetTransacMetricsOk

func (o *TransactionInfo) GetTransacMetricsOk() ([]TransactionMetric, bool)

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

func (*TransactionInfo) GetTransaction

func (o *TransactionInfo) GetTransaction() int32

GetTransaction returns the Transaction field value

func (*TransactionInfo) GetTransactionOk

func (o *TransactionInfo) GetTransactionOk() (*int32, bool)

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

func (*TransactionInfo) HasAppIds

func (o *TransactionInfo) HasAppIds() bool

HasAppIds returns a boolean if a field has been set.

func (*TransactionInfo) HasSnssai

func (o *TransactionInfo) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*TransactionInfo) HasTransacMetrics

func (o *TransactionInfo) HasTransacMetrics() bool

HasTransacMetrics returns a boolean if a field has been set.

func (TransactionInfo) MarshalJSON

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

func (*TransactionInfo) SetAppIds

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

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

func (*TransactionInfo) SetSnssai

func (o *TransactionInfo) SetSnssai(v Snssai)

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

func (*TransactionInfo) SetTransacMetrics

func (o *TransactionInfo) SetTransacMetrics(v []TransactionMetric)

SetTransacMetrics gets a reference to the given []TransactionMetric and assigns it to the TransacMetrics field.

func (*TransactionInfo) SetTransaction

func (o *TransactionInfo) SetTransaction(v int32)

SetTransaction sets field value

func (TransactionInfo) ToMap

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

type TransactionMetric

type TransactionMetric struct {
	String *string
}

TransactionMetric Possible values are: - PDU_SES_EST: PDU Session Establishment - PDU_SES_AUTH: PDU Session Authentication - PDU_SES_MODIF: PDU Session Modification - PDU_SES_REL: PDU Session Release

func (*TransactionMetric) MarshalJSON

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

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

func (*TransactionMetric) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type UpfInformation

type UpfInformation struct {
	UpfId   *string   `json:"upfId,omitempty"`
	UpfAddr *AddrFqdn `json:"upfAddr,omitempty"`
}

UpfInformation Represents the ID/address/FQDN of the UPF.

func NewUpfInformation

func NewUpfInformation() *UpfInformation

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

func NewUpfInformationWithDefaults

func NewUpfInformationWithDefaults() *UpfInformation

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

func (*UpfInformation) GetUpfAddr

func (o *UpfInformation) GetUpfAddr() AddrFqdn

GetUpfAddr returns the UpfAddr field value if set, zero value otherwise.

func (*UpfInformation) GetUpfAddrOk

func (o *UpfInformation) GetUpfAddrOk() (*AddrFqdn, bool)

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

func (*UpfInformation) GetUpfId

func (o *UpfInformation) GetUpfId() string

GetUpfId returns the UpfId field value if set, zero value otherwise.

func (*UpfInformation) GetUpfIdOk

func (o *UpfInformation) GetUpfIdOk() (*string, bool)

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

func (*UpfInformation) HasUpfAddr

func (o *UpfInformation) HasUpfAddr() bool

HasUpfAddr returns a boolean if a field has been set.

func (*UpfInformation) HasUpfId

func (o *UpfInformation) HasUpfId() bool

HasUpfId returns a boolean if a field has been set.

func (UpfInformation) MarshalJSON

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

func (*UpfInformation) SetUpfAddr

func (o *UpfInformation) SetUpfAddr(v AddrFqdn)

SetUpfAddr gets a reference to the given AddrFqdn and assigns it to the UpfAddr field.

func (*UpfInformation) SetUpfId

func (o *UpfInformation) SetUpfId(v string)

SetUpfId gets a reference to the given string and assigns it to the UpfId field.

func (UpfInformation) ToMap

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

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL