openapi_Nudm_EE

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_Nudm_EE

Nudm 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_Nudm_EE "github.com/GIT_USER_ID/GIT_REPO_ID/openapi_Nudm_EE"

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

Documentation for API Endpoints

All URIs are relative to https://example.com/nudm-ee/v1

Class Method HTTP request Description
CreateEESubscriptionApi CreateEeSubscription Post /{ueIdentity}/ee-subscriptions Subscribe
DeleteEESubscriptionApi DeleteEeSubscription Delete /{ueIdentity}/ee-subscriptions/{subscriptionId} Unsubscribe
UpdateEESubscriptionApi UpdateEeSubscription Patch /{ueIdentity}/ee-subscriptions/{subscriptionId} Patch

Documentation For Models

Documentation For Authorization

oAuth2ClientCredentials
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • nudm-ee: Access to the nudm-ee 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 {
	CreateEESubscriptionApi *CreateEESubscriptionApiService

	DeleteEESubscriptionApi *DeleteEESubscriptionApiService

	UpdateEESubscriptionApi *UpdateEESubscriptionApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Nudm_EE 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 ApiCreateEeSubscriptionRequest

type ApiCreateEeSubscriptionRequest struct {
	ApiService *CreateEESubscriptionApiService
	// contains filtered or unexported fields
}

func (ApiCreateEeSubscriptionRequest) EeSubscription

func (ApiCreateEeSubscriptionRequest) Execute

type ApiDeleteEeSubscriptionRequest

type ApiDeleteEeSubscriptionRequest struct {
	ApiService *DeleteEESubscriptionApiService
	// contains filtered or unexported fields
}

func (ApiDeleteEeSubscriptionRequest) Execute

type ApiUpdateEeSubscriptionRequest

type ApiUpdateEeSubscriptionRequest struct {
	ApiService *UpdateEESubscriptionApiService
	// contains filtered or unexported fields
}

func (ApiUpdateEeSubscriptionRequest) Execute

func (ApiUpdateEeSubscriptionRequest) PatchItem

func (ApiUpdateEeSubscriptionRequest) SupportedFeatures

func (r ApiUpdateEeSubscriptionRequest) SupportedFeatures(supportedFeatures string) ApiUpdateEeSubscriptionRequest

Features required to be supported by the target NF

type AssociationType

type AssociationType struct {
	String *string
}

AssociationType struct for AssociationType

func (*AssociationType) MarshalJSON

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

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

func (*AssociationType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type BasicAuth

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

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

type CellGlobalId

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

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

func NewCellGlobalId

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

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

func NewCellGlobalIdWithDefaults

func NewCellGlobalIdWithDefaults() *CellGlobalId

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

func (*CellGlobalId) GetCellId

func (o *CellGlobalId) GetCellId() string

GetCellId returns the CellId field value

func (*CellGlobalId) GetCellIdOk

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

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

func (*CellGlobalId) GetLac

func (o *CellGlobalId) GetLac() string

GetLac returns the Lac field value

func (*CellGlobalId) GetLacOk

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

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

func (*CellGlobalId) GetPlmnId

func (o *CellGlobalId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*CellGlobalId) GetPlmnIdOk

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

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

func (CellGlobalId) MarshalJSON

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

func (*CellGlobalId) SetCellId

func (o *CellGlobalId) SetCellId(v string)

SetCellId sets field value

func (*CellGlobalId) SetLac

func (o *CellGlobalId) SetLac(v string)

SetLac sets field value

func (*CellGlobalId) SetPlmnId

func (o *CellGlobalId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (CellGlobalId) ToMap

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

type ChangeOfSupiPeiAssociationReport

type ChangeOfSupiPeiAssociationReport struct {
	// String representing a Permanent Equipment Identifier that may contain - an IMEI or IMEISV, as  specified in clause 6.2 of 3GPP TS 23.003; a MAC address for a 5G-RG or FN-RG via  wireline  access, with an indication that this address cannot be trusted for regulatory purpose if this  address cannot be used as an Equipment Identifier of the FN-RG, as specified in clause 4.7.7  of 3GPP TS23.316. Examples are imei-012345678901234 or imeisv-0123456789012345.
	NewPei string `json:"newPei"`
}

ChangeOfSupiPeiAssociationReport struct for ChangeOfSupiPeiAssociationReport

func NewChangeOfSupiPeiAssociationReport

func NewChangeOfSupiPeiAssociationReport(newPei string) *ChangeOfSupiPeiAssociationReport

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

func NewChangeOfSupiPeiAssociationReportWithDefaults

func NewChangeOfSupiPeiAssociationReportWithDefaults() *ChangeOfSupiPeiAssociationReport

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

func (*ChangeOfSupiPeiAssociationReport) GetNewPei

GetNewPei returns the NewPei field value

func (*ChangeOfSupiPeiAssociationReport) GetNewPeiOk

func (o *ChangeOfSupiPeiAssociationReport) GetNewPeiOk() (*string, bool)

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

func (ChangeOfSupiPeiAssociationReport) MarshalJSON

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

func (*ChangeOfSupiPeiAssociationReport) SetNewPei

func (o *ChangeOfSupiPeiAssociationReport) SetNewPei(v string)

SetNewPei sets field value

func (ChangeOfSupiPeiAssociationReport) ToMap

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

type CmInfo

type CmInfo struct {
	CmState    CmState    `json:"cmState"`
	AccessType AccessType `json:"accessType"`
}

CmInfo Represents the connection management state of a UE for an access type

func NewCmInfo

func NewCmInfo(cmState CmState, accessType AccessType) *CmInfo

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

func NewCmInfoWithDefaults

func NewCmInfoWithDefaults() *CmInfo

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

func (*CmInfo) GetAccessType

func (o *CmInfo) GetAccessType() AccessType

GetAccessType returns the AccessType field value

func (*CmInfo) GetAccessTypeOk

func (o *CmInfo) GetAccessTypeOk() (*AccessType, bool)

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

func (*CmInfo) GetCmState

func (o *CmInfo) GetCmState() CmState

GetCmState returns the CmState field value

func (*CmInfo) GetCmStateOk

func (o *CmInfo) GetCmStateOk() (*CmState, bool)

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

func (CmInfo) MarshalJSON

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

func (*CmInfo) SetAccessType

func (o *CmInfo) SetAccessType(v AccessType)

SetAccessType sets field value

func (*CmInfo) SetCmState

func (o *CmInfo) SetCmState(v CmState)

SetCmState sets field value

func (CmInfo) ToMap

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

type CmInfoReport

type CmInfoReport struct {
	OldCmInfoList []CmInfo `json:"oldCmInfoList,omitempty"`
	NewCmInfoList []CmInfo `json:"newCmInfoList"`
}

CmInfoReport struct for CmInfoReport

func NewCmInfoReport

func NewCmInfoReport(newCmInfoList []CmInfo) *CmInfoReport

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

func NewCmInfoReportWithDefaults

func NewCmInfoReportWithDefaults() *CmInfoReport

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

func (*CmInfoReport) GetNewCmInfoList

func (o *CmInfoReport) GetNewCmInfoList() []CmInfo

GetNewCmInfoList returns the NewCmInfoList field value

func (*CmInfoReport) GetNewCmInfoListOk

func (o *CmInfoReport) GetNewCmInfoListOk() ([]CmInfo, bool)

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

func (*CmInfoReport) GetOldCmInfoList

func (o *CmInfoReport) GetOldCmInfoList() []CmInfo

GetOldCmInfoList returns the OldCmInfoList field value if set, zero value otherwise.

func (*CmInfoReport) GetOldCmInfoListOk

func (o *CmInfoReport) GetOldCmInfoListOk() ([]CmInfo, bool)

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

func (*CmInfoReport) HasOldCmInfoList

func (o *CmInfoReport) HasOldCmInfoList() bool

HasOldCmInfoList returns a boolean if a field has been set.

func (CmInfoReport) MarshalJSON

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

func (*CmInfoReport) SetNewCmInfoList

func (o *CmInfoReport) SetNewCmInfoList(v []CmInfo)

SetNewCmInfoList sets field value

func (*CmInfoReport) SetOldCmInfoList

func (o *CmInfoReport) SetOldCmInfoList(v []CmInfo)

SetOldCmInfoList gets a reference to the given []CmInfo and assigns it to the OldCmInfoList field.

func (CmInfoReport) ToMap

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

type CmState

type CmState struct {
	String *string
}

CmState Describes the connection management state of a UE

func (*CmState) MarshalJSON

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

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

func (*CmState) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type CnType

type CnType struct {
	String *string
}

CnType struct for CnType

func (*CnType) MarshalJSON

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

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

func (*CnType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type CnTypeChangeReport

type CnTypeChangeReport struct {
	NewCnType CnType  `json:"newCnType"`
	OldCnType *CnType `json:"oldCnType,omitempty"`
}

CnTypeChangeReport struct for CnTypeChangeReport

func NewCnTypeChangeReport

func NewCnTypeChangeReport(newCnType CnType) *CnTypeChangeReport

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

func NewCnTypeChangeReportWithDefaults

func NewCnTypeChangeReportWithDefaults() *CnTypeChangeReport

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

func (*CnTypeChangeReport) GetNewCnType

func (o *CnTypeChangeReport) GetNewCnType() CnType

GetNewCnType returns the NewCnType field value

func (*CnTypeChangeReport) GetNewCnTypeOk

func (o *CnTypeChangeReport) GetNewCnTypeOk() (*CnType, bool)

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

func (*CnTypeChangeReport) GetOldCnType

func (o *CnTypeChangeReport) GetOldCnType() CnType

GetOldCnType returns the OldCnType field value if set, zero value otherwise.

func (*CnTypeChangeReport) GetOldCnTypeOk

func (o *CnTypeChangeReport) GetOldCnTypeOk() (*CnType, bool)

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

func (*CnTypeChangeReport) HasOldCnType

func (o *CnTypeChangeReport) HasOldCnType() bool

HasOldCnType returns a boolean if a field has been set.

func (CnTypeChangeReport) MarshalJSON

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

func (*CnTypeChangeReport) SetNewCnType

func (o *CnTypeChangeReport) SetNewCnType(v CnType)

SetNewCnType sets field value

func (*CnTypeChangeReport) SetOldCnType

func (o *CnTypeChangeReport) SetOldCnType(v CnType)

SetOldCnType gets a reference to the given CnType and assigns it to the OldCnType field.

func (CnTypeChangeReport) ToMap

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

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

type ContextInfo struct {
	OrigHeaders    []string `json:"origHeaders,omitempty"`
	RequestHeaders []string `json:"requestHeaders,omitempty"`
}

ContextInfo struct for ContextInfo

func NewContextInfo

func NewContextInfo() *ContextInfo

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

func NewContextInfoWithDefaults

func NewContextInfoWithDefaults() *ContextInfo

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

func (*ContextInfo) GetOrigHeaders

func (o *ContextInfo) GetOrigHeaders() []string

GetOrigHeaders returns the OrigHeaders field value if set, zero value otherwise.

func (*ContextInfo) GetOrigHeadersOk

func (o *ContextInfo) GetOrigHeadersOk() ([]string, bool)

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

func (*ContextInfo) GetRequestHeaders

func (o *ContextInfo) GetRequestHeaders() []string

GetRequestHeaders returns the RequestHeaders field value if set, zero value otherwise.

func (*ContextInfo) GetRequestHeadersOk

func (o *ContextInfo) GetRequestHeadersOk() ([]string, bool)

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

func (*ContextInfo) HasOrigHeaders

func (o *ContextInfo) HasOrigHeaders() bool

HasOrigHeaders returns a boolean if a field has been set.

func (*ContextInfo) HasRequestHeaders

func (o *ContextInfo) HasRequestHeaders() bool

HasRequestHeaders returns a boolean if a field has been set.

func (ContextInfo) MarshalJSON

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

func (*ContextInfo) SetOrigHeaders

func (o *ContextInfo) SetOrigHeaders(v []string)

SetOrigHeaders gets a reference to the given []string and assigns it to the OrigHeaders field.

func (*ContextInfo) SetRequestHeaders

func (o *ContextInfo) SetRequestHeaders(v []string)

SetRequestHeaders gets a reference to the given []string and assigns it to the RequestHeaders field.

func (ContextInfo) ToMap

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

type CreateEESubscriptionApiService

type CreateEESubscriptionApiService service

CreateEESubscriptionApiService CreateEESubscriptionApi service

func (*CreateEESubscriptionApiService) CreateEeSubscription

func (a *CreateEESubscriptionApiService) CreateEeSubscription(ctx context.Context, ueIdentity string) ApiCreateEeSubscriptionRequest

CreateEeSubscription Subscribe

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ueIdentity Represents the scope of the UE for which the subscription is applied. Contains the GPSI of the user or the external group ID or any UE.
@return ApiCreateEeSubscriptionRequest

func (*CreateEESubscriptionApiService) CreateEeSubscriptionExecute

Execute executes the request

@return CreatedEeSubscription

type CreatedEeSubscription

type CreatedEeSubscription struct {
	EeSubscription EeSubscription `json:"eeSubscription"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	NumberOfUes  *int32             `json:"numberOfUes,omitempty"`
	EventReports []MonitoringReport `json:"eventReports,omitempty"`
	EpcStatusInd *bool              `json:"epcStatusInd,omitempty"`
	// A map (list of key-value pairs where referenceId converted from integer to string serves as key; see clause 6.4.6.3.2) of FailedMonitoringConfiguration
	FailedMonitoringConfigs *map[string]FailedMonitoringConfiguration `json:"failedMonitoringConfigs,omitempty"`
	// A map (list of key-value pairs where referenceId converted from integer to string serves as key; see clause 6.4.6.3.2) of FailedMonitoringConfiguration, the key value \"ALL\" may be used to identify a map entry which contains the failed cause of the EE subscription was not successful in EPC domain.
	FailedMoniConfigsEPC *map[string]FailedMonitoringConfiguration `json:"failedMoniConfigsEPC,omitempty"`
	ResetIds             []string                                  `json:"resetIds,omitempty"`
}

CreatedEeSubscription struct for CreatedEeSubscription

func NewCreatedEeSubscription

func NewCreatedEeSubscription(eeSubscription EeSubscription) *CreatedEeSubscription

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

func NewCreatedEeSubscriptionWithDefaults

func NewCreatedEeSubscriptionWithDefaults() *CreatedEeSubscription

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

func (*CreatedEeSubscription) GetEeSubscription

func (o *CreatedEeSubscription) GetEeSubscription() EeSubscription

GetEeSubscription returns the EeSubscription field value

func (*CreatedEeSubscription) GetEeSubscriptionOk

func (o *CreatedEeSubscription) GetEeSubscriptionOk() (*EeSubscription, bool)

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

func (*CreatedEeSubscription) GetEpcStatusInd

func (o *CreatedEeSubscription) GetEpcStatusInd() bool

GetEpcStatusInd returns the EpcStatusInd field value if set, zero value otherwise.

func (*CreatedEeSubscription) GetEpcStatusIndOk

func (o *CreatedEeSubscription) GetEpcStatusIndOk() (*bool, bool)

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

func (*CreatedEeSubscription) GetEventReports

func (o *CreatedEeSubscription) GetEventReports() []MonitoringReport

GetEventReports returns the EventReports field value if set, zero value otherwise.

func (*CreatedEeSubscription) GetEventReportsOk

func (o *CreatedEeSubscription) GetEventReportsOk() ([]MonitoringReport, bool)

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

func (*CreatedEeSubscription) GetFailedMoniConfigsEPC

func (o *CreatedEeSubscription) GetFailedMoniConfigsEPC() map[string]FailedMonitoringConfiguration

GetFailedMoniConfigsEPC returns the FailedMoniConfigsEPC field value if set, zero value otherwise.

func (*CreatedEeSubscription) GetFailedMoniConfigsEPCOk

func (o *CreatedEeSubscription) GetFailedMoniConfigsEPCOk() (*map[string]FailedMonitoringConfiguration, bool)

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

func (*CreatedEeSubscription) GetFailedMonitoringConfigs

func (o *CreatedEeSubscription) GetFailedMonitoringConfigs() map[string]FailedMonitoringConfiguration

GetFailedMonitoringConfigs returns the FailedMonitoringConfigs field value if set, zero value otherwise.

func (*CreatedEeSubscription) GetFailedMonitoringConfigsOk

func (o *CreatedEeSubscription) GetFailedMonitoringConfigsOk() (*map[string]FailedMonitoringConfiguration, bool)

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

func (*CreatedEeSubscription) GetNumberOfUes

func (o *CreatedEeSubscription) GetNumberOfUes() int32

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

func (*CreatedEeSubscription) GetNumberOfUesOk

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

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

func (*CreatedEeSubscription) GetResetIds

func (o *CreatedEeSubscription) GetResetIds() []string

GetResetIds returns the ResetIds field value if set, zero value otherwise.

func (*CreatedEeSubscription) GetResetIdsOk

func (o *CreatedEeSubscription) GetResetIdsOk() ([]string, bool)

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

func (*CreatedEeSubscription) HasEpcStatusInd

func (o *CreatedEeSubscription) HasEpcStatusInd() bool

HasEpcStatusInd returns a boolean if a field has been set.

func (*CreatedEeSubscription) HasEventReports

func (o *CreatedEeSubscription) HasEventReports() bool

HasEventReports returns a boolean if a field has been set.

func (*CreatedEeSubscription) HasFailedMoniConfigsEPC

func (o *CreatedEeSubscription) HasFailedMoniConfigsEPC() bool

HasFailedMoniConfigsEPC returns a boolean if a field has been set.

func (*CreatedEeSubscription) HasFailedMonitoringConfigs

func (o *CreatedEeSubscription) HasFailedMonitoringConfigs() bool

HasFailedMonitoringConfigs returns a boolean if a field has been set.

func (*CreatedEeSubscription) HasNumberOfUes

func (o *CreatedEeSubscription) HasNumberOfUes() bool

HasNumberOfUes returns a boolean if a field has been set.

func (*CreatedEeSubscription) HasResetIds

func (o *CreatedEeSubscription) HasResetIds() bool

HasResetIds returns a boolean if a field has been set.

func (CreatedEeSubscription) MarshalJSON

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

func (*CreatedEeSubscription) SetEeSubscription

func (o *CreatedEeSubscription) SetEeSubscription(v EeSubscription)

SetEeSubscription sets field value

func (*CreatedEeSubscription) SetEpcStatusInd

func (o *CreatedEeSubscription) SetEpcStatusInd(v bool)

SetEpcStatusInd gets a reference to the given bool and assigns it to the EpcStatusInd field.

func (*CreatedEeSubscription) SetEventReports

func (o *CreatedEeSubscription) SetEventReports(v []MonitoringReport)

SetEventReports gets a reference to the given []MonitoringReport and assigns it to the EventReports field.

func (*CreatedEeSubscription) SetFailedMoniConfigsEPC

func (o *CreatedEeSubscription) SetFailedMoniConfigsEPC(v map[string]FailedMonitoringConfiguration)

SetFailedMoniConfigsEPC gets a reference to the given map[string]FailedMonitoringConfiguration and assigns it to the FailedMoniConfigsEPC field.

func (*CreatedEeSubscription) SetFailedMonitoringConfigs

func (o *CreatedEeSubscription) SetFailedMonitoringConfigs(v map[string]FailedMonitoringConfiguration)

SetFailedMonitoringConfigs gets a reference to the given map[string]FailedMonitoringConfiguration and assigns it to the FailedMonitoringConfigs field.

func (*CreatedEeSubscription) SetNumberOfUes

func (o *CreatedEeSubscription) SetNumberOfUes(v int32)

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

func (*CreatedEeSubscription) SetResetIds

func (o *CreatedEeSubscription) SetResetIds(v []string)

SetResetIds gets a reference to the given []string and assigns it to the ResetIds field.

func (CreatedEeSubscription) ToMap

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

type DataRestorationNotification

type DataRestorationNotification struct {
	// string with format 'date-time' as defined in OpenAPI.
	LastReplicationTime *time.Time `json:"lastReplicationTime,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	RecoveryTime *time.Time      `json:"recoveryTime,omitempty"`
	PlmnId       *PlmnId         `json:"plmnId,omitempty"`
	SupiRanges   []SupiRange     `json:"supiRanges,omitempty"`
	GpsiRanges   []IdentityRange `json:"gpsiRanges,omitempty"`
	ResetIds     []string        `json:"resetIds,omitempty"`
	SNssaiList   []Snssai        `json:"sNssaiList,omitempty"`
	DnnList      []string        `json:"dnnList,omitempty"`
	// Identifier of a group of NFs.
	UdmGroupId *string `json:"udmGroupId,omitempty"`
}

DataRestorationNotification Contains identities representing those UEs potentially affected by a data-loss event at the UDR

func NewDataRestorationNotification

func NewDataRestorationNotification() *DataRestorationNotification

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

func NewDataRestorationNotificationWithDefaults

func NewDataRestorationNotificationWithDefaults() *DataRestorationNotification

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

func (*DataRestorationNotification) GetDnnList

func (o *DataRestorationNotification) GetDnnList() []string

GetDnnList returns the DnnList field value if set, zero value otherwise.

func (*DataRestorationNotification) GetDnnListOk

func (o *DataRestorationNotification) GetDnnListOk() ([]string, bool)

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

func (*DataRestorationNotification) GetGpsiRanges

func (o *DataRestorationNotification) GetGpsiRanges() []IdentityRange

GetGpsiRanges returns the GpsiRanges field value if set, zero value otherwise.

func (*DataRestorationNotification) GetGpsiRangesOk

func (o *DataRestorationNotification) GetGpsiRangesOk() ([]IdentityRange, bool)

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

func (*DataRestorationNotification) GetLastReplicationTime

func (o *DataRestorationNotification) GetLastReplicationTime() time.Time

GetLastReplicationTime returns the LastReplicationTime field value if set, zero value otherwise.

func (*DataRestorationNotification) GetLastReplicationTimeOk

func (o *DataRestorationNotification) GetLastReplicationTimeOk() (*time.Time, bool)

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

func (*DataRestorationNotification) GetPlmnId

func (o *DataRestorationNotification) GetPlmnId() PlmnId

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

func (*DataRestorationNotification) GetPlmnIdOk

func (o *DataRestorationNotification) 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 (*DataRestorationNotification) GetRecoveryTime

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

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

func (*DataRestorationNotification) GetRecoveryTimeOk

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

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

func (*DataRestorationNotification) GetResetIds

func (o *DataRestorationNotification) GetResetIds() []string

GetResetIds returns the ResetIds field value if set, zero value otherwise.

func (*DataRestorationNotification) GetResetIdsOk

func (o *DataRestorationNotification) GetResetIdsOk() ([]string, bool)

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

func (*DataRestorationNotification) GetSNssaiList

func (o *DataRestorationNotification) GetSNssaiList() []Snssai

GetSNssaiList returns the SNssaiList field value if set, zero value otherwise.

func (*DataRestorationNotification) GetSNssaiListOk

func (o *DataRestorationNotification) GetSNssaiListOk() ([]Snssai, bool)

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

func (*DataRestorationNotification) GetSupiRanges

func (o *DataRestorationNotification) GetSupiRanges() []SupiRange

GetSupiRanges returns the SupiRanges field value if set, zero value otherwise.

func (*DataRestorationNotification) GetSupiRangesOk

func (o *DataRestorationNotification) GetSupiRangesOk() ([]SupiRange, bool)

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

func (*DataRestorationNotification) GetUdmGroupId

func (o *DataRestorationNotification) GetUdmGroupId() string

GetUdmGroupId returns the UdmGroupId field value if set, zero value otherwise.

func (*DataRestorationNotification) GetUdmGroupIdOk

func (o *DataRestorationNotification) GetUdmGroupIdOk() (*string, bool)

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

func (*DataRestorationNotification) HasDnnList

func (o *DataRestorationNotification) HasDnnList() bool

HasDnnList returns a boolean if a field has been set.

func (*DataRestorationNotification) HasGpsiRanges

func (o *DataRestorationNotification) HasGpsiRanges() bool

HasGpsiRanges returns a boolean if a field has been set.

func (*DataRestorationNotification) HasLastReplicationTime

func (o *DataRestorationNotification) HasLastReplicationTime() bool

HasLastReplicationTime returns a boolean if a field has been set.

func (*DataRestorationNotification) HasPlmnId

func (o *DataRestorationNotification) HasPlmnId() bool

HasPlmnId returns a boolean if a field has been set.

func (*DataRestorationNotification) HasRecoveryTime

func (o *DataRestorationNotification) HasRecoveryTime() bool

HasRecoveryTime returns a boolean if a field has been set.

func (*DataRestorationNotification) HasResetIds

func (o *DataRestorationNotification) HasResetIds() bool

HasResetIds returns a boolean if a field has been set.

func (*DataRestorationNotification) HasSNssaiList

func (o *DataRestorationNotification) HasSNssaiList() bool

HasSNssaiList returns a boolean if a field has been set.

func (*DataRestorationNotification) HasSupiRanges

func (o *DataRestorationNotification) HasSupiRanges() bool

HasSupiRanges returns a boolean if a field has been set.

func (*DataRestorationNotification) HasUdmGroupId

func (o *DataRestorationNotification) HasUdmGroupId() bool

HasUdmGroupId returns a boolean if a field has been set.

func (DataRestorationNotification) MarshalJSON

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

func (*DataRestorationNotification) SetDnnList

func (o *DataRestorationNotification) SetDnnList(v []string)

SetDnnList gets a reference to the given []string and assigns it to the DnnList field.

func (*DataRestorationNotification) SetGpsiRanges

func (o *DataRestorationNotification) SetGpsiRanges(v []IdentityRange)

SetGpsiRanges gets a reference to the given []IdentityRange and assigns it to the GpsiRanges field.

func (*DataRestorationNotification) SetLastReplicationTime

func (o *DataRestorationNotification) SetLastReplicationTime(v time.Time)

SetLastReplicationTime gets a reference to the given time.Time and assigns it to the LastReplicationTime field.

func (*DataRestorationNotification) SetPlmnId

func (o *DataRestorationNotification) SetPlmnId(v PlmnId)

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

func (*DataRestorationNotification) SetRecoveryTime

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

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

func (*DataRestorationNotification) SetResetIds

func (o *DataRestorationNotification) SetResetIds(v []string)

SetResetIds gets a reference to the given []string and assigns it to the ResetIds field.

func (*DataRestorationNotification) SetSNssaiList

func (o *DataRestorationNotification) SetSNssaiList(v []Snssai)

SetSNssaiList gets a reference to the given []Snssai and assigns it to the SNssaiList field.

func (*DataRestorationNotification) SetSupiRanges

func (o *DataRestorationNotification) SetSupiRanges(v []SupiRange)

SetSupiRanges gets a reference to the given []SupiRange and assigns it to the SupiRanges field.

func (*DataRestorationNotification) SetUdmGroupId

func (o *DataRestorationNotification) SetUdmGroupId(v string)

SetUdmGroupId gets a reference to the given string and assigns it to the UdmGroupId field.

func (DataRestorationNotification) ToMap

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

type DatalinkReportingConfiguration

type DatalinkReportingConfiguration struct {
	DddTrafficDes []DddTrafficDescriptor `json:"dddTrafficDes,omitempty"`
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn           *string                `json:"dnn,omitempty"`
	Slice         *Snssai                `json:"slice,omitempty"`
	DddStatusList []DlDataDeliveryStatus `json:"dddStatusList,omitempty"`
}

DatalinkReportingConfiguration struct for DatalinkReportingConfiguration

func NewDatalinkReportingConfiguration

func NewDatalinkReportingConfiguration() *DatalinkReportingConfiguration

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

func NewDatalinkReportingConfigurationWithDefaults

func NewDatalinkReportingConfigurationWithDefaults() *DatalinkReportingConfiguration

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

func (*DatalinkReportingConfiguration) GetDddStatusList

func (o *DatalinkReportingConfiguration) GetDddStatusList() []DlDataDeliveryStatus

GetDddStatusList returns the DddStatusList field value if set, zero value otherwise.

func (*DatalinkReportingConfiguration) GetDddStatusListOk

func (o *DatalinkReportingConfiguration) GetDddStatusListOk() ([]DlDataDeliveryStatus, bool)

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

func (*DatalinkReportingConfiguration) GetDddTrafficDes

func (o *DatalinkReportingConfiguration) GetDddTrafficDes() []DddTrafficDescriptor

GetDddTrafficDes returns the DddTrafficDes field value if set, zero value otherwise.

func (*DatalinkReportingConfiguration) GetDddTrafficDesOk

func (o *DatalinkReportingConfiguration) GetDddTrafficDesOk() ([]DddTrafficDescriptor, bool)

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

func (*DatalinkReportingConfiguration) GetDnn

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

func (*DatalinkReportingConfiguration) GetDnnOk

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

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

func (*DatalinkReportingConfiguration) GetSlice

func (o *DatalinkReportingConfiguration) GetSlice() Snssai

GetSlice returns the Slice field value if set, zero value otherwise.

func (*DatalinkReportingConfiguration) GetSliceOk

func (o *DatalinkReportingConfiguration) GetSliceOk() (*Snssai, bool)

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

func (*DatalinkReportingConfiguration) HasDddStatusList

func (o *DatalinkReportingConfiguration) HasDddStatusList() bool

HasDddStatusList returns a boolean if a field has been set.

func (*DatalinkReportingConfiguration) HasDddTrafficDes

func (o *DatalinkReportingConfiguration) HasDddTrafficDes() bool

HasDddTrafficDes returns a boolean if a field has been set.

func (*DatalinkReportingConfiguration) HasDnn

HasDnn returns a boolean if a field has been set.

func (*DatalinkReportingConfiguration) HasSlice

func (o *DatalinkReportingConfiguration) HasSlice() bool

HasSlice returns a boolean if a field has been set.

func (DatalinkReportingConfiguration) MarshalJSON

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

func (*DatalinkReportingConfiguration) SetDddStatusList

func (o *DatalinkReportingConfiguration) SetDddStatusList(v []DlDataDeliveryStatus)

SetDddStatusList gets a reference to the given []DlDataDeliveryStatus and assigns it to the DddStatusList field.

func (*DatalinkReportingConfiguration) SetDddTrafficDes

func (o *DatalinkReportingConfiguration) SetDddTrafficDes(v []DddTrafficDescriptor)

SetDddTrafficDes gets a reference to the given []DddTrafficDescriptor and assigns it to the DddTrafficDes field.

func (*DatalinkReportingConfiguration) SetDnn

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

func (*DatalinkReportingConfiguration) SetSlice

func (o *DatalinkReportingConfiguration) SetSlice(v Snssai)

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

func (DatalinkReportingConfiguration) ToMap

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

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

type DeleteEESubscriptionApiService service

DeleteEESubscriptionApiService DeleteEESubscriptionApi service

func (*DeleteEESubscriptionApiService) DeleteEeSubscription

func (a *DeleteEESubscriptionApiService) DeleteEeSubscription(ctx context.Context, ueIdentity string, subscriptionId string) ApiDeleteEeSubscriptionRequest

DeleteEeSubscription Unsubscribe

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ueIdentity Represents the scope of the UE for which the subscription is applied. Contains the GPSI of the user or the external group ID or any UE.
@param subscriptionId Id of the EE Subscription
@return ApiDeleteEeSubscriptionRequest

func (*DeleteEESubscriptionApiService) DeleteEeSubscriptionExecute

Execute executes the request

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 Ecgi

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

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

func NewEcgi

func NewEcgi(plmnId PlmnId, eutraCellId string) *Ecgi

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

func NewEcgiWithDefaults

func NewEcgiWithDefaults() *Ecgi

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

func (*Ecgi) GetEutraCellId

func (o *Ecgi) GetEutraCellId() string

GetEutraCellId returns the EutraCellId field value

func (*Ecgi) GetEutraCellIdOk

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

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

func (*Ecgi) GetNid

func (o *Ecgi) GetNid() string

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

func (*Ecgi) GetNidOk

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

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

func (*Ecgi) GetPlmnId

func (o *Ecgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Ecgi) GetPlmnIdOk

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

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

func (*Ecgi) HasNid

func (o *Ecgi) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Ecgi) MarshalJSON

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

func (*Ecgi) SetEutraCellId

func (o *Ecgi) SetEutraCellId(v string)

SetEutraCellId sets field value

func (*Ecgi) SetNid

func (o *Ecgi) SetNid(v string)

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

func (*Ecgi) SetPlmnId

func (o *Ecgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Ecgi) ToMap

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

type EeMonitoringRevoked

type EeMonitoringRevoked struct {
	// A map (list of key-value pairs where ReferenceId serves as key) of MonitoringEvents
	RevokedMonitoringEventList map[string]MonitoringEvent `json:"revokedMonitoringEventList"`
	// 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.
	RemovedGpsi     *string  `json:"removedGpsi,omitempty"`
	ExcludeGpsiList []string `json:"excludeGpsiList,omitempty"`
}

EeMonitoringRevoked struct for EeMonitoringRevoked

func NewEeMonitoringRevoked

func NewEeMonitoringRevoked(revokedMonitoringEventList map[string]MonitoringEvent) *EeMonitoringRevoked

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

func NewEeMonitoringRevokedWithDefaults

func NewEeMonitoringRevokedWithDefaults() *EeMonitoringRevoked

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

func (*EeMonitoringRevoked) GetExcludeGpsiList

func (o *EeMonitoringRevoked) GetExcludeGpsiList() []string

GetExcludeGpsiList returns the ExcludeGpsiList field value if set, zero value otherwise.

func (*EeMonitoringRevoked) GetExcludeGpsiListOk

func (o *EeMonitoringRevoked) GetExcludeGpsiListOk() ([]string, bool)

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

func (*EeMonitoringRevoked) GetRemovedGpsi

func (o *EeMonitoringRevoked) GetRemovedGpsi() string

GetRemovedGpsi returns the RemovedGpsi field value if set, zero value otherwise.

func (*EeMonitoringRevoked) GetRemovedGpsiOk

func (o *EeMonitoringRevoked) GetRemovedGpsiOk() (*string, bool)

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

func (*EeMonitoringRevoked) GetRevokedMonitoringEventList

func (o *EeMonitoringRevoked) GetRevokedMonitoringEventList() map[string]MonitoringEvent

GetRevokedMonitoringEventList returns the RevokedMonitoringEventList field value

func (*EeMonitoringRevoked) GetRevokedMonitoringEventListOk

func (o *EeMonitoringRevoked) GetRevokedMonitoringEventListOk() (*map[string]MonitoringEvent, bool)

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

func (*EeMonitoringRevoked) HasExcludeGpsiList

func (o *EeMonitoringRevoked) HasExcludeGpsiList() bool

HasExcludeGpsiList returns a boolean if a field has been set.

func (*EeMonitoringRevoked) HasRemovedGpsi

func (o *EeMonitoringRevoked) HasRemovedGpsi() bool

HasRemovedGpsi returns a boolean if a field has been set.

func (EeMonitoringRevoked) MarshalJSON

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

func (*EeMonitoringRevoked) SetExcludeGpsiList

func (o *EeMonitoringRevoked) SetExcludeGpsiList(v []string)

SetExcludeGpsiList gets a reference to the given []string and assigns it to the ExcludeGpsiList field.

func (*EeMonitoringRevoked) SetRemovedGpsi

func (o *EeMonitoringRevoked) SetRemovedGpsi(v string)

SetRemovedGpsi gets a reference to the given string and assigns it to the RemovedGpsi field.

func (*EeMonitoringRevoked) SetRevokedMonitoringEventList

func (o *EeMonitoringRevoked) SetRevokedMonitoringEventList(v map[string]MonitoringEvent)

SetRevokedMonitoringEventList sets field value

func (EeMonitoringRevoked) ToMap

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

type EeSubscription

type EeSubscription struct {
	// String providing an URI formatted according to RFC 3986.
	CallbackReference string `json:"callbackReference"`
	// A map (list of key-value pairs where ReferenceId serves as key) of MonitoringConfigurations
	MonitoringConfigurations map[string]MonitoringConfiguration `json:"monitoringConfigurations"`
	ReportingOptions         *ReportingOptions                  `json:"reportingOptions,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures *string      `json:"supportedFeatures,omitempty"`
	SubscriptionId    *string      `json:"subscriptionId,omitempty"`
	ContextInfo       *ContextInfo `json:"contextInfo,omitempty"`
	EpcAppliedInd     *bool        `json:"epcAppliedInd,omitempty"`
	// Fully Qualified Domain Name
	ScefDiamHost *string `json:"scefDiamHost,omitempty"`
	// Fully Qualified Domain Name
	ScefDiamRealm       *string `json:"scefDiamRealm,omitempty"`
	NotifyCorrelationId *string `json:"notifyCorrelationId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	SecondCallbackRef *string `json:"secondCallbackRef,omitempty"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi            *string  `json:"gpsi,omitempty"`
	ExcludeGpsiList []string `json:"excludeGpsiList,omitempty"`
	IncludeGpsiList []string `json:"includeGpsiList,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	DataRestorationCallbackUri *string `json:"dataRestorationCallbackUri,omitempty"`
}

EeSubscription struct for EeSubscription

func NewEeSubscription

func NewEeSubscription(callbackReference string, monitoringConfigurations map[string]MonitoringConfiguration) *EeSubscription

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

func NewEeSubscriptionWithDefaults

func NewEeSubscriptionWithDefaults() *EeSubscription

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

func (*EeSubscription) GetCallbackReference

func (o *EeSubscription) GetCallbackReference() string

GetCallbackReference returns the CallbackReference field value

func (*EeSubscription) GetCallbackReferenceOk

func (o *EeSubscription) GetCallbackReferenceOk() (*string, bool)

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

func (*EeSubscription) GetContextInfo

func (o *EeSubscription) GetContextInfo() ContextInfo

GetContextInfo returns the ContextInfo field value if set, zero value otherwise.

func (*EeSubscription) GetContextInfoOk

func (o *EeSubscription) GetContextInfoOk() (*ContextInfo, bool)

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

func (*EeSubscription) GetDataRestorationCallbackUri

func (o *EeSubscription) GetDataRestorationCallbackUri() string

GetDataRestorationCallbackUri returns the DataRestorationCallbackUri field value if set, zero value otherwise.

func (*EeSubscription) GetDataRestorationCallbackUriOk

func (o *EeSubscription) GetDataRestorationCallbackUriOk() (*string, bool)

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

func (*EeSubscription) GetEpcAppliedInd

func (o *EeSubscription) GetEpcAppliedInd() bool

GetEpcAppliedInd returns the EpcAppliedInd field value if set, zero value otherwise.

func (*EeSubscription) GetEpcAppliedIndOk

func (o *EeSubscription) GetEpcAppliedIndOk() (*bool, bool)

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

func (*EeSubscription) GetExcludeGpsiList

func (o *EeSubscription) GetExcludeGpsiList() []string

GetExcludeGpsiList returns the ExcludeGpsiList field value if set, zero value otherwise.

func (*EeSubscription) GetExcludeGpsiListOk

func (o *EeSubscription) GetExcludeGpsiListOk() ([]string, bool)

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

func (*EeSubscription) GetGpsi

func (o *EeSubscription) GetGpsi() string

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

func (*EeSubscription) GetGpsiOk

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

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

func (*EeSubscription) GetIncludeGpsiList

func (o *EeSubscription) GetIncludeGpsiList() []string

GetIncludeGpsiList returns the IncludeGpsiList field value if set, zero value otherwise.

func (*EeSubscription) GetIncludeGpsiListOk

func (o *EeSubscription) GetIncludeGpsiListOk() ([]string, bool)

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

func (*EeSubscription) GetMonitoringConfigurations

func (o *EeSubscription) GetMonitoringConfigurations() map[string]MonitoringConfiguration

GetMonitoringConfigurations returns the MonitoringConfigurations field value

func (*EeSubscription) GetMonitoringConfigurationsOk

func (o *EeSubscription) GetMonitoringConfigurationsOk() (*map[string]MonitoringConfiguration, bool)

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

func (*EeSubscription) GetNotifyCorrelationId

func (o *EeSubscription) GetNotifyCorrelationId() string

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

func (*EeSubscription) GetNotifyCorrelationIdOk

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

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

func (*EeSubscription) GetReportingOptions

func (o *EeSubscription) GetReportingOptions() ReportingOptions

GetReportingOptions returns the ReportingOptions field value if set, zero value otherwise.

func (*EeSubscription) GetReportingOptionsOk

func (o *EeSubscription) GetReportingOptionsOk() (*ReportingOptions, bool)

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

func (*EeSubscription) GetScefDiamHost

func (o *EeSubscription) GetScefDiamHost() string

GetScefDiamHost returns the ScefDiamHost field value if set, zero value otherwise.

func (*EeSubscription) GetScefDiamHostOk

func (o *EeSubscription) GetScefDiamHostOk() (*string, bool)

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

func (*EeSubscription) GetScefDiamRealm

func (o *EeSubscription) GetScefDiamRealm() string

GetScefDiamRealm returns the ScefDiamRealm field value if set, zero value otherwise.

func (*EeSubscription) GetScefDiamRealmOk

func (o *EeSubscription) GetScefDiamRealmOk() (*string, bool)

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

func (*EeSubscription) GetSecondCallbackRef

func (o *EeSubscription) GetSecondCallbackRef() string

GetSecondCallbackRef returns the SecondCallbackRef field value if set, zero value otherwise.

func (*EeSubscription) GetSecondCallbackRefOk

func (o *EeSubscription) GetSecondCallbackRefOk() (*string, bool)

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

func (*EeSubscription) GetSubscriptionId

func (o *EeSubscription) GetSubscriptionId() string

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

func (*EeSubscription) GetSubscriptionIdOk

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

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

func (*EeSubscription) GetSupportedFeatures

func (o *EeSubscription) GetSupportedFeatures() string

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

func (*EeSubscription) GetSupportedFeaturesOk

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

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

func (*EeSubscription) HasContextInfo

func (o *EeSubscription) HasContextInfo() bool

HasContextInfo returns a boolean if a field has been set.

func (*EeSubscription) HasDataRestorationCallbackUri

func (o *EeSubscription) HasDataRestorationCallbackUri() bool

HasDataRestorationCallbackUri returns a boolean if a field has been set.

func (*EeSubscription) HasEpcAppliedInd

func (o *EeSubscription) HasEpcAppliedInd() bool

HasEpcAppliedInd returns a boolean if a field has been set.

func (*EeSubscription) HasExcludeGpsiList

func (o *EeSubscription) HasExcludeGpsiList() bool

HasExcludeGpsiList returns a boolean if a field has been set.

func (*EeSubscription) HasGpsi

func (o *EeSubscription) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*EeSubscription) HasIncludeGpsiList

func (o *EeSubscription) HasIncludeGpsiList() bool

HasIncludeGpsiList returns a boolean if a field has been set.

func (*EeSubscription) HasNotifyCorrelationId

func (o *EeSubscription) HasNotifyCorrelationId() bool

HasNotifyCorrelationId returns a boolean if a field has been set.

func (*EeSubscription) HasReportingOptions

func (o *EeSubscription) HasReportingOptions() bool

HasReportingOptions returns a boolean if a field has been set.

func (*EeSubscription) HasScefDiamHost

func (o *EeSubscription) HasScefDiamHost() bool

HasScefDiamHost returns a boolean if a field has been set.

func (*EeSubscription) HasScefDiamRealm

func (o *EeSubscription) HasScefDiamRealm() bool

HasScefDiamRealm returns a boolean if a field has been set.

func (*EeSubscription) HasSecondCallbackRef

func (o *EeSubscription) HasSecondCallbackRef() bool

HasSecondCallbackRef returns a boolean if a field has been set.

func (*EeSubscription) HasSubscriptionId

func (o *EeSubscription) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*EeSubscription) HasSupportedFeatures

func (o *EeSubscription) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (EeSubscription) MarshalJSON

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

func (*EeSubscription) SetCallbackReference

func (o *EeSubscription) SetCallbackReference(v string)

SetCallbackReference sets field value

func (*EeSubscription) SetContextInfo

func (o *EeSubscription) SetContextInfo(v ContextInfo)

SetContextInfo gets a reference to the given ContextInfo and assigns it to the ContextInfo field.

func (*EeSubscription) SetDataRestorationCallbackUri

func (o *EeSubscription) SetDataRestorationCallbackUri(v string)

SetDataRestorationCallbackUri gets a reference to the given string and assigns it to the DataRestorationCallbackUri field.

func (*EeSubscription) SetEpcAppliedInd

func (o *EeSubscription) SetEpcAppliedInd(v bool)

SetEpcAppliedInd gets a reference to the given bool and assigns it to the EpcAppliedInd field.

func (*EeSubscription) SetExcludeGpsiList

func (o *EeSubscription) SetExcludeGpsiList(v []string)

SetExcludeGpsiList gets a reference to the given []string and assigns it to the ExcludeGpsiList field.

func (*EeSubscription) SetGpsi

func (o *EeSubscription) SetGpsi(v string)

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

func (*EeSubscription) SetIncludeGpsiList

func (o *EeSubscription) SetIncludeGpsiList(v []string)

SetIncludeGpsiList gets a reference to the given []string and assigns it to the IncludeGpsiList field.

func (*EeSubscription) SetMonitoringConfigurations

func (o *EeSubscription) SetMonitoringConfigurations(v map[string]MonitoringConfiguration)

SetMonitoringConfigurations sets field value

func (*EeSubscription) SetNotifyCorrelationId

func (o *EeSubscription) SetNotifyCorrelationId(v string)

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

func (*EeSubscription) SetReportingOptions

func (o *EeSubscription) SetReportingOptions(v ReportingOptions)

SetReportingOptions gets a reference to the given ReportingOptions and assigns it to the ReportingOptions field.

func (*EeSubscription) SetScefDiamHost

func (o *EeSubscription) SetScefDiamHost(v string)

SetScefDiamHost gets a reference to the given string and assigns it to the ScefDiamHost field.

func (*EeSubscription) SetScefDiamRealm

func (o *EeSubscription) SetScefDiamRealm(v string)

SetScefDiamRealm gets a reference to the given string and assigns it to the ScefDiamRealm field.

func (*EeSubscription) SetSecondCallbackRef

func (o *EeSubscription) SetSecondCallbackRef(v string)

SetSecondCallbackRef gets a reference to the given string and assigns it to the SecondCallbackRef field.

func (*EeSubscription) SetSubscriptionId

func (o *EeSubscription) SetSubscriptionId(v string)

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

func (*EeSubscription) SetSupportedFeatures

func (o *EeSubscription) SetSupportedFeatures(v string)

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

func (EeSubscription) ToMap

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

type EutraLocation

type EutraLocation struct {
	Tai       Tai   `json:"tai"`
	IgnoreTai *bool `json:"ignoreTai,omitempty"`
	Ecgi      Ecgi  `json:"ecgi"`
	// This flag when present shall indicate that the Ecgi shall be ignored When present, it shall be set as follows: - true: ecgi shall be ignored. - false (default): ecgi shall not be ignored.
	IgnoreEcgi *bool `json:"ignoreEcgi,omitempty"`
	// The value represents the elapsed time in minutes since the last network contact of the mobile station.  Value \"0\" indicates that the location information was obtained after a successful paging procedure for Active Location Retrieval when the UE is in idle mode or after a successful NG-RAN location reporting procedure with the eNB when the UE is in connected mode.  Any other value than \"0\" indicates that the location information is the last known one.  See 3GPP TS 29.002 clause 17.7.8.
	AgeOfLocationInformation *int32 `json:"ageOfLocationInformation,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	UeLocationTimestamp *time.Time `json:"ueLocationTimestamp,omitempty"`
	// Refer to geographical Information. See 3GPP TS 23.032 clause 7.3.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeographicalInformation *string `json:"geographicalInformation,omitempty"`
	// Refers to Calling Geodetic Location. See ITU-T Recommendation Q.763 (1999) [24] clause 3.88.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeodeticInformation *string          `json:"geodeticInformation,omitempty"`
	GlobalNgenbId       *GlobalRanNodeId `json:"globalNgenbId,omitempty"`
	GlobalENbId         *GlobalRanNodeId `json:"globalENbId,omitempty"`
}

EutraLocation Contains the E-UTRA user location.

func NewEutraLocation

func NewEutraLocation(tai Tai, ecgi Ecgi) *EutraLocation

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

func NewEutraLocationWithDefaults

func NewEutraLocationWithDefaults() *EutraLocation

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

func (*EutraLocation) GetAgeOfLocationInformation

func (o *EutraLocation) GetAgeOfLocationInformation() int32

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

func (*EutraLocation) GetAgeOfLocationInformationOk

func (o *EutraLocation) GetAgeOfLocationInformationOk() (*int32, bool)

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

func (*EutraLocation) GetEcgi

func (o *EutraLocation) GetEcgi() Ecgi

GetEcgi returns the Ecgi field value

func (*EutraLocation) GetEcgiOk

func (o *EutraLocation) GetEcgiOk() (*Ecgi, bool)

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

func (*EutraLocation) GetGeodeticInformation

func (o *EutraLocation) GetGeodeticInformation() string

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

func (*EutraLocation) GetGeodeticInformationOk

func (o *EutraLocation) GetGeodeticInformationOk() (*string, bool)

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

func (*EutraLocation) GetGeographicalInformation

func (o *EutraLocation) GetGeographicalInformation() string

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

func (*EutraLocation) GetGeographicalInformationOk

func (o *EutraLocation) GetGeographicalInformationOk() (*string, bool)

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

func (*EutraLocation) GetGlobalENbId

func (o *EutraLocation) GetGlobalENbId() GlobalRanNodeId

GetGlobalENbId returns the GlobalENbId field value if set, zero value otherwise.

func (*EutraLocation) GetGlobalENbIdOk

func (o *EutraLocation) GetGlobalENbIdOk() (*GlobalRanNodeId, bool)

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

func (*EutraLocation) GetGlobalNgenbId

func (o *EutraLocation) GetGlobalNgenbId() GlobalRanNodeId

GetGlobalNgenbId returns the GlobalNgenbId field value if set, zero value otherwise.

func (*EutraLocation) GetGlobalNgenbIdOk

func (o *EutraLocation) GetGlobalNgenbIdOk() (*GlobalRanNodeId, bool)

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

func (*EutraLocation) GetIgnoreEcgi

func (o *EutraLocation) GetIgnoreEcgi() bool

GetIgnoreEcgi returns the IgnoreEcgi field value if set, zero value otherwise.

func (*EutraLocation) GetIgnoreEcgiOk

func (o *EutraLocation) GetIgnoreEcgiOk() (*bool, bool)

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

func (*EutraLocation) GetIgnoreTai

func (o *EutraLocation) GetIgnoreTai() bool

GetIgnoreTai returns the IgnoreTai field value if set, zero value otherwise.

func (*EutraLocation) GetIgnoreTaiOk

func (o *EutraLocation) GetIgnoreTaiOk() (*bool, bool)

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

func (*EutraLocation) GetTai

func (o *EutraLocation) GetTai() Tai

GetTai returns the Tai field value

func (*EutraLocation) GetTaiOk

func (o *EutraLocation) GetTaiOk() (*Tai, bool)

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

func (*EutraLocation) GetUeLocationTimestamp

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

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

func (*EutraLocation) GetUeLocationTimestampOk

func (o *EutraLocation) GetUeLocationTimestampOk() (*time.Time, bool)

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

func (*EutraLocation) HasAgeOfLocationInformation

func (o *EutraLocation) HasAgeOfLocationInformation() bool

HasAgeOfLocationInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGeodeticInformation

func (o *EutraLocation) HasGeodeticInformation() bool

HasGeodeticInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGeographicalInformation

func (o *EutraLocation) HasGeographicalInformation() bool

HasGeographicalInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGlobalENbId

func (o *EutraLocation) HasGlobalENbId() bool

HasGlobalENbId returns a boolean if a field has been set.

func (*EutraLocation) HasGlobalNgenbId

func (o *EutraLocation) HasGlobalNgenbId() bool

HasGlobalNgenbId returns a boolean if a field has been set.

func (*EutraLocation) HasIgnoreEcgi

func (o *EutraLocation) HasIgnoreEcgi() bool

HasIgnoreEcgi returns a boolean if a field has been set.

func (*EutraLocation) HasIgnoreTai

func (o *EutraLocation) HasIgnoreTai() bool

HasIgnoreTai returns a boolean if a field has been set.

func (*EutraLocation) HasUeLocationTimestamp

func (o *EutraLocation) HasUeLocationTimestamp() bool

HasUeLocationTimestamp returns a boolean if a field has been set.

func (EutraLocation) MarshalJSON

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

func (*EutraLocation) SetAgeOfLocationInformation

func (o *EutraLocation) SetAgeOfLocationInformation(v int32)

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

func (*EutraLocation) SetEcgi

func (o *EutraLocation) SetEcgi(v Ecgi)

SetEcgi sets field value

func (*EutraLocation) SetGeodeticInformation

func (o *EutraLocation) SetGeodeticInformation(v string)

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

func (*EutraLocation) SetGeographicalInformation

func (o *EutraLocation) SetGeographicalInformation(v string)

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

func (*EutraLocation) SetGlobalENbId

func (o *EutraLocation) SetGlobalENbId(v GlobalRanNodeId)

SetGlobalENbId gets a reference to the given GlobalRanNodeId and assigns it to the GlobalENbId field.

func (*EutraLocation) SetGlobalNgenbId

func (o *EutraLocation) SetGlobalNgenbId(v GlobalRanNodeId)

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

func (*EutraLocation) SetIgnoreEcgi

func (o *EutraLocation) SetIgnoreEcgi(v bool)

SetIgnoreEcgi gets a reference to the given bool and assigns it to the IgnoreEcgi field.

func (*EutraLocation) SetIgnoreTai

func (o *EutraLocation) SetIgnoreTai(v bool)

SetIgnoreTai gets a reference to the given bool and assigns it to the IgnoreTai field.

func (*EutraLocation) SetTai

func (o *EutraLocation) SetTai(v Tai)

SetTai sets field value

func (*EutraLocation) SetUeLocationTimestamp

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

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

func (EutraLocation) ToMap

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

type EventReportMode

type EventReportMode struct {
	String *string
}

EventReportMode struct for EventReportMode

func (*EventReportMode) MarshalJSON

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

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

func (*EventReportMode) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type EventType

type EventType struct {
	String *string
}

EventType struct for EventType

func (*EventType) MarshalJSON

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

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

func (*EventType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type FailedCause

type FailedCause struct {
	String *string
}

FailedCause Indicates the Failed cause of the failed Monitoring Configuration in the EE subscription

func (*FailedCause) MarshalJSON

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

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

func (*FailedCause) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type FailedMonitoringConfiguration

type FailedMonitoringConfiguration struct {
	EventType   EventType   `json:"eventType"`
	FailedCause FailedCause `json:"failedCause"`
}

FailedMonitoringConfiguration Contains the event type and failed cause of the failed Monitoring Configuration in the EE subscription

func NewFailedMonitoringConfiguration

func NewFailedMonitoringConfiguration(eventType EventType, failedCause FailedCause) *FailedMonitoringConfiguration

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

func NewFailedMonitoringConfigurationWithDefaults

func NewFailedMonitoringConfigurationWithDefaults() *FailedMonitoringConfiguration

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

func (*FailedMonitoringConfiguration) GetEventType

func (o *FailedMonitoringConfiguration) GetEventType() EventType

GetEventType returns the EventType field value

func (*FailedMonitoringConfiguration) GetEventTypeOk

func (o *FailedMonitoringConfiguration) GetEventTypeOk() (*EventType, bool)

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

func (*FailedMonitoringConfiguration) GetFailedCause

func (o *FailedMonitoringConfiguration) GetFailedCause() FailedCause

GetFailedCause returns the FailedCause field value

func (*FailedMonitoringConfiguration) GetFailedCauseOk

func (o *FailedMonitoringConfiguration) GetFailedCauseOk() (*FailedCause, bool)

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

func (FailedMonitoringConfiguration) MarshalJSON

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

func (*FailedMonitoringConfiguration) SetEventType

func (o *FailedMonitoringConfiguration) SetEventType(v EventType)

SetEventType sets field value

func (*FailedMonitoringConfiguration) SetFailedCause

func (o *FailedMonitoringConfiguration) SetFailedCause(v FailedCause)

SetFailedCause sets field value

func (FailedMonitoringConfiguration) ToMap

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

type GNbId

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

GNbId Provides the G-NB identifier.

func NewGNbId

func NewGNbId(bitLength int32, gNBValue string) *GNbId

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

func NewGNbIdWithDefaults

func NewGNbIdWithDefaults() *GNbId

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

func (*GNbId) GetBitLength

func (o *GNbId) GetBitLength() int32

GetBitLength returns the BitLength field value

func (*GNbId) GetBitLengthOk

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

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

func (*GNbId) GetGNBValue

func (o *GNbId) GetGNBValue() string

GetGNBValue returns the GNBValue field value

func (*GNbId) GetGNBValueOk

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

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

func (GNbId) MarshalJSON

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

func (*GNbId) SetBitLength

func (o *GNbId) SetBitLength(v int32)

SetBitLength sets field value

func (*GNbId) SetGNBValue

func (o *GNbId) SetGNBValue(v string)

SetGNBValue sets field value

func (GNbId) ToMap

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

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GeraLocation

type GeraLocation struct {
	Interface *interface{}
}

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

func InterfaceAsGeraLocation

func InterfaceAsGeraLocation(v *interface{}) GeraLocation

interface{}AsGeraLocation is a convenience function that returns interface{} wrapped in GeraLocation

func (*GeraLocation) GetActualInstance

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

Get the actual instance

func (GeraLocation) MarshalJSON

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

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

func (*GeraLocation) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type GlobalRanNodeId

type GlobalRanNodeId struct {
	Interface *interface{}
}

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

func InterfaceAsGlobalRanNodeId

func InterfaceAsGlobalRanNodeId(v *interface{}) GlobalRanNodeId

interface{}AsGlobalRanNodeId is a convenience function that returns interface{} wrapped in GlobalRanNodeId

func (*GlobalRanNodeId) GetActualInstance

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

Get the actual instance

func (GlobalRanNodeId) MarshalJSON

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

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

func (*GlobalRanNodeId) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type HfcNodeId

type HfcNodeId struct {
	// This IE represents the identifier of the HFC node Id as specified in CableLabs WR-TR-5WWC-ARCH. It is provisioned by the wireline operator as part of wireline operations and may contain up to six characters.
	HfcNId string `json:"hfcNId"`
}

HfcNodeId REpresents the HFC Node Identifer received over NGAP.

func NewHfcNodeId

func NewHfcNodeId(hfcNId string) *HfcNodeId

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

func NewHfcNodeIdWithDefaults

func NewHfcNodeIdWithDefaults() *HfcNodeId

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

func (*HfcNodeId) GetHfcNId

func (o *HfcNodeId) GetHfcNId() string

GetHfcNId returns the HfcNId field value

func (*HfcNodeId) GetHfcNIdOk

func (o *HfcNodeId) GetHfcNIdOk() (*string, bool)

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

func (HfcNodeId) MarshalJSON

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

func (*HfcNodeId) SetHfcNId

func (o *HfcNodeId) SetHfcNId(v string)

SetHfcNId sets field value

func (HfcNodeId) ToMap

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

type IdentityRange

type IdentityRange struct {
	Interface *interface{}
}

IdentityRange - A range of GPSIs (subscriber identities), either based on a numeric range, or based on regular-expression matching

func InterfaceAsIdentityRange

func InterfaceAsIdentityRange(v *interface{}) IdentityRange

interface{}AsIdentityRange is a convenience function that returns interface{} wrapped in IdentityRange

func (*IdentityRange) GetActualInstance

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

Get the actual instance

func (IdentityRange) MarshalJSON

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

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

func (*IdentityRange) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type IdleStatusIndication

type IdleStatusIndication struct {
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp *time.Time `json:"timeStamp,omitempty"`
	// indicating a time in seconds.
	ActiveTime *int32 `json:"activeTime,omitempty"`
	// indicating a time in seconds.
	SubsRegTimer            *int32 `json:"subsRegTimer,omitempty"`
	EdrxCycleLength         *int32 `json:"edrxCycleLength,omitempty"`
	SuggestedNumOfDlPackets *int32 `json:"suggestedNumOfDlPackets,omitempty"`
}

IdleStatusIndication Represents the idle status indication.

func NewIdleStatusIndication

func NewIdleStatusIndication() *IdleStatusIndication

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

func NewIdleStatusIndicationWithDefaults

func NewIdleStatusIndicationWithDefaults() *IdleStatusIndication

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

func (*IdleStatusIndication) GetActiveTime

func (o *IdleStatusIndication) GetActiveTime() int32

GetActiveTime returns the ActiveTime field value if set, zero value otherwise.

func (*IdleStatusIndication) GetActiveTimeOk

func (o *IdleStatusIndication) GetActiveTimeOk() (*int32, bool)

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

func (*IdleStatusIndication) GetEdrxCycleLength

func (o *IdleStatusIndication) GetEdrxCycleLength() int32

GetEdrxCycleLength returns the EdrxCycleLength field value if set, zero value otherwise.

func (*IdleStatusIndication) GetEdrxCycleLengthOk

func (o *IdleStatusIndication) GetEdrxCycleLengthOk() (*int32, bool)

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

func (*IdleStatusIndication) GetSubsRegTimer

func (o *IdleStatusIndication) GetSubsRegTimer() int32

GetSubsRegTimer returns the SubsRegTimer field value if set, zero value otherwise.

func (*IdleStatusIndication) GetSubsRegTimerOk

func (o *IdleStatusIndication) GetSubsRegTimerOk() (*int32, bool)

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

func (*IdleStatusIndication) GetSuggestedNumOfDlPackets

func (o *IdleStatusIndication) GetSuggestedNumOfDlPackets() int32

GetSuggestedNumOfDlPackets returns the SuggestedNumOfDlPackets field value if set, zero value otherwise.

func (*IdleStatusIndication) GetSuggestedNumOfDlPacketsOk

func (o *IdleStatusIndication) GetSuggestedNumOfDlPacketsOk() (*int32, bool)

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

func (*IdleStatusIndication) GetTimeStamp

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

GetTimeStamp returns the TimeStamp field value if set, zero value otherwise.

func (*IdleStatusIndication) GetTimeStampOk

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

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

func (*IdleStatusIndication) HasActiveTime

func (o *IdleStatusIndication) HasActiveTime() bool

HasActiveTime returns a boolean if a field has been set.

func (*IdleStatusIndication) HasEdrxCycleLength

func (o *IdleStatusIndication) HasEdrxCycleLength() bool

HasEdrxCycleLength returns a boolean if a field has been set.

func (*IdleStatusIndication) HasSubsRegTimer

func (o *IdleStatusIndication) HasSubsRegTimer() bool

HasSubsRegTimer returns a boolean if a field has been set.

func (*IdleStatusIndication) HasSuggestedNumOfDlPackets

func (o *IdleStatusIndication) HasSuggestedNumOfDlPackets() bool

HasSuggestedNumOfDlPackets returns a boolean if a field has been set.

func (*IdleStatusIndication) HasTimeStamp

func (o *IdleStatusIndication) HasTimeStamp() bool

HasTimeStamp returns a boolean if a field has been set.

func (IdleStatusIndication) MarshalJSON

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

func (*IdleStatusIndication) SetActiveTime

func (o *IdleStatusIndication) SetActiveTime(v int32)

SetActiveTime gets a reference to the given int32 and assigns it to the ActiveTime field.

func (*IdleStatusIndication) SetEdrxCycleLength

func (o *IdleStatusIndication) SetEdrxCycleLength(v int32)

SetEdrxCycleLength gets a reference to the given int32 and assigns it to the EdrxCycleLength field.

func (*IdleStatusIndication) SetSubsRegTimer

func (o *IdleStatusIndication) SetSubsRegTimer(v int32)

SetSubsRegTimer gets a reference to the given int32 and assigns it to the SubsRegTimer field.

func (*IdleStatusIndication) SetSuggestedNumOfDlPackets

func (o *IdleStatusIndication) SetSuggestedNumOfDlPackets(v int32)

SetSuggestedNumOfDlPackets gets a reference to the given int32 and assigns it to the SuggestedNumOfDlPackets field.

func (*IdleStatusIndication) SetTimeStamp

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

SetTimeStamp gets a reference to the given time.Time and assigns it to the TimeStamp field.

func (IdleStatusIndication) ToMap

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

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

type Ipv6Addr struct {
}

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

func NewIpv6Addr

func NewIpv6Addr() *Ipv6Addr

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

func NewIpv6AddrWithDefaults

func NewIpv6AddrWithDefaults() *Ipv6Addr

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

func (Ipv6Addr) MarshalJSON

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

func (Ipv6Addr) ToMap

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

type Ipv6Prefix

type Ipv6Prefix struct {
}

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

func NewIpv6Prefix

func NewIpv6Prefix() *Ipv6Prefix

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

func NewIpv6PrefixWithDefaults

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

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

func (Ipv6Prefix) MarshalJSON

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

func (Ipv6Prefix) ToMap

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

type LineType

type LineType struct {
	String *string
}

LineType Possible values are: - DSL: Identifies a DSL line - PON: Identifies a PON line

func (*LineType) MarshalJSON

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

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

func (*LineType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LocationAccuracy

type LocationAccuracy struct {
	String *string
}

LocationAccuracy struct for LocationAccuracy

func (*LocationAccuracy) MarshalJSON

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

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

func (*LocationAccuracy) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LocationAreaId

type LocationAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code.
	Lac string `json:"lac"`
}

LocationAreaId Contains a Location area identification as defined in 3GPP TS 23.003, clause 4.1.

func NewLocationAreaId

func NewLocationAreaId(plmnId PlmnId, lac string) *LocationAreaId

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

func NewLocationAreaIdWithDefaults

func NewLocationAreaIdWithDefaults() *LocationAreaId

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

func (*LocationAreaId) GetLac

func (o *LocationAreaId) GetLac() string

GetLac returns the Lac field value

func (*LocationAreaId) GetLacOk

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

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

func (*LocationAreaId) GetPlmnId

func (o *LocationAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*LocationAreaId) GetPlmnIdOk

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

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

func (LocationAreaId) MarshalJSON

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

func (*LocationAreaId) SetLac

func (o *LocationAreaId) SetLac(v string)

SetLac sets field value

func (*LocationAreaId) SetPlmnId

func (o *LocationAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (LocationAreaId) ToMap

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

type LocationReport

type LocationReport struct {
	Location UserLocation `json:"location"`
}

LocationReport struct for LocationReport

func NewLocationReport

func NewLocationReport(location UserLocation) *LocationReport

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

func NewLocationReportWithDefaults

func NewLocationReportWithDefaults() *LocationReport

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

func (*LocationReport) GetLocation

func (o *LocationReport) GetLocation() UserLocation

GetLocation returns the Location field value

func (*LocationReport) GetLocationOk

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

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

func (LocationReport) MarshalJSON

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

func (*LocationReport) SetLocation

func (o *LocationReport) SetLocation(v UserLocation)

SetLocation sets field value

func (LocationReport) ToMap

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

type LocationReportingConfiguration

type LocationReportingConfiguration struct {
	CurrentLocation bool              `json:"currentLocation"`
	OneTime         *bool             `json:"oneTime,omitempty"`
	Accuracy        *LocationAccuracy `json:"accuracy,omitempty"`
	N3gppAccuracy   *LocationAccuracy `json:"n3gppAccuracy,omitempty"`
}

LocationReportingConfiguration struct for LocationReportingConfiguration

func NewLocationReportingConfiguration

func NewLocationReportingConfiguration(currentLocation bool) *LocationReportingConfiguration

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

func NewLocationReportingConfigurationWithDefaults

func NewLocationReportingConfigurationWithDefaults() *LocationReportingConfiguration

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

func (*LocationReportingConfiguration) GetAccuracy

GetAccuracy returns the Accuracy field value if set, zero value otherwise.

func (*LocationReportingConfiguration) GetAccuracyOk

func (o *LocationReportingConfiguration) GetAccuracyOk() (*LocationAccuracy, bool)

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

func (*LocationReportingConfiguration) GetCurrentLocation

func (o *LocationReportingConfiguration) GetCurrentLocation() bool

GetCurrentLocation returns the CurrentLocation field value

func (*LocationReportingConfiguration) GetCurrentLocationOk

func (o *LocationReportingConfiguration) GetCurrentLocationOk() (*bool, bool)

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

func (*LocationReportingConfiguration) GetN3gppAccuracy

func (o *LocationReportingConfiguration) GetN3gppAccuracy() LocationAccuracy

GetN3gppAccuracy returns the N3gppAccuracy field value if set, zero value otherwise.

func (*LocationReportingConfiguration) GetN3gppAccuracyOk

func (o *LocationReportingConfiguration) GetN3gppAccuracyOk() (*LocationAccuracy, bool)

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

func (*LocationReportingConfiguration) GetOneTime

func (o *LocationReportingConfiguration) GetOneTime() bool

GetOneTime returns the OneTime field value if set, zero value otherwise.

func (*LocationReportingConfiguration) GetOneTimeOk

func (o *LocationReportingConfiguration) GetOneTimeOk() (*bool, bool)

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

func (*LocationReportingConfiguration) HasAccuracy

func (o *LocationReportingConfiguration) HasAccuracy() bool

HasAccuracy returns a boolean if a field has been set.

func (*LocationReportingConfiguration) HasN3gppAccuracy

func (o *LocationReportingConfiguration) HasN3gppAccuracy() bool

HasN3gppAccuracy returns a boolean if a field has been set.

func (*LocationReportingConfiguration) HasOneTime

func (o *LocationReportingConfiguration) HasOneTime() bool

HasOneTime returns a boolean if a field has been set.

func (LocationReportingConfiguration) MarshalJSON

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

func (*LocationReportingConfiguration) SetAccuracy

SetAccuracy gets a reference to the given LocationAccuracy and assigns it to the Accuracy field.

func (*LocationReportingConfiguration) SetCurrentLocation

func (o *LocationReportingConfiguration) SetCurrentLocation(v bool)

SetCurrentLocation sets field value

func (*LocationReportingConfiguration) SetN3gppAccuracy

func (o *LocationReportingConfiguration) SetN3gppAccuracy(v LocationAccuracy)

SetN3gppAccuracy gets a reference to the given LocationAccuracy and assigns it to the N3gppAccuracy field.

func (*LocationReportingConfiguration) SetOneTime

func (o *LocationReportingConfiguration) SetOneTime(v bool)

SetOneTime gets a reference to the given bool and assigns it to the OneTime field.

func (LocationReportingConfiguration) ToMap

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

type LossConnectivityCfg

type LossConnectivityCfg struct {
	// indicating a time in seconds.
	MaxDetectionTime *int32 `json:"maxDetectionTime,omitempty"`
}

LossConnectivityCfg struct for LossConnectivityCfg

func NewLossConnectivityCfg

func NewLossConnectivityCfg() *LossConnectivityCfg

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

func NewLossConnectivityCfgWithDefaults

func NewLossConnectivityCfgWithDefaults() *LossConnectivityCfg

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

func (*LossConnectivityCfg) GetMaxDetectionTime

func (o *LossConnectivityCfg) GetMaxDetectionTime() int32

GetMaxDetectionTime returns the MaxDetectionTime field value if set, zero value otherwise.

func (*LossConnectivityCfg) GetMaxDetectionTimeOk

func (o *LossConnectivityCfg) GetMaxDetectionTimeOk() (*int32, bool)

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

func (*LossConnectivityCfg) HasMaxDetectionTime

func (o *LossConnectivityCfg) HasMaxDetectionTime() bool

HasMaxDetectionTime returns a boolean if a field has been set.

func (LossConnectivityCfg) MarshalJSON

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

func (*LossConnectivityCfg) SetMaxDetectionTime

func (o *LossConnectivityCfg) SetMaxDetectionTime(v int32)

SetMaxDetectionTime gets a reference to the given int32 and assigns it to the MaxDetectionTime field.

func (LossConnectivityCfg) ToMap

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

type LossConnectivityReport

type LossConnectivityReport struct {
	LossOfConnectReason LossOfConnectivityReason `json:"lossOfConnectReason"`
}

LossConnectivityReport struct for LossConnectivityReport

func NewLossConnectivityReport

func NewLossConnectivityReport(lossOfConnectReason LossOfConnectivityReason) *LossConnectivityReport

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

func NewLossConnectivityReportWithDefaults

func NewLossConnectivityReportWithDefaults() *LossConnectivityReport

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

func (*LossConnectivityReport) GetLossOfConnectReason

func (o *LossConnectivityReport) GetLossOfConnectReason() LossOfConnectivityReason

GetLossOfConnectReason returns the LossOfConnectReason field value

func (*LossConnectivityReport) GetLossOfConnectReasonOk

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

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

func (LossConnectivityReport) MarshalJSON

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

func (*LossConnectivityReport) SetLossOfConnectReason

func (o *LossConnectivityReport) SetLossOfConnectReason(v LossOfConnectivityReason)

SetLossOfConnectReason sets field value

func (LossConnectivityReport) ToMap

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

type LossOfConnectivityReason

type LossOfConnectivityReason struct {
	String *string
}

LossOfConnectivityReason Describes the reason for loss of connectivity

func (*LossOfConnectivityReason) MarshalJSON

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

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

func (*LossOfConnectivityReason) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MappedNullable

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

type MonitoringConfiguration

type MonitoringConfiguration struct {
	EventType                      EventType                       `json:"eventType"`
	ImmediateFlag                  *bool                           `json:"immediateFlag,omitempty"`
	LocationReportingConfiguration *LocationReportingConfiguration `json:"locationReportingConfiguration,omitempty"`
	AssociationType                *AssociationType                `json:"associationType,omitempty"`
	DatalinkReportCfg              *DatalinkReportingConfiguration `json:"datalinkReportCfg,omitempty"`
	LossConnectivityCfg            *LossConnectivityCfg            `json:"lossConnectivityCfg,omitempty"`
	// indicating a time in seconds.
	MaximumLatency *int32 `json:"maximumLatency,omitempty"`
	// indicating a time in seconds.
	MaximumResponseTime  *int32 `json:"maximumResponseTime,omitempty"`
	SuggestedPacketNumDl *int32 `json:"suggestedPacketNumDl,omitempty"`
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn                   *string                          `json:"dnn,omitempty"`
	SingleNssai           *Snssai                          `json:"singleNssai,omitempty"`
	PduSessionStatusCfg   *PduSessionStatusCfg             `json:"pduSessionStatusCfg,omitempty"`
	ReachabilityForSmsCfg *ReachabilityForSmsConfiguration `json:"reachabilityForSmsCfg,omitempty"`
	// String uniquely identifying MTC provider information.
	MtcProviderInformation *string                           `json:"mtcProviderInformation,omitempty"`
	AfId                   *string                           `json:"afId,omitempty"`
	ReachabilityForDataCfg *ReachabilityForDataConfiguration `json:"reachabilityForDataCfg,omitempty"`
	IdleStatusInd          *bool                             `json:"idleStatusInd,omitempty"`
}

MonitoringConfiguration struct for MonitoringConfiguration

func NewMonitoringConfiguration

func NewMonitoringConfiguration(eventType EventType) *MonitoringConfiguration

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

func NewMonitoringConfigurationWithDefaults

func NewMonitoringConfigurationWithDefaults() *MonitoringConfiguration

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

func (*MonitoringConfiguration) GetAfId

func (o *MonitoringConfiguration) GetAfId() string

GetAfId returns the AfId field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetAfIdOk

func (o *MonitoringConfiguration) GetAfIdOk() (*string, bool)

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

func (*MonitoringConfiguration) GetAssociationType

func (o *MonitoringConfiguration) GetAssociationType() AssociationType

GetAssociationType returns the AssociationType field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetAssociationTypeOk

func (o *MonitoringConfiguration) GetAssociationTypeOk() (*AssociationType, bool)

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

func (*MonitoringConfiguration) GetDatalinkReportCfg

func (o *MonitoringConfiguration) GetDatalinkReportCfg() DatalinkReportingConfiguration

GetDatalinkReportCfg returns the DatalinkReportCfg field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetDatalinkReportCfgOk

func (o *MonitoringConfiguration) GetDatalinkReportCfgOk() (*DatalinkReportingConfiguration, bool)

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

func (*MonitoringConfiguration) GetDnn

func (o *MonitoringConfiguration) GetDnn() string

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

func (*MonitoringConfiguration) GetDnnOk

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

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

func (*MonitoringConfiguration) GetEventType

func (o *MonitoringConfiguration) GetEventType() EventType

GetEventType returns the EventType field value

func (*MonitoringConfiguration) GetEventTypeOk

func (o *MonitoringConfiguration) GetEventTypeOk() (*EventType, bool)

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

func (*MonitoringConfiguration) GetIdleStatusInd

func (o *MonitoringConfiguration) GetIdleStatusInd() bool

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

func (*MonitoringConfiguration) GetIdleStatusIndOk

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

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

func (*MonitoringConfiguration) GetImmediateFlag

func (o *MonitoringConfiguration) GetImmediateFlag() bool

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

func (*MonitoringConfiguration) GetImmediateFlagOk

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

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

func (*MonitoringConfiguration) GetLocationReportingConfiguration

func (o *MonitoringConfiguration) GetLocationReportingConfiguration() LocationReportingConfiguration

GetLocationReportingConfiguration returns the LocationReportingConfiguration field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetLocationReportingConfigurationOk

func (o *MonitoringConfiguration) GetLocationReportingConfigurationOk() (*LocationReportingConfiguration, bool)

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

func (*MonitoringConfiguration) GetLossConnectivityCfg

func (o *MonitoringConfiguration) GetLossConnectivityCfg() LossConnectivityCfg

GetLossConnectivityCfg returns the LossConnectivityCfg field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetLossConnectivityCfgOk

func (o *MonitoringConfiguration) GetLossConnectivityCfgOk() (*LossConnectivityCfg, bool)

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

func (*MonitoringConfiguration) GetMaximumLatency

func (o *MonitoringConfiguration) GetMaximumLatency() int32

GetMaximumLatency returns the MaximumLatency field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetMaximumLatencyOk

func (o *MonitoringConfiguration) GetMaximumLatencyOk() (*int32, bool)

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

func (*MonitoringConfiguration) GetMaximumResponseTime

func (o *MonitoringConfiguration) GetMaximumResponseTime() int32

GetMaximumResponseTime returns the MaximumResponseTime field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetMaximumResponseTimeOk

func (o *MonitoringConfiguration) GetMaximumResponseTimeOk() (*int32, bool)

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

func (*MonitoringConfiguration) GetMtcProviderInformation

func (o *MonitoringConfiguration) GetMtcProviderInformation() string

GetMtcProviderInformation returns the MtcProviderInformation field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetMtcProviderInformationOk

func (o *MonitoringConfiguration) GetMtcProviderInformationOk() (*string, bool)

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

func (*MonitoringConfiguration) GetPduSessionStatusCfg

func (o *MonitoringConfiguration) GetPduSessionStatusCfg() PduSessionStatusCfg

GetPduSessionStatusCfg returns the PduSessionStatusCfg field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetPduSessionStatusCfgOk

func (o *MonitoringConfiguration) GetPduSessionStatusCfgOk() (*PduSessionStatusCfg, bool)

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

func (*MonitoringConfiguration) GetReachabilityForDataCfg

func (o *MonitoringConfiguration) GetReachabilityForDataCfg() ReachabilityForDataConfiguration

GetReachabilityForDataCfg returns the ReachabilityForDataCfg field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetReachabilityForDataCfgOk

func (o *MonitoringConfiguration) GetReachabilityForDataCfgOk() (*ReachabilityForDataConfiguration, bool)

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

func (*MonitoringConfiguration) GetReachabilityForSmsCfg

func (o *MonitoringConfiguration) GetReachabilityForSmsCfg() ReachabilityForSmsConfiguration

GetReachabilityForSmsCfg returns the ReachabilityForSmsCfg field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetReachabilityForSmsCfgOk

func (o *MonitoringConfiguration) GetReachabilityForSmsCfgOk() (*ReachabilityForSmsConfiguration, bool)

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

func (*MonitoringConfiguration) GetSingleNssai

func (o *MonitoringConfiguration) GetSingleNssai() Snssai

GetSingleNssai returns the SingleNssai field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetSingleNssaiOk

func (o *MonitoringConfiguration) GetSingleNssaiOk() (*Snssai, bool)

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

func (*MonitoringConfiguration) GetSuggestedPacketNumDl

func (o *MonitoringConfiguration) GetSuggestedPacketNumDl() int32

GetSuggestedPacketNumDl returns the SuggestedPacketNumDl field value if set, zero value otherwise.

func (*MonitoringConfiguration) GetSuggestedPacketNumDlOk

func (o *MonitoringConfiguration) GetSuggestedPacketNumDlOk() (*int32, bool)

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

func (*MonitoringConfiguration) HasAfId

func (o *MonitoringConfiguration) HasAfId() bool

HasAfId returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasAssociationType

func (o *MonitoringConfiguration) HasAssociationType() bool

HasAssociationType returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasDatalinkReportCfg

func (o *MonitoringConfiguration) HasDatalinkReportCfg() bool

HasDatalinkReportCfg returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasDnn

func (o *MonitoringConfiguration) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasIdleStatusInd

func (o *MonitoringConfiguration) HasIdleStatusInd() bool

HasIdleStatusInd returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasImmediateFlag

func (o *MonitoringConfiguration) HasImmediateFlag() bool

HasImmediateFlag returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasLocationReportingConfiguration

func (o *MonitoringConfiguration) HasLocationReportingConfiguration() bool

HasLocationReportingConfiguration returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasLossConnectivityCfg

func (o *MonitoringConfiguration) HasLossConnectivityCfg() bool

HasLossConnectivityCfg returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasMaximumLatency

func (o *MonitoringConfiguration) HasMaximumLatency() bool

HasMaximumLatency returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasMaximumResponseTime

func (o *MonitoringConfiguration) HasMaximumResponseTime() bool

HasMaximumResponseTime returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasMtcProviderInformation

func (o *MonitoringConfiguration) HasMtcProviderInformation() bool

HasMtcProviderInformation returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasPduSessionStatusCfg

func (o *MonitoringConfiguration) HasPduSessionStatusCfg() bool

HasPduSessionStatusCfg returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasReachabilityForDataCfg

func (o *MonitoringConfiguration) HasReachabilityForDataCfg() bool

HasReachabilityForDataCfg returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasReachabilityForSmsCfg

func (o *MonitoringConfiguration) HasReachabilityForSmsCfg() bool

HasReachabilityForSmsCfg returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasSingleNssai

func (o *MonitoringConfiguration) HasSingleNssai() bool

HasSingleNssai returns a boolean if a field has been set.

func (*MonitoringConfiguration) HasSuggestedPacketNumDl

func (o *MonitoringConfiguration) HasSuggestedPacketNumDl() bool

HasSuggestedPacketNumDl returns a boolean if a field has been set.

func (MonitoringConfiguration) MarshalJSON

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

func (*MonitoringConfiguration) SetAfId

func (o *MonitoringConfiguration) SetAfId(v string)

SetAfId gets a reference to the given string and assigns it to the AfId field.

func (*MonitoringConfiguration) SetAssociationType

func (o *MonitoringConfiguration) SetAssociationType(v AssociationType)

SetAssociationType gets a reference to the given AssociationType and assigns it to the AssociationType field.

func (*MonitoringConfiguration) SetDatalinkReportCfg

func (o *MonitoringConfiguration) SetDatalinkReportCfg(v DatalinkReportingConfiguration)

SetDatalinkReportCfg gets a reference to the given DatalinkReportingConfiguration and assigns it to the DatalinkReportCfg field.

func (*MonitoringConfiguration) SetDnn

func (o *MonitoringConfiguration) SetDnn(v string)

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

func (*MonitoringConfiguration) SetEventType

func (o *MonitoringConfiguration) SetEventType(v EventType)

SetEventType sets field value

func (*MonitoringConfiguration) SetIdleStatusInd

func (o *MonitoringConfiguration) SetIdleStatusInd(v bool)

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

func (*MonitoringConfiguration) SetImmediateFlag

func (o *MonitoringConfiguration) SetImmediateFlag(v bool)

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

func (*MonitoringConfiguration) SetLocationReportingConfiguration

func (o *MonitoringConfiguration) SetLocationReportingConfiguration(v LocationReportingConfiguration)

SetLocationReportingConfiguration gets a reference to the given LocationReportingConfiguration and assigns it to the LocationReportingConfiguration field.

func (*MonitoringConfiguration) SetLossConnectivityCfg

func (o *MonitoringConfiguration) SetLossConnectivityCfg(v LossConnectivityCfg)

SetLossConnectivityCfg gets a reference to the given LossConnectivityCfg and assigns it to the LossConnectivityCfg field.

func (*MonitoringConfiguration) SetMaximumLatency

func (o *MonitoringConfiguration) SetMaximumLatency(v int32)

SetMaximumLatency gets a reference to the given int32 and assigns it to the MaximumLatency field.

func (*MonitoringConfiguration) SetMaximumResponseTime

func (o *MonitoringConfiguration) SetMaximumResponseTime(v int32)

SetMaximumResponseTime gets a reference to the given int32 and assigns it to the MaximumResponseTime field.

func (*MonitoringConfiguration) SetMtcProviderInformation

func (o *MonitoringConfiguration) SetMtcProviderInformation(v string)

SetMtcProviderInformation gets a reference to the given string and assigns it to the MtcProviderInformation field.

func (*MonitoringConfiguration) SetPduSessionStatusCfg

func (o *MonitoringConfiguration) SetPduSessionStatusCfg(v PduSessionStatusCfg)

SetPduSessionStatusCfg gets a reference to the given PduSessionStatusCfg and assigns it to the PduSessionStatusCfg field.

func (*MonitoringConfiguration) SetReachabilityForDataCfg

func (o *MonitoringConfiguration) SetReachabilityForDataCfg(v ReachabilityForDataConfiguration)

SetReachabilityForDataCfg gets a reference to the given ReachabilityForDataConfiguration and assigns it to the ReachabilityForDataCfg field.

func (*MonitoringConfiguration) SetReachabilityForSmsCfg

func (o *MonitoringConfiguration) SetReachabilityForSmsCfg(v ReachabilityForSmsConfiguration)

SetReachabilityForSmsCfg gets a reference to the given ReachabilityForSmsConfiguration and assigns it to the ReachabilityForSmsCfg field.

func (*MonitoringConfiguration) SetSingleNssai

func (o *MonitoringConfiguration) SetSingleNssai(v Snssai)

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

func (*MonitoringConfiguration) SetSuggestedPacketNumDl

func (o *MonitoringConfiguration) SetSuggestedPacketNumDl(v int32)

SetSuggestedPacketNumDl gets a reference to the given int32 and assigns it to the SuggestedPacketNumDl field.

func (MonitoringConfiguration) ToMap

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

type MonitoringEvent

type MonitoringEvent struct {
	EventType    EventType     `json:"eventType"`
	RevokedCause *RevokedCause `json:"revokedCause,omitempty"`
}

MonitoringEvent struct for MonitoringEvent

func NewMonitoringEvent

func NewMonitoringEvent(eventType EventType) *MonitoringEvent

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

func NewMonitoringEventWithDefaults

func NewMonitoringEventWithDefaults() *MonitoringEvent

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

func (*MonitoringEvent) GetEventType

func (o *MonitoringEvent) GetEventType() EventType

GetEventType returns the EventType field value

func (*MonitoringEvent) GetEventTypeOk

func (o *MonitoringEvent) GetEventTypeOk() (*EventType, bool)

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

func (*MonitoringEvent) GetRevokedCause

func (o *MonitoringEvent) GetRevokedCause() RevokedCause

GetRevokedCause returns the RevokedCause field value if set, zero value otherwise.

func (*MonitoringEvent) GetRevokedCauseOk

func (o *MonitoringEvent) GetRevokedCauseOk() (*RevokedCause, bool)

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

func (*MonitoringEvent) HasRevokedCause

func (o *MonitoringEvent) HasRevokedCause() bool

HasRevokedCause returns a boolean if a field has been set.

func (MonitoringEvent) MarshalJSON

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

func (*MonitoringEvent) SetEventType

func (o *MonitoringEvent) SetEventType(v EventType)

SetEventType sets field value

func (*MonitoringEvent) SetRevokedCause

func (o *MonitoringEvent) SetRevokedCause(v RevokedCause)

SetRevokedCause gets a reference to the given RevokedCause and assigns it to the RevokedCause field.

func (MonitoringEvent) ToMap

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

type MonitoringReport

type MonitoringReport struct {
	ReferenceId              int32                     `json:"referenceId"`
	EventType                EventType                 `json:"eventType"`
	Report                   *Report                   `json:"report,omitempty"`
	ReachabilityForSmsReport *ReachabilityForSmsReport `json:"reachabilityForSmsReport,omitempty"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi *string `json:"gpsi,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp          time.Time           `json:"timeStamp"`
	ReachabilityReport *ReachabilityReport `json:"reachabilityReport,omitempty"`
}

MonitoringReport struct for MonitoringReport

func NewMonitoringReport

func NewMonitoringReport(referenceId int32, eventType EventType, timeStamp time.Time) *MonitoringReport

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

func NewMonitoringReportWithDefaults

func NewMonitoringReportWithDefaults() *MonitoringReport

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

func (*MonitoringReport) GetEventType

func (o *MonitoringReport) GetEventType() EventType

GetEventType returns the EventType field value

func (*MonitoringReport) GetEventTypeOk

func (o *MonitoringReport) GetEventTypeOk() (*EventType, bool)

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

func (*MonitoringReport) GetGpsi

func (o *MonitoringReport) GetGpsi() string

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

func (*MonitoringReport) GetGpsiOk

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

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

func (*MonitoringReport) GetReachabilityForSmsReport

func (o *MonitoringReport) GetReachabilityForSmsReport() ReachabilityForSmsReport

GetReachabilityForSmsReport returns the ReachabilityForSmsReport field value if set, zero value otherwise.

func (*MonitoringReport) GetReachabilityForSmsReportOk

func (o *MonitoringReport) GetReachabilityForSmsReportOk() (*ReachabilityForSmsReport, bool)

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

func (*MonitoringReport) GetReachabilityReport

func (o *MonitoringReport) GetReachabilityReport() ReachabilityReport

GetReachabilityReport returns the ReachabilityReport field value if set, zero value otherwise.

func (*MonitoringReport) GetReachabilityReportOk

func (o *MonitoringReport) GetReachabilityReportOk() (*ReachabilityReport, bool)

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

func (*MonitoringReport) GetReferenceId

func (o *MonitoringReport) GetReferenceId() int32

GetReferenceId returns the ReferenceId field value

func (*MonitoringReport) GetReferenceIdOk

func (o *MonitoringReport) GetReferenceIdOk() (*int32, bool)

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

func (*MonitoringReport) GetReport

func (o *MonitoringReport) GetReport() Report

GetReport returns the Report field value if set, zero value otherwise.

func (*MonitoringReport) GetReportOk

func (o *MonitoringReport) GetReportOk() (*Report, bool)

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

func (*MonitoringReport) GetTimeStamp

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

GetTimeStamp returns the TimeStamp field value

func (*MonitoringReport) GetTimeStampOk

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

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

func (*MonitoringReport) HasGpsi

func (o *MonitoringReport) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*MonitoringReport) HasReachabilityForSmsReport

func (o *MonitoringReport) HasReachabilityForSmsReport() bool

HasReachabilityForSmsReport returns a boolean if a field has been set.

func (*MonitoringReport) HasReachabilityReport

func (o *MonitoringReport) HasReachabilityReport() bool

HasReachabilityReport returns a boolean if a field has been set.

func (*MonitoringReport) HasReport

func (o *MonitoringReport) HasReport() bool

HasReport returns a boolean if a field has been set.

func (MonitoringReport) MarshalJSON

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

func (*MonitoringReport) SetEventType

func (o *MonitoringReport) SetEventType(v EventType)

SetEventType sets field value

func (*MonitoringReport) SetGpsi

func (o *MonitoringReport) SetGpsi(v string)

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

func (*MonitoringReport) SetReachabilityForSmsReport

func (o *MonitoringReport) SetReachabilityForSmsReport(v ReachabilityForSmsReport)

SetReachabilityForSmsReport gets a reference to the given ReachabilityForSmsReport and assigns it to the ReachabilityForSmsReport field.

func (*MonitoringReport) SetReachabilityReport

func (o *MonitoringReport) SetReachabilityReport(v ReachabilityReport)

SetReachabilityReport gets a reference to the given ReachabilityReport and assigns it to the ReachabilityReport field.

func (*MonitoringReport) SetReferenceId

func (o *MonitoringReport) SetReferenceId(v int32)

SetReferenceId sets field value

func (*MonitoringReport) SetReport

func (o *MonitoringReport) SetReport(v Report)

SetReport gets a reference to the given Report and assigns it to the Report field.

func (*MonitoringReport) SetTimeStamp

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

SetTimeStamp sets field value

func (MonitoringReport) ToMap

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

type N3gaLocation

type N3gaLocation struct {
	N3gppTai *Tai `json:"n3gppTai,omitempty"`
	// This IE shall contain the N3IWF identifier received over NGAP and shall be encoded as a  string of hexadecimal characters. Each character in the string shall take a value of \"0\"  to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant  character representing the 4 most significant bits of the N3IWF ID shall appear first in  the string, and the character representing the 4 least significant bit of the N3IWF ID  shall appear last in the string.
	N3IwfId *string `json:"n3IwfId,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	UeIpv4Addr *string   `json:"ueIpv4Addr,omitempty"`
	UeIpv6Addr *Ipv6Addr `json:"ueIpv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber *int32             `json:"portNumber,omitempty"`
	Protocol   *TransportProtocol `json:"protocol,omitempty"`
	TnapId     *TnapId            `json:"tnapId,omitempty"`
	TwapId     *TwapId            `json:"twapId,omitempty"`
	HfcNodeId  *HfcNodeId         `json:"hfcNodeId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	Gli            *string   `json:"gli,omitempty"`
	W5gbanLineType *LineType `json:"w5gbanLineType,omitempty"`
	// Global Cable Identifier uniquely identifying the connection between the 5G-CRG or FN-CRG to the 5GS. See clause 28.15.4 of 3GPP TS 23.003. This shall be encoded as a string per clause 28.15.4 of 3GPP TS 23.003, and compliant with the syntax specified  in clause 2.2  of IETF RFC 7542 for the username part of a NAI. The GCI value is specified in CableLabs WR-TR-5WWC-ARCH.
	Gci *string `json:"gci,omitempty"`
}

N3gaLocation Contains the Non-3GPP access user location.

func NewN3gaLocation

func NewN3gaLocation() *N3gaLocation

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

func NewN3gaLocationWithDefaults

func NewN3gaLocationWithDefaults() *N3gaLocation

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

func (*N3gaLocation) GetGci

func (o *N3gaLocation) GetGci() string

GetGci returns the Gci field value if set, zero value otherwise.

func (*N3gaLocation) GetGciOk

func (o *N3gaLocation) GetGciOk() (*string, bool)

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

func (*N3gaLocation) GetGli

func (o *N3gaLocation) GetGli() string

GetGli returns the Gli field value if set, zero value otherwise.

func (*N3gaLocation) GetGliOk

func (o *N3gaLocation) GetGliOk() (*string, bool)

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

func (*N3gaLocation) GetHfcNodeId

func (o *N3gaLocation) GetHfcNodeId() HfcNodeId

GetHfcNodeId returns the HfcNodeId field value if set, zero value otherwise.

func (*N3gaLocation) GetHfcNodeIdOk

func (o *N3gaLocation) GetHfcNodeIdOk() (*HfcNodeId, bool)

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

func (*N3gaLocation) GetN3IwfId

func (o *N3gaLocation) GetN3IwfId() string

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

func (*N3gaLocation) GetN3IwfIdOk

func (o *N3gaLocation) GetN3IwfIdOk() (*string, bool)

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

func (*N3gaLocation) GetN3gppTai

func (o *N3gaLocation) GetN3gppTai() Tai

GetN3gppTai returns the N3gppTai field value if set, zero value otherwise.

func (*N3gaLocation) GetN3gppTaiOk

func (o *N3gaLocation) GetN3gppTaiOk() (*Tai, bool)

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

func (*N3gaLocation) GetPortNumber

func (o *N3gaLocation) GetPortNumber() int32

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

func (*N3gaLocation) GetPortNumberOk

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

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

func (*N3gaLocation) GetProtocol

func (o *N3gaLocation) GetProtocol() TransportProtocol

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

func (*N3gaLocation) GetProtocolOk

func (o *N3gaLocation) GetProtocolOk() (*TransportProtocol, bool)

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

func (*N3gaLocation) GetTnapId

func (o *N3gaLocation) GetTnapId() TnapId

GetTnapId returns the TnapId field value if set, zero value otherwise.

func (*N3gaLocation) GetTnapIdOk

func (o *N3gaLocation) GetTnapIdOk() (*TnapId, bool)

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

func (*N3gaLocation) GetTwapId

func (o *N3gaLocation) GetTwapId() TwapId

GetTwapId returns the TwapId field value if set, zero value otherwise.

func (*N3gaLocation) GetTwapIdOk

func (o *N3gaLocation) GetTwapIdOk() (*TwapId, bool)

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

func (*N3gaLocation) GetUeIpv4Addr

func (o *N3gaLocation) GetUeIpv4Addr() string

GetUeIpv4Addr returns the UeIpv4Addr field value if set, zero value otherwise.

func (*N3gaLocation) GetUeIpv4AddrOk

func (o *N3gaLocation) GetUeIpv4AddrOk() (*string, bool)

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

func (*N3gaLocation) GetUeIpv6Addr

func (o *N3gaLocation) GetUeIpv6Addr() Ipv6Addr

GetUeIpv6Addr returns the UeIpv6Addr field value if set, zero value otherwise.

func (*N3gaLocation) GetUeIpv6AddrOk

func (o *N3gaLocation) GetUeIpv6AddrOk() (*Ipv6Addr, bool)

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

func (*N3gaLocation) GetW5gbanLineType

func (o *N3gaLocation) GetW5gbanLineType() LineType

GetW5gbanLineType returns the W5gbanLineType field value if set, zero value otherwise.

func (*N3gaLocation) GetW5gbanLineTypeOk

func (o *N3gaLocation) GetW5gbanLineTypeOk() (*LineType, bool)

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

func (*N3gaLocation) HasGci

func (o *N3gaLocation) HasGci() bool

HasGci returns a boolean if a field has been set.

func (*N3gaLocation) HasGli

func (o *N3gaLocation) HasGli() bool

HasGli returns a boolean if a field has been set.

func (*N3gaLocation) HasHfcNodeId

func (o *N3gaLocation) HasHfcNodeId() bool

HasHfcNodeId returns a boolean if a field has been set.

func (*N3gaLocation) HasN3IwfId

func (o *N3gaLocation) HasN3IwfId() bool

HasN3IwfId returns a boolean if a field has been set.

func (*N3gaLocation) HasN3gppTai

func (o *N3gaLocation) HasN3gppTai() bool

HasN3gppTai returns a boolean if a field has been set.

func (*N3gaLocation) HasPortNumber

func (o *N3gaLocation) HasPortNumber() bool

HasPortNumber returns a boolean if a field has been set.

func (*N3gaLocation) HasProtocol

func (o *N3gaLocation) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*N3gaLocation) HasTnapId

func (o *N3gaLocation) HasTnapId() bool

HasTnapId returns a boolean if a field has been set.

func (*N3gaLocation) HasTwapId

func (o *N3gaLocation) HasTwapId() bool

HasTwapId returns a boolean if a field has been set.

func (*N3gaLocation) HasUeIpv4Addr

func (o *N3gaLocation) HasUeIpv4Addr() bool

HasUeIpv4Addr returns a boolean if a field has been set.

func (*N3gaLocation) HasUeIpv6Addr

func (o *N3gaLocation) HasUeIpv6Addr() bool

HasUeIpv6Addr returns a boolean if a field has been set.

func (*N3gaLocation) HasW5gbanLineType

func (o *N3gaLocation) HasW5gbanLineType() bool

HasW5gbanLineType returns a boolean if a field has been set.

func (N3gaLocation) MarshalJSON

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

func (*N3gaLocation) SetGci

func (o *N3gaLocation) SetGci(v string)

SetGci gets a reference to the given string and assigns it to the Gci field.

func (*N3gaLocation) SetGli

func (o *N3gaLocation) SetGli(v string)

SetGli gets a reference to the given string and assigns it to the Gli field.

func (*N3gaLocation) SetHfcNodeId

func (o *N3gaLocation) SetHfcNodeId(v HfcNodeId)

SetHfcNodeId gets a reference to the given HfcNodeId and assigns it to the HfcNodeId field.

func (*N3gaLocation) SetN3IwfId

func (o *N3gaLocation) SetN3IwfId(v string)

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

func (*N3gaLocation) SetN3gppTai

func (o *N3gaLocation) SetN3gppTai(v Tai)

SetN3gppTai gets a reference to the given Tai and assigns it to the N3gppTai field.

func (*N3gaLocation) SetPortNumber

func (o *N3gaLocation) SetPortNumber(v int32)

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

func (*N3gaLocation) SetProtocol

func (o *N3gaLocation) SetProtocol(v TransportProtocol)

SetProtocol gets a reference to the given TransportProtocol and assigns it to the Protocol field.

func (*N3gaLocation) SetTnapId

func (o *N3gaLocation) SetTnapId(v TnapId)

SetTnapId gets a reference to the given TnapId and assigns it to the TnapId field.

func (*N3gaLocation) SetTwapId

func (o *N3gaLocation) SetTwapId(v TwapId)

SetTwapId gets a reference to the given TwapId and assigns it to the TwapId field.

func (*N3gaLocation) SetUeIpv4Addr

func (o *N3gaLocation) SetUeIpv4Addr(v string)

SetUeIpv4Addr gets a reference to the given string and assigns it to the UeIpv4Addr field.

func (*N3gaLocation) SetUeIpv6Addr

func (o *N3gaLocation) SetUeIpv6Addr(v Ipv6Addr)

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

func (*N3gaLocation) SetW5gbanLineType

func (o *N3gaLocation) SetW5gbanLineType(v LineType)

SetW5gbanLineType gets a reference to the given LineType and assigns it to the W5gbanLineType field.

func (N3gaLocation) ToMap

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

type NFType

type NFType struct {
	String *string
}

NFType NF types known to NRF

func (*NFType) MarshalJSON

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

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

func (*NFType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Ncgi

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

Ncgi Contains the NCGI (NR Cell Global Identity), as described in 3GPP 23.003

func NewNcgi

func NewNcgi(plmnId PlmnId, nrCellId string) *Ncgi

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

func NewNcgiWithDefaults

func NewNcgiWithDefaults() *Ncgi

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

func (*Ncgi) GetNid

func (o *Ncgi) GetNid() string

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

func (*Ncgi) GetNidOk

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

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

func (*Ncgi) GetNrCellId

func (o *Ncgi) GetNrCellId() string

GetNrCellId returns the NrCellId field value

func (*Ncgi) GetNrCellIdOk

func (o *Ncgi) GetNrCellIdOk() (*string, bool)

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

func (*Ncgi) GetPlmnId

func (o *Ncgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Ncgi) GetPlmnIdOk

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

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

func (*Ncgi) HasNid

func (o *Ncgi) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Ncgi) MarshalJSON

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

func (*Ncgi) SetNid

func (o *Ncgi) SetNid(v string)

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

func (*Ncgi) SetNrCellId

func (o *Ncgi) SetNrCellId(v string)

SetNrCellId sets field value

func (*Ncgi) SetPlmnId

func (o *Ncgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Ncgi) ToMap

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

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

type NrLocation struct {
	Tai        Tai   `json:"tai"`
	Ncgi       Ncgi  `json:"ncgi"`
	IgnoreNcgi *bool `json:"ignoreNcgi,omitempty"`
	// The value represents the elapsed time in minutes since the last network contact of the mobile station. Value \"0\" indicates that the location information was obtained after a successful paging procedure for Active Location Retrieval when the UE is in idle mode or after a successful  NG-RAN location reporting procedure with the eNB when the UE is in connected mode. Any other value than \"0\" indicates that the location information is the last known one. See 3GPP TS 29.002 clause 17.7.8.
	AgeOfLocationInformation *int32 `json:"ageOfLocationInformation,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	UeLocationTimestamp *time.Time `json:"ueLocationTimestamp,omitempty"`
	// Refer to geographical Information. See 3GPP TS 23.032 clause 7.3.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeographicalInformation *string `json:"geographicalInformation,omitempty"`
	// Refers to Calling Geodetic Location. See ITU-T Recommendation Q.763 (1999) [24] clause 3.88.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeodeticInformation *string          `json:"geodeticInformation,omitempty"`
	GlobalGnbId         *GlobalRanNodeId `json:"globalGnbId,omitempty"`
}

NrLocation Contains the NR user location.

func NewNrLocation

func NewNrLocation(tai Tai, ncgi Ncgi) *NrLocation

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

func NewNrLocationWithDefaults

func NewNrLocationWithDefaults() *NrLocation

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

func (*NrLocation) GetAgeOfLocationInformation

func (o *NrLocation) GetAgeOfLocationInformation() int32

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

func (*NrLocation) GetAgeOfLocationInformationOk

func (o *NrLocation) GetAgeOfLocationInformationOk() (*int32, bool)

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

func (*NrLocation) GetGeodeticInformation

func (o *NrLocation) GetGeodeticInformation() string

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

func (*NrLocation) GetGeodeticInformationOk

func (o *NrLocation) GetGeodeticInformationOk() (*string, bool)

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

func (*NrLocation) GetGeographicalInformation

func (o *NrLocation) GetGeographicalInformation() string

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

func (*NrLocation) GetGeographicalInformationOk

func (o *NrLocation) GetGeographicalInformationOk() (*string, bool)

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

func (*NrLocation) GetGlobalGnbId

func (o *NrLocation) GetGlobalGnbId() GlobalRanNodeId

GetGlobalGnbId returns the GlobalGnbId field value if set, zero value otherwise.

func (*NrLocation) GetGlobalGnbIdOk

func (o *NrLocation) GetGlobalGnbIdOk() (*GlobalRanNodeId, bool)

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

func (*NrLocation) GetIgnoreNcgi

func (o *NrLocation) GetIgnoreNcgi() bool

GetIgnoreNcgi returns the IgnoreNcgi field value if set, zero value otherwise.

func (*NrLocation) GetIgnoreNcgiOk

func (o *NrLocation) GetIgnoreNcgiOk() (*bool, bool)

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

func (*NrLocation) GetNcgi

func (o *NrLocation) GetNcgi() Ncgi

GetNcgi returns the Ncgi field value

func (*NrLocation) GetNcgiOk

func (o *NrLocation) GetNcgiOk() (*Ncgi, bool)

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

func (*NrLocation) GetTai

func (o *NrLocation) GetTai() Tai

GetTai returns the Tai field value

func (*NrLocation) GetTaiOk

func (o *NrLocation) GetTaiOk() (*Tai, bool)

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

func (*NrLocation) GetUeLocationTimestamp

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

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

func (*NrLocation) GetUeLocationTimestampOk

func (o *NrLocation) GetUeLocationTimestampOk() (*time.Time, bool)

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

func (*NrLocation) HasAgeOfLocationInformation

func (o *NrLocation) HasAgeOfLocationInformation() bool

HasAgeOfLocationInformation returns a boolean if a field has been set.

func (*NrLocation) HasGeodeticInformation

func (o *NrLocation) HasGeodeticInformation() bool

HasGeodeticInformation returns a boolean if a field has been set.

func (*NrLocation) HasGeographicalInformation

func (o *NrLocation) HasGeographicalInformation() bool

HasGeographicalInformation returns a boolean if a field has been set.

func (*NrLocation) HasGlobalGnbId

func (o *NrLocation) HasGlobalGnbId() bool

HasGlobalGnbId returns a boolean if a field has been set.

func (*NrLocation) HasIgnoreNcgi

func (o *NrLocation) HasIgnoreNcgi() bool

HasIgnoreNcgi returns a boolean if a field has been set.

func (*NrLocation) HasUeLocationTimestamp

func (o *NrLocation) HasUeLocationTimestamp() bool

HasUeLocationTimestamp returns a boolean if a field has been set.

func (NrLocation) MarshalJSON

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

func (*NrLocation) SetAgeOfLocationInformation

func (o *NrLocation) SetAgeOfLocationInformation(v int32)

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

func (*NrLocation) SetGeodeticInformation

func (o *NrLocation) SetGeodeticInformation(v string)

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

func (*NrLocation) SetGeographicalInformation

func (o *NrLocation) SetGeographicalInformation(v string)

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

func (*NrLocation) SetGlobalGnbId

func (o *NrLocation) SetGlobalGnbId(v GlobalRanNodeId)

SetGlobalGnbId gets a reference to the given GlobalRanNodeId and assigns it to the GlobalGnbId field.

func (*NrLocation) SetIgnoreNcgi

func (o *NrLocation) SetIgnoreNcgi(v bool)

SetIgnoreNcgi gets a reference to the given bool and assigns it to the IgnoreNcgi field.

func (*NrLocation) SetNcgi

func (o *NrLocation) SetNcgi(v Ncgi)

SetNcgi sets field value

func (*NrLocation) SetTai

func (o *NrLocation) SetTai(v Tai)

SetTai sets field value

func (*NrLocation) SetUeLocationTimestamp

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

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

func (NrLocation) ToMap

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

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

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

func NewNullableAssociationType

func NewNullableAssociationType(val *AssociationType) *NullableAssociationType

func (NullableAssociationType) Get

func (NullableAssociationType) IsSet

func (v NullableAssociationType) IsSet() bool

func (NullableAssociationType) MarshalJSON

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

func (*NullableAssociationType) Set

func (*NullableAssociationType) UnmarshalJSON

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

func (*NullableAssociationType) Unset

func (v *NullableAssociationType) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCellGlobalId

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

func NewNullableCellGlobalId

func NewNullableCellGlobalId(val *CellGlobalId) *NullableCellGlobalId

func (NullableCellGlobalId) Get

func (NullableCellGlobalId) IsSet

func (v NullableCellGlobalId) IsSet() bool

func (NullableCellGlobalId) MarshalJSON

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

func (*NullableCellGlobalId) Set

func (v *NullableCellGlobalId) Set(val *CellGlobalId)

func (*NullableCellGlobalId) UnmarshalJSON

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

func (*NullableCellGlobalId) Unset

func (v *NullableCellGlobalId) Unset()

type NullableChangeOfSupiPeiAssociationReport

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

func (NullableChangeOfSupiPeiAssociationReport) Get

func (NullableChangeOfSupiPeiAssociationReport) IsSet

func (NullableChangeOfSupiPeiAssociationReport) MarshalJSON

func (*NullableChangeOfSupiPeiAssociationReport) Set

func (*NullableChangeOfSupiPeiAssociationReport) UnmarshalJSON

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

func (*NullableChangeOfSupiPeiAssociationReport) Unset

type NullableCmInfo

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

func NewNullableCmInfo

func NewNullableCmInfo(val *CmInfo) *NullableCmInfo

func (NullableCmInfo) Get

func (v NullableCmInfo) Get() *CmInfo

func (NullableCmInfo) IsSet

func (v NullableCmInfo) IsSet() bool

func (NullableCmInfo) MarshalJSON

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

func (*NullableCmInfo) Set

func (v *NullableCmInfo) Set(val *CmInfo)

func (*NullableCmInfo) UnmarshalJSON

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

func (*NullableCmInfo) Unset

func (v *NullableCmInfo) Unset()

type NullableCmInfoReport

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

func NewNullableCmInfoReport

func NewNullableCmInfoReport(val *CmInfoReport) *NullableCmInfoReport

func (NullableCmInfoReport) Get

func (NullableCmInfoReport) IsSet

func (v NullableCmInfoReport) IsSet() bool

func (NullableCmInfoReport) MarshalJSON

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

func (*NullableCmInfoReport) Set

func (v *NullableCmInfoReport) Set(val *CmInfoReport)

func (*NullableCmInfoReport) UnmarshalJSON

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

func (*NullableCmInfoReport) Unset

func (v *NullableCmInfoReport) Unset()

type NullableCmState

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

func NewNullableCmState

func NewNullableCmState(val *CmState) *NullableCmState

func (NullableCmState) Get

func (v NullableCmState) Get() *CmState

func (NullableCmState) IsSet

func (v NullableCmState) IsSet() bool

func (NullableCmState) MarshalJSON

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

func (*NullableCmState) Set

func (v *NullableCmState) Set(val *CmState)

func (*NullableCmState) UnmarshalJSON

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

func (*NullableCmState) Unset

func (v *NullableCmState) Unset()

type NullableCnType

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

func NewNullableCnType

func NewNullableCnType(val *CnType) *NullableCnType

func (NullableCnType) Get

func (v NullableCnType) Get() *CnType

func (NullableCnType) IsSet

func (v NullableCnType) IsSet() bool

func (NullableCnType) MarshalJSON

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

func (*NullableCnType) Set

func (v *NullableCnType) Set(val *CnType)

func (*NullableCnType) UnmarshalJSON

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

func (*NullableCnType) Unset

func (v *NullableCnType) Unset()

type NullableCnTypeChangeReport

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

func NewNullableCnTypeChangeReport

func NewNullableCnTypeChangeReport(val *CnTypeChangeReport) *NullableCnTypeChangeReport

func (NullableCnTypeChangeReport) Get

func (NullableCnTypeChangeReport) IsSet

func (v NullableCnTypeChangeReport) IsSet() bool

func (NullableCnTypeChangeReport) MarshalJSON

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

func (*NullableCnTypeChangeReport) Set

func (*NullableCnTypeChangeReport) UnmarshalJSON

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

func (*NullableCnTypeChangeReport) Unset

func (v *NullableCnTypeChangeReport) Unset()

type NullableContextInfo

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

func NewNullableContextInfo

func NewNullableContextInfo(val *ContextInfo) *NullableContextInfo

func (NullableContextInfo) Get

func (NullableContextInfo) IsSet

func (v NullableContextInfo) IsSet() bool

func (NullableContextInfo) MarshalJSON

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

func (*NullableContextInfo) Set

func (v *NullableContextInfo) Set(val *ContextInfo)

func (*NullableContextInfo) UnmarshalJSON

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

func (*NullableContextInfo) Unset

func (v *NullableContextInfo) Unset()

type NullableCreatedEeSubscription

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

func (NullableCreatedEeSubscription) Get

func (NullableCreatedEeSubscription) IsSet

func (NullableCreatedEeSubscription) MarshalJSON

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

func (*NullableCreatedEeSubscription) Set

func (*NullableCreatedEeSubscription) UnmarshalJSON

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

func (*NullableCreatedEeSubscription) Unset

func (v *NullableCreatedEeSubscription) Unset()

type NullableDataRestorationNotification

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

func (NullableDataRestorationNotification) Get

func (NullableDataRestorationNotification) IsSet

func (NullableDataRestorationNotification) MarshalJSON

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

func (*NullableDataRestorationNotification) Set

func (*NullableDataRestorationNotification) UnmarshalJSON

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

func (*NullableDataRestorationNotification) Unset

type NullableDatalinkReportingConfiguration

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

func (NullableDatalinkReportingConfiguration) Get

func (NullableDatalinkReportingConfiguration) IsSet

func (NullableDatalinkReportingConfiguration) MarshalJSON

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

func (*NullableDatalinkReportingConfiguration) Set

func (*NullableDatalinkReportingConfiguration) UnmarshalJSON

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

func (*NullableDatalinkReportingConfiguration) Unset

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

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

func NewNullableEcgi

func NewNullableEcgi(val *Ecgi) *NullableEcgi

func (NullableEcgi) Get

func (v NullableEcgi) Get() *Ecgi

func (NullableEcgi) IsSet

func (v NullableEcgi) IsSet() bool

func (NullableEcgi) MarshalJSON

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

func (*NullableEcgi) Set

func (v *NullableEcgi) Set(val *Ecgi)

func (*NullableEcgi) UnmarshalJSON

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

func (*NullableEcgi) Unset

func (v *NullableEcgi) Unset()

type NullableEeMonitoringRevoked

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

func NewNullableEeMonitoringRevoked

func NewNullableEeMonitoringRevoked(val *EeMonitoringRevoked) *NullableEeMonitoringRevoked

func (NullableEeMonitoringRevoked) Get

func (NullableEeMonitoringRevoked) IsSet

func (NullableEeMonitoringRevoked) MarshalJSON

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

func (*NullableEeMonitoringRevoked) Set

func (*NullableEeMonitoringRevoked) UnmarshalJSON

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

func (*NullableEeMonitoringRevoked) Unset

func (v *NullableEeMonitoringRevoked) Unset()

type NullableEeSubscription

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

func NewNullableEeSubscription

func NewNullableEeSubscription(val *EeSubscription) *NullableEeSubscription

func (NullableEeSubscription) Get

func (NullableEeSubscription) IsSet

func (v NullableEeSubscription) IsSet() bool

func (NullableEeSubscription) MarshalJSON

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

func (*NullableEeSubscription) Set

func (*NullableEeSubscription) UnmarshalJSON

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

func (*NullableEeSubscription) Unset

func (v *NullableEeSubscription) Unset()

type NullableEutraLocation

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

func NewNullableEutraLocation

func NewNullableEutraLocation(val *EutraLocation) *NullableEutraLocation

func (NullableEutraLocation) Get

func (NullableEutraLocation) IsSet

func (v NullableEutraLocation) IsSet() bool

func (NullableEutraLocation) MarshalJSON

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

func (*NullableEutraLocation) Set

func (v *NullableEutraLocation) Set(val *EutraLocation)

func (*NullableEutraLocation) UnmarshalJSON

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

func (*NullableEutraLocation) Unset

func (v *NullableEutraLocation) Unset()

type NullableEventReportMode

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

func NewNullableEventReportMode

func NewNullableEventReportMode(val *EventReportMode) *NullableEventReportMode

func (NullableEventReportMode) Get

func (NullableEventReportMode) IsSet

func (v NullableEventReportMode) IsSet() bool

func (NullableEventReportMode) MarshalJSON

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

func (*NullableEventReportMode) Set

func (*NullableEventReportMode) UnmarshalJSON

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

func (*NullableEventReportMode) Unset

func (v *NullableEventReportMode) Unset()

type NullableEventType

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

func NewNullableEventType

func NewNullableEventType(val *EventType) *NullableEventType

func (NullableEventType) Get

func (v NullableEventType) Get() *EventType

func (NullableEventType) IsSet

func (v NullableEventType) IsSet() bool

func (NullableEventType) MarshalJSON

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

func (*NullableEventType) Set

func (v *NullableEventType) Set(val *EventType)

func (*NullableEventType) UnmarshalJSON

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

func (*NullableEventType) Unset

func (v *NullableEventType) Unset()

type NullableFailedCause

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

func NewNullableFailedCause

func NewNullableFailedCause(val *FailedCause) *NullableFailedCause

func (NullableFailedCause) Get

func (NullableFailedCause) IsSet

func (v NullableFailedCause) IsSet() bool

func (NullableFailedCause) MarshalJSON

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

func (*NullableFailedCause) Set

func (v *NullableFailedCause) Set(val *FailedCause)

func (*NullableFailedCause) UnmarshalJSON

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

func (*NullableFailedCause) Unset

func (v *NullableFailedCause) Unset()

type NullableFailedMonitoringConfiguration

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

func (NullableFailedMonitoringConfiguration) Get

func (NullableFailedMonitoringConfiguration) IsSet

func (NullableFailedMonitoringConfiguration) MarshalJSON

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

func (*NullableFailedMonitoringConfiguration) Set

func (*NullableFailedMonitoringConfiguration) UnmarshalJSON

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

func (*NullableFailedMonitoringConfiguration) Unset

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGNbId

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

func NewNullableGNbId

func NewNullableGNbId(val *GNbId) *NullableGNbId

func (NullableGNbId) Get

func (v NullableGNbId) Get() *GNbId

func (NullableGNbId) IsSet

func (v NullableGNbId) IsSet() bool

func (NullableGNbId) MarshalJSON

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

func (*NullableGNbId) Set

func (v *NullableGNbId) Set(val *GNbId)

func (*NullableGNbId) UnmarshalJSON

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

func (*NullableGNbId) Unset

func (v *NullableGNbId) Unset()

type NullableGeraLocation

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

func NewNullableGeraLocation

func NewNullableGeraLocation(val *GeraLocation) *NullableGeraLocation

func (NullableGeraLocation) Get

func (NullableGeraLocation) IsSet

func (v NullableGeraLocation) IsSet() bool

func (NullableGeraLocation) MarshalJSON

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

func (*NullableGeraLocation) Set

func (v *NullableGeraLocation) Set(val *GeraLocation)

func (*NullableGeraLocation) UnmarshalJSON

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

func (*NullableGeraLocation) Unset

func (v *NullableGeraLocation) Unset()

type NullableGlobalRanNodeId

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

func NewNullableGlobalRanNodeId

func NewNullableGlobalRanNodeId(val *GlobalRanNodeId) *NullableGlobalRanNodeId

func (NullableGlobalRanNodeId) Get

func (NullableGlobalRanNodeId) IsSet

func (v NullableGlobalRanNodeId) IsSet() bool

func (NullableGlobalRanNodeId) MarshalJSON

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

func (*NullableGlobalRanNodeId) Set

func (*NullableGlobalRanNodeId) UnmarshalJSON

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

func (*NullableGlobalRanNodeId) Unset

func (v *NullableGlobalRanNodeId) Unset()

type NullableHfcNodeId

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

func NewNullableHfcNodeId

func NewNullableHfcNodeId(val *HfcNodeId) *NullableHfcNodeId

func (NullableHfcNodeId) Get

func (v NullableHfcNodeId) Get() *HfcNodeId

func (NullableHfcNodeId) IsSet

func (v NullableHfcNodeId) IsSet() bool

func (NullableHfcNodeId) MarshalJSON

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

func (*NullableHfcNodeId) Set

func (v *NullableHfcNodeId) Set(val *HfcNodeId)

func (*NullableHfcNodeId) UnmarshalJSON

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

func (*NullableHfcNodeId) Unset

func (v *NullableHfcNodeId) Unset()

type NullableIdentityRange

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

func NewNullableIdentityRange

func NewNullableIdentityRange(val *IdentityRange) *NullableIdentityRange

func (NullableIdentityRange) Get

func (NullableIdentityRange) IsSet

func (v NullableIdentityRange) IsSet() bool

func (NullableIdentityRange) MarshalJSON

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

func (*NullableIdentityRange) Set

func (v *NullableIdentityRange) Set(val *IdentityRange)

func (*NullableIdentityRange) UnmarshalJSON

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

func (*NullableIdentityRange) Unset

func (v *NullableIdentityRange) Unset()

type NullableIdleStatusIndication

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

func NewNullableIdleStatusIndication

func NewNullableIdleStatusIndication(val *IdleStatusIndication) *NullableIdleStatusIndication

func (NullableIdleStatusIndication) Get

func (NullableIdleStatusIndication) IsSet

func (NullableIdleStatusIndication) MarshalJSON

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

func (*NullableIdleStatusIndication) Set

func (*NullableIdleStatusIndication) UnmarshalJSON

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

func (*NullableIdleStatusIndication) Unset

func (v *NullableIdleStatusIndication) Unset()

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

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

func NewNullableIpv6Addr

func NewNullableIpv6Addr(val *Ipv6Addr) *NullableIpv6Addr

func (NullableIpv6Addr) Get

func (v NullableIpv6Addr) Get() *Ipv6Addr

func (NullableIpv6Addr) IsSet

func (v NullableIpv6Addr) IsSet() bool

func (NullableIpv6Addr) MarshalJSON

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

func (*NullableIpv6Addr) Set

func (v *NullableIpv6Addr) Set(val *Ipv6Addr)

func (*NullableIpv6Addr) UnmarshalJSON

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

func (*NullableIpv6Addr) Unset

func (v *NullableIpv6Addr) Unset()

type NullableIpv6Prefix

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

func NewNullableIpv6Prefix

func NewNullableIpv6Prefix(val *Ipv6Prefix) *NullableIpv6Prefix

func (NullableIpv6Prefix) Get

func (v NullableIpv6Prefix) Get() *Ipv6Prefix

func (NullableIpv6Prefix) IsSet

func (v NullableIpv6Prefix) IsSet() bool

func (NullableIpv6Prefix) MarshalJSON

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

func (*NullableIpv6Prefix) Set

func (v *NullableIpv6Prefix) Set(val *Ipv6Prefix)

func (*NullableIpv6Prefix) UnmarshalJSON

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

func (*NullableIpv6Prefix) Unset

func (v *NullableIpv6Prefix) Unset()

type NullableLineType

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

func NewNullableLineType

func NewNullableLineType(val *LineType) *NullableLineType

func (NullableLineType) Get

func (v NullableLineType) Get() *LineType

func (NullableLineType) IsSet

func (v NullableLineType) IsSet() bool

func (NullableLineType) MarshalJSON

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

func (*NullableLineType) Set

func (v *NullableLineType) Set(val *LineType)

func (*NullableLineType) UnmarshalJSON

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

func (*NullableLineType) Unset

func (v *NullableLineType) Unset()

type NullableLocationAccuracy

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

func NewNullableLocationAccuracy

func NewNullableLocationAccuracy(val *LocationAccuracy) *NullableLocationAccuracy

func (NullableLocationAccuracy) Get

func (NullableLocationAccuracy) IsSet

func (v NullableLocationAccuracy) IsSet() bool

func (NullableLocationAccuracy) MarshalJSON

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

func (*NullableLocationAccuracy) Set

func (*NullableLocationAccuracy) UnmarshalJSON

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

func (*NullableLocationAccuracy) Unset

func (v *NullableLocationAccuracy) Unset()

type NullableLocationAreaId

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

func NewNullableLocationAreaId

func NewNullableLocationAreaId(val *LocationAreaId) *NullableLocationAreaId

func (NullableLocationAreaId) Get

func (NullableLocationAreaId) IsSet

func (v NullableLocationAreaId) IsSet() bool

func (NullableLocationAreaId) MarshalJSON

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

func (*NullableLocationAreaId) Set

func (*NullableLocationAreaId) UnmarshalJSON

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

func (*NullableLocationAreaId) Unset

func (v *NullableLocationAreaId) Unset()

type NullableLocationReport

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

func NewNullableLocationReport

func NewNullableLocationReport(val *LocationReport) *NullableLocationReport

func (NullableLocationReport) Get

func (NullableLocationReport) IsSet

func (v NullableLocationReport) IsSet() bool

func (NullableLocationReport) MarshalJSON

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

func (*NullableLocationReport) Set

func (*NullableLocationReport) UnmarshalJSON

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

func (*NullableLocationReport) Unset

func (v *NullableLocationReport) Unset()

type NullableLocationReportingConfiguration

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

func (NullableLocationReportingConfiguration) Get

func (NullableLocationReportingConfiguration) IsSet

func (NullableLocationReportingConfiguration) MarshalJSON

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

func (*NullableLocationReportingConfiguration) Set

func (*NullableLocationReportingConfiguration) UnmarshalJSON

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

func (*NullableLocationReportingConfiguration) Unset

type NullableLossConnectivityCfg

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

func NewNullableLossConnectivityCfg

func NewNullableLossConnectivityCfg(val *LossConnectivityCfg) *NullableLossConnectivityCfg

func (NullableLossConnectivityCfg) Get

func (NullableLossConnectivityCfg) IsSet

func (NullableLossConnectivityCfg) MarshalJSON

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

func (*NullableLossConnectivityCfg) Set

func (*NullableLossConnectivityCfg) UnmarshalJSON

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

func (*NullableLossConnectivityCfg) Unset

func (v *NullableLossConnectivityCfg) Unset()

type NullableLossConnectivityReport

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

func (NullableLossConnectivityReport) Get

func (NullableLossConnectivityReport) IsSet

func (NullableLossConnectivityReport) MarshalJSON

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

func (*NullableLossConnectivityReport) Set

func (*NullableLossConnectivityReport) UnmarshalJSON

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

func (*NullableLossConnectivityReport) Unset

func (v *NullableLossConnectivityReport) Unset()

type NullableLossOfConnectivityReason

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

func (NullableLossOfConnectivityReason) Get

func (NullableLossOfConnectivityReason) IsSet

func (NullableLossOfConnectivityReason) MarshalJSON

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

func (*NullableLossOfConnectivityReason) Set

func (*NullableLossOfConnectivityReason) UnmarshalJSON

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

func (*NullableLossOfConnectivityReason) Unset

type NullableMonitoringConfiguration

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

func (NullableMonitoringConfiguration) Get

func (NullableMonitoringConfiguration) IsSet

func (NullableMonitoringConfiguration) MarshalJSON

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

func (*NullableMonitoringConfiguration) Set

func (*NullableMonitoringConfiguration) UnmarshalJSON

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

func (*NullableMonitoringConfiguration) Unset

type NullableMonitoringEvent

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

func NewNullableMonitoringEvent

func NewNullableMonitoringEvent(val *MonitoringEvent) *NullableMonitoringEvent

func (NullableMonitoringEvent) Get

func (NullableMonitoringEvent) IsSet

func (v NullableMonitoringEvent) IsSet() bool

func (NullableMonitoringEvent) MarshalJSON

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

func (*NullableMonitoringEvent) Set

func (*NullableMonitoringEvent) UnmarshalJSON

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

func (*NullableMonitoringEvent) Unset

func (v *NullableMonitoringEvent) Unset()

type NullableMonitoringReport

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

func NewNullableMonitoringReport

func NewNullableMonitoringReport(val *MonitoringReport) *NullableMonitoringReport

func (NullableMonitoringReport) Get

func (NullableMonitoringReport) IsSet

func (v NullableMonitoringReport) IsSet() bool

func (NullableMonitoringReport) MarshalJSON

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

func (*NullableMonitoringReport) Set

func (*NullableMonitoringReport) UnmarshalJSON

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

func (*NullableMonitoringReport) Unset

func (v *NullableMonitoringReport) Unset()

type NullableN3gaLocation

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

func NewNullableN3gaLocation

func NewNullableN3gaLocation(val *N3gaLocation) *NullableN3gaLocation

func (NullableN3gaLocation) Get

func (NullableN3gaLocation) IsSet

func (v NullableN3gaLocation) IsSet() bool

func (NullableN3gaLocation) MarshalJSON

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

func (*NullableN3gaLocation) Set

func (v *NullableN3gaLocation) Set(val *N3gaLocation)

func (*NullableN3gaLocation) UnmarshalJSON

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

func (*NullableN3gaLocation) Unset

func (v *NullableN3gaLocation) Unset()

type NullableNFType

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

func NewNullableNFType

func NewNullableNFType(val *NFType) *NullableNFType

func (NullableNFType) Get

func (v NullableNFType) Get() *NFType

func (NullableNFType) IsSet

func (v NullableNFType) IsSet() bool

func (NullableNFType) MarshalJSON

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

func (*NullableNFType) Set

func (v *NullableNFType) Set(val *NFType)

func (*NullableNFType) UnmarshalJSON

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

func (*NullableNFType) Unset

func (v *NullableNFType) Unset()

type NullableNcgi

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

func NewNullableNcgi

func NewNullableNcgi(val *Ncgi) *NullableNcgi

func (NullableNcgi) Get

func (v NullableNcgi) Get() *Ncgi

func (NullableNcgi) IsSet

func (v NullableNcgi) IsSet() bool

func (NullableNcgi) MarshalJSON

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

func (*NullableNcgi) Set

func (v *NullableNcgi) Set(val *Ncgi)

func (*NullableNcgi) UnmarshalJSON

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

func (*NullableNcgi) Unset

func (v *NullableNcgi) Unset()

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

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

func NewNullableNrLocation

func NewNullableNrLocation(val *NrLocation) *NullableNrLocation

func (NullableNrLocation) Get

func (v NullableNrLocation) Get() *NrLocation

func (NullableNrLocation) IsSet

func (v NullableNrLocation) IsSet() bool

func (NullableNrLocation) MarshalJSON

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

func (*NullableNrLocation) Set

func (v *NullableNrLocation) Set(val *NrLocation)

func (*NullableNrLocation) UnmarshalJSON

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

func (*NullableNrLocation) Unset

func (v *NullableNrLocation) Unset()

type NullablePatchItem

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

func NewNullablePatchItem

func NewNullablePatchItem(val *PatchItem) *NullablePatchItem

func (NullablePatchItem) Get

func (v NullablePatchItem) Get() *PatchItem

func (NullablePatchItem) IsSet

func (v NullablePatchItem) IsSet() bool

func (NullablePatchItem) MarshalJSON

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

func (*NullablePatchItem) Set

func (v *NullablePatchItem) Set(val *PatchItem)

func (*NullablePatchItem) UnmarshalJSON

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

func (*NullablePatchItem) Unset

func (v *NullablePatchItem) Unset()

type NullablePatchOperation

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

func NewNullablePatchOperation

func NewNullablePatchOperation(val *PatchOperation) *NullablePatchOperation

func (NullablePatchOperation) Get

func (NullablePatchOperation) IsSet

func (v NullablePatchOperation) IsSet() bool

func (NullablePatchOperation) MarshalJSON

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

func (*NullablePatchOperation) Set

func (*NullablePatchOperation) UnmarshalJSON

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

func (*NullablePatchOperation) Unset

func (v *NullablePatchOperation) Unset()

type NullablePatchResult

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

func NewNullablePatchResult

func NewNullablePatchResult(val *PatchResult) *NullablePatchResult

func (NullablePatchResult) Get

func (NullablePatchResult) IsSet

func (v NullablePatchResult) IsSet() bool

func (NullablePatchResult) MarshalJSON

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

func (*NullablePatchResult) Set

func (v *NullablePatchResult) Set(val *PatchResult)

func (*NullablePatchResult) UnmarshalJSON

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

func (*NullablePatchResult) Unset

func (v *NullablePatchResult) Unset()

type NullablePdnConnectivityStatReport

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

func (NullablePdnConnectivityStatReport) Get

func (NullablePdnConnectivityStatReport) IsSet

func (NullablePdnConnectivityStatReport) MarshalJSON

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

func (*NullablePdnConnectivityStatReport) Set

func (*NullablePdnConnectivityStatReport) UnmarshalJSON

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

func (*NullablePdnConnectivityStatReport) Unset

type NullablePdnConnectivityStatus

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

func (NullablePdnConnectivityStatus) Get

func (NullablePdnConnectivityStatus) IsSet

func (NullablePdnConnectivityStatus) MarshalJSON

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

func (*NullablePdnConnectivityStatus) Set

func (*NullablePdnConnectivityStatus) UnmarshalJSON

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

func (*NullablePdnConnectivityStatus) Unset

func (v *NullablePdnConnectivityStatus) Unset()

type NullablePduSessionStatusCfg

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

func NewNullablePduSessionStatusCfg

func NewNullablePduSessionStatusCfg(val *PduSessionStatusCfg) *NullablePduSessionStatusCfg

func (NullablePduSessionStatusCfg) Get

func (NullablePduSessionStatusCfg) IsSet

func (NullablePduSessionStatusCfg) MarshalJSON

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

func (*NullablePduSessionStatusCfg) Set

func (*NullablePduSessionStatusCfg) UnmarshalJSON

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

func (*NullablePduSessionStatusCfg) Unset

func (v *NullablePduSessionStatusCfg) Unset()

type NullablePduSessionType

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

func NewNullablePduSessionType

func NewNullablePduSessionType(val *PduSessionType) *NullablePduSessionType

func (NullablePduSessionType) Get

func (NullablePduSessionType) IsSet

func (v NullablePduSessionType) IsSet() bool

func (NullablePduSessionType) MarshalJSON

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

func (*NullablePduSessionType) Set

func (*NullablePduSessionType) UnmarshalJSON

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

func (*NullablePduSessionType) Unset

func (v *NullablePduSessionType) Unset()

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

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

func (NullableReachabilityForDataConfiguration) Get

func (NullableReachabilityForDataConfiguration) IsSet

func (NullableReachabilityForDataConfiguration) MarshalJSON

func (*NullableReachabilityForDataConfiguration) Set

func (*NullableReachabilityForDataConfiguration) UnmarshalJSON

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

func (*NullableReachabilityForDataConfiguration) Unset

type NullableReachabilityForDataReportConfig

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

func (NullableReachabilityForDataReportConfig) Get

func (NullableReachabilityForDataReportConfig) IsSet

func (NullableReachabilityForDataReportConfig) MarshalJSON

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

func (*NullableReachabilityForDataReportConfig) Set

func (*NullableReachabilityForDataReportConfig) UnmarshalJSON

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

func (*NullableReachabilityForDataReportConfig) Unset

type NullableReachabilityForSmsConfiguration

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

func (NullableReachabilityForSmsConfiguration) Get

func (NullableReachabilityForSmsConfiguration) IsSet

func (NullableReachabilityForSmsConfiguration) MarshalJSON

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

func (*NullableReachabilityForSmsConfiguration) Set

func (*NullableReachabilityForSmsConfiguration) UnmarshalJSON

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

func (*NullableReachabilityForSmsConfiguration) Unset

type NullableReachabilityForSmsReport

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

func (NullableReachabilityForSmsReport) Get

func (NullableReachabilityForSmsReport) IsSet

func (NullableReachabilityForSmsReport) MarshalJSON

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

func (*NullableReachabilityForSmsReport) Set

func (*NullableReachabilityForSmsReport) UnmarshalJSON

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

func (*NullableReachabilityForSmsReport) Unset

type NullableReachabilityReport

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

func NewNullableReachabilityReport

func NewNullableReachabilityReport(val *ReachabilityReport) *NullableReachabilityReport

func (NullableReachabilityReport) Get

func (NullableReachabilityReport) IsSet

func (v NullableReachabilityReport) IsSet() bool

func (NullableReachabilityReport) MarshalJSON

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

func (*NullableReachabilityReport) Set

func (*NullableReachabilityReport) UnmarshalJSON

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

func (*NullableReachabilityReport) Unset

func (v *NullableReachabilityReport) Unset()

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

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

func NewNullableReport

func NewNullableReport(val *Report) *NullableReport

func (NullableReport) Get

func (v NullableReport) Get() *Report

func (NullableReport) IsSet

func (v NullableReport) IsSet() bool

func (NullableReport) MarshalJSON

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

func (*NullableReport) Set

func (v *NullableReport) Set(val *Report)

func (*NullableReport) UnmarshalJSON

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

func (*NullableReport) Unset

func (v *NullableReport) Unset()

type NullableReportItem

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

func NewNullableReportItem

func NewNullableReportItem(val *ReportItem) *NullableReportItem

func (NullableReportItem) Get

func (v NullableReportItem) Get() *ReportItem

func (NullableReportItem) IsSet

func (v NullableReportItem) IsSet() bool

func (NullableReportItem) MarshalJSON

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

func (*NullableReportItem) Set

func (v *NullableReportItem) Set(val *ReportItem)

func (*NullableReportItem) UnmarshalJSON

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

func (*NullableReportItem) Unset

func (v *NullableReportItem) Unset()

type NullableReportingOptions

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

func NewNullableReportingOptions

func NewNullableReportingOptions(val *ReportingOptions) *NullableReportingOptions

func (NullableReportingOptions) Get

func (NullableReportingOptions) IsSet

func (v NullableReportingOptions) IsSet() bool

func (NullableReportingOptions) MarshalJSON

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

func (*NullableReportingOptions) Set

func (*NullableReportingOptions) UnmarshalJSON

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

func (*NullableReportingOptions) Unset

func (v *NullableReportingOptions) Unset()

type NullableRevokedCause

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

func NewNullableRevokedCause

func NewNullableRevokedCause(val *RevokedCause) *NullableRevokedCause

func (NullableRevokedCause) Get

func (NullableRevokedCause) IsSet

func (v NullableRevokedCause) IsSet() bool

func (NullableRevokedCause) MarshalJSON

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

func (*NullableRevokedCause) Set

func (v *NullableRevokedCause) Set(val *RevokedCause)

func (*NullableRevokedCause) UnmarshalJSON

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

func (*NullableRevokedCause) Unset

func (v *NullableRevokedCause) Unset()

type NullableRoamingStatusReport

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

func NewNullableRoamingStatusReport

func NewNullableRoamingStatusReport(val *RoamingStatusReport) *NullableRoamingStatusReport

func (NullableRoamingStatusReport) Get

func (NullableRoamingStatusReport) IsSet

func (NullableRoamingStatusReport) MarshalJSON

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

func (*NullableRoamingStatusReport) Set

func (*NullableRoamingStatusReport) UnmarshalJSON

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

func (*NullableRoamingStatusReport) Unset

func (v *NullableRoamingStatusReport) Unset()

type NullableRoutingAreaId

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

func NewNullableRoutingAreaId

func NewNullableRoutingAreaId(val *RoutingAreaId) *NullableRoutingAreaId

func (NullableRoutingAreaId) Get

func (NullableRoutingAreaId) IsSet

func (v NullableRoutingAreaId) IsSet() bool

func (NullableRoutingAreaId) MarshalJSON

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

func (*NullableRoutingAreaId) Set

func (v *NullableRoutingAreaId) Set(val *RoutingAreaId)

func (*NullableRoutingAreaId) UnmarshalJSON

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

func (*NullableRoutingAreaId) Unset

func (v *NullableRoutingAreaId) Unset()

type NullableServiceAreaId

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

func NewNullableServiceAreaId

func NewNullableServiceAreaId(val *ServiceAreaId) *NullableServiceAreaId

func (NullableServiceAreaId) Get

func (NullableServiceAreaId) IsSet

func (v NullableServiceAreaId) IsSet() bool

func (NullableServiceAreaId) MarshalJSON

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

func (*NullableServiceAreaId) Set

func (v *NullableServiceAreaId) Set(val *ServiceAreaId)

func (*NullableServiceAreaId) UnmarshalJSON

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

func (*NullableServiceAreaId) Unset

func (v *NullableServiceAreaId) Unset()

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

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

func NewNullableSupiRange

func NewNullableSupiRange(val *SupiRange) *NullableSupiRange

func (NullableSupiRange) Get

func (v NullableSupiRange) Get() *SupiRange

func (NullableSupiRange) IsSet

func (v NullableSupiRange) IsSet() bool

func (NullableSupiRange) MarshalJSON

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

func (*NullableSupiRange) Set

func (v *NullableSupiRange) Set(val *SupiRange)

func (*NullableSupiRange) UnmarshalJSON

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

func (*NullableSupiRange) Unset

func (v *NullableSupiRange) Unset()

type NullableTai

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

func NewNullableTai

func NewNullableTai(val *Tai) *NullableTai

func (NullableTai) Get

func (v NullableTai) Get() *Tai

func (NullableTai) IsSet

func (v NullableTai) IsSet() bool

func (NullableTai) MarshalJSON

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

func (*NullableTai) Set

func (v *NullableTai) Set(val *Tai)

func (*NullableTai) UnmarshalJSON

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

func (*NullableTai) Unset

func (v *NullableTai) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTnapId

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

func NewNullableTnapId

func NewNullableTnapId(val *TnapId) *NullableTnapId

func (NullableTnapId) Get

func (v NullableTnapId) Get() *TnapId

func (NullableTnapId) IsSet

func (v NullableTnapId) IsSet() bool

func (NullableTnapId) MarshalJSON

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

func (*NullableTnapId) Set

func (v *NullableTnapId) Set(val *TnapId)

func (*NullableTnapId) UnmarshalJSON

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

func (*NullableTnapId) Unset

func (v *NullableTnapId) Unset()

type NullableTransportProtocol

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

func NewNullableTransportProtocol

func NewNullableTransportProtocol(val *TransportProtocol) *NullableTransportProtocol

func (NullableTransportProtocol) Get

func (NullableTransportProtocol) IsSet

func (v NullableTransportProtocol) IsSet() bool

func (NullableTransportProtocol) MarshalJSON

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

func (*NullableTransportProtocol) Set

func (*NullableTransportProtocol) UnmarshalJSON

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

func (*NullableTransportProtocol) Unset

func (v *NullableTransportProtocol) Unset()

type NullableTwapId

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

func NewNullableTwapId

func NewNullableTwapId(val *TwapId) *NullableTwapId

func (NullableTwapId) Get

func (v NullableTwapId) Get() *TwapId

func (NullableTwapId) IsSet

func (v NullableTwapId) IsSet() bool

func (NullableTwapId) MarshalJSON

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

func (*NullableTwapId) Set

func (v *NullableTwapId) Set(val *TwapId)

func (*NullableTwapId) UnmarshalJSON

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

func (*NullableTwapId) Unset

func (v *NullableTwapId) Unset()

type NullableUeReachability

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

func NewNullableUeReachability

func NewNullableUeReachability(val *UeReachability) *NullableUeReachability

func (NullableUeReachability) Get

func (NullableUeReachability) IsSet

func (v NullableUeReachability) IsSet() bool

func (NullableUeReachability) MarshalJSON

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

func (*NullableUeReachability) Set

func (*NullableUeReachability) UnmarshalJSON

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

func (*NullableUeReachability) Unset

func (v *NullableUeReachability) Unset()

type NullableUserLocation

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

func NewNullableUserLocation

func NewNullableUserLocation(val *UserLocation) *NullableUserLocation

func (NullableUserLocation) Get

func (NullableUserLocation) IsSet

func (v NullableUserLocation) IsSet() bool

func (NullableUserLocation) MarshalJSON

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

func (*NullableUserLocation) Set

func (v *NullableUserLocation) Set(val *UserLocation)

func (*NullableUserLocation) UnmarshalJSON

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

func (*NullableUserLocation) Unset

func (v *NullableUserLocation) Unset()

type NullableUtraLocation

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

func NewNullableUtraLocation

func NewNullableUtraLocation(val *UtraLocation) *NullableUtraLocation

func (NullableUtraLocation) Get

func (NullableUtraLocation) IsSet

func (v NullableUtraLocation) IsSet() bool

func (NullableUtraLocation) MarshalJSON

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

func (*NullableUtraLocation) Set

func (v *NullableUtraLocation) Set(val *UtraLocation)

func (*NullableUtraLocation) UnmarshalJSON

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

func (*NullableUtraLocation) Unset

func (v *NullableUtraLocation) Unset()

type PatchItem

type PatchItem struct {
	Op PatchOperation `json:"op"`
	// contains a JSON pointer value (as defined in IETF RFC 6901) that references a location of a resource on which the patch operation shall be performed.
	Path string `json:"path"`
	// indicates the path of the source JSON element (according to JSON Pointer syntax) being moved or copied to the location indicated by the \"path\" attribute.
	From  *string     `json:"from,omitempty"`
	Value interface{} `json:"value,omitempty"`
}

PatchItem it contains information on data to be changed.

func NewPatchItem

func NewPatchItem(op PatchOperation, path string) *PatchItem

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

func NewPatchItemWithDefaults

func NewPatchItemWithDefaults() *PatchItem

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

func (*PatchItem) GetFrom

func (o *PatchItem) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*PatchItem) GetFromOk

func (o *PatchItem) GetFromOk() (*string, bool)

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

func (*PatchItem) GetOp

func (o *PatchItem) GetOp() PatchOperation

GetOp returns the Op field value

func (*PatchItem) GetOpOk

func (o *PatchItem) GetOpOk() (*PatchOperation, bool)

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

func (*PatchItem) GetPath

func (o *PatchItem) GetPath() string

GetPath returns the Path field value

func (*PatchItem) GetPathOk

func (o *PatchItem) GetPathOk() (*string, bool)

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

func (*PatchItem) GetValue

func (o *PatchItem) GetValue() interface{}

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

func (*PatchItem) GetValueOk

func (o *PatchItem) GetValueOk() (*interface{}, bool)

GetValueOk returns a tuple with the Value 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 (*PatchItem) HasFrom

func (o *PatchItem) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*PatchItem) HasValue

func (o *PatchItem) HasValue() bool

HasValue returns a boolean if a field has been set.

func (PatchItem) MarshalJSON

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

func (*PatchItem) SetFrom

func (o *PatchItem) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*PatchItem) SetOp

func (o *PatchItem) SetOp(v PatchOperation)

SetOp sets field value

func (*PatchItem) SetPath

func (o *PatchItem) SetPath(v string)

SetPath sets field value

func (*PatchItem) SetValue

func (o *PatchItem) SetValue(v interface{})

SetValue gets a reference to the given interface{} and assigns it to the Value field.

func (PatchItem) ToMap

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

type PatchOperation

type PatchOperation struct {
	String *string
}

PatchOperation Operations as defined in IETF RFC 6902.

func (*PatchOperation) MarshalJSON

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

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

func (*PatchOperation) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type PatchResult

type PatchResult struct {
	// The execution report contains an array of report items. Each report item indicates one  failed modification.
	Report []ReportItem `json:"report"`
}

PatchResult The execution report result on failed modification.

func NewPatchResult

func NewPatchResult(report []ReportItem) *PatchResult

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

func NewPatchResultWithDefaults

func NewPatchResultWithDefaults() *PatchResult

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

func (*PatchResult) GetReport

func (o *PatchResult) GetReport() []ReportItem

GetReport returns the Report field value

func (*PatchResult) GetReportOk

func (o *PatchResult) GetReportOk() ([]ReportItem, bool)

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

func (PatchResult) MarshalJSON

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

func (*PatchResult) SetReport

func (o *PatchResult) SetReport(v []ReportItem)

SetReport sets field value

func (PatchResult) ToMap

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

type PdnConnectivityStatReport

type PdnConnectivityStatReport struct {
	PdnConnStat PdnConnectivityStatus `json:"pdnConnStat"`
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn *string `json:"dnn,omitempty"`
	// Unsigned integer identifying a PDU session, within the range 0 to 255, as specified in  clause 11.2.3.1b, bits 1 to 8, of 3GPP TS 24.007. If the PDU Session ID is allocated by the  Core Network for UEs not supporting N1 mode, reserved range 64 to 95 is used. PDU Session ID  within the reserved range is only visible in the Core Network.
	PduSeId *int32 `json:"pduSeId,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr     *string         `json:"ipv4Addr,omitempty"`
	Ipv6Prefixes []Ipv6Prefix    `json:"ipv6Prefixes,omitempty"`
	Ipv6Addrs    []Ipv6Addr      `json:"ipv6Addrs,omitempty"`
	PduSessType  *PduSessionType `json:"pduSessType,omitempty"`
}

PdnConnectivityStatReport struct for PdnConnectivityStatReport

func NewPdnConnectivityStatReport

func NewPdnConnectivityStatReport(pdnConnStat PdnConnectivityStatus) *PdnConnectivityStatReport

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

func NewPdnConnectivityStatReportWithDefaults

func NewPdnConnectivityStatReportWithDefaults() *PdnConnectivityStatReport

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

func (*PdnConnectivityStatReport) GetDnn

func (o *PdnConnectivityStatReport) GetDnn() string

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

func (*PdnConnectivityStatReport) GetDnnOk

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

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

func (*PdnConnectivityStatReport) GetIpv4Addr

func (o *PdnConnectivityStatReport) GetIpv4Addr() string

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

func (*PdnConnectivityStatReport) GetIpv4AddrOk

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

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

func (*PdnConnectivityStatReport) GetIpv6Addrs

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

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

func (*PdnConnectivityStatReport) GetIpv6AddrsOk

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

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

func (*PdnConnectivityStatReport) GetIpv6Prefixes

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

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

func (*PdnConnectivityStatReport) GetIpv6PrefixesOk

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

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

func (*PdnConnectivityStatReport) GetPdnConnStat

GetPdnConnStat returns the PdnConnStat field value

func (*PdnConnectivityStatReport) GetPdnConnStatOk

func (o *PdnConnectivityStatReport) GetPdnConnStatOk() (*PdnConnectivityStatus, bool)

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

func (*PdnConnectivityStatReport) GetPduSeId

func (o *PdnConnectivityStatReport) GetPduSeId() int32

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

func (*PdnConnectivityStatReport) GetPduSeIdOk

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

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

func (*PdnConnectivityStatReport) GetPduSessType

func (o *PdnConnectivityStatReport) GetPduSessType() PduSessionType

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

func (*PdnConnectivityStatReport) GetPduSessTypeOk

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

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

func (*PdnConnectivityStatReport) HasDnn

func (o *PdnConnectivityStatReport) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*PdnConnectivityStatReport) HasIpv4Addr

func (o *PdnConnectivityStatReport) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*PdnConnectivityStatReport) HasIpv6Addrs

func (o *PdnConnectivityStatReport) HasIpv6Addrs() bool

HasIpv6Addrs returns a boolean if a field has been set.

func (*PdnConnectivityStatReport) HasIpv6Prefixes

func (o *PdnConnectivityStatReport) HasIpv6Prefixes() bool

HasIpv6Prefixes returns a boolean if a field has been set.

func (*PdnConnectivityStatReport) HasPduSeId

func (o *PdnConnectivityStatReport) HasPduSeId() bool

HasPduSeId returns a boolean if a field has been set.

func (*PdnConnectivityStatReport) HasPduSessType

func (o *PdnConnectivityStatReport) HasPduSessType() bool

HasPduSessType returns a boolean if a field has been set.

func (PdnConnectivityStatReport) MarshalJSON

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

func (*PdnConnectivityStatReport) SetDnn

func (o *PdnConnectivityStatReport) SetDnn(v string)

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

func (*PdnConnectivityStatReport) SetIpv4Addr

func (o *PdnConnectivityStatReport) SetIpv4Addr(v string)

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

func (*PdnConnectivityStatReport) SetIpv6Addrs

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

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

func (*PdnConnectivityStatReport) SetIpv6Prefixes

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

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

func (*PdnConnectivityStatReport) SetPdnConnStat

func (o *PdnConnectivityStatReport) SetPdnConnStat(v PdnConnectivityStatus)

SetPdnConnStat sets field value

func (*PdnConnectivityStatReport) SetPduSeId

func (o *PdnConnectivityStatReport) SetPduSeId(v int32)

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

func (*PdnConnectivityStatReport) SetPduSessType

func (o *PdnConnectivityStatReport) SetPduSessType(v PduSessionType)

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

func (PdnConnectivityStatReport) ToMap

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

type PdnConnectivityStatus

type PdnConnectivityStatus struct {
	String *string
}

PdnConnectivityStatus struct for PdnConnectivityStatus

func (*PdnConnectivityStatus) MarshalJSON

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

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

func (*PdnConnectivityStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type PduSessionStatusCfg

type PduSessionStatusCfg struct {
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn *string `json:"dnn,omitempty"`
}

PduSessionStatusCfg struct for PduSessionStatusCfg

func NewPduSessionStatusCfg

func NewPduSessionStatusCfg() *PduSessionStatusCfg

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

func NewPduSessionStatusCfgWithDefaults

func NewPduSessionStatusCfgWithDefaults() *PduSessionStatusCfg

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

func (*PduSessionStatusCfg) GetDnn

func (o *PduSessionStatusCfg) GetDnn() string

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

func (*PduSessionStatusCfg) GetDnnOk

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

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

func (*PduSessionStatusCfg) HasDnn

func (o *PduSessionStatusCfg) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (PduSessionStatusCfg) MarshalJSON

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

func (*PduSessionStatusCfg) SetDnn

func (o *PduSessionStatusCfg) SetDnn(v string)

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

func (PduSessionStatusCfg) ToMap

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

type PduSessionType

type PduSessionType struct {
	String *string
}

PduSessionType PduSessionType indicates the type of a PDU session. It shall comply with the provisions defined in table 5.4.3.3-1.

func (*PduSessionType) MarshalJSON

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

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

func (*PduSessionType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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

type ReachabilityForDataConfiguration struct {
	ReportCfg ReachabilityForDataReportConfig `json:"reportCfg"`
	// indicating a time in seconds.
	MinInterval *int32 `json:"minInterval,omitempty"`
}

ReachabilityForDataConfiguration struct for ReachabilityForDataConfiguration

func NewReachabilityForDataConfiguration

func NewReachabilityForDataConfiguration(reportCfg ReachabilityForDataReportConfig) *ReachabilityForDataConfiguration

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

func NewReachabilityForDataConfigurationWithDefaults

func NewReachabilityForDataConfigurationWithDefaults() *ReachabilityForDataConfiguration

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

func (*ReachabilityForDataConfiguration) GetMinInterval

func (o *ReachabilityForDataConfiguration) GetMinInterval() int32

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

func (*ReachabilityForDataConfiguration) GetMinIntervalOk

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

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

func (*ReachabilityForDataConfiguration) GetReportCfg

GetReportCfg returns the ReportCfg field value

func (*ReachabilityForDataConfiguration) GetReportCfgOk

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

func (*ReachabilityForDataConfiguration) HasMinInterval

func (o *ReachabilityForDataConfiguration) HasMinInterval() bool

HasMinInterval returns a boolean if a field has been set.

func (ReachabilityForDataConfiguration) MarshalJSON

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

func (*ReachabilityForDataConfiguration) SetMinInterval

func (o *ReachabilityForDataConfiguration) SetMinInterval(v int32)

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

func (*ReachabilityForDataConfiguration) SetReportCfg

SetReportCfg sets field value

func (ReachabilityForDataConfiguration) ToMap

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

type ReachabilityForDataReportConfig

type ReachabilityForDataReportConfig struct {
	String *string
}

ReachabilityForDataReportConfig struct for ReachabilityForDataReportConfig

func (*ReachabilityForDataReportConfig) MarshalJSON

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

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

func (*ReachabilityForDataReportConfig) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ReachabilityForSmsConfiguration

type ReachabilityForSmsConfiguration struct {
	String *string
}

ReachabilityForSmsConfiguration struct for ReachabilityForSmsConfiguration

func (*ReachabilityForSmsConfiguration) MarshalJSON

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

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

func (*ReachabilityForSmsConfiguration) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ReachabilityForSmsReport

type ReachabilityForSmsReport struct {
	SmsfAccessType AccessType `json:"smsfAccessType"`
	// string with format 'date-time' as defined in OpenAPI.
	MaxAvailabilityTime *time.Time `json:"maxAvailabilityTime,omitempty"`
}

ReachabilityForSmsReport struct for ReachabilityForSmsReport

func NewReachabilityForSmsReport

func NewReachabilityForSmsReport(smsfAccessType AccessType) *ReachabilityForSmsReport

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

func NewReachabilityForSmsReportWithDefaults

func NewReachabilityForSmsReportWithDefaults() *ReachabilityForSmsReport

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

func (*ReachabilityForSmsReport) GetMaxAvailabilityTime

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

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

func (*ReachabilityForSmsReport) GetMaxAvailabilityTimeOk

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

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

func (*ReachabilityForSmsReport) GetSmsfAccessType

func (o *ReachabilityForSmsReport) GetSmsfAccessType() AccessType

GetSmsfAccessType returns the SmsfAccessType field value

func (*ReachabilityForSmsReport) GetSmsfAccessTypeOk

func (o *ReachabilityForSmsReport) GetSmsfAccessTypeOk() (*AccessType, bool)

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

func (*ReachabilityForSmsReport) HasMaxAvailabilityTime

func (o *ReachabilityForSmsReport) HasMaxAvailabilityTime() bool

HasMaxAvailabilityTime returns a boolean if a field has been set.

func (ReachabilityForSmsReport) MarshalJSON

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

func (*ReachabilityForSmsReport) SetMaxAvailabilityTime

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

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

func (*ReachabilityForSmsReport) SetSmsfAccessType

func (o *ReachabilityForSmsReport) SetSmsfAccessType(v AccessType)

SetSmsfAccessType sets field value

func (ReachabilityForSmsReport) ToMap

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

type ReachabilityReport

type ReachabilityReport struct {
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	AmfInstanceId  *string         `json:"amfInstanceId,omitempty"`
	AccessTypeList []AccessType    `json:"accessTypeList,omitempty"`
	Reachability   *UeReachability `json:"reachability,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	MaxAvailabilityTime  *time.Time            `json:"maxAvailabilityTime,omitempty"`
	IdleStatusIndication *IdleStatusIndication `json:"idleStatusIndication,omitempty"`
}

ReachabilityReport struct for ReachabilityReport

func NewReachabilityReport

func NewReachabilityReport() *ReachabilityReport

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

func NewReachabilityReportWithDefaults

func NewReachabilityReportWithDefaults() *ReachabilityReport

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

func (*ReachabilityReport) GetAccessTypeList

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

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

func (*ReachabilityReport) GetAccessTypeListOk

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

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

func (*ReachabilityReport) GetAmfInstanceId

func (o *ReachabilityReport) GetAmfInstanceId() string

GetAmfInstanceId returns the AmfInstanceId field value if set, zero value otherwise.

func (*ReachabilityReport) GetAmfInstanceIdOk

func (o *ReachabilityReport) GetAmfInstanceIdOk() (*string, bool)

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

func (*ReachabilityReport) GetIdleStatusIndication

func (o *ReachabilityReport) GetIdleStatusIndication() IdleStatusIndication

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

func (*ReachabilityReport) GetIdleStatusIndicationOk

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

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

func (*ReachabilityReport) GetMaxAvailabilityTime

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

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

func (*ReachabilityReport) GetMaxAvailabilityTimeOk

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

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

func (*ReachabilityReport) GetReachability

func (o *ReachabilityReport) GetReachability() UeReachability

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

func (*ReachabilityReport) GetReachabilityOk

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

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

func (*ReachabilityReport) HasAccessTypeList

func (o *ReachabilityReport) HasAccessTypeList() bool

HasAccessTypeList returns a boolean if a field has been set.

func (*ReachabilityReport) HasAmfInstanceId

func (o *ReachabilityReport) HasAmfInstanceId() bool

HasAmfInstanceId returns a boolean if a field has been set.

func (*ReachabilityReport) HasIdleStatusIndication

func (o *ReachabilityReport) HasIdleStatusIndication() bool

HasIdleStatusIndication returns a boolean if a field has been set.

func (*ReachabilityReport) HasMaxAvailabilityTime

func (o *ReachabilityReport) HasMaxAvailabilityTime() bool

HasMaxAvailabilityTime returns a boolean if a field has been set.

func (*ReachabilityReport) HasReachability

func (o *ReachabilityReport) HasReachability() bool

HasReachability returns a boolean if a field has been set.

func (ReachabilityReport) MarshalJSON

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

func (*ReachabilityReport) SetAccessTypeList

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

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

func (*ReachabilityReport) SetAmfInstanceId

func (o *ReachabilityReport) SetAmfInstanceId(v string)

SetAmfInstanceId gets a reference to the given string and assigns it to the AmfInstanceId field.

func (*ReachabilityReport) SetIdleStatusIndication

func (o *ReachabilityReport) SetIdleStatusIndication(v IdleStatusIndication)

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

func (*ReachabilityReport) SetMaxAvailabilityTime

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

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

func (*ReachabilityReport) SetReachability

func (o *ReachabilityReport) SetReachability(v UeReachability)

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

func (ReachabilityReport) ToMap

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

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

type Report struct {
	ChangeOfSupiPeiAssociationReport *ChangeOfSupiPeiAssociationReport
	CmInfoReport                     *CmInfoReport
	CnTypeChangeReport               *CnTypeChangeReport
	LocationReport                   *LocationReport
	LossConnectivityReport           *LossConnectivityReport
	PdnConnectivityStatReport        *PdnConnectivityStatReport
	RoamingStatusReport              *RoamingStatusReport
}

Report - struct for Report

func ChangeOfSupiPeiAssociationReportAsReport

func ChangeOfSupiPeiAssociationReportAsReport(v *ChangeOfSupiPeiAssociationReport) Report

ChangeOfSupiPeiAssociationReportAsReport is a convenience function that returns ChangeOfSupiPeiAssociationReport wrapped in Report

func CmInfoReportAsReport

func CmInfoReportAsReport(v *CmInfoReport) Report

CmInfoReportAsReport is a convenience function that returns CmInfoReport wrapped in Report

func CnTypeChangeReportAsReport

func CnTypeChangeReportAsReport(v *CnTypeChangeReport) Report

CnTypeChangeReportAsReport is a convenience function that returns CnTypeChangeReport wrapped in Report

func LocationReportAsReport

func LocationReportAsReport(v *LocationReport) Report

LocationReportAsReport is a convenience function that returns LocationReport wrapped in Report

func LossConnectivityReportAsReport

func LossConnectivityReportAsReport(v *LossConnectivityReport) Report

LossConnectivityReportAsReport is a convenience function that returns LossConnectivityReport wrapped in Report

func PdnConnectivityStatReportAsReport

func PdnConnectivityStatReportAsReport(v *PdnConnectivityStatReport) Report

PdnConnectivityStatReportAsReport is a convenience function that returns PdnConnectivityStatReport wrapped in Report

func RoamingStatusReportAsReport

func RoamingStatusReportAsReport(v *RoamingStatusReport) Report

RoamingStatusReportAsReport is a convenience function that returns RoamingStatusReport wrapped in Report

func (*Report) GetActualInstance

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

Get the actual instance

func (Report) MarshalJSON

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

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

func (*Report) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type ReportItem

type ReportItem struct {
	// Contains a JSON pointer value (as defined in IETF RFC 6901) that references a  location of a resource to which the modification is subject.
	Path string `json:"path"`
	// A human-readable reason providing details on the reported modification failure.  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"`
}

ReportItem indicates performed modivications.

func NewReportItem

func NewReportItem(path string) *ReportItem

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

func NewReportItemWithDefaults

func NewReportItemWithDefaults() *ReportItem

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

func (*ReportItem) GetPath

func (o *ReportItem) GetPath() string

GetPath returns the Path field value

func (*ReportItem) GetPathOk

func (o *ReportItem) GetPathOk() (*string, bool)

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

func (*ReportItem) GetReason

func (o *ReportItem) GetReason() string

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

func (*ReportItem) GetReasonOk

func (o *ReportItem) 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 (*ReportItem) HasReason

func (o *ReportItem) HasReason() bool

HasReason returns a boolean if a field has been set.

func (ReportItem) MarshalJSON

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

func (*ReportItem) SetPath

func (o *ReportItem) SetPath(v string)

SetPath sets field value

func (*ReportItem) SetReason

func (o *ReportItem) SetReason(v string)

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

func (ReportItem) ToMap

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

type ReportingOptions

type ReportingOptions struct {
	ReportMode      *EventReportMode `json:"reportMode,omitempty"`
	MaxNumOfReports *int32           `json:"maxNumOfReports,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	Expiry *time.Time `json:"expiry,omitempty"`
	// Unsigned integer indicating Sampling Ratio (see clauses 4.15.1 of 3GPP TS 23.502), expressed in percent.
	SamplingRatio *int32 `json:"samplingRatio,omitempty"`
	// indicating a time in seconds.
	GuardTime *int32 `json:"guardTime,omitempty"`
	// indicating a time in seconds.
	ReportPeriod *int32            `json:"reportPeriod,omitempty"`
	NotifFlag    *NotificationFlag `json:"notifFlag,omitempty"`
}

ReportingOptions struct for ReportingOptions

func NewReportingOptions

func NewReportingOptions() *ReportingOptions

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

func NewReportingOptionsWithDefaults

func NewReportingOptionsWithDefaults() *ReportingOptions

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

func (*ReportingOptions) GetExpiry

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

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

func (*ReportingOptions) GetExpiryOk

func (o *ReportingOptions) 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 (*ReportingOptions) GetGuardTime

func (o *ReportingOptions) GetGuardTime() int32

GetGuardTime returns the GuardTime field value if set, zero value otherwise.

func (*ReportingOptions) GetGuardTimeOk

func (o *ReportingOptions) GetGuardTimeOk() (*int32, bool)

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

func (*ReportingOptions) GetMaxNumOfReports

func (o *ReportingOptions) GetMaxNumOfReports() int32

GetMaxNumOfReports returns the MaxNumOfReports field value if set, zero value otherwise.

func (*ReportingOptions) GetMaxNumOfReportsOk

func (o *ReportingOptions) GetMaxNumOfReportsOk() (*int32, bool)

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

func (*ReportingOptions) GetNotifFlag

func (o *ReportingOptions) GetNotifFlag() NotificationFlag

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

func (*ReportingOptions) GetNotifFlagOk

func (o *ReportingOptions) 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 (*ReportingOptions) GetReportMode

func (o *ReportingOptions) GetReportMode() EventReportMode

GetReportMode returns the ReportMode field value if set, zero value otherwise.

func (*ReportingOptions) GetReportModeOk

func (o *ReportingOptions) GetReportModeOk() (*EventReportMode, bool)

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

func (*ReportingOptions) GetReportPeriod

func (o *ReportingOptions) GetReportPeriod() int32

GetReportPeriod returns the ReportPeriod field value if set, zero value otherwise.

func (*ReportingOptions) GetReportPeriodOk

func (o *ReportingOptions) GetReportPeriodOk() (*int32, bool)

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

func (*ReportingOptions) GetSamplingRatio

func (o *ReportingOptions) GetSamplingRatio() int32

GetSamplingRatio returns the SamplingRatio field value if set, zero value otherwise.

func (*ReportingOptions) GetSamplingRatioOk

func (o *ReportingOptions) GetSamplingRatioOk() (*int32, bool)

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

func (*ReportingOptions) HasExpiry

func (o *ReportingOptions) HasExpiry() bool

HasExpiry returns a boolean if a field has been set.

func (*ReportingOptions) HasGuardTime

func (o *ReportingOptions) HasGuardTime() bool

HasGuardTime returns a boolean if a field has been set.

func (*ReportingOptions) HasMaxNumOfReports

func (o *ReportingOptions) HasMaxNumOfReports() bool

HasMaxNumOfReports returns a boolean if a field has been set.

func (*ReportingOptions) HasNotifFlag

func (o *ReportingOptions) HasNotifFlag() bool

HasNotifFlag returns a boolean if a field has been set.

func (*ReportingOptions) HasReportMode

func (o *ReportingOptions) HasReportMode() bool

HasReportMode returns a boolean if a field has been set.

func (*ReportingOptions) HasReportPeriod

func (o *ReportingOptions) HasReportPeriod() bool

HasReportPeriod returns a boolean if a field has been set.

func (*ReportingOptions) HasSamplingRatio

func (o *ReportingOptions) HasSamplingRatio() bool

HasSamplingRatio returns a boolean if a field has been set.

func (ReportingOptions) MarshalJSON

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

func (*ReportingOptions) SetExpiry

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

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

func (*ReportingOptions) SetGuardTime

func (o *ReportingOptions) SetGuardTime(v int32)

SetGuardTime gets a reference to the given int32 and assigns it to the GuardTime field.

func (*ReportingOptions) SetMaxNumOfReports

func (o *ReportingOptions) SetMaxNumOfReports(v int32)

SetMaxNumOfReports gets a reference to the given int32 and assigns it to the MaxNumOfReports field.

func (*ReportingOptions) SetNotifFlag

func (o *ReportingOptions) SetNotifFlag(v NotificationFlag)

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

func (*ReportingOptions) SetReportMode

func (o *ReportingOptions) SetReportMode(v EventReportMode)

SetReportMode gets a reference to the given EventReportMode and assigns it to the ReportMode field.

func (*ReportingOptions) SetReportPeriod

func (o *ReportingOptions) SetReportPeriod(v int32)

SetReportPeriod gets a reference to the given int32 and assigns it to the ReportPeriod field.

func (*ReportingOptions) SetSamplingRatio

func (o *ReportingOptions) SetSamplingRatio(v int32)

SetSamplingRatio gets a reference to the given int32 and assigns it to the SamplingRatio field.

func (ReportingOptions) ToMap

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

type RevokedCause

type RevokedCause struct {
	String *string
}

RevokedCause struct for RevokedCause

func (*RevokedCause) MarshalJSON

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

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

func (*RevokedCause) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type RoamingStatusReport

type RoamingStatusReport struct {
	Roaming        bool        `json:"roaming"`
	NewServingPlmn PlmnId      `json:"newServingPlmn"`
	AccessType     *AccessType `json:"accessType,omitempty"`
}

RoamingStatusReport struct for RoamingStatusReport

func NewRoamingStatusReport

func NewRoamingStatusReport(roaming bool, newServingPlmn PlmnId) *RoamingStatusReport

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

func NewRoamingStatusReportWithDefaults

func NewRoamingStatusReportWithDefaults() *RoamingStatusReport

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

func (*RoamingStatusReport) GetAccessType

func (o *RoamingStatusReport) GetAccessType() AccessType

GetAccessType returns the AccessType field value if set, zero value otherwise.

func (*RoamingStatusReport) GetAccessTypeOk

func (o *RoamingStatusReport) GetAccessTypeOk() (*AccessType, bool)

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

func (*RoamingStatusReport) GetNewServingPlmn

func (o *RoamingStatusReport) GetNewServingPlmn() PlmnId

GetNewServingPlmn returns the NewServingPlmn field value

func (*RoamingStatusReport) GetNewServingPlmnOk

func (o *RoamingStatusReport) GetNewServingPlmnOk() (*PlmnId, bool)

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

func (*RoamingStatusReport) GetRoaming

func (o *RoamingStatusReport) GetRoaming() bool

GetRoaming returns the Roaming field value

func (*RoamingStatusReport) GetRoamingOk

func (o *RoamingStatusReport) GetRoamingOk() (*bool, bool)

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

func (*RoamingStatusReport) HasAccessType

func (o *RoamingStatusReport) HasAccessType() bool

HasAccessType returns a boolean if a field has been set.

func (RoamingStatusReport) MarshalJSON

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

func (*RoamingStatusReport) SetAccessType

func (o *RoamingStatusReport) SetAccessType(v AccessType)

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

func (*RoamingStatusReport) SetNewServingPlmn

func (o *RoamingStatusReport) SetNewServingPlmn(v PlmnId)

SetNewServingPlmn sets field value

func (*RoamingStatusReport) SetRoaming

func (o *RoamingStatusReport) SetRoaming(v bool)

SetRoaming sets field value

func (RoamingStatusReport) ToMap

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

type RoutingAreaId

type RoutingAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code
	Lac string `json:"lac"`
	// Routing Area Code
	Rac string `json:"rac"`
}

RoutingAreaId Contains a Routing Area Identification as defined in 3GPP TS 23.003, clause 4.2.

func NewRoutingAreaId

func NewRoutingAreaId(plmnId PlmnId, lac string, rac string) *RoutingAreaId

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

func NewRoutingAreaIdWithDefaults

func NewRoutingAreaIdWithDefaults() *RoutingAreaId

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

func (*RoutingAreaId) GetLac

func (o *RoutingAreaId) GetLac() string

GetLac returns the Lac field value

func (*RoutingAreaId) GetLacOk

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

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

func (*RoutingAreaId) GetPlmnId

func (o *RoutingAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*RoutingAreaId) GetPlmnIdOk

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

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

func (*RoutingAreaId) GetRac

func (o *RoutingAreaId) GetRac() string

GetRac returns the Rac field value

func (*RoutingAreaId) GetRacOk

func (o *RoutingAreaId) GetRacOk() (*string, bool)

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

func (RoutingAreaId) MarshalJSON

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

func (*RoutingAreaId) SetLac

func (o *RoutingAreaId) SetLac(v string)

SetLac sets field value

func (*RoutingAreaId) SetPlmnId

func (o *RoutingAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*RoutingAreaId) SetRac

func (o *RoutingAreaId) SetRac(v string)

SetRac sets field value

func (RoutingAreaId) ToMap

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

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type ServiceAreaId

type ServiceAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code.
	Lac string `json:"lac"`
	// Service Area Code.
	Sac string `json:"sac"`
}

ServiceAreaId Contains a Service Area Identifier as defined in 3GPP TS 23.003, clause 12.5.

func NewServiceAreaId

func NewServiceAreaId(plmnId PlmnId, lac string, sac string) *ServiceAreaId

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

func NewServiceAreaIdWithDefaults

func NewServiceAreaIdWithDefaults() *ServiceAreaId

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

func (*ServiceAreaId) GetLac

func (o *ServiceAreaId) GetLac() string

GetLac returns the Lac field value

func (*ServiceAreaId) GetLacOk

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

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

func (*ServiceAreaId) GetPlmnId

func (o *ServiceAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*ServiceAreaId) GetPlmnIdOk

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

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

func (*ServiceAreaId) GetSac

func (o *ServiceAreaId) GetSac() string

GetSac returns the Sac field value

func (*ServiceAreaId) GetSacOk

func (o *ServiceAreaId) GetSacOk() (*string, bool)

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

func (ServiceAreaId) MarshalJSON

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

func (*ServiceAreaId) SetLac

func (o *ServiceAreaId) SetLac(v string)

SetLac sets field value

func (*ServiceAreaId) SetPlmnId

func (o *ServiceAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*ServiceAreaId) SetSac

func (o *ServiceAreaId) SetSac(v string)

SetSac sets field value

func (ServiceAreaId) ToMap

func (o ServiceAreaId) ToMap() (map[string]interface{}, error)

type 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 SupiRange

type SupiRange struct {
	Interface *interface{}
}

SupiRange - A range of SUPIs (subscriber identities), either based on a numeric range, or based on regular-expression matching

func InterfaceAsSupiRange

func InterfaceAsSupiRange(v *interface{}) SupiRange

interface{}AsSupiRange is a convenience function that returns interface{} wrapped in SupiRange

func (*SupiRange) GetActualInstance

func (obj *SupiRange) GetActualInstance() interface{}

Get the actual instance

func (SupiRange) MarshalJSON

func (src SupiRange) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SupiRange) UnmarshalJSON

func (dst *SupiRange) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type Tai

type Tai struct {
	PlmnId PlmnId `json:"plmnId"`
	// 2 or 3-octet string identifying a tracking area code as specified in clause 9.3.3.10  of 3GPP TS 38.413, in hexadecimal representation. Each character in the string shall  take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant character representing the 4 most significant bits of the TAC shall  appear first in the string, and the character representing the 4 least significant bit  of the TAC shall appear last in the string.
	Tac string `json:"tac"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

Tai Contains the tracking area identity as described in 3GPP 23.003

func NewTai

func NewTai(plmnId PlmnId, tac string) *Tai

NewTai instantiates a new Tai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaiWithDefaults

func NewTaiWithDefaults() *Tai

NewTaiWithDefaults instantiates a new Tai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Tai) GetNid

func (o *Tai) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*Tai) GetNidOk

func (o *Tai) GetNidOk() (*string, bool)

GetNidOk returns a tuple with the Nid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tai) GetPlmnId

func (o *Tai) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Tai) GetPlmnIdOk

func (o *Tai) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*Tai) GetTac

func (o *Tai) GetTac() string

GetTac returns the Tac field value

func (*Tai) GetTacOk

func (o *Tai) GetTacOk() (*string, bool)

GetTacOk returns a tuple with the Tac field value and a boolean to check if the value has been set.

func (*Tai) HasNid

func (o *Tai) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Tai) MarshalJSON

func (o Tai) MarshalJSON() ([]byte, error)

func (*Tai) SetNid

func (o *Tai) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (*Tai) SetPlmnId

func (o *Tai) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*Tai) SetTac

func (o *Tai) SetTac(v string)

SetTac sets field value

func (Tai) ToMap

func (o Tai) ToMap() (map[string]interface{}, error)

type TnapId

type TnapId struct {
	// This IE shall be present if the UE is accessing the 5GC via a trusted WLAN access network.When present, it shall contain the SSID of the access point to which the UE is attached, that is received over NGAP,  see IEEE Std 802.11-2012.
	SsId *string `json:"ssId,omitempty"`
	// When present, it shall contain the BSSID of the access point to which the UE is attached, that is received over NGAP, see IEEE Std 802.11-2012.
	BssId *string `json:"bssId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	CivicAddress *string `json:"civicAddress,omitempty"`
}

TnapId Contain the TNAP Identifier see clause5.6.2 of 3GPP TS 23.501.

func NewTnapId

func NewTnapId() *TnapId

NewTnapId instantiates a new TnapId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTnapIdWithDefaults

func NewTnapIdWithDefaults() *TnapId

NewTnapIdWithDefaults instantiates a new TnapId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TnapId) GetBssId

func (o *TnapId) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*TnapId) GetBssIdOk

func (o *TnapId) GetBssIdOk() (*string, bool)

GetBssIdOk returns a tuple with the BssId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) GetCivicAddress

func (o *TnapId) GetCivicAddress() string

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*TnapId) GetCivicAddressOk

func (o *TnapId) GetCivicAddressOk() (*string, bool)

GetCivicAddressOk returns a tuple with the CivicAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) GetSsId

func (o *TnapId) GetSsId() string

GetSsId returns the SsId field value if set, zero value otherwise.

func (*TnapId) GetSsIdOk

func (o *TnapId) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) HasBssId

func (o *TnapId) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*TnapId) HasCivicAddress

func (o *TnapId) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (*TnapId) HasSsId

func (o *TnapId) HasSsId() bool

HasSsId returns a boolean if a field has been set.

func (TnapId) MarshalJSON

func (o TnapId) MarshalJSON() ([]byte, error)

func (*TnapId) SetBssId

func (o *TnapId) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*TnapId) SetCivicAddress

func (o *TnapId) SetCivicAddress(v string)

SetCivicAddress gets a reference to the given string and assigns it to the CivicAddress field.

func (*TnapId) SetSsId

func (o *TnapId) SetSsId(v string)

SetSsId gets a reference to the given string and assigns it to the SsId field.

func (TnapId) ToMap

func (o TnapId) ToMap() (map[string]interface{}, error)

type TransportProtocol

type TransportProtocol struct {
	String *string
}

TransportProtocol Possible values are: - UDP: User Datagram Protocol. - TCP: Transmission Control Protocol.

func (*TransportProtocol) MarshalJSON

func (src *TransportProtocol) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TransportProtocol) UnmarshalJSON

func (dst *TransportProtocol) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TwapId

type TwapId struct {
	// This IE shall contain the SSID of the access point to which the UE is attached, that is received over NGAP, see IEEE Std 802.11-2012.
	SsId string `json:"ssId"`
	// When present, it shall contain the BSSID of the access point to which the UE is attached, for trusted WLAN access, see IEEE Std 802.11-2012.
	BssId *string `json:"bssId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	CivicAddress *string `json:"civicAddress,omitempty"`
}

TwapId Contain the TWAP Identifier as defined in clause 4.2.8.5.3 of 3GPP TS 23.501 or the WLAN location information as defined in clause 4.5.7.2.8 of 3GPP TS 23.402.

func NewTwapId

func NewTwapId(ssId string) *TwapId

NewTwapId instantiates a new TwapId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTwapIdWithDefaults

func NewTwapIdWithDefaults() *TwapId

NewTwapIdWithDefaults instantiates a new TwapId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TwapId) GetBssId

func (o *TwapId) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*TwapId) GetBssIdOk

func (o *TwapId) GetBssIdOk() (*string, bool)

GetBssIdOk returns a tuple with the BssId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwapId) GetCivicAddress

func (o *TwapId) GetCivicAddress() string

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*TwapId) GetCivicAddressOk

func (o *TwapId) GetCivicAddressOk() (*string, bool)

GetCivicAddressOk returns a tuple with the CivicAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwapId) GetSsId

func (o *TwapId) GetSsId() string

GetSsId returns the SsId field value

func (*TwapId) GetSsIdOk

func (o *TwapId) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value and a boolean to check if the value has been set.

func (*TwapId) HasBssId

func (o *TwapId) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*TwapId) HasCivicAddress

func (o *TwapId) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (TwapId) MarshalJSON

func (o TwapId) MarshalJSON() ([]byte, error)

func (*TwapId) SetBssId

func (o *TwapId) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*TwapId) SetCivicAddress

func (o *TwapId) SetCivicAddress(v string)

SetCivicAddress gets a reference to the given string and assigns it to the CivicAddress field.

func (*TwapId) SetSsId

func (o *TwapId) SetSsId(v string)

SetSsId sets field value

func (TwapId) ToMap

func (o TwapId) ToMap() (map[string]interface{}, error)

type UeReachability

type UeReachability struct {
	String *string
}

UeReachability Describes the reachability of the UE

func (*UeReachability) MarshalJSON

func (src *UeReachability) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UeReachability) UnmarshalJSON

func (dst *UeReachability) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UpdateEESubscriptionApiService

type UpdateEESubscriptionApiService service

UpdateEESubscriptionApiService UpdateEESubscriptionApi service

func (*UpdateEESubscriptionApiService) UpdateEeSubscription

func (a *UpdateEESubscriptionApiService) UpdateEeSubscription(ctx context.Context, ueIdentity string, subscriptionId string) ApiUpdateEeSubscriptionRequest

UpdateEeSubscription Patch

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ueIdentity Represents the scope of the UE for which the subscription is applied. Contains the GPSI of the user or the external group ID or any UE.
@param subscriptionId Id of the EE Subscription
@return ApiUpdateEeSubscriptionRequest

func (*UpdateEESubscriptionApiService) UpdateEeSubscriptionExecute

Execute executes the request

@return PatchResult

type UserLocation

type UserLocation struct {
	EutraLocation *EutraLocation `json:"eutraLocation,omitempty"`
	NrLocation    *NrLocation    `json:"nrLocation,omitempty"`
	N3gaLocation  *N3gaLocation  `json:"n3gaLocation,omitempty"`
	UtraLocation  *UtraLocation  `json:"utraLocation,omitempty"`
	GeraLocation  *GeraLocation  `json:"geraLocation,omitempty"`
}

UserLocation At least one of eutraLocation, nrLocation and n3gaLocation shall be present. Several of them may be present.

func NewUserLocation

func NewUserLocation() *UserLocation

NewUserLocation instantiates a new UserLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserLocationWithDefaults

func NewUserLocationWithDefaults() *UserLocation

NewUserLocationWithDefaults instantiates a new UserLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserLocation) GetEutraLocation

func (o *UserLocation) GetEutraLocation() EutraLocation

GetEutraLocation returns the EutraLocation field value if set, zero value otherwise.

func (*UserLocation) GetEutraLocationOk

func (o *UserLocation) GetEutraLocationOk() (*EutraLocation, bool)

GetEutraLocationOk returns a tuple with the EutraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetGeraLocation

func (o *UserLocation) GetGeraLocation() GeraLocation

GetGeraLocation returns the GeraLocation field value if set, zero value otherwise.

func (*UserLocation) GetGeraLocationOk

func (o *UserLocation) GetGeraLocationOk() (*GeraLocation, bool)

GetGeraLocationOk returns a tuple with the GeraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetN3gaLocation

func (o *UserLocation) GetN3gaLocation() N3gaLocation

GetN3gaLocation returns the N3gaLocation field value if set, zero value otherwise.

func (*UserLocation) GetN3gaLocationOk

func (o *UserLocation) GetN3gaLocationOk() (*N3gaLocation, bool)

GetN3gaLocationOk returns a tuple with the N3gaLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetNrLocation

func (o *UserLocation) GetNrLocation() NrLocation

GetNrLocation returns the NrLocation field value if set, zero value otherwise.

func (*UserLocation) GetNrLocationOk

func (o *UserLocation) GetNrLocationOk() (*NrLocation, bool)

GetNrLocationOk returns a tuple with the NrLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetUtraLocation

func (o *UserLocation) GetUtraLocation() UtraLocation

GetUtraLocation returns the UtraLocation field value if set, zero value otherwise.

func (*UserLocation) GetUtraLocationOk

func (o *UserLocation) GetUtraLocationOk() (*UtraLocation, bool)

GetUtraLocationOk returns a tuple with the UtraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) HasEutraLocation

func (o *UserLocation) HasEutraLocation() bool

HasEutraLocation returns a boolean if a field has been set.

func (*UserLocation) HasGeraLocation

func (o *UserLocation) HasGeraLocation() bool

HasGeraLocation returns a boolean if a field has been set.

func (*UserLocation) HasN3gaLocation

func (o *UserLocation) HasN3gaLocation() bool

HasN3gaLocation returns a boolean if a field has been set.

func (*UserLocation) HasNrLocation

func (o *UserLocation) HasNrLocation() bool

HasNrLocation returns a boolean if a field has been set.

func (*UserLocation) HasUtraLocation

func (o *UserLocation) HasUtraLocation() bool

HasUtraLocation returns a boolean if a field has been set.

func (UserLocation) MarshalJSON

func (o UserLocation) MarshalJSON() ([]byte, error)

func (*UserLocation) SetEutraLocation

func (o *UserLocation) SetEutraLocation(v EutraLocation)

SetEutraLocation gets a reference to the given EutraLocation and assigns it to the EutraLocation field.

func (*UserLocation) SetGeraLocation

func (o *UserLocation) SetGeraLocation(v GeraLocation)

SetGeraLocation gets a reference to the given GeraLocation and assigns it to the GeraLocation field.

func (*UserLocation) SetN3gaLocation

func (o *UserLocation) SetN3gaLocation(v N3gaLocation)

SetN3gaLocation gets a reference to the given N3gaLocation and assigns it to the N3gaLocation field.

func (*UserLocation) SetNrLocation

func (o *UserLocation) SetNrLocation(v NrLocation)

SetNrLocation gets a reference to the given NrLocation and assigns it to the NrLocation field.

func (*UserLocation) SetUtraLocation

func (o *UserLocation) SetUtraLocation(v UtraLocation)

SetUtraLocation gets a reference to the given UtraLocation and assigns it to the UtraLocation field.

func (UserLocation) ToMap

func (o UserLocation) ToMap() (map[string]interface{}, error)

type UtraLocation

type UtraLocation struct {
	Interface *interface{}
}

UtraLocation - Exactly one of cgi, sai or lai shall be present.

func InterfaceAsUtraLocation

func InterfaceAsUtraLocation(v *interface{}) UtraLocation

interface{}AsUtraLocation is a convenience function that returns interface{} wrapped in UtraLocation

func (*UtraLocation) GetActualInstance

func (obj *UtraLocation) GetActualInstance() interface{}

Get the actual instance

func (UtraLocation) MarshalJSON

func (src UtraLocation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UtraLocation) UnmarshalJSON

func (dst *UtraLocation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL