openapi_Npcf_PolicyAuthorization

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_Npcf_PolicyAuthorization

PCF Policy Authorization 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_Npcf_PolicyAuthorization "github.com/GIT_USER_ID/GIT_REPO_ID/openapi_Npcf_PolicyAuthorization"

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

Documentation for API Endpoints

All URIs are relative to https://example.com/npcf-policyauthorization/v1

Class Method HTTP request Description
ApplicationSessionsCollectionApi PostAppSessions Post /app-sessions Creates a new Individual Application Session Context resource
EventsSubscriptionDocumentApi DeleteEventsSubsc Delete /app-sessions/{appSessionId}/events-subscription deletes the Events Subscription subresource
EventsSubscriptionDocumentApi UpdateEventsSubsc Put /app-sessions/{appSessionId}/events-subscription creates or modifies an Events Subscription subresource
IndividualApplicationSessionContextDocumentApi DeleteAppSession Post /app-sessions/{appSessionId}/delete Deletes an existing Individual Application Session Context
IndividualApplicationSessionContextDocumentApi GetAppSession Get /app-sessions/{appSessionId} Reads an existing Individual Application Session Context
IndividualApplicationSessionContextDocumentApi ModAppSession Patch /app-sessions/{appSessionId} Modifies an existing Individual Application Session Context
PCSCFRestorationIndicationApi PcscfRestoration Post /app-sessions/pcscf-restoration Indicates P-CSCF restoration and does not create an Individual Application Session Context

Documentation For Models

Documentation For Authorization

oAuth2ClientCredentials
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • npcf-policyauthorization: Access to the Npcf_PolicyAuthorization API

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

All allowed values of AccessType enum

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

All allowed values of NullValue enum

Functions

func CacheExpires

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

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

func IsNil added in v1.18.2

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	ApplicationSessionsCollectionApi *ApplicationSessionsCollectionApiService

	EventsSubscriptionDocumentApi *EventsSubscriptionDocumentApiService

	IndividualApplicationSessionContextDocumentApi *IndividualApplicationSessionContextDocumentApiService

	PCSCFRestorationIndicationApi *PCSCFRestorationIndicationApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Npcf_PolicyAuthorization Service API 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 AccNetChargingAddress

type AccNetChargingAddress struct {
	Interface *interface{}
}

AccNetChargingAddress Describes the network entity within the access network performing charging

func (*AccNetChargingAddress) MarshalJSON

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

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

func (*AccNetChargingAddress) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AcceptableServiceInfo

type AcceptableServiceInfo struct {
	// Indicates the maximum bandwidth that shall be authorized by the PCF for each media component of the map. The key of the map is the media component number.
	AccBwMedComps *map[string]MediaComponent `json:"accBwMedComps,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MarBwUl *string `json:"marBwUl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MarBwDl *string `json:"marBwDl,omitempty"`
}

AcceptableServiceInfo Indicates the maximum bandwidth that shall be authorized by the PCF.

func NewAcceptableServiceInfo

func NewAcceptableServiceInfo() *AcceptableServiceInfo

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

func NewAcceptableServiceInfoWithDefaults

func NewAcceptableServiceInfoWithDefaults() *AcceptableServiceInfo

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

func (*AcceptableServiceInfo) GetAccBwMedComps

func (o *AcceptableServiceInfo) GetAccBwMedComps() map[string]MediaComponent

GetAccBwMedComps returns the AccBwMedComps field value if set, zero value otherwise.

func (*AcceptableServiceInfo) GetAccBwMedCompsOk

func (o *AcceptableServiceInfo) GetAccBwMedCompsOk() (*map[string]MediaComponent, bool)

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

func (*AcceptableServiceInfo) GetMarBwDl

func (o *AcceptableServiceInfo) GetMarBwDl() string

GetMarBwDl returns the MarBwDl field value if set, zero value otherwise.

func (*AcceptableServiceInfo) GetMarBwDlOk

func (o *AcceptableServiceInfo) GetMarBwDlOk() (*string, bool)

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

func (*AcceptableServiceInfo) GetMarBwUl

func (o *AcceptableServiceInfo) GetMarBwUl() string

GetMarBwUl returns the MarBwUl field value if set, zero value otherwise.

func (*AcceptableServiceInfo) GetMarBwUlOk

func (o *AcceptableServiceInfo) GetMarBwUlOk() (*string, bool)

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

func (*AcceptableServiceInfo) HasAccBwMedComps

func (o *AcceptableServiceInfo) HasAccBwMedComps() bool

HasAccBwMedComps returns a boolean if a field has been set.

func (*AcceptableServiceInfo) HasMarBwDl

func (o *AcceptableServiceInfo) HasMarBwDl() bool

HasMarBwDl returns a boolean if a field has been set.

func (*AcceptableServiceInfo) HasMarBwUl

func (o *AcceptableServiceInfo) HasMarBwUl() bool

HasMarBwUl returns a boolean if a field has been set.

func (AcceptableServiceInfo) MarshalJSON

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

func (*AcceptableServiceInfo) SetAccBwMedComps

func (o *AcceptableServiceInfo) SetAccBwMedComps(v map[string]MediaComponent)

SetAccBwMedComps gets a reference to the given map[string]MediaComponent and assigns it to the AccBwMedComps field.

func (*AcceptableServiceInfo) SetMarBwDl

func (o *AcceptableServiceInfo) SetMarBwDl(v string)

SetMarBwDl gets a reference to the given string and assigns it to the MarBwDl field.

func (*AcceptableServiceInfo) SetMarBwUl

func (o *AcceptableServiceInfo) SetMarBwUl(v string)

SetMarBwUl gets a reference to the given string and assigns it to the MarBwUl field.

func (AcceptableServiceInfo) ToMap

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

type AccessNetChargingIdentifier

type AccessNetChargingIdentifier struct {
	Interface *interface{}
}

AccessNetChargingIdentifier - Describes the access network charging identifier.

func InterfaceAsAccessNetChargingIdentifier

func InterfaceAsAccessNetChargingIdentifier(v *interface{}) AccessNetChargingIdentifier

interface{}AsAccessNetChargingIdentifier is a convenience function that returns interface{} wrapped in AccessNetChargingIdentifier

func (*AccessNetChargingIdentifier) GetActualInstance

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

Get the actual instance

func (AccessNetChargingIdentifier) MarshalJSON

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

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

func (*AccessNetChargingIdentifier) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

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 AccumulatedUsage

type AccumulatedUsage struct {
	// Unsigned integer identifying a period of time in units of seconds.
	Duration *int32 `json:"duration,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	TotalVolume *int64 `json:"totalVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	DownlinkVolume *int64 `json:"downlinkVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	UplinkVolume *int64 `json:"uplinkVolume,omitempty"`
}

AccumulatedUsage Represents an accumulated usage.

func NewAccumulatedUsage

func NewAccumulatedUsage() *AccumulatedUsage

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

func NewAccumulatedUsageWithDefaults

func NewAccumulatedUsageWithDefaults() *AccumulatedUsage

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

func (*AccumulatedUsage) GetDownlinkVolume

func (o *AccumulatedUsage) GetDownlinkVolume() int64

GetDownlinkVolume returns the DownlinkVolume field value if set, zero value otherwise.

func (*AccumulatedUsage) GetDownlinkVolumeOk

func (o *AccumulatedUsage) GetDownlinkVolumeOk() (*int64, bool)

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

func (*AccumulatedUsage) GetDuration

func (o *AccumulatedUsage) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise.

func (*AccumulatedUsage) GetDurationOk

func (o *AccumulatedUsage) GetDurationOk() (*int32, bool)

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

func (*AccumulatedUsage) GetTotalVolume

func (o *AccumulatedUsage) GetTotalVolume() int64

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

func (*AccumulatedUsage) GetTotalVolumeOk

func (o *AccumulatedUsage) GetTotalVolumeOk() (*int64, bool)

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

func (*AccumulatedUsage) GetUplinkVolume

func (o *AccumulatedUsage) GetUplinkVolume() int64

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

func (*AccumulatedUsage) GetUplinkVolumeOk

func (o *AccumulatedUsage) GetUplinkVolumeOk() (*int64, bool)

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

func (*AccumulatedUsage) HasDownlinkVolume

func (o *AccumulatedUsage) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*AccumulatedUsage) HasDuration

func (o *AccumulatedUsage) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*AccumulatedUsage) HasTotalVolume

func (o *AccumulatedUsage) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*AccumulatedUsage) HasUplinkVolume

func (o *AccumulatedUsage) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (AccumulatedUsage) MarshalJSON

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

func (*AccumulatedUsage) SetDownlinkVolume

func (o *AccumulatedUsage) SetDownlinkVolume(v int64)

SetDownlinkVolume gets a reference to the given int64 and assigns it to the DownlinkVolume field.

func (*AccumulatedUsage) SetDuration

func (o *AccumulatedUsage) SetDuration(v int32)

SetDuration gets a reference to the given int32 and assigns it to the Duration field.

func (*AccumulatedUsage) SetTotalVolume

func (o *AccumulatedUsage) SetTotalVolume(v int64)

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

func (*AccumulatedUsage) SetUplinkVolume

func (o *AccumulatedUsage) SetUplinkVolume(v int64)

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

func (AccumulatedUsage) ToMap

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

type AdditionalAccessInfo

type AdditionalAccessInfo struct {
	AccessType AccessType `json:"accessType"`
	RatType    *RatType   `json:"ratType,omitempty"`
}

AdditionalAccessInfo Indicates the combination of additional Access Type and RAT Type for a MA PDU session.

func NewAdditionalAccessInfo

func NewAdditionalAccessInfo(accessType AccessType) *AdditionalAccessInfo

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

func NewAdditionalAccessInfoWithDefaults

func NewAdditionalAccessInfoWithDefaults() *AdditionalAccessInfo

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

func (*AdditionalAccessInfo) GetAccessType

func (o *AdditionalAccessInfo) GetAccessType() AccessType

GetAccessType returns the AccessType field value

func (*AdditionalAccessInfo) GetAccessTypeOk

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

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

func (*AdditionalAccessInfo) GetRatType

func (o *AdditionalAccessInfo) GetRatType() RatType

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

func (*AdditionalAccessInfo) GetRatTypeOk

func (o *AdditionalAccessInfo) GetRatTypeOk() (*RatType, bool)

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

func (*AdditionalAccessInfo) HasRatType

func (o *AdditionalAccessInfo) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (AdditionalAccessInfo) MarshalJSON

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

func (*AdditionalAccessInfo) SetAccessType

func (o *AdditionalAccessInfo) SetAccessType(v AccessType)

SetAccessType sets field value

func (*AdditionalAccessInfo) SetRatType

func (o *AdditionalAccessInfo) SetRatType(v RatType)

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

func (AdditionalAccessInfo) ToMap

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

type AfEvent

type AfEvent struct {
	String *string
}

AfEvent Represents an event to notify to the AF.

func (*AfEvent) MarshalJSON

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

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

func (*AfEvent) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AfEventNotification

type AfEventNotification struct {
	Event AfEvent `json:"event"`
	Flows []Flows `json:"flows,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	RetryAfter *int32 `json:"retryAfter,omitempty"`
}

AfEventNotification Describes the event information delivered in the notification.

func NewAfEventNotification

func NewAfEventNotification(event AfEvent) *AfEventNotification

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

func NewAfEventNotificationWithDefaults

func NewAfEventNotificationWithDefaults() *AfEventNotification

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

func (*AfEventNotification) GetEvent

func (o *AfEventNotification) GetEvent() AfEvent

GetEvent returns the Event field value

func (*AfEventNotification) GetEventOk

func (o *AfEventNotification) GetEventOk() (*AfEvent, bool)

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

func (*AfEventNotification) GetFlows

func (o *AfEventNotification) GetFlows() []Flows

GetFlows returns the Flows field value if set, zero value otherwise.

func (*AfEventNotification) GetFlowsOk

func (o *AfEventNotification) GetFlowsOk() ([]Flows, bool)

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

func (*AfEventNotification) GetRetryAfter

func (o *AfEventNotification) GetRetryAfter() int32

GetRetryAfter returns the RetryAfter field value if set, zero value otherwise.

func (*AfEventNotification) GetRetryAfterOk

func (o *AfEventNotification) GetRetryAfterOk() (*int32, bool)

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

func (*AfEventNotification) HasFlows

func (o *AfEventNotification) HasFlows() bool

HasFlows returns a boolean if a field has been set.

func (*AfEventNotification) HasRetryAfter

func (o *AfEventNotification) HasRetryAfter() bool

HasRetryAfter returns a boolean if a field has been set.

func (AfEventNotification) MarshalJSON

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

func (*AfEventNotification) SetEvent

func (o *AfEventNotification) SetEvent(v AfEvent)

SetEvent sets field value

func (*AfEventNotification) SetFlows

func (o *AfEventNotification) SetFlows(v []Flows)

SetFlows gets a reference to the given []Flows and assigns it to the Flows field.

func (*AfEventNotification) SetRetryAfter

func (o *AfEventNotification) SetRetryAfter(v int32)

SetRetryAfter gets a reference to the given int32 and assigns it to the RetryAfter field.

func (AfEventNotification) ToMap

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

type AfEventSubscription

type AfEventSubscription struct {
	Event       AfEvent        `json:"event"`
	NotifMethod *AfNotifMethod `json:"notifMethod,omitempty"`
	// indicating a time in seconds.
	RepPeriod *int32 `json:"repPeriod,omitempty"`
	// indicating a time in seconds.
	WaitTime *int32 `json:"waitTime,omitempty"`
}

AfEventSubscription Describes the event information delivered in the subscription.

func NewAfEventSubscription

func NewAfEventSubscription(event AfEvent) *AfEventSubscription

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

func NewAfEventSubscriptionWithDefaults

func NewAfEventSubscriptionWithDefaults() *AfEventSubscription

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

func (*AfEventSubscription) GetEvent

func (o *AfEventSubscription) GetEvent() AfEvent

GetEvent returns the Event field value

func (*AfEventSubscription) GetEventOk

func (o *AfEventSubscription) GetEventOk() (*AfEvent, bool)

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

func (*AfEventSubscription) GetNotifMethod

func (o *AfEventSubscription) GetNotifMethod() AfNotifMethod

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

func (*AfEventSubscription) GetNotifMethodOk

func (o *AfEventSubscription) GetNotifMethodOk() (*AfNotifMethod, bool)

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

func (*AfEventSubscription) GetRepPeriod

func (o *AfEventSubscription) GetRepPeriod() int32

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

func (*AfEventSubscription) GetRepPeriodOk

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

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

func (*AfEventSubscription) GetWaitTime

func (o *AfEventSubscription) GetWaitTime() int32

GetWaitTime returns the WaitTime field value if set, zero value otherwise.

func (*AfEventSubscription) GetWaitTimeOk

func (o *AfEventSubscription) GetWaitTimeOk() (*int32, bool)

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

func (*AfEventSubscription) HasNotifMethod

func (o *AfEventSubscription) HasNotifMethod() bool

HasNotifMethod returns a boolean if a field has been set.

func (*AfEventSubscription) HasRepPeriod

func (o *AfEventSubscription) HasRepPeriod() bool

HasRepPeriod returns a boolean if a field has been set.

func (*AfEventSubscription) HasWaitTime

func (o *AfEventSubscription) HasWaitTime() bool

HasWaitTime returns a boolean if a field has been set.

func (AfEventSubscription) MarshalJSON

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

func (*AfEventSubscription) SetEvent

func (o *AfEventSubscription) SetEvent(v AfEvent)

SetEvent sets field value

func (*AfEventSubscription) SetNotifMethod

func (o *AfEventSubscription) SetNotifMethod(v AfNotifMethod)

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

func (*AfEventSubscription) SetRepPeriod

func (o *AfEventSubscription) SetRepPeriod(v int32)

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

func (*AfEventSubscription) SetWaitTime

func (o *AfEventSubscription) SetWaitTime(v int32)

SetWaitTime gets a reference to the given int32 and assigns it to the WaitTime field.

func (AfEventSubscription) ToMap

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

type AfNotifMethod

type AfNotifMethod struct {
	String *string
}

AfNotifMethod Represents the notification methods that can be subscribed for an event.

func (*AfNotifMethod) MarshalJSON

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

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

func (*AfNotifMethod) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AfRequestedData

type AfRequestedData struct {
	String *string
}

AfRequestedData Represents the information that the AF requested to be exposed.

func (*AfRequestedData) MarshalJSON

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

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

func (*AfRequestedData) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AfRoutingRequirement

type AfRoutingRequirement struct {
	AppReloc      *bool                  `json:"appReloc,omitempty"`
	RouteToLocs   []RouteToLocation      `json:"routeToLocs,omitempty"`
	SpVal         *SpatialValidity       `json:"spVal,omitempty"`
	TempVals      []TemporalValidity     `json:"tempVals,omitempty"`
	UpPathChgSub  NullableUpPathChgEvent `json:"upPathChgSub,omitempty"`
	AddrPreserInd *bool                  `json:"addrPreserInd,omitempty"`
	// Indicates whether simultaneous connectivity should be temporarily maintained for the source and target PSA.
	SimConnInd *bool `json:"simConnInd,omitempty"`
	// indicating a time in seconds.
	SimConnTerm *int32 `json:"simConnTerm,omitempty"`
	// Contains EAS IP replacement information.
	EasIpReplaceInfos []EasIpReplacementInfo `json:"easIpReplaceInfos,omitempty"`
	// Indicates the EAS rediscovery is required.
	EasRedisInd *bool `json:"easRedisInd,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	MaxAllowedUpLat *int32 `json:"maxAllowedUpLat,omitempty"`
}

AfRoutingRequirement Describes the event information delivered in the subscription.

func NewAfRoutingRequirement

func NewAfRoutingRequirement() *AfRoutingRequirement

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

func NewAfRoutingRequirementWithDefaults

func NewAfRoutingRequirementWithDefaults() *AfRoutingRequirement

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

func (*AfRoutingRequirement) GetAddrPreserInd

func (o *AfRoutingRequirement) GetAddrPreserInd() bool

GetAddrPreserInd returns the AddrPreserInd field value if set, zero value otherwise.

func (*AfRoutingRequirement) GetAddrPreserIndOk

func (o *AfRoutingRequirement) GetAddrPreserIndOk() (*bool, bool)

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

func (*AfRoutingRequirement) GetAppReloc

func (o *AfRoutingRequirement) GetAppReloc() bool

GetAppReloc returns the AppReloc field value if set, zero value otherwise.

func (*AfRoutingRequirement) GetAppRelocOk

func (o *AfRoutingRequirement) GetAppRelocOk() (*bool, bool)

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

func (*AfRoutingRequirement) GetEasIpReplaceInfos

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

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

func (*AfRoutingRequirement) GetEasIpReplaceInfosOk

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

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

func (*AfRoutingRequirement) GetEasRedisInd

func (o *AfRoutingRequirement) GetEasRedisInd() bool

GetEasRedisInd returns the EasRedisInd field value if set, zero value otherwise.

func (*AfRoutingRequirement) GetEasRedisIndOk

func (o *AfRoutingRequirement) GetEasRedisIndOk() (*bool, bool)

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

func (*AfRoutingRequirement) GetMaxAllowedUpLat

func (o *AfRoutingRequirement) GetMaxAllowedUpLat() int32

GetMaxAllowedUpLat returns the MaxAllowedUpLat field value if set, zero value otherwise.

func (*AfRoutingRequirement) GetMaxAllowedUpLatOk

func (o *AfRoutingRequirement) GetMaxAllowedUpLatOk() (*int32, bool)

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

func (*AfRoutingRequirement) GetRouteToLocs

func (o *AfRoutingRequirement) GetRouteToLocs() []RouteToLocation

GetRouteToLocs returns the RouteToLocs field value if set, zero value otherwise.

func (*AfRoutingRequirement) GetRouteToLocsOk

func (o *AfRoutingRequirement) GetRouteToLocsOk() ([]RouteToLocation, bool)

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

func (*AfRoutingRequirement) GetSimConnInd

func (o *AfRoutingRequirement) GetSimConnInd() bool

GetSimConnInd returns the SimConnInd field value if set, zero value otherwise.

func (*AfRoutingRequirement) GetSimConnIndOk

func (o *AfRoutingRequirement) GetSimConnIndOk() (*bool, bool)

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

func (*AfRoutingRequirement) GetSimConnTerm

func (o *AfRoutingRequirement) GetSimConnTerm() int32

GetSimConnTerm returns the SimConnTerm field value if set, zero value otherwise.

func (*AfRoutingRequirement) GetSimConnTermOk

func (o *AfRoutingRequirement) GetSimConnTermOk() (*int32, bool)

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

func (*AfRoutingRequirement) GetSpVal

func (o *AfRoutingRequirement) GetSpVal() SpatialValidity

GetSpVal returns the SpVal field value if set, zero value otherwise.

func (*AfRoutingRequirement) GetSpValOk

func (o *AfRoutingRequirement) GetSpValOk() (*SpatialValidity, bool)

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

func (*AfRoutingRequirement) GetTempVals

func (o *AfRoutingRequirement) GetTempVals() []TemporalValidity

GetTempVals returns the TempVals field value if set, zero value otherwise.

func (*AfRoutingRequirement) GetTempValsOk

func (o *AfRoutingRequirement) GetTempValsOk() ([]TemporalValidity, bool)

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

func (*AfRoutingRequirement) GetUpPathChgSub

func (o *AfRoutingRequirement) GetUpPathChgSub() UpPathChgEvent

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

func (*AfRoutingRequirement) GetUpPathChgSubOk

func (o *AfRoutingRequirement) GetUpPathChgSubOk() (*UpPathChgEvent, bool)

GetUpPathChgSubOk returns a tuple with the UpPathChgSub 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 (*AfRoutingRequirement) HasAddrPreserInd

func (o *AfRoutingRequirement) HasAddrPreserInd() bool

HasAddrPreserInd returns a boolean if a field has been set.

func (*AfRoutingRequirement) HasAppReloc

func (o *AfRoutingRequirement) HasAppReloc() bool

HasAppReloc returns a boolean if a field has been set.

func (*AfRoutingRequirement) HasEasIpReplaceInfos

func (o *AfRoutingRequirement) HasEasIpReplaceInfos() bool

HasEasIpReplaceInfos returns a boolean if a field has been set.

func (*AfRoutingRequirement) HasEasRedisInd

func (o *AfRoutingRequirement) HasEasRedisInd() bool

HasEasRedisInd returns a boolean if a field has been set.

func (*AfRoutingRequirement) HasMaxAllowedUpLat

func (o *AfRoutingRequirement) HasMaxAllowedUpLat() bool

HasMaxAllowedUpLat returns a boolean if a field has been set.

func (*AfRoutingRequirement) HasRouteToLocs

func (o *AfRoutingRequirement) HasRouteToLocs() bool

HasRouteToLocs returns a boolean if a field has been set.

func (*AfRoutingRequirement) HasSimConnInd

func (o *AfRoutingRequirement) HasSimConnInd() bool

HasSimConnInd returns a boolean if a field has been set.

func (*AfRoutingRequirement) HasSimConnTerm

func (o *AfRoutingRequirement) HasSimConnTerm() bool

HasSimConnTerm returns a boolean if a field has been set.

func (*AfRoutingRequirement) HasSpVal

func (o *AfRoutingRequirement) HasSpVal() bool

HasSpVal returns a boolean if a field has been set.

func (*AfRoutingRequirement) HasTempVals

func (o *AfRoutingRequirement) HasTempVals() bool

HasTempVals returns a boolean if a field has been set.

func (*AfRoutingRequirement) HasUpPathChgSub

func (o *AfRoutingRequirement) HasUpPathChgSub() bool

HasUpPathChgSub returns a boolean if a field has been set.

func (AfRoutingRequirement) MarshalJSON

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

func (*AfRoutingRequirement) SetAddrPreserInd

func (o *AfRoutingRequirement) SetAddrPreserInd(v bool)

SetAddrPreserInd gets a reference to the given bool and assigns it to the AddrPreserInd field.

func (*AfRoutingRequirement) SetAppReloc

func (o *AfRoutingRequirement) SetAppReloc(v bool)

SetAppReloc gets a reference to the given bool and assigns it to the AppReloc field.

func (*AfRoutingRequirement) SetEasIpReplaceInfos

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

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

func (*AfRoutingRequirement) SetEasRedisInd

func (o *AfRoutingRequirement) SetEasRedisInd(v bool)

SetEasRedisInd gets a reference to the given bool and assigns it to the EasRedisInd field.

func (*AfRoutingRequirement) SetMaxAllowedUpLat

func (o *AfRoutingRequirement) SetMaxAllowedUpLat(v int32)

SetMaxAllowedUpLat gets a reference to the given int32 and assigns it to the MaxAllowedUpLat field.

func (*AfRoutingRequirement) SetRouteToLocs

func (o *AfRoutingRequirement) SetRouteToLocs(v []RouteToLocation)

SetRouteToLocs gets a reference to the given []RouteToLocation and assigns it to the RouteToLocs field.

func (*AfRoutingRequirement) SetSimConnInd

func (o *AfRoutingRequirement) SetSimConnInd(v bool)

SetSimConnInd gets a reference to the given bool and assigns it to the SimConnInd field.

func (*AfRoutingRequirement) SetSimConnTerm

func (o *AfRoutingRequirement) SetSimConnTerm(v int32)

SetSimConnTerm gets a reference to the given int32 and assigns it to the SimConnTerm field.

func (*AfRoutingRequirement) SetSpVal

func (o *AfRoutingRequirement) SetSpVal(v SpatialValidity)

SetSpVal gets a reference to the given SpatialValidity and assigns it to the SpVal field.

func (*AfRoutingRequirement) SetTempVals

func (o *AfRoutingRequirement) SetTempVals(v []TemporalValidity)

SetTempVals gets a reference to the given []TemporalValidity and assigns it to the TempVals field.

func (*AfRoutingRequirement) SetUpPathChgSub

func (o *AfRoutingRequirement) SetUpPathChgSub(v UpPathChgEvent)

SetUpPathChgSub gets a reference to the given NullableUpPathChgEvent and assigns it to the UpPathChgSub field.

func (*AfRoutingRequirement) SetUpPathChgSubNil

func (o *AfRoutingRequirement) SetUpPathChgSubNil()

SetUpPathChgSubNil sets the value for UpPathChgSub to be an explicit nil

func (AfRoutingRequirement) ToMap

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

func (*AfRoutingRequirement) UnsetUpPathChgSub

func (o *AfRoutingRequirement) UnsetUpPathChgSub()

UnsetUpPathChgSub ensures that no value is present for UpPathChgSub, not even an explicit nil

type AfRoutingRequirementRm

type AfRoutingRequirementRm struct {
	AppReloc      *bool                     `json:"appReloc,omitempty"`
	RouteToLocs   []RouteToLocation         `json:"routeToLocs,omitempty"`
	SpVal         NullableSpatialValidityRm `json:"spVal,omitempty"`
	TempVals      []TemporalValidity        `json:"tempVals,omitempty"`
	UpPathChgSub  NullableUpPathChgEvent    `json:"upPathChgSub,omitempty"`
	AddrPreserInd NullableBool              `json:"addrPreserInd,omitempty"`
	// Indicates whether simultaneous connectivity should be temporarily maintained for the source and target PSA.
	SimConnInd NullableBool `json:"simConnInd,omitempty"`
	// indicating a time in seconds with OpenAPI defined 'nullable: true' property.
	SimConnTerm NullableInt32 `json:"simConnTerm,omitempty"`
	// Contains EAS IP replacement information.
	EasIpReplaceInfos []EasIpReplacementInfo `json:"easIpReplaceInfos,omitempty"`
	// Indicates the EAS rediscovery is required.
	EasRedisInd *bool `json:"easRedisInd,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible with the OpenAPI 'nullable: true' property.
	MaxAllowedUpLat NullableInt32 `json:"maxAllowedUpLat,omitempty"`
}

AfRoutingRequirementRm This data type is defined in the same way as the AfRoutingRequirement data type, but with the OpenAPI nullable property set to true and the spVal and tempVals attributes defined as removable.

func NewAfRoutingRequirementRm

func NewAfRoutingRequirementRm() *AfRoutingRequirementRm

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

func NewAfRoutingRequirementRmWithDefaults

func NewAfRoutingRequirementRmWithDefaults() *AfRoutingRequirementRm

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

func (*AfRoutingRequirementRm) GetAddrPreserInd

func (o *AfRoutingRequirementRm) GetAddrPreserInd() bool

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

func (*AfRoutingRequirementRm) GetAddrPreserIndOk

func (o *AfRoutingRequirementRm) GetAddrPreserIndOk() (*bool, bool)

GetAddrPreserIndOk returns a tuple with the AddrPreserInd 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 (*AfRoutingRequirementRm) GetAppReloc

func (o *AfRoutingRequirementRm) GetAppReloc() bool

GetAppReloc returns the AppReloc field value if set, zero value otherwise.

func (*AfRoutingRequirementRm) GetAppRelocOk

func (o *AfRoutingRequirementRm) GetAppRelocOk() (*bool, bool)

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

func (*AfRoutingRequirementRm) GetEasIpReplaceInfos

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

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

func (*AfRoutingRequirementRm) GetEasIpReplaceInfosOk

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

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

func (*AfRoutingRequirementRm) GetEasRedisInd

func (o *AfRoutingRequirementRm) GetEasRedisInd() bool

GetEasRedisInd returns the EasRedisInd field value if set, zero value otherwise.

func (*AfRoutingRequirementRm) GetEasRedisIndOk

func (o *AfRoutingRequirementRm) GetEasRedisIndOk() (*bool, bool)

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

func (*AfRoutingRequirementRm) GetMaxAllowedUpLat

func (o *AfRoutingRequirementRm) GetMaxAllowedUpLat() int32

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

func (*AfRoutingRequirementRm) GetMaxAllowedUpLatOk

func (o *AfRoutingRequirementRm) GetMaxAllowedUpLatOk() (*int32, bool)

GetMaxAllowedUpLatOk returns a tuple with the MaxAllowedUpLat 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 (*AfRoutingRequirementRm) GetRouteToLocs

func (o *AfRoutingRequirementRm) GetRouteToLocs() []RouteToLocation

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

func (*AfRoutingRequirementRm) GetRouteToLocsOk

func (o *AfRoutingRequirementRm) GetRouteToLocsOk() ([]RouteToLocation, bool)

GetRouteToLocsOk returns a tuple with the RouteToLocs 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 (*AfRoutingRequirementRm) GetSimConnInd

func (o *AfRoutingRequirementRm) GetSimConnInd() bool

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

func (*AfRoutingRequirementRm) GetSimConnIndOk

func (o *AfRoutingRequirementRm) GetSimConnIndOk() (*bool, bool)

GetSimConnIndOk returns a tuple with the SimConnInd 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 (*AfRoutingRequirementRm) GetSimConnTerm

func (o *AfRoutingRequirementRm) GetSimConnTerm() int32

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

func (*AfRoutingRequirementRm) GetSimConnTermOk

func (o *AfRoutingRequirementRm) GetSimConnTermOk() (*int32, bool)

GetSimConnTermOk returns a tuple with the SimConnTerm 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 (*AfRoutingRequirementRm) GetSpVal

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

func (*AfRoutingRequirementRm) GetSpValOk

func (o *AfRoutingRequirementRm) GetSpValOk() (*SpatialValidityRm, bool)

GetSpValOk returns a tuple with the SpVal 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 (*AfRoutingRequirementRm) GetTempVals

func (o *AfRoutingRequirementRm) GetTempVals() []TemporalValidity

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

func (*AfRoutingRequirementRm) GetTempValsOk

func (o *AfRoutingRequirementRm) GetTempValsOk() ([]TemporalValidity, bool)

GetTempValsOk returns a tuple with the TempVals 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 (*AfRoutingRequirementRm) GetUpPathChgSub

func (o *AfRoutingRequirementRm) GetUpPathChgSub() UpPathChgEvent

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

func (*AfRoutingRequirementRm) GetUpPathChgSubOk

func (o *AfRoutingRequirementRm) GetUpPathChgSubOk() (*UpPathChgEvent, bool)

GetUpPathChgSubOk returns a tuple with the UpPathChgSub 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 (*AfRoutingRequirementRm) HasAddrPreserInd

func (o *AfRoutingRequirementRm) HasAddrPreserInd() bool

HasAddrPreserInd returns a boolean if a field has been set.

func (*AfRoutingRequirementRm) HasAppReloc

func (o *AfRoutingRequirementRm) HasAppReloc() bool

HasAppReloc returns a boolean if a field has been set.

func (*AfRoutingRequirementRm) HasEasIpReplaceInfos

func (o *AfRoutingRequirementRm) HasEasIpReplaceInfos() bool

HasEasIpReplaceInfos returns a boolean if a field has been set.

func (*AfRoutingRequirementRm) HasEasRedisInd

func (o *AfRoutingRequirementRm) HasEasRedisInd() bool

HasEasRedisInd returns a boolean if a field has been set.

func (*AfRoutingRequirementRm) HasMaxAllowedUpLat

func (o *AfRoutingRequirementRm) HasMaxAllowedUpLat() bool

HasMaxAllowedUpLat returns a boolean if a field has been set.

func (*AfRoutingRequirementRm) HasRouteToLocs

func (o *AfRoutingRequirementRm) HasRouteToLocs() bool

HasRouteToLocs returns a boolean if a field has been set.

func (*AfRoutingRequirementRm) HasSimConnInd

func (o *AfRoutingRequirementRm) HasSimConnInd() bool

HasSimConnInd returns a boolean if a field has been set.

func (*AfRoutingRequirementRm) HasSimConnTerm

func (o *AfRoutingRequirementRm) HasSimConnTerm() bool

HasSimConnTerm returns a boolean if a field has been set.

func (*AfRoutingRequirementRm) HasSpVal

func (o *AfRoutingRequirementRm) HasSpVal() bool

HasSpVal returns a boolean if a field has been set.

func (*AfRoutingRequirementRm) HasTempVals

func (o *AfRoutingRequirementRm) HasTempVals() bool

HasTempVals returns a boolean if a field has been set.

func (*AfRoutingRequirementRm) HasUpPathChgSub

func (o *AfRoutingRequirementRm) HasUpPathChgSub() bool

HasUpPathChgSub returns a boolean if a field has been set.

func (AfRoutingRequirementRm) MarshalJSON

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

func (*AfRoutingRequirementRm) SetAddrPreserInd

func (o *AfRoutingRequirementRm) SetAddrPreserInd(v bool)

SetAddrPreserInd gets a reference to the given NullableBool and assigns it to the AddrPreserInd field.

func (*AfRoutingRequirementRm) SetAddrPreserIndNil

func (o *AfRoutingRequirementRm) SetAddrPreserIndNil()

SetAddrPreserIndNil sets the value for AddrPreserInd to be an explicit nil

func (*AfRoutingRequirementRm) SetAppReloc

func (o *AfRoutingRequirementRm) SetAppReloc(v bool)

SetAppReloc gets a reference to the given bool and assigns it to the AppReloc field.

func (*AfRoutingRequirementRm) SetEasIpReplaceInfos

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

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

func (*AfRoutingRequirementRm) SetEasRedisInd

func (o *AfRoutingRequirementRm) SetEasRedisInd(v bool)

SetEasRedisInd gets a reference to the given bool and assigns it to the EasRedisInd field.

func (*AfRoutingRequirementRm) SetMaxAllowedUpLat

func (o *AfRoutingRequirementRm) SetMaxAllowedUpLat(v int32)

SetMaxAllowedUpLat gets a reference to the given NullableInt32 and assigns it to the MaxAllowedUpLat field.

func (*AfRoutingRequirementRm) SetMaxAllowedUpLatNil

func (o *AfRoutingRequirementRm) SetMaxAllowedUpLatNil()

SetMaxAllowedUpLatNil sets the value for MaxAllowedUpLat to be an explicit nil

func (*AfRoutingRequirementRm) SetRouteToLocs

func (o *AfRoutingRequirementRm) SetRouteToLocs(v []RouteToLocation)

SetRouteToLocs gets a reference to the given []RouteToLocation and assigns it to the RouteToLocs field.

func (*AfRoutingRequirementRm) SetSimConnInd

func (o *AfRoutingRequirementRm) SetSimConnInd(v bool)

SetSimConnInd gets a reference to the given NullableBool and assigns it to the SimConnInd field.

func (*AfRoutingRequirementRm) SetSimConnIndNil

func (o *AfRoutingRequirementRm) SetSimConnIndNil()

SetSimConnIndNil sets the value for SimConnInd to be an explicit nil

func (*AfRoutingRequirementRm) SetSimConnTerm

func (o *AfRoutingRequirementRm) SetSimConnTerm(v int32)

SetSimConnTerm gets a reference to the given NullableInt32 and assigns it to the SimConnTerm field.

func (*AfRoutingRequirementRm) SetSimConnTermNil

func (o *AfRoutingRequirementRm) SetSimConnTermNil()

SetSimConnTermNil sets the value for SimConnTerm to be an explicit nil

func (*AfRoutingRequirementRm) SetSpVal

SetSpVal gets a reference to the given NullableSpatialValidityRm and assigns it to the SpVal field.

func (*AfRoutingRequirementRm) SetSpValNil

func (o *AfRoutingRequirementRm) SetSpValNil()

SetSpValNil sets the value for SpVal to be an explicit nil

func (*AfRoutingRequirementRm) SetTempVals

func (o *AfRoutingRequirementRm) SetTempVals(v []TemporalValidity)

SetTempVals gets a reference to the given []TemporalValidity and assigns it to the TempVals field.

func (*AfRoutingRequirementRm) SetUpPathChgSub

func (o *AfRoutingRequirementRm) SetUpPathChgSub(v UpPathChgEvent)

SetUpPathChgSub gets a reference to the given NullableUpPathChgEvent and assigns it to the UpPathChgSub field.

func (*AfRoutingRequirementRm) SetUpPathChgSubNil

func (o *AfRoutingRequirementRm) SetUpPathChgSubNil()

SetUpPathChgSubNil sets the value for UpPathChgSub to be an explicit nil

func (AfRoutingRequirementRm) ToMap

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

func (*AfRoutingRequirementRm) UnsetAddrPreserInd

func (o *AfRoutingRequirementRm) UnsetAddrPreserInd()

UnsetAddrPreserInd ensures that no value is present for AddrPreserInd, not even an explicit nil

func (*AfRoutingRequirementRm) UnsetMaxAllowedUpLat

func (o *AfRoutingRequirementRm) UnsetMaxAllowedUpLat()

UnsetMaxAllowedUpLat ensures that no value is present for MaxAllowedUpLat, not even an explicit nil

func (*AfRoutingRequirementRm) UnsetSimConnInd

func (o *AfRoutingRequirementRm) UnsetSimConnInd()

UnsetSimConnInd ensures that no value is present for SimConnInd, not even an explicit nil

func (*AfRoutingRequirementRm) UnsetSimConnTerm

func (o *AfRoutingRequirementRm) UnsetSimConnTerm()

UnsetSimConnTerm ensures that no value is present for SimConnTerm, not even an explicit nil

func (*AfRoutingRequirementRm) UnsetSpVal

func (o *AfRoutingRequirementRm) UnsetSpVal()

UnsetSpVal ensures that no value is present for SpVal, not even an explicit nil

func (*AfRoutingRequirementRm) UnsetUpPathChgSub

func (o *AfRoutingRequirementRm) UnsetUpPathChgSub()

UnsetUpPathChgSub ensures that no value is present for UpPathChgSub, not even an explicit nil

type AfSigProtocol

type AfSigProtocol struct {
	NullValue *NullValue
	String    *string
}

AfSigProtocol Possible values are - NO_INFORMATION: Indicate that no information about the AF signalling protocol is being provided. - SIP: Indicate that the signalling protocol is Session Initiation Protocol.

func (*AfSigProtocol) MarshalJSON

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

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

func (*AfSigProtocol) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AlternativeServiceRequirementsData

type AlternativeServiceRequirementsData struct {
	// Reference to this alternative QoS related parameter set.
	AltQosParamSetRef string `json:"altQosParamSetRef"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	GbrUl *string `json:"gbrUl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	GbrDl *string `json:"gbrDl,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	Pdb *int32 `json:"pdb,omitempty"`
}

AlternativeServiceRequirementsData Contains an alternative QoS related parameter set.

func NewAlternativeServiceRequirementsData

func NewAlternativeServiceRequirementsData(altQosParamSetRef string) *AlternativeServiceRequirementsData

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

func NewAlternativeServiceRequirementsDataWithDefaults

func NewAlternativeServiceRequirementsDataWithDefaults() *AlternativeServiceRequirementsData

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

func (*AlternativeServiceRequirementsData) GetAltQosParamSetRef

func (o *AlternativeServiceRequirementsData) GetAltQosParamSetRef() string

GetAltQosParamSetRef returns the AltQosParamSetRef field value

func (*AlternativeServiceRequirementsData) GetAltQosParamSetRefOk

func (o *AlternativeServiceRequirementsData) GetAltQosParamSetRefOk() (*string, bool)

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

func (*AlternativeServiceRequirementsData) GetGbrDl

GetGbrDl returns the GbrDl field value if set, zero value otherwise.

func (*AlternativeServiceRequirementsData) GetGbrDlOk

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

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

func (*AlternativeServiceRequirementsData) GetGbrUl

GetGbrUl returns the GbrUl field value if set, zero value otherwise.

func (*AlternativeServiceRequirementsData) GetGbrUlOk

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

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

func (*AlternativeServiceRequirementsData) GetPdb

GetPdb returns the Pdb field value if set, zero value otherwise.

func (*AlternativeServiceRequirementsData) GetPdbOk

func (o *AlternativeServiceRequirementsData) GetPdbOk() (*int32, bool)

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

func (*AlternativeServiceRequirementsData) HasGbrDl

HasGbrDl returns a boolean if a field has been set.

func (*AlternativeServiceRequirementsData) HasGbrUl

HasGbrUl returns a boolean if a field has been set.

func (*AlternativeServiceRequirementsData) HasPdb

HasPdb returns a boolean if a field has been set.

func (AlternativeServiceRequirementsData) MarshalJSON

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

func (*AlternativeServiceRequirementsData) SetAltQosParamSetRef

func (o *AlternativeServiceRequirementsData) SetAltQosParamSetRef(v string)

SetAltQosParamSetRef sets field value

func (*AlternativeServiceRequirementsData) SetGbrDl

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

func (*AlternativeServiceRequirementsData) SetGbrUl

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

func (*AlternativeServiceRequirementsData) SetPdb

SetPdb gets a reference to the given int32 and assigns it to the Pdb field.

func (AlternativeServiceRequirementsData) ToMap

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

type AnGwAddress

type AnGwAddress struct {
	Interface *interface{}
}

AnGwAddress Describes the address of the access network gateway control node.

func (*AnGwAddress) MarshalJSON

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

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

func (*AnGwAddress) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ApiDeleteAppSessionRequest

type ApiDeleteAppSessionRequest struct {
	ApiService *IndividualApplicationSessionContextDocumentApiService
	// contains filtered or unexported fields
}

func (ApiDeleteAppSessionRequest) EventsSubscReqData

func (r ApiDeleteAppSessionRequest) EventsSubscReqData(eventsSubscReqData EventsSubscReqData) ApiDeleteAppSessionRequest

Deletion of the Individual Application Session Context resource, req notification.

func (ApiDeleteAppSessionRequest) Execute

type ApiDeleteEventsSubscRequest

type ApiDeleteEventsSubscRequest struct {
	ApiService *EventsSubscriptionDocumentApiService
	// contains filtered or unexported fields
}

func (ApiDeleteEventsSubscRequest) Execute

type ApiGetAppSessionRequest

type ApiGetAppSessionRequest struct {
	ApiService *IndividualApplicationSessionContextDocumentApiService
	// contains filtered or unexported fields
}

func (ApiGetAppSessionRequest) Execute

type ApiModAppSessionRequest

type ApiModAppSessionRequest struct {
	ApiService *IndividualApplicationSessionContextDocumentApiService
	// contains filtered or unexported fields
}

func (ApiModAppSessionRequest) AppSessionContextUpdateDataPatch

func (r ApiModAppSessionRequest) AppSessionContextUpdateDataPatch(appSessionContextUpdateDataPatch AppSessionContextUpdateDataPatch) ApiModAppSessionRequest

Modification of the resource.

func (ApiModAppSessionRequest) Execute

type ApiPcscfRestorationRequest

type ApiPcscfRestorationRequest struct {
	ApiService *PCSCFRestorationIndicationApiService
	// contains filtered or unexported fields
}

func (ApiPcscfRestorationRequest) Execute

func (ApiPcscfRestorationRequest) PcscfRestorationRequestData

func (r ApiPcscfRestorationRequest) PcscfRestorationRequestData(pcscfRestorationRequestData PcscfRestorationRequestData) ApiPcscfRestorationRequest

PCSCF Restoration Indication.

type ApiPostAppSessionsRequest

type ApiPostAppSessionsRequest struct {
	ApiService *ApplicationSessionsCollectionApiService
	// contains filtered or unexported fields
}

func (ApiPostAppSessionsRequest) AppSessionContext

func (r ApiPostAppSessionsRequest) AppSessionContext(appSessionContext AppSessionContext) ApiPostAppSessionsRequest

Contains the information for the creation the resource.

func (ApiPostAppSessionsRequest) Execute

type ApiUpdateEventsSubscRequest

type ApiUpdateEventsSubscRequest struct {
	ApiService *EventsSubscriptionDocumentApiService
	// contains filtered or unexported fields
}

func (ApiUpdateEventsSubscRequest) EventsSubscReqData

func (r ApiUpdateEventsSubscRequest) EventsSubscReqData(eventsSubscReqData EventsSubscReqData) ApiUpdateEventsSubscRequest

Creation or modification of an Events Subscription resource.

func (ApiUpdateEventsSubscRequest) Execute

type AppDetectionNotifType

type AppDetectionNotifType struct {
	String *string
}

AppDetectionNotifType Indicates the notification type for Application Detection Control.

func (*AppDetectionNotifType) MarshalJSON

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

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

func (*AppDetectionNotifType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AppDetectionReport

type AppDetectionReport struct {
	AdNotifType AppDetectionNotifType `json:"adNotifType"`
	// Contains an AF application identifier.
	AfAppId string `json:"afAppId"`
}

AppDetectionReport Indicates the start or stop of the detected application traffic and the application identifier of the detected application traffic.

func NewAppDetectionReport

func NewAppDetectionReport(adNotifType AppDetectionNotifType, afAppId string) *AppDetectionReport

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

func NewAppDetectionReportWithDefaults

func NewAppDetectionReportWithDefaults() *AppDetectionReport

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

func (*AppDetectionReport) GetAdNotifType

func (o *AppDetectionReport) GetAdNotifType() AppDetectionNotifType

GetAdNotifType returns the AdNotifType field value

func (*AppDetectionReport) GetAdNotifTypeOk

func (o *AppDetectionReport) GetAdNotifTypeOk() (*AppDetectionNotifType, bool)

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

func (*AppDetectionReport) GetAfAppId

func (o *AppDetectionReport) GetAfAppId() string

GetAfAppId returns the AfAppId field value

func (*AppDetectionReport) GetAfAppIdOk

func (o *AppDetectionReport) GetAfAppIdOk() (*string, bool)

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

func (AppDetectionReport) MarshalJSON

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

func (*AppDetectionReport) SetAdNotifType

func (o *AppDetectionReport) SetAdNotifType(v AppDetectionNotifType)

SetAdNotifType sets field value

func (*AppDetectionReport) SetAfAppId

func (o *AppDetectionReport) SetAfAppId(v string)

SetAfAppId sets field value

func (AppDetectionReport) ToMap

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

type AppSessionContext

type AppSessionContext struct {
	AscReqData  *AppSessionContextReqData  `json:"ascReqData,omitempty"`
	AscRespData *AppSessionContextRespData `json:"ascRespData,omitempty"`
	EvsNotif    *EventsNotification        `json:"evsNotif,omitempty"`
}

AppSessionContext Represents an Individual Application Session Context resource.

func NewAppSessionContext

func NewAppSessionContext() *AppSessionContext

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

func NewAppSessionContextWithDefaults

func NewAppSessionContextWithDefaults() *AppSessionContext

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

func (*AppSessionContext) GetAscReqData

func (o *AppSessionContext) GetAscReqData() AppSessionContextReqData

GetAscReqData returns the AscReqData field value if set, zero value otherwise.

func (*AppSessionContext) GetAscReqDataOk

func (o *AppSessionContext) GetAscReqDataOk() (*AppSessionContextReqData, bool)

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

func (*AppSessionContext) GetAscRespData

func (o *AppSessionContext) GetAscRespData() AppSessionContextRespData

GetAscRespData returns the AscRespData field value if set, zero value otherwise.

func (*AppSessionContext) GetAscRespDataOk

func (o *AppSessionContext) GetAscRespDataOk() (*AppSessionContextRespData, bool)

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

func (*AppSessionContext) GetEvsNotif

func (o *AppSessionContext) GetEvsNotif() EventsNotification

GetEvsNotif returns the EvsNotif field value if set, zero value otherwise.

func (*AppSessionContext) GetEvsNotifOk

func (o *AppSessionContext) GetEvsNotifOk() (*EventsNotification, bool)

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

func (*AppSessionContext) HasAscReqData

func (o *AppSessionContext) HasAscReqData() bool

HasAscReqData returns a boolean if a field has been set.

func (*AppSessionContext) HasAscRespData

func (o *AppSessionContext) HasAscRespData() bool

HasAscRespData returns a boolean if a field has been set.

func (*AppSessionContext) HasEvsNotif

func (o *AppSessionContext) HasEvsNotif() bool

HasEvsNotif returns a boolean if a field has been set.

func (AppSessionContext) MarshalJSON

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

func (*AppSessionContext) SetAscReqData

func (o *AppSessionContext) SetAscReqData(v AppSessionContextReqData)

SetAscReqData gets a reference to the given AppSessionContextReqData and assigns it to the AscReqData field.

func (*AppSessionContext) SetAscRespData

func (o *AppSessionContext) SetAscRespData(v AppSessionContextRespData)

SetAscRespData gets a reference to the given AppSessionContextRespData and assigns it to the AscRespData field.

func (*AppSessionContext) SetEvsNotif

func (o *AppSessionContext) SetEvsNotif(v EventsNotification)

SetEvsNotif gets a reference to the given EventsNotification and assigns it to the EvsNotif field.

func (AppSessionContext) ToMap

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

type AppSessionContextReqData

type AppSessionContextReqData struct {
	Interface *interface{}
}

AppSessionContextReqData - Identifies the service requirements of an Individual Application Session Context.

func InterfaceAsAppSessionContextReqData

func InterfaceAsAppSessionContextReqData(v *interface{}) AppSessionContextReqData

interface{}AsAppSessionContextReqData is a convenience function that returns interface{} wrapped in AppSessionContextReqData

func (*AppSessionContextReqData) GetActualInstance

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

Get the actual instance

func (AppSessionContextReqData) MarshalJSON

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

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

func (*AppSessionContextReqData) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type AppSessionContextRespData

type AppSessionContextRespData struct {
	ServAuthInfo *ServAuthInfo    `json:"servAuthInfo,omitempty"`
	UeIds        []UeIdentityInfo `json:"ueIds,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.
	SuppFeat *string `json:"suppFeat,omitempty"`
}

AppSessionContextRespData Describes the authorization data of an Individual Application Session Context created by the PCF.

func NewAppSessionContextRespData

func NewAppSessionContextRespData() *AppSessionContextRespData

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

func NewAppSessionContextRespDataWithDefaults

func NewAppSessionContextRespDataWithDefaults() *AppSessionContextRespData

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

func (*AppSessionContextRespData) GetServAuthInfo

func (o *AppSessionContextRespData) GetServAuthInfo() ServAuthInfo

GetServAuthInfo returns the ServAuthInfo field value if set, zero value otherwise.

func (*AppSessionContextRespData) GetServAuthInfoOk

func (o *AppSessionContextRespData) GetServAuthInfoOk() (*ServAuthInfo, bool)

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

func (*AppSessionContextRespData) GetSuppFeat

func (o *AppSessionContextRespData) GetSuppFeat() string

GetSuppFeat returns the SuppFeat field value if set, zero value otherwise.

func (*AppSessionContextRespData) GetSuppFeatOk

func (o *AppSessionContextRespData) GetSuppFeatOk() (*string, bool)

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

func (*AppSessionContextRespData) GetUeIds

func (o *AppSessionContextRespData) GetUeIds() []UeIdentityInfo

GetUeIds returns the UeIds field value if set, zero value otherwise.

func (*AppSessionContextRespData) GetUeIdsOk

func (o *AppSessionContextRespData) GetUeIdsOk() ([]UeIdentityInfo, bool)

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

func (*AppSessionContextRespData) HasServAuthInfo

func (o *AppSessionContextRespData) HasServAuthInfo() bool

HasServAuthInfo returns a boolean if a field has been set.

func (*AppSessionContextRespData) HasSuppFeat

func (o *AppSessionContextRespData) HasSuppFeat() bool

HasSuppFeat returns a boolean if a field has been set.

func (*AppSessionContextRespData) HasUeIds

func (o *AppSessionContextRespData) HasUeIds() bool

HasUeIds returns a boolean if a field has been set.

func (AppSessionContextRespData) MarshalJSON

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

func (*AppSessionContextRespData) SetServAuthInfo

func (o *AppSessionContextRespData) SetServAuthInfo(v ServAuthInfo)

SetServAuthInfo gets a reference to the given ServAuthInfo and assigns it to the ServAuthInfo field.

func (*AppSessionContextRespData) SetSuppFeat

func (o *AppSessionContextRespData) SetSuppFeat(v string)

SetSuppFeat gets a reference to the given string and assigns it to the SuppFeat field.

func (*AppSessionContextRespData) SetUeIds

func (o *AppSessionContextRespData) SetUeIds(v []UeIdentityInfo)

SetUeIds gets a reference to the given []UeIdentityInfo and assigns it to the UeIds field.

func (AppSessionContextRespData) ToMap

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

type AppSessionContextUpdateData

type AppSessionContextUpdateData struct {
	// Contains an AF application identifier.
	AfAppId   *string                        `json:"afAppId,omitempty"`
	AfRoutReq NullableAfRoutingRequirementRm `json:"afRoutReq,omitempty"`
	// Contains an identity of an application service provider.
	AspId *string `json:"aspId,omitempty"`
	// string identifying a BDT Reference ID as defined in clause 5.3.3 of 3GPP TS 29.154.
	BdtRefId *string                      `json:"bdtRefId,omitempty"`
	EvSubsc  NullableEventsSubscReqDataRm `json:"evSubsc,omitempty"`
	// Indication of MCPTT service request.
	McpttId *string `json:"mcpttId,omitempty"`
	// Indication of modification of MCVideo service.
	McVideoId *string `json:"mcVideoId,omitempty"`
	// Contains media component information. The key of the map is the medCompN attribute.
	MedComponents *map[string]MediaComponentRm `json:"medComponents,omitempty"`
	MpsAction     *MpsAction                   `json:"mpsAction,omitempty"`
	// Indication of MPS service request.
	MpsId *string `json:"mpsId,omitempty"`
	// Indication of MCS service request.
	McsId              *string                         `json:"mcsId,omitempty"`
	PreemptControlInfo *PreemptionControlInformationRm `json:"preemptControlInfo,omitempty"`
	ResPrio            *ReservPriority                 `json:"resPrio,omitempty"`
	ServInfStatus      *ServiceInfoStatus              `json:"servInfStatus,omitempty"`
	SipForkInd         *SipForkingIndication           `json:"sipForkInd,omitempty"`
	// Contains an identity of a sponsor.
	SponId              *string                    `json:"sponId,omitempty"`
	SponStatus          *SponsoringStatus          `json:"sponStatus,omitempty"`
	TsnBridgeManCont    *BridgeManagementContainer `json:"tsnBridgeManCont,omitempty"`
	TsnPortManContDstt  *PortManagementContainer   `json:"tsnPortManContDstt,omitempty"`
	TsnPortManContNwtts []PortManagementContainer  `json:"tsnPortManContNwtts,omitempty"`
}

AppSessionContextUpdateData Identifies the modifications to the \"ascReqData\" property of an Individual Application Session Context which may include the modifications to the sub-resource Events Subscription.

func NewAppSessionContextUpdateData

func NewAppSessionContextUpdateData() *AppSessionContextUpdateData

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

func NewAppSessionContextUpdateDataWithDefaults

func NewAppSessionContextUpdateDataWithDefaults() *AppSessionContextUpdateData

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

func (*AppSessionContextUpdateData) GetAfAppId

func (o *AppSessionContextUpdateData) GetAfAppId() string

GetAfAppId returns the AfAppId field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetAfAppIdOk

func (o *AppSessionContextUpdateData) GetAfAppIdOk() (*string, bool)

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

func (*AppSessionContextUpdateData) GetAfRoutReq

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

func (*AppSessionContextUpdateData) GetAfRoutReqOk

GetAfRoutReqOk returns a tuple with the AfRoutReq 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 (*AppSessionContextUpdateData) GetAspId

func (o *AppSessionContextUpdateData) GetAspId() string

GetAspId returns the AspId field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetAspIdOk

func (o *AppSessionContextUpdateData) GetAspIdOk() (*string, bool)

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

func (*AppSessionContextUpdateData) GetBdtRefId

func (o *AppSessionContextUpdateData) GetBdtRefId() string

GetBdtRefId returns the BdtRefId field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetBdtRefIdOk

func (o *AppSessionContextUpdateData) GetBdtRefIdOk() (*string, bool)

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

func (*AppSessionContextUpdateData) GetEvSubsc

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

func (*AppSessionContextUpdateData) GetEvSubscOk

GetEvSubscOk returns a tuple with the EvSubsc 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 (*AppSessionContextUpdateData) GetMcVideoId

func (o *AppSessionContextUpdateData) GetMcVideoId() string

GetMcVideoId returns the McVideoId field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetMcVideoIdOk

func (o *AppSessionContextUpdateData) GetMcVideoIdOk() (*string, bool)

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

func (*AppSessionContextUpdateData) GetMcpttId

func (o *AppSessionContextUpdateData) GetMcpttId() string

GetMcpttId returns the McpttId field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetMcpttIdOk

func (o *AppSessionContextUpdateData) GetMcpttIdOk() (*string, bool)

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

func (*AppSessionContextUpdateData) GetMcsId

func (o *AppSessionContextUpdateData) GetMcsId() string

GetMcsId returns the McsId field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetMcsIdOk

func (o *AppSessionContextUpdateData) GetMcsIdOk() (*string, bool)

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

func (*AppSessionContextUpdateData) GetMedComponents

func (o *AppSessionContextUpdateData) GetMedComponents() map[string]MediaComponentRm

GetMedComponents returns the MedComponents field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetMedComponentsOk

func (o *AppSessionContextUpdateData) GetMedComponentsOk() (*map[string]MediaComponentRm, bool)

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

func (*AppSessionContextUpdateData) GetMpsAction

func (o *AppSessionContextUpdateData) GetMpsAction() MpsAction

GetMpsAction returns the MpsAction field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetMpsActionOk

func (o *AppSessionContextUpdateData) GetMpsActionOk() (*MpsAction, bool)

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

func (*AppSessionContextUpdateData) GetMpsId

func (o *AppSessionContextUpdateData) GetMpsId() string

GetMpsId returns the MpsId field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetMpsIdOk

func (o *AppSessionContextUpdateData) GetMpsIdOk() (*string, bool)

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

func (*AppSessionContextUpdateData) GetPreemptControlInfo

GetPreemptControlInfo returns the PreemptControlInfo field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetPreemptControlInfoOk

func (o *AppSessionContextUpdateData) GetPreemptControlInfoOk() (*PreemptionControlInformationRm, bool)

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

func (*AppSessionContextUpdateData) GetResPrio

GetResPrio returns the ResPrio field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetResPrioOk

func (o *AppSessionContextUpdateData) GetResPrioOk() (*ReservPriority, bool)

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

func (*AppSessionContextUpdateData) GetServInfStatus

func (o *AppSessionContextUpdateData) GetServInfStatus() ServiceInfoStatus

GetServInfStatus returns the ServInfStatus field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetServInfStatusOk

func (o *AppSessionContextUpdateData) GetServInfStatusOk() (*ServiceInfoStatus, bool)

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

func (*AppSessionContextUpdateData) GetSipForkInd

GetSipForkInd returns the SipForkInd field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetSipForkIndOk

func (o *AppSessionContextUpdateData) GetSipForkIndOk() (*SipForkingIndication, bool)

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

func (*AppSessionContextUpdateData) GetSponId

func (o *AppSessionContextUpdateData) GetSponId() string

GetSponId returns the SponId field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetSponIdOk

func (o *AppSessionContextUpdateData) GetSponIdOk() (*string, bool)

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

func (*AppSessionContextUpdateData) GetSponStatus

func (o *AppSessionContextUpdateData) GetSponStatus() SponsoringStatus

GetSponStatus returns the SponStatus field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetSponStatusOk

func (o *AppSessionContextUpdateData) GetSponStatusOk() (*SponsoringStatus, bool)

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

func (*AppSessionContextUpdateData) GetTsnBridgeManCont

func (o *AppSessionContextUpdateData) GetTsnBridgeManCont() BridgeManagementContainer

GetTsnBridgeManCont returns the TsnBridgeManCont field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetTsnBridgeManContOk

func (o *AppSessionContextUpdateData) GetTsnBridgeManContOk() (*BridgeManagementContainer, bool)

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

func (*AppSessionContextUpdateData) GetTsnPortManContDstt

func (o *AppSessionContextUpdateData) GetTsnPortManContDstt() PortManagementContainer

GetTsnPortManContDstt returns the TsnPortManContDstt field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetTsnPortManContDsttOk

func (o *AppSessionContextUpdateData) GetTsnPortManContDsttOk() (*PortManagementContainer, bool)

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

func (*AppSessionContextUpdateData) GetTsnPortManContNwtts

func (o *AppSessionContextUpdateData) GetTsnPortManContNwtts() []PortManagementContainer

GetTsnPortManContNwtts returns the TsnPortManContNwtts field value if set, zero value otherwise.

func (*AppSessionContextUpdateData) GetTsnPortManContNwttsOk

func (o *AppSessionContextUpdateData) GetTsnPortManContNwttsOk() ([]PortManagementContainer, bool)

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

func (*AppSessionContextUpdateData) HasAfAppId

func (o *AppSessionContextUpdateData) HasAfAppId() bool

HasAfAppId returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasAfRoutReq

func (o *AppSessionContextUpdateData) HasAfRoutReq() bool

HasAfRoutReq returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasAspId

func (o *AppSessionContextUpdateData) HasAspId() bool

HasAspId returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasBdtRefId

func (o *AppSessionContextUpdateData) HasBdtRefId() bool

HasBdtRefId returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasEvSubsc

func (o *AppSessionContextUpdateData) HasEvSubsc() bool

HasEvSubsc returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasMcVideoId

func (o *AppSessionContextUpdateData) HasMcVideoId() bool

HasMcVideoId returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasMcpttId

func (o *AppSessionContextUpdateData) HasMcpttId() bool

HasMcpttId returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasMcsId

func (o *AppSessionContextUpdateData) HasMcsId() bool

HasMcsId returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasMedComponents

func (o *AppSessionContextUpdateData) HasMedComponents() bool

HasMedComponents returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasMpsAction

func (o *AppSessionContextUpdateData) HasMpsAction() bool

HasMpsAction returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasMpsId

func (o *AppSessionContextUpdateData) HasMpsId() bool

HasMpsId returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasPreemptControlInfo

func (o *AppSessionContextUpdateData) HasPreemptControlInfo() bool

HasPreemptControlInfo returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasResPrio

func (o *AppSessionContextUpdateData) HasResPrio() bool

HasResPrio returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasServInfStatus

func (o *AppSessionContextUpdateData) HasServInfStatus() bool

HasServInfStatus returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasSipForkInd

func (o *AppSessionContextUpdateData) HasSipForkInd() bool

HasSipForkInd returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasSponId

func (o *AppSessionContextUpdateData) HasSponId() bool

HasSponId returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasSponStatus

func (o *AppSessionContextUpdateData) HasSponStatus() bool

HasSponStatus returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasTsnBridgeManCont

func (o *AppSessionContextUpdateData) HasTsnBridgeManCont() bool

HasTsnBridgeManCont returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasTsnPortManContDstt

func (o *AppSessionContextUpdateData) HasTsnPortManContDstt() bool

HasTsnPortManContDstt returns a boolean if a field has been set.

func (*AppSessionContextUpdateData) HasTsnPortManContNwtts

func (o *AppSessionContextUpdateData) HasTsnPortManContNwtts() bool

HasTsnPortManContNwtts returns a boolean if a field has been set.

func (AppSessionContextUpdateData) MarshalJSON

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

func (*AppSessionContextUpdateData) SetAfAppId

func (o *AppSessionContextUpdateData) SetAfAppId(v string)

SetAfAppId gets a reference to the given string and assigns it to the AfAppId field.

func (*AppSessionContextUpdateData) SetAfRoutReq

SetAfRoutReq gets a reference to the given NullableAfRoutingRequirementRm and assigns it to the AfRoutReq field.

func (*AppSessionContextUpdateData) SetAfRoutReqNil

func (o *AppSessionContextUpdateData) SetAfRoutReqNil()

SetAfRoutReqNil sets the value for AfRoutReq to be an explicit nil

func (*AppSessionContextUpdateData) SetAspId

func (o *AppSessionContextUpdateData) SetAspId(v string)

SetAspId gets a reference to the given string and assigns it to the AspId field.

func (*AppSessionContextUpdateData) SetBdtRefId

func (o *AppSessionContextUpdateData) SetBdtRefId(v string)

SetBdtRefId gets a reference to the given string and assigns it to the BdtRefId field.

func (*AppSessionContextUpdateData) SetEvSubsc

SetEvSubsc gets a reference to the given NullableEventsSubscReqDataRm and assigns it to the EvSubsc field.

func (*AppSessionContextUpdateData) SetEvSubscNil

func (o *AppSessionContextUpdateData) SetEvSubscNil()

SetEvSubscNil sets the value for EvSubsc to be an explicit nil

func (*AppSessionContextUpdateData) SetMcVideoId

func (o *AppSessionContextUpdateData) SetMcVideoId(v string)

SetMcVideoId gets a reference to the given string and assigns it to the McVideoId field.

func (*AppSessionContextUpdateData) SetMcpttId

func (o *AppSessionContextUpdateData) SetMcpttId(v string)

SetMcpttId gets a reference to the given string and assigns it to the McpttId field.

func (*AppSessionContextUpdateData) SetMcsId

func (o *AppSessionContextUpdateData) SetMcsId(v string)

SetMcsId gets a reference to the given string and assigns it to the McsId field.

func (*AppSessionContextUpdateData) SetMedComponents

func (o *AppSessionContextUpdateData) SetMedComponents(v map[string]MediaComponentRm)

SetMedComponents gets a reference to the given map[string]MediaComponentRm and assigns it to the MedComponents field.

func (*AppSessionContextUpdateData) SetMpsAction

func (o *AppSessionContextUpdateData) SetMpsAction(v MpsAction)

SetMpsAction gets a reference to the given MpsAction and assigns it to the MpsAction field.

func (*AppSessionContextUpdateData) SetMpsId

func (o *AppSessionContextUpdateData) SetMpsId(v string)

SetMpsId gets a reference to the given string and assigns it to the MpsId field.

func (*AppSessionContextUpdateData) SetPreemptControlInfo

func (o *AppSessionContextUpdateData) SetPreemptControlInfo(v PreemptionControlInformationRm)

SetPreemptControlInfo gets a reference to the given PreemptionControlInformationRm and assigns it to the PreemptControlInfo field.

func (*AppSessionContextUpdateData) SetResPrio

SetResPrio gets a reference to the given ReservPriority and assigns it to the ResPrio field.

func (*AppSessionContextUpdateData) SetServInfStatus

func (o *AppSessionContextUpdateData) SetServInfStatus(v ServiceInfoStatus)

SetServInfStatus gets a reference to the given ServiceInfoStatus and assigns it to the ServInfStatus field.

func (*AppSessionContextUpdateData) SetSipForkInd

SetSipForkInd gets a reference to the given SipForkingIndication and assigns it to the SipForkInd field.

func (*AppSessionContextUpdateData) SetSponId

func (o *AppSessionContextUpdateData) SetSponId(v string)

SetSponId gets a reference to the given string and assigns it to the SponId field.

func (*AppSessionContextUpdateData) SetSponStatus

func (o *AppSessionContextUpdateData) SetSponStatus(v SponsoringStatus)

SetSponStatus gets a reference to the given SponsoringStatus and assigns it to the SponStatus field.

func (*AppSessionContextUpdateData) SetTsnBridgeManCont

func (o *AppSessionContextUpdateData) SetTsnBridgeManCont(v BridgeManagementContainer)

SetTsnBridgeManCont gets a reference to the given BridgeManagementContainer and assigns it to the TsnBridgeManCont field.

func (*AppSessionContextUpdateData) SetTsnPortManContDstt

func (o *AppSessionContextUpdateData) SetTsnPortManContDstt(v PortManagementContainer)

SetTsnPortManContDstt gets a reference to the given PortManagementContainer and assigns it to the TsnPortManContDstt field.

func (*AppSessionContextUpdateData) SetTsnPortManContNwtts

func (o *AppSessionContextUpdateData) SetTsnPortManContNwtts(v []PortManagementContainer)

SetTsnPortManContNwtts gets a reference to the given []PortManagementContainer and assigns it to the TsnPortManContNwtts field.

func (AppSessionContextUpdateData) ToMap

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

func (*AppSessionContextUpdateData) UnsetAfRoutReq

func (o *AppSessionContextUpdateData) UnsetAfRoutReq()

UnsetAfRoutReq ensures that no value is present for AfRoutReq, not even an explicit nil

func (*AppSessionContextUpdateData) UnsetEvSubsc

func (o *AppSessionContextUpdateData) UnsetEvSubsc()

UnsetEvSubsc ensures that no value is present for EvSubsc, not even an explicit nil

type AppSessionContextUpdateDataPatch

type AppSessionContextUpdateDataPatch struct {
	AscReqData *AppSessionContextUpdateData `json:"ascReqData,omitempty"`
}

AppSessionContextUpdateDataPatch Identifies the modifications to an Individual Application Session Context and/or the modifications to the sub-resource Events Subscription.

func NewAppSessionContextUpdateDataPatch

func NewAppSessionContextUpdateDataPatch() *AppSessionContextUpdateDataPatch

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

func NewAppSessionContextUpdateDataPatchWithDefaults

func NewAppSessionContextUpdateDataPatchWithDefaults() *AppSessionContextUpdateDataPatch

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

func (*AppSessionContextUpdateDataPatch) GetAscReqData

GetAscReqData returns the AscReqData field value if set, zero value otherwise.

func (*AppSessionContextUpdateDataPatch) GetAscReqDataOk

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

func (*AppSessionContextUpdateDataPatch) HasAscReqData

func (o *AppSessionContextUpdateDataPatch) HasAscReqData() bool

HasAscReqData returns a boolean if a field has been set.

func (AppSessionContextUpdateDataPatch) MarshalJSON

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

func (*AppSessionContextUpdateDataPatch) SetAscReqData

SetAscReqData gets a reference to the given AppSessionContextUpdateData and assigns it to the AscReqData field.

func (AppSessionContextUpdateDataPatch) ToMap

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

type ApplicationSessionsCollectionApiService

type ApplicationSessionsCollectionApiService service

ApplicationSessionsCollectionApiService ApplicationSessionsCollectionApi service

func (*ApplicationSessionsCollectionApiService) PostAppSessions

PostAppSessions Creates a new Individual Application Session Context resource

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

func (*ApplicationSessionsCollectionApiService) PostAppSessionsExecute

Execute executes the request

@return AppSessionContext

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 BridgeManagementContainer

type BridgeManagementContainer struct {
	// string with format 'bytes' as defined in OpenAPI
	BridgeManCont string `json:"bridgeManCont"`
}

BridgeManagementContainer Contains the UMIC.

func NewBridgeManagementContainer

func NewBridgeManagementContainer(bridgeManCont string) *BridgeManagementContainer

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

func NewBridgeManagementContainerWithDefaults

func NewBridgeManagementContainerWithDefaults() *BridgeManagementContainer

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

func (*BridgeManagementContainer) GetBridgeManCont

func (o *BridgeManagementContainer) GetBridgeManCont() string

GetBridgeManCont returns the BridgeManCont field value

func (*BridgeManagementContainer) GetBridgeManContOk

func (o *BridgeManagementContainer) GetBridgeManContOk() (*string, bool)

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

func (BridgeManagementContainer) MarshalJSON

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

func (*BridgeManagementContainer) SetBridgeManCont

func (o *BridgeManagementContainer) SetBridgeManCont(v string)

SetBridgeManCont sets field value

func (BridgeManagementContainer) ToMap

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

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

type DnaiChangeType struct {
	String *string
}

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

func (*DnaiChangeType) MarshalJSON

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

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

func (*DnaiChangeType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type EasIpReplacementInfo

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

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

func NewEasIpReplacementInfo

func NewEasIpReplacementInfo(source EasServerAddress, target EasServerAddress) *EasIpReplacementInfo

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

func NewEasIpReplacementInfoWithDefaults

func NewEasIpReplacementInfoWithDefaults() *EasIpReplacementInfo

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

func (*EasIpReplacementInfo) GetSource

func (o *EasIpReplacementInfo) GetSource() EasServerAddress

GetSource returns the Source field value

func (*EasIpReplacementInfo) GetSourceOk

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

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

func (*EasIpReplacementInfo) GetTarget

func (o *EasIpReplacementInfo) GetTarget() EasServerAddress

GetTarget returns the Target field value

func (*EasIpReplacementInfo) GetTargetOk

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

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

func (EasIpReplacementInfo) MarshalJSON

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

func (*EasIpReplacementInfo) SetSource

func (o *EasIpReplacementInfo) SetSource(v EasServerAddress)

SetSource sets field value

func (*EasIpReplacementInfo) SetTarget

func (o *EasIpReplacementInfo) SetTarget(v EasServerAddress)

SetTarget sets field value

func (EasIpReplacementInfo) ToMap

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

type EasServerAddress

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

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

func NewEasServerAddress

func NewEasServerAddress(ip IpAddr, port int32) *EasServerAddress

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

func NewEasServerAddressWithDefaults

func NewEasServerAddressWithDefaults() *EasServerAddress

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

func (*EasServerAddress) GetIp

func (o *EasServerAddress) GetIp() IpAddr

GetIp returns the Ip field value

func (*EasServerAddress) GetIpOk

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

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

func (*EasServerAddress) GetPort

func (o *EasServerAddress) GetPort() int32

GetPort returns the Port field value

func (*EasServerAddress) GetPortOk

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

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

func (EasServerAddress) MarshalJSON

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

func (*EasServerAddress) SetIp

func (o *EasServerAddress) SetIp(v IpAddr)

SetIp sets field value

func (*EasServerAddress) SetPort

func (o *EasServerAddress) SetPort(v int32)

SetPort sets field value

func (EasServerAddress) ToMap

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

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

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

EthFlowDescription Identifies an Ethernet flow.

func NewEthFlowDescription

func NewEthFlowDescription(ethType string) *EthFlowDescription

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

func NewEthFlowDescriptionWithDefaults

func NewEthFlowDescriptionWithDefaults() *EthFlowDescription

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

func (*EthFlowDescription) GetDestMacAddr

func (o *EthFlowDescription) GetDestMacAddr() string

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

func (*EthFlowDescription) GetDestMacAddrEnd

func (o *EthFlowDescription) GetDestMacAddrEnd() string

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

func (*EthFlowDescription) GetDestMacAddrEndOk

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

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

func (*EthFlowDescription) GetDestMacAddrOk

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

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

func (*EthFlowDescription) GetEthType

func (o *EthFlowDescription) GetEthType() string

GetEthType returns the EthType field value

func (*EthFlowDescription) GetEthTypeOk

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

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

func (*EthFlowDescription) GetFDesc

func (o *EthFlowDescription) GetFDesc() string

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

func (*EthFlowDescription) GetFDescOk

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

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

func (*EthFlowDescription) GetFDir

func (o *EthFlowDescription) GetFDir() FlowDirection

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

func (*EthFlowDescription) GetFDirOk

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

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

func (*EthFlowDescription) GetSourceMacAddr

func (o *EthFlowDescription) GetSourceMacAddr() string

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

func (*EthFlowDescription) GetSourceMacAddrOk

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

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

func (*EthFlowDescription) GetSrcMacAddrEnd

func (o *EthFlowDescription) GetSrcMacAddrEnd() string

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

func (*EthFlowDescription) GetSrcMacAddrEndOk

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

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

func (*EthFlowDescription) GetVlanTags

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

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

func (*EthFlowDescription) GetVlanTagsOk

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

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

func (*EthFlowDescription) HasDestMacAddr

func (o *EthFlowDescription) HasDestMacAddr() bool

HasDestMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasDestMacAddrEnd

func (o *EthFlowDescription) HasDestMacAddrEnd() bool

HasDestMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDesc

func (o *EthFlowDescription) HasFDesc() bool

HasFDesc returns a boolean if a field has been set.

func (*EthFlowDescription) HasFDir

func (o *EthFlowDescription) HasFDir() bool

HasFDir returns a boolean if a field has been set.

func (*EthFlowDescription) HasSourceMacAddr

func (o *EthFlowDescription) HasSourceMacAddr() bool

HasSourceMacAddr returns a boolean if a field has been set.

func (*EthFlowDescription) HasSrcMacAddrEnd

func (o *EthFlowDescription) HasSrcMacAddrEnd() bool

HasSrcMacAddrEnd returns a boolean if a field has been set.

func (*EthFlowDescription) HasVlanTags

func (o *EthFlowDescription) HasVlanTags() bool

HasVlanTags returns a boolean if a field has been set.

func (EthFlowDescription) MarshalJSON

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

func (*EthFlowDescription) SetDestMacAddr

func (o *EthFlowDescription) SetDestMacAddr(v string)

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

func (*EthFlowDescription) SetDestMacAddrEnd

func (o *EthFlowDescription) SetDestMacAddrEnd(v string)

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

func (*EthFlowDescription) SetEthType

func (o *EthFlowDescription) SetEthType(v string)

SetEthType sets field value

func (*EthFlowDescription) SetFDesc

func (o *EthFlowDescription) SetFDesc(v string)

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

func (*EthFlowDescription) SetFDir

func (o *EthFlowDescription) SetFDir(v FlowDirection)

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

func (*EthFlowDescription) SetSourceMacAddr

func (o *EthFlowDescription) SetSourceMacAddr(v string)

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

func (*EthFlowDescription) SetSrcMacAddrEnd

func (o *EthFlowDescription) SetSrcMacAddrEnd(v string)

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

func (*EthFlowDescription) SetVlanTags

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

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

func (EthFlowDescription) ToMap

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

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

type EventsNotification struct {
	// Includes the detected application report.
	AdReports     []AppDetectionReport          `json:"adReports,omitempty"`
	AccessType    *AccessType                   `json:"accessType,omitempty"`
	AddAccessInfo *AdditionalAccessInfo         `json:"addAccessInfo,omitempty"`
	RelAccessInfo *AdditionalAccessInfo         `json:"relAccessInfo,omitempty"`
	AnChargAddr   *AccNetChargingAddress        `json:"anChargAddr,omitempty"`
	AnChargIds    []AccessNetChargingIdentifier `json:"anChargIds,omitempty"`
	AnGwAddr      *AnGwAddress                  `json:"anGwAddr,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	EvSubsUri                 string                       `json:"evSubsUri"`
	EvNotifs                  []AfEventNotification        `json:"evNotifs"`
	FailedResourcAllocReports []ResourcesAllocationInfo    `json:"failedResourcAllocReports,omitempty"`
	SuccResourcAllocReports   []ResourcesAllocationInfo    `json:"succResourcAllocReports,omitempty"`
	NoNetLocSupp              *NetLocAccessSupport         `json:"noNetLocSupp,omitempty"`
	OutOfCredReports          []OutOfCreditInformation     `json:"outOfCredReports,omitempty"`
	PlmnId                    *PlmnIdNid                   `json:"plmnId,omitempty"`
	QncReports                []QosNotificationControlInfo `json:"qncReports,omitempty"`
	QosMonReports             []QosMonitoringReport        `json:"qosMonReports,omitempty"`
	// Contains the RAN and/or NAS release cause.
	RanNasRelCauses     []RanNasRelCause           `json:"ranNasRelCauses,omitempty"`
	RatType             *RatType                   `json:"ratType,omitempty"`
	SatBackhaulCategory *SatelliteBackhaulCategory `json:"satBackhaulCategory,omitempty"`
	UeLoc               *UserLocation              `json:"ueLoc,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	UeLocTime *time.Time `json:"ueLocTime,omitempty"`
	// String with format \"time-numoffset\" optionally appended by \"daylightSavingTime\", where  - \"time-numoffset\" shall represent the time zone adjusted for daylight saving time and be    encoded as time-numoffset as defined in clause 5.6 of IETF RFC 3339;  - \"daylightSavingTime\" shall represent the adjustment that has been made and shall be    encoded as \"+1\" or \"+2\" for a +1 or +2 hours adjustment.   The example is for 8 hours behind UTC, +1 hour adjustment for Daylight Saving Time.
	UeTimeZone          *string                    `json:"ueTimeZone,omitempty"`
	UsgRep              *AccumulatedUsage          `json:"usgRep,omitempty"`
	TsnBridgeManCont    *BridgeManagementContainer `json:"tsnBridgeManCont,omitempty"`
	TsnPortManContDstt  *PortManagementContainer   `json:"tsnPortManContDstt,omitempty"`
	TsnPortManContNwtts []PortManagementContainer  `json:"tsnPortManContNwtts,omitempty"`
}

EventsNotification Describes the notification of a matched event.

func NewEventsNotification

func NewEventsNotification(evSubsUri string, evNotifs []AfEventNotification) *EventsNotification

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

func NewEventsNotificationWithDefaults

func NewEventsNotificationWithDefaults() *EventsNotification

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

func (*EventsNotification) GetAccessType

func (o *EventsNotification) GetAccessType() AccessType

GetAccessType returns the AccessType field value if set, zero value otherwise.

func (*EventsNotification) GetAccessTypeOk

func (o *EventsNotification) 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 (*EventsNotification) GetAdReports

func (o *EventsNotification) GetAdReports() []AppDetectionReport

GetAdReports returns the AdReports field value if set, zero value otherwise.

func (*EventsNotification) GetAdReportsOk

func (o *EventsNotification) GetAdReportsOk() ([]AppDetectionReport, bool)

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

func (*EventsNotification) GetAddAccessInfo

func (o *EventsNotification) GetAddAccessInfo() AdditionalAccessInfo

GetAddAccessInfo returns the AddAccessInfo field value if set, zero value otherwise.

func (*EventsNotification) GetAddAccessInfoOk

func (o *EventsNotification) GetAddAccessInfoOk() (*AdditionalAccessInfo, bool)

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

func (*EventsNotification) GetAnChargAddr

func (o *EventsNotification) GetAnChargAddr() AccNetChargingAddress

GetAnChargAddr returns the AnChargAddr field value if set, zero value otherwise.

func (*EventsNotification) GetAnChargAddrOk

func (o *EventsNotification) GetAnChargAddrOk() (*AccNetChargingAddress, bool)

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

func (*EventsNotification) GetAnChargIds

func (o *EventsNotification) GetAnChargIds() []AccessNetChargingIdentifier

GetAnChargIds returns the AnChargIds field value if set, zero value otherwise.

func (*EventsNotification) GetAnChargIdsOk

func (o *EventsNotification) GetAnChargIdsOk() ([]AccessNetChargingIdentifier, bool)

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

func (*EventsNotification) GetAnGwAddr

func (o *EventsNotification) GetAnGwAddr() AnGwAddress

GetAnGwAddr returns the AnGwAddr field value if set, zero value otherwise.

func (*EventsNotification) GetAnGwAddrOk

func (o *EventsNotification) GetAnGwAddrOk() (*AnGwAddress, bool)

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

func (*EventsNotification) GetEvNotifs

func (o *EventsNotification) GetEvNotifs() []AfEventNotification

GetEvNotifs returns the EvNotifs field value

func (*EventsNotification) GetEvNotifsOk

func (o *EventsNotification) GetEvNotifsOk() ([]AfEventNotification, bool)

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

func (*EventsNotification) GetEvSubsUri

func (o *EventsNotification) GetEvSubsUri() string

GetEvSubsUri returns the EvSubsUri field value

func (*EventsNotification) GetEvSubsUriOk

func (o *EventsNotification) GetEvSubsUriOk() (*string, bool)

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

func (*EventsNotification) GetFailedResourcAllocReports

func (o *EventsNotification) GetFailedResourcAllocReports() []ResourcesAllocationInfo

GetFailedResourcAllocReports returns the FailedResourcAllocReports field value if set, zero value otherwise.

func (*EventsNotification) GetFailedResourcAllocReportsOk

func (o *EventsNotification) GetFailedResourcAllocReportsOk() ([]ResourcesAllocationInfo, bool)

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

func (*EventsNotification) GetNoNetLocSupp

func (o *EventsNotification) GetNoNetLocSupp() NetLocAccessSupport

GetNoNetLocSupp returns the NoNetLocSupp field value if set, zero value otherwise.

func (*EventsNotification) GetNoNetLocSuppOk

func (o *EventsNotification) GetNoNetLocSuppOk() (*NetLocAccessSupport, bool)

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

func (*EventsNotification) GetOutOfCredReports

func (o *EventsNotification) GetOutOfCredReports() []OutOfCreditInformation

GetOutOfCredReports returns the OutOfCredReports field value if set, zero value otherwise.

func (*EventsNotification) GetOutOfCredReportsOk

func (o *EventsNotification) GetOutOfCredReportsOk() ([]OutOfCreditInformation, bool)

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

func (*EventsNotification) GetPlmnId

func (o *EventsNotification) GetPlmnId() PlmnIdNid

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

func (*EventsNotification) GetPlmnIdOk

func (o *EventsNotification) GetPlmnIdOk() (*PlmnIdNid, 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 (*EventsNotification) GetQncReports

func (o *EventsNotification) GetQncReports() []QosNotificationControlInfo

GetQncReports returns the QncReports field value if set, zero value otherwise.

func (*EventsNotification) GetQncReportsOk

func (o *EventsNotification) GetQncReportsOk() ([]QosNotificationControlInfo, bool)

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

func (*EventsNotification) GetQosMonReports

func (o *EventsNotification) GetQosMonReports() []QosMonitoringReport

GetQosMonReports returns the QosMonReports field value if set, zero value otherwise.

func (*EventsNotification) GetQosMonReportsOk

func (o *EventsNotification) GetQosMonReportsOk() ([]QosMonitoringReport, bool)

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

func (*EventsNotification) GetRanNasRelCauses

func (o *EventsNotification) GetRanNasRelCauses() []RanNasRelCause

GetRanNasRelCauses returns the RanNasRelCauses field value if set, zero value otherwise.

func (*EventsNotification) GetRanNasRelCausesOk

func (o *EventsNotification) GetRanNasRelCausesOk() ([]RanNasRelCause, bool)

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

func (*EventsNotification) GetRatType

func (o *EventsNotification) GetRatType() RatType

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

func (*EventsNotification) GetRatTypeOk

func (o *EventsNotification) GetRatTypeOk() (*RatType, bool)

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

func (*EventsNotification) GetRelAccessInfo

func (o *EventsNotification) GetRelAccessInfo() AdditionalAccessInfo

GetRelAccessInfo returns the RelAccessInfo field value if set, zero value otherwise.

func (*EventsNotification) GetRelAccessInfoOk

func (o *EventsNotification) GetRelAccessInfoOk() (*AdditionalAccessInfo, bool)

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

func (*EventsNotification) GetSatBackhaulCategory

func (o *EventsNotification) GetSatBackhaulCategory() SatelliteBackhaulCategory

GetSatBackhaulCategory returns the SatBackhaulCategory field value if set, zero value otherwise.

func (*EventsNotification) GetSatBackhaulCategoryOk

func (o *EventsNotification) GetSatBackhaulCategoryOk() (*SatelliteBackhaulCategory, bool)

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

func (*EventsNotification) GetSuccResourcAllocReports

func (o *EventsNotification) GetSuccResourcAllocReports() []ResourcesAllocationInfo

GetSuccResourcAllocReports returns the SuccResourcAllocReports field value if set, zero value otherwise.

func (*EventsNotification) GetSuccResourcAllocReportsOk

func (o *EventsNotification) GetSuccResourcAllocReportsOk() ([]ResourcesAllocationInfo, bool)

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

func (*EventsNotification) GetTsnBridgeManCont

func (o *EventsNotification) GetTsnBridgeManCont() BridgeManagementContainer

GetTsnBridgeManCont returns the TsnBridgeManCont field value if set, zero value otherwise.

func (*EventsNotification) GetTsnBridgeManContOk

func (o *EventsNotification) GetTsnBridgeManContOk() (*BridgeManagementContainer, bool)

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

func (*EventsNotification) GetTsnPortManContDstt

func (o *EventsNotification) GetTsnPortManContDstt() PortManagementContainer

GetTsnPortManContDstt returns the TsnPortManContDstt field value if set, zero value otherwise.

func (*EventsNotification) GetTsnPortManContDsttOk

func (o *EventsNotification) GetTsnPortManContDsttOk() (*PortManagementContainer, bool)

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

func (*EventsNotification) GetTsnPortManContNwtts

func (o *EventsNotification) GetTsnPortManContNwtts() []PortManagementContainer

GetTsnPortManContNwtts returns the TsnPortManContNwtts field value if set, zero value otherwise.

func (*EventsNotification) GetTsnPortManContNwttsOk

func (o *EventsNotification) GetTsnPortManContNwttsOk() ([]PortManagementContainer, bool)

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

func (*EventsNotification) GetUeLoc

func (o *EventsNotification) GetUeLoc() UserLocation

GetUeLoc returns the UeLoc field value if set, zero value otherwise.

func (*EventsNotification) GetUeLocOk

func (o *EventsNotification) GetUeLocOk() (*UserLocation, bool)

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

func (*EventsNotification) GetUeLocTime

func (o *EventsNotification) GetUeLocTime() time.Time

GetUeLocTime returns the UeLocTime field value if set, zero value otherwise.

func (*EventsNotification) GetUeLocTimeOk

func (o *EventsNotification) GetUeLocTimeOk() (*time.Time, bool)

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

func (*EventsNotification) GetUeTimeZone

func (o *EventsNotification) GetUeTimeZone() string

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

func (*EventsNotification) GetUeTimeZoneOk

func (o *EventsNotification) GetUeTimeZoneOk() (*string, bool)

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

func (*EventsNotification) GetUsgRep

func (o *EventsNotification) GetUsgRep() AccumulatedUsage

GetUsgRep returns the UsgRep field value if set, zero value otherwise.

func (*EventsNotification) GetUsgRepOk

func (o *EventsNotification) GetUsgRepOk() (*AccumulatedUsage, bool)

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

func (*EventsNotification) HasAccessType

func (o *EventsNotification) HasAccessType() bool

HasAccessType returns a boolean if a field has been set.

func (*EventsNotification) HasAdReports

func (o *EventsNotification) HasAdReports() bool

HasAdReports returns a boolean if a field has been set.

func (*EventsNotification) HasAddAccessInfo

func (o *EventsNotification) HasAddAccessInfo() bool

HasAddAccessInfo returns a boolean if a field has been set.

func (*EventsNotification) HasAnChargAddr

func (o *EventsNotification) HasAnChargAddr() bool

HasAnChargAddr returns a boolean if a field has been set.

func (*EventsNotification) HasAnChargIds

func (o *EventsNotification) HasAnChargIds() bool

HasAnChargIds returns a boolean if a field has been set.

func (*EventsNotification) HasAnGwAddr

func (o *EventsNotification) HasAnGwAddr() bool

HasAnGwAddr returns a boolean if a field has been set.

func (*EventsNotification) HasFailedResourcAllocReports

func (o *EventsNotification) HasFailedResourcAllocReports() bool

HasFailedResourcAllocReports returns a boolean if a field has been set.

func (*EventsNotification) HasNoNetLocSupp

func (o *EventsNotification) HasNoNetLocSupp() bool

HasNoNetLocSupp returns a boolean if a field has been set.

func (*EventsNotification) HasOutOfCredReports

func (o *EventsNotification) HasOutOfCredReports() bool

HasOutOfCredReports returns a boolean if a field has been set.

func (*EventsNotification) HasPlmnId

func (o *EventsNotification) HasPlmnId() bool

HasPlmnId returns a boolean if a field has been set.

func (*EventsNotification) HasQncReports

func (o *EventsNotification) HasQncReports() bool

HasQncReports returns a boolean if a field has been set.

func (*EventsNotification) HasQosMonReports

func (o *EventsNotification) HasQosMonReports() bool

HasQosMonReports returns a boolean if a field has been set.

func (*EventsNotification) HasRanNasRelCauses

func (o *EventsNotification) HasRanNasRelCauses() bool

HasRanNasRelCauses returns a boolean if a field has been set.

func (*EventsNotification) HasRatType

func (o *EventsNotification) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (*EventsNotification) HasRelAccessInfo

func (o *EventsNotification) HasRelAccessInfo() bool

HasRelAccessInfo returns a boolean if a field has been set.

func (*EventsNotification) HasSatBackhaulCategory

func (o *EventsNotification) HasSatBackhaulCategory() bool

HasSatBackhaulCategory returns a boolean if a field has been set.

func (*EventsNotification) HasSuccResourcAllocReports

func (o *EventsNotification) HasSuccResourcAllocReports() bool

HasSuccResourcAllocReports returns a boolean if a field has been set.

func (*EventsNotification) HasTsnBridgeManCont

func (o *EventsNotification) HasTsnBridgeManCont() bool

HasTsnBridgeManCont returns a boolean if a field has been set.

func (*EventsNotification) HasTsnPortManContDstt

func (o *EventsNotification) HasTsnPortManContDstt() bool

HasTsnPortManContDstt returns a boolean if a field has been set.

func (*EventsNotification) HasTsnPortManContNwtts

func (o *EventsNotification) HasTsnPortManContNwtts() bool

HasTsnPortManContNwtts returns a boolean if a field has been set.

func (*EventsNotification) HasUeLoc

func (o *EventsNotification) HasUeLoc() bool

HasUeLoc returns a boolean if a field has been set.

func (*EventsNotification) HasUeLocTime

func (o *EventsNotification) HasUeLocTime() bool

HasUeLocTime returns a boolean if a field has been set.

func (*EventsNotification) HasUeTimeZone

func (o *EventsNotification) HasUeTimeZone() bool

HasUeTimeZone returns a boolean if a field has been set.

func (*EventsNotification) HasUsgRep

func (o *EventsNotification) HasUsgRep() bool

HasUsgRep returns a boolean if a field has been set.

func (EventsNotification) MarshalJSON

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

func (*EventsNotification) SetAccessType

func (o *EventsNotification) SetAccessType(v AccessType)

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

func (*EventsNotification) SetAdReports

func (o *EventsNotification) SetAdReports(v []AppDetectionReport)

SetAdReports gets a reference to the given []AppDetectionReport and assigns it to the AdReports field.

func (*EventsNotification) SetAddAccessInfo

func (o *EventsNotification) SetAddAccessInfo(v AdditionalAccessInfo)

SetAddAccessInfo gets a reference to the given AdditionalAccessInfo and assigns it to the AddAccessInfo field.

func (*EventsNotification) SetAnChargAddr

func (o *EventsNotification) SetAnChargAddr(v AccNetChargingAddress)

SetAnChargAddr gets a reference to the given AccNetChargingAddress and assigns it to the AnChargAddr field.

func (*EventsNotification) SetAnChargIds

func (o *EventsNotification) SetAnChargIds(v []AccessNetChargingIdentifier)

SetAnChargIds gets a reference to the given []AccessNetChargingIdentifier and assigns it to the AnChargIds field.

func (*EventsNotification) SetAnGwAddr

func (o *EventsNotification) SetAnGwAddr(v AnGwAddress)

SetAnGwAddr gets a reference to the given AnGwAddress and assigns it to the AnGwAddr field.

func (*EventsNotification) SetEvNotifs

func (o *EventsNotification) SetEvNotifs(v []AfEventNotification)

SetEvNotifs sets field value

func (*EventsNotification) SetEvSubsUri

func (o *EventsNotification) SetEvSubsUri(v string)

SetEvSubsUri sets field value

func (*EventsNotification) SetFailedResourcAllocReports

func (o *EventsNotification) SetFailedResourcAllocReports(v []ResourcesAllocationInfo)

SetFailedResourcAllocReports gets a reference to the given []ResourcesAllocationInfo and assigns it to the FailedResourcAllocReports field.

func (*EventsNotification) SetNoNetLocSupp

func (o *EventsNotification) SetNoNetLocSupp(v NetLocAccessSupport)

SetNoNetLocSupp gets a reference to the given NetLocAccessSupport and assigns it to the NoNetLocSupp field.

func (*EventsNotification) SetOutOfCredReports

func (o *EventsNotification) SetOutOfCredReports(v []OutOfCreditInformation)

SetOutOfCredReports gets a reference to the given []OutOfCreditInformation and assigns it to the OutOfCredReports field.

func (*EventsNotification) SetPlmnId

func (o *EventsNotification) SetPlmnId(v PlmnIdNid)

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

func (*EventsNotification) SetQncReports

func (o *EventsNotification) SetQncReports(v []QosNotificationControlInfo)

SetQncReports gets a reference to the given []QosNotificationControlInfo and assigns it to the QncReports field.

func (*EventsNotification) SetQosMonReports

func (o *EventsNotification) SetQosMonReports(v []QosMonitoringReport)

SetQosMonReports gets a reference to the given []QosMonitoringReport and assigns it to the QosMonReports field.

func (*EventsNotification) SetRanNasRelCauses

func (o *EventsNotification) SetRanNasRelCauses(v []RanNasRelCause)

SetRanNasRelCauses gets a reference to the given []RanNasRelCause and assigns it to the RanNasRelCauses field.

func (*EventsNotification) SetRatType

func (o *EventsNotification) SetRatType(v RatType)

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

func (*EventsNotification) SetRelAccessInfo

func (o *EventsNotification) SetRelAccessInfo(v AdditionalAccessInfo)

SetRelAccessInfo gets a reference to the given AdditionalAccessInfo and assigns it to the RelAccessInfo field.

func (*EventsNotification) SetSatBackhaulCategory

func (o *EventsNotification) SetSatBackhaulCategory(v SatelliteBackhaulCategory)

SetSatBackhaulCategory gets a reference to the given SatelliteBackhaulCategory and assigns it to the SatBackhaulCategory field.

func (*EventsNotification) SetSuccResourcAllocReports

func (o *EventsNotification) SetSuccResourcAllocReports(v []ResourcesAllocationInfo)

SetSuccResourcAllocReports gets a reference to the given []ResourcesAllocationInfo and assigns it to the SuccResourcAllocReports field.

func (*EventsNotification) SetTsnBridgeManCont

func (o *EventsNotification) SetTsnBridgeManCont(v BridgeManagementContainer)

SetTsnBridgeManCont gets a reference to the given BridgeManagementContainer and assigns it to the TsnBridgeManCont field.

func (*EventsNotification) SetTsnPortManContDstt

func (o *EventsNotification) SetTsnPortManContDstt(v PortManagementContainer)

SetTsnPortManContDstt gets a reference to the given PortManagementContainer and assigns it to the TsnPortManContDstt field.

func (*EventsNotification) SetTsnPortManContNwtts

func (o *EventsNotification) SetTsnPortManContNwtts(v []PortManagementContainer)

SetTsnPortManContNwtts gets a reference to the given []PortManagementContainer and assigns it to the TsnPortManContNwtts field.

func (*EventsNotification) SetUeLoc

func (o *EventsNotification) SetUeLoc(v UserLocation)

SetUeLoc gets a reference to the given UserLocation and assigns it to the UeLoc field.

func (*EventsNotification) SetUeLocTime

func (o *EventsNotification) SetUeLocTime(v time.Time)

SetUeLocTime gets a reference to the given time.Time and assigns it to the UeLocTime field.

func (*EventsNotification) SetUeTimeZone

func (o *EventsNotification) SetUeTimeZone(v string)

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

func (*EventsNotification) SetUsgRep

func (o *EventsNotification) SetUsgRep(v AccumulatedUsage)

SetUsgRep gets a reference to the given AccumulatedUsage and assigns it to the UsgRep field.

func (EventsNotification) ToMap

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

type EventsSubscPutData

type EventsSubscPutData struct {
	EventsNotification *EventsNotification
	EventsSubscReqData *EventsSubscReqData
}

EventsSubscPutData Identifies the events the application subscribes to within an Events Subscription sub-resource data. It may contain the notification of the already met events.

func (*EventsSubscPutData) MarshalJSON

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

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

func (*EventsSubscPutData) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type EventsSubscReqData

type EventsSubscReqData struct {
	Events []AfEventSubscription `json:"events"`
	// String providing an URI formatted according to RFC 3986.
	NotifUri        *string                           `json:"notifUri,omitempty"`
	ReqQosMonParams []RequestedQosMonitoringParameter `json:"reqQosMonParams,omitempty"`
	QosMon          *QosMonitoringInformation         `json:"qosMon,omitempty"`
	ReqAnis         []RequiredAccessInfo              `json:"reqAnis,omitempty"`
	UsgThres        *UsageThreshold                   `json:"usgThres,omitempty"`
	NotifCorreId    *string                           `json:"notifCorreId,omitempty"`
	AfAppIds        []string                          `json:"afAppIds,omitempty"`
	DirectNotifInd  *bool                             `json:"directNotifInd,omitempty"`
}

EventsSubscReqData Identifies the events the application subscribes to.

func NewEventsSubscReqData

func NewEventsSubscReqData(events []AfEventSubscription) *EventsSubscReqData

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

func NewEventsSubscReqDataWithDefaults

func NewEventsSubscReqDataWithDefaults() *EventsSubscReqData

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

func (*EventsSubscReqData) GetAfAppIds

func (o *EventsSubscReqData) GetAfAppIds() []string

GetAfAppIds returns the AfAppIds field value if set, zero value otherwise.

func (*EventsSubscReqData) GetAfAppIdsOk

func (o *EventsSubscReqData) GetAfAppIdsOk() ([]string, bool)

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

func (*EventsSubscReqData) GetDirectNotifInd

func (o *EventsSubscReqData) GetDirectNotifInd() bool

GetDirectNotifInd returns the DirectNotifInd field value if set, zero value otherwise.

func (*EventsSubscReqData) GetDirectNotifIndOk

func (o *EventsSubscReqData) GetDirectNotifIndOk() (*bool, bool)

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

func (*EventsSubscReqData) GetEvents

func (o *EventsSubscReqData) GetEvents() []AfEventSubscription

GetEvents returns the Events field value

func (*EventsSubscReqData) GetEventsOk

func (o *EventsSubscReqData) GetEventsOk() ([]AfEventSubscription, bool)

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

func (*EventsSubscReqData) GetNotifCorreId

func (o *EventsSubscReqData) GetNotifCorreId() string

GetNotifCorreId returns the NotifCorreId field value if set, zero value otherwise.

func (*EventsSubscReqData) GetNotifCorreIdOk

func (o *EventsSubscReqData) GetNotifCorreIdOk() (*string, bool)

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

func (*EventsSubscReqData) GetNotifUri

func (o *EventsSubscReqData) GetNotifUri() string

GetNotifUri returns the NotifUri field value if set, zero value otherwise.

func (*EventsSubscReqData) GetNotifUriOk

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

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

func (*EventsSubscReqData) GetQosMon

GetQosMon returns the QosMon field value if set, zero value otherwise.

func (*EventsSubscReqData) GetQosMonOk

func (o *EventsSubscReqData) GetQosMonOk() (*QosMonitoringInformation, bool)

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

func (*EventsSubscReqData) GetReqAnis

func (o *EventsSubscReqData) GetReqAnis() []RequiredAccessInfo

GetReqAnis returns the ReqAnis field value if set, zero value otherwise.

func (*EventsSubscReqData) GetReqAnisOk

func (o *EventsSubscReqData) GetReqAnisOk() ([]RequiredAccessInfo, bool)

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

func (*EventsSubscReqData) GetReqQosMonParams

func (o *EventsSubscReqData) GetReqQosMonParams() []RequestedQosMonitoringParameter

GetReqQosMonParams returns the ReqQosMonParams field value if set, zero value otherwise.

func (*EventsSubscReqData) GetReqQosMonParamsOk

func (o *EventsSubscReqData) GetReqQosMonParamsOk() ([]RequestedQosMonitoringParameter, bool)

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

func (*EventsSubscReqData) GetUsgThres

func (o *EventsSubscReqData) GetUsgThres() UsageThreshold

GetUsgThres returns the UsgThres field value if set, zero value otherwise.

func (*EventsSubscReqData) GetUsgThresOk

func (o *EventsSubscReqData) GetUsgThresOk() (*UsageThreshold, bool)

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

func (*EventsSubscReqData) HasAfAppIds

func (o *EventsSubscReqData) HasAfAppIds() bool

HasAfAppIds returns a boolean if a field has been set.

func (*EventsSubscReqData) HasDirectNotifInd

func (o *EventsSubscReqData) HasDirectNotifInd() bool

HasDirectNotifInd returns a boolean if a field has been set.

func (*EventsSubscReqData) HasNotifCorreId

func (o *EventsSubscReqData) HasNotifCorreId() bool

HasNotifCorreId returns a boolean if a field has been set.

func (*EventsSubscReqData) HasNotifUri

func (o *EventsSubscReqData) HasNotifUri() bool

HasNotifUri returns a boolean if a field has been set.

func (*EventsSubscReqData) HasQosMon

func (o *EventsSubscReqData) HasQosMon() bool

HasQosMon returns a boolean if a field has been set.

func (*EventsSubscReqData) HasReqAnis

func (o *EventsSubscReqData) HasReqAnis() bool

HasReqAnis returns a boolean if a field has been set.

func (*EventsSubscReqData) HasReqQosMonParams

func (o *EventsSubscReqData) HasReqQosMonParams() bool

HasReqQosMonParams returns a boolean if a field has been set.

func (*EventsSubscReqData) HasUsgThres

func (o *EventsSubscReqData) HasUsgThres() bool

HasUsgThres returns a boolean if a field has been set.

func (EventsSubscReqData) MarshalJSON

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

func (*EventsSubscReqData) SetAfAppIds

func (o *EventsSubscReqData) SetAfAppIds(v []string)

SetAfAppIds gets a reference to the given []string and assigns it to the AfAppIds field.

func (*EventsSubscReqData) SetDirectNotifInd

func (o *EventsSubscReqData) SetDirectNotifInd(v bool)

SetDirectNotifInd gets a reference to the given bool and assigns it to the DirectNotifInd field.

func (*EventsSubscReqData) SetEvents

func (o *EventsSubscReqData) SetEvents(v []AfEventSubscription)

SetEvents sets field value

func (*EventsSubscReqData) SetNotifCorreId

func (o *EventsSubscReqData) SetNotifCorreId(v string)

SetNotifCorreId gets a reference to the given string and assigns it to the NotifCorreId field.

func (*EventsSubscReqData) SetNotifUri

func (o *EventsSubscReqData) SetNotifUri(v string)

SetNotifUri gets a reference to the given string and assigns it to the NotifUri field.

func (*EventsSubscReqData) SetQosMon

SetQosMon gets a reference to the given QosMonitoringInformation and assigns it to the QosMon field.

func (*EventsSubscReqData) SetReqAnis

func (o *EventsSubscReqData) SetReqAnis(v []RequiredAccessInfo)

SetReqAnis gets a reference to the given []RequiredAccessInfo and assigns it to the ReqAnis field.

func (*EventsSubscReqData) SetReqQosMonParams

func (o *EventsSubscReqData) SetReqQosMonParams(v []RequestedQosMonitoringParameter)

SetReqQosMonParams gets a reference to the given []RequestedQosMonitoringParameter and assigns it to the ReqQosMonParams field.

func (*EventsSubscReqData) SetUsgThres

func (o *EventsSubscReqData) SetUsgThres(v UsageThreshold)

SetUsgThres gets a reference to the given UsageThreshold and assigns it to the UsgThres field.

func (EventsSubscReqData) ToMap

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

type EventsSubscReqDataRm

type EventsSubscReqDataRm struct {
	Events []AfEventSubscription `json:"events"`
	// String providing an URI formatted according to RFC 3986.
	NotifUri        *string                            `json:"notifUri,omitempty"`
	ReqQosMonParams []RequestedQosMonitoringParameter  `json:"reqQosMonParams,omitempty"`
	QosMon          NullableQosMonitoringInformationRm `json:"qosMon,omitempty"`
	ReqAnis         []RequiredAccessInfo               `json:"reqAnis,omitempty"`
	UsgThres        NullableUsageThresholdRm           `json:"usgThres,omitempty"`
	NotifCorreId    *string                            `json:"notifCorreId,omitempty"`
	DirectNotifInd  NullableBool                       `json:"directNotifInd,omitempty"`
}

EventsSubscReqDataRm This data type is defined in the same way as the EventsSubscReqData data type, but with the OpenAPI nullable property set to true.

func NewEventsSubscReqDataRm

func NewEventsSubscReqDataRm(events []AfEventSubscription) *EventsSubscReqDataRm

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

func NewEventsSubscReqDataRmWithDefaults

func NewEventsSubscReqDataRmWithDefaults() *EventsSubscReqDataRm

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

func (*EventsSubscReqDataRm) GetDirectNotifInd

func (o *EventsSubscReqDataRm) GetDirectNotifInd() bool

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

func (*EventsSubscReqDataRm) GetDirectNotifIndOk

func (o *EventsSubscReqDataRm) GetDirectNotifIndOk() (*bool, bool)

GetDirectNotifIndOk returns a tuple with the DirectNotifInd 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 (*EventsSubscReqDataRm) GetEvents

func (o *EventsSubscReqDataRm) GetEvents() []AfEventSubscription

GetEvents returns the Events field value

func (*EventsSubscReqDataRm) GetEventsOk

func (o *EventsSubscReqDataRm) GetEventsOk() ([]AfEventSubscription, bool)

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

func (*EventsSubscReqDataRm) GetNotifCorreId

func (o *EventsSubscReqDataRm) GetNotifCorreId() string

GetNotifCorreId returns the NotifCorreId field value if set, zero value otherwise.

func (*EventsSubscReqDataRm) GetNotifCorreIdOk

func (o *EventsSubscReqDataRm) GetNotifCorreIdOk() (*string, bool)

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

func (*EventsSubscReqDataRm) GetNotifUri

func (o *EventsSubscReqDataRm) GetNotifUri() string

GetNotifUri returns the NotifUri field value if set, zero value otherwise.

func (*EventsSubscReqDataRm) GetNotifUriOk

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

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

func (*EventsSubscReqDataRm) GetQosMon

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

func (*EventsSubscReqDataRm) GetQosMonOk

GetQosMonOk returns a tuple with the QosMon 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 (*EventsSubscReqDataRm) GetReqAnis

func (o *EventsSubscReqDataRm) GetReqAnis() []RequiredAccessInfo

GetReqAnis returns the ReqAnis field value if set, zero value otherwise.

func (*EventsSubscReqDataRm) GetReqAnisOk

func (o *EventsSubscReqDataRm) GetReqAnisOk() ([]RequiredAccessInfo, bool)

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

func (*EventsSubscReqDataRm) GetReqQosMonParams

func (o *EventsSubscReqDataRm) GetReqQosMonParams() []RequestedQosMonitoringParameter

GetReqQosMonParams returns the ReqQosMonParams field value if set, zero value otherwise.

func (*EventsSubscReqDataRm) GetReqQosMonParamsOk

func (o *EventsSubscReqDataRm) GetReqQosMonParamsOk() ([]RequestedQosMonitoringParameter, bool)

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

func (*EventsSubscReqDataRm) GetUsgThres

func (o *EventsSubscReqDataRm) GetUsgThres() UsageThresholdRm

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

func (*EventsSubscReqDataRm) GetUsgThresOk

func (o *EventsSubscReqDataRm) GetUsgThresOk() (*UsageThresholdRm, bool)

GetUsgThresOk returns a tuple with the UsgThres 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 (*EventsSubscReqDataRm) HasDirectNotifInd

func (o *EventsSubscReqDataRm) HasDirectNotifInd() bool

HasDirectNotifInd returns a boolean if a field has been set.

func (*EventsSubscReqDataRm) HasNotifCorreId

func (o *EventsSubscReqDataRm) HasNotifCorreId() bool

HasNotifCorreId returns a boolean if a field has been set.

func (*EventsSubscReqDataRm) HasNotifUri

func (o *EventsSubscReqDataRm) HasNotifUri() bool

HasNotifUri returns a boolean if a field has been set.

func (*EventsSubscReqDataRm) HasQosMon

func (o *EventsSubscReqDataRm) HasQosMon() bool

HasQosMon returns a boolean if a field has been set.

func (*EventsSubscReqDataRm) HasReqAnis

func (o *EventsSubscReqDataRm) HasReqAnis() bool

HasReqAnis returns a boolean if a field has been set.

func (*EventsSubscReqDataRm) HasReqQosMonParams

func (o *EventsSubscReqDataRm) HasReqQosMonParams() bool

HasReqQosMonParams returns a boolean if a field has been set.

func (*EventsSubscReqDataRm) HasUsgThres

func (o *EventsSubscReqDataRm) HasUsgThres() bool

HasUsgThres returns a boolean if a field has been set.

func (EventsSubscReqDataRm) MarshalJSON

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

func (*EventsSubscReqDataRm) SetDirectNotifInd

func (o *EventsSubscReqDataRm) SetDirectNotifInd(v bool)

SetDirectNotifInd gets a reference to the given NullableBool and assigns it to the DirectNotifInd field.

func (*EventsSubscReqDataRm) SetDirectNotifIndNil

func (o *EventsSubscReqDataRm) SetDirectNotifIndNil()

SetDirectNotifIndNil sets the value for DirectNotifInd to be an explicit nil

func (*EventsSubscReqDataRm) SetEvents

func (o *EventsSubscReqDataRm) SetEvents(v []AfEventSubscription)

SetEvents sets field value

func (*EventsSubscReqDataRm) SetNotifCorreId

func (o *EventsSubscReqDataRm) SetNotifCorreId(v string)

SetNotifCorreId gets a reference to the given string and assigns it to the NotifCorreId field.

func (*EventsSubscReqDataRm) SetNotifUri

func (o *EventsSubscReqDataRm) SetNotifUri(v string)

SetNotifUri gets a reference to the given string and assigns it to the NotifUri field.

func (*EventsSubscReqDataRm) SetQosMon

SetQosMon gets a reference to the given NullableQosMonitoringInformationRm and assigns it to the QosMon field.

func (*EventsSubscReqDataRm) SetQosMonNil

func (o *EventsSubscReqDataRm) SetQosMonNil()

SetQosMonNil sets the value for QosMon to be an explicit nil

func (*EventsSubscReqDataRm) SetReqAnis

func (o *EventsSubscReqDataRm) SetReqAnis(v []RequiredAccessInfo)

SetReqAnis gets a reference to the given []RequiredAccessInfo and assigns it to the ReqAnis field.

func (*EventsSubscReqDataRm) SetReqQosMonParams

func (o *EventsSubscReqDataRm) SetReqQosMonParams(v []RequestedQosMonitoringParameter)

SetReqQosMonParams gets a reference to the given []RequestedQosMonitoringParameter and assigns it to the ReqQosMonParams field.

func (*EventsSubscReqDataRm) SetUsgThres

func (o *EventsSubscReqDataRm) SetUsgThres(v UsageThresholdRm)

SetUsgThres gets a reference to the given NullableUsageThresholdRm and assigns it to the UsgThres field.

func (*EventsSubscReqDataRm) SetUsgThresNil

func (o *EventsSubscReqDataRm) SetUsgThresNil()

SetUsgThresNil sets the value for UsgThres to be an explicit nil

func (EventsSubscReqDataRm) ToMap

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

func (*EventsSubscReqDataRm) UnsetDirectNotifInd

func (o *EventsSubscReqDataRm) UnsetDirectNotifInd()

UnsetDirectNotifInd ensures that no value is present for DirectNotifInd, not even an explicit nil

func (*EventsSubscReqDataRm) UnsetQosMon

func (o *EventsSubscReqDataRm) UnsetQosMon()

UnsetQosMon ensures that no value is present for QosMon, not even an explicit nil

func (*EventsSubscReqDataRm) UnsetUsgThres

func (o *EventsSubscReqDataRm) UnsetUsgThres()

UnsetUsgThres ensures that no value is present for UsgThres, not even an explicit nil

type EventsSubscriptionDocumentApiService

type EventsSubscriptionDocumentApiService service

EventsSubscriptionDocumentApiService EventsSubscriptionDocumentApi service

func (*EventsSubscriptionDocumentApiService) DeleteEventsSubsc

DeleteEventsSubsc deletes the Events Subscription subresource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param appSessionId String identifying the Individual Application Session Context resource.
@return ApiDeleteEventsSubscRequest

func (*EventsSubscriptionDocumentApiService) DeleteEventsSubscExecute

Execute executes the request

func (*EventsSubscriptionDocumentApiService) UpdateEventsSubsc

UpdateEventsSubsc creates or modifies an Events Subscription subresource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param appSessionId String identifying the Events Subscription resource.
@return ApiUpdateEventsSubscRequest

func (*EventsSubscriptionDocumentApiService) UpdateEventsSubscExecute

Execute executes the request

@return EventsSubscPutData

type ExtendedProblemDetails

type ExtendedProblemDetails struct {
	ProblemDetails
	AcceptableServInfo *AcceptableServiceInfo `json:"acceptableServInfo,omitempty"`
}

ExtendedProblemDetails Extends ProblemDetails to also include the acceptable service info.

func NewExtendedProblemDetails

func NewExtendedProblemDetails() *ExtendedProblemDetails

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

func NewExtendedProblemDetailsWithDefaults

func NewExtendedProblemDetailsWithDefaults() *ExtendedProblemDetails

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

func (*ExtendedProblemDetails) GetAcceptableServInfo

func (o *ExtendedProblemDetails) GetAcceptableServInfo() AcceptableServiceInfo

GetAcceptableServInfo returns the AcceptableServInfo field value if set, zero value otherwise.

func (*ExtendedProblemDetails) GetAcceptableServInfoOk

func (o *ExtendedProblemDetails) GetAcceptableServInfoOk() (*AcceptableServiceInfo, bool)

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

func (*ExtendedProblemDetails) HasAcceptableServInfo

func (o *ExtendedProblemDetails) HasAcceptableServInfo() bool

HasAcceptableServInfo returns a boolean if a field has been set.

func (ExtendedProblemDetails) MarshalJSON

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

func (*ExtendedProblemDetails) SetAcceptableServInfo

func (o *ExtendedProblemDetails) SetAcceptableServInfo(v AcceptableServiceInfo)

SetAcceptableServInfo gets a reference to the given AcceptableServiceInfo and assigns it to the AcceptableServInfo field.

func (ExtendedProblemDetails) ToMap

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

type ExtendedProblemDetailsAllOf

type ExtendedProblemDetailsAllOf struct {
	AcceptableServInfo *AcceptableServiceInfo `json:"acceptableServInfo,omitempty"`
}

ExtendedProblemDetailsAllOf struct for ExtendedProblemDetailsAllOf

func NewExtendedProblemDetailsAllOf

func NewExtendedProblemDetailsAllOf() *ExtendedProblemDetailsAllOf

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

func NewExtendedProblemDetailsAllOfWithDefaults

func NewExtendedProblemDetailsAllOfWithDefaults() *ExtendedProblemDetailsAllOf

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

func (*ExtendedProblemDetailsAllOf) GetAcceptableServInfo

func (o *ExtendedProblemDetailsAllOf) GetAcceptableServInfo() AcceptableServiceInfo

GetAcceptableServInfo returns the AcceptableServInfo field value if set, zero value otherwise.

func (*ExtendedProblemDetailsAllOf) GetAcceptableServInfoOk

func (o *ExtendedProblemDetailsAllOf) GetAcceptableServInfoOk() (*AcceptableServiceInfo, bool)

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

func (*ExtendedProblemDetailsAllOf) HasAcceptableServInfo

func (o *ExtendedProblemDetailsAllOf) HasAcceptableServInfo() bool

HasAcceptableServInfo returns a boolean if a field has been set.

func (ExtendedProblemDetailsAllOf) MarshalJSON

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

func (*ExtendedProblemDetailsAllOf) SetAcceptableServInfo

func (o *ExtendedProblemDetailsAllOf) SetAcceptableServInfo(v AcceptableServiceInfo)

SetAcceptableServInfo gets a reference to the given AcceptableServiceInfo and assigns it to the AcceptableServInfo field.

func (ExtendedProblemDetailsAllOf) ToMap

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

type FinalUnitAction

type FinalUnitAction struct {
	String *string
}

FinalUnitAction struct for FinalUnitAction

func (*FinalUnitAction) MarshalJSON

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

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

func (*FinalUnitAction) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type FlowDirection

type FlowDirection struct {
	String *string
}

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

func (*FlowDirection) MarshalJSON

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

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

func (*FlowDirection) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type FlowStatus

type FlowStatus struct {
	String *string
}

FlowStatus Describes whether the IP flow(s) are enabled or disabled.

func (*FlowStatus) MarshalJSON

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

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

func (*FlowStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type FlowUsage

type FlowUsage struct {
	String *string
}

FlowUsage Describes the flow usage of the flows described by a media subcomponent.

func (*FlowUsage) MarshalJSON

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

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

func (*FlowUsage) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Flows

type Flows struct {
	ContVers []int32 `json:"contVers,omitempty"`
	FNums    []int32 `json:"fNums,omitempty"`
	MedCompN int32   `json:"medCompN"`
}

Flows Identifies the flows.

func NewFlows

func NewFlows(medCompN int32) *Flows

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

func NewFlowsWithDefaults

func NewFlowsWithDefaults() *Flows

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

func (*Flows) GetContVers

func (o *Flows) GetContVers() []int32

GetContVers returns the ContVers field value if set, zero value otherwise.

func (*Flows) GetContVersOk

func (o *Flows) GetContVersOk() ([]int32, bool)

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

func (*Flows) GetFNums

func (o *Flows) GetFNums() []int32

GetFNums returns the FNums field value if set, zero value otherwise.

func (*Flows) GetFNumsOk

func (o *Flows) GetFNumsOk() ([]int32, bool)

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

func (*Flows) GetMedCompN

func (o *Flows) GetMedCompN() int32

GetMedCompN returns the MedCompN field value

func (*Flows) GetMedCompNOk

func (o *Flows) GetMedCompNOk() (*int32, bool)

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

func (*Flows) HasContVers

func (o *Flows) HasContVers() bool

HasContVers returns a boolean if a field has been set.

func (*Flows) HasFNums

func (o *Flows) HasFNums() bool

HasFNums returns a boolean if a field has been set.

func (Flows) MarshalJSON

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

func (*Flows) SetContVers

func (o *Flows) SetContVers(v []int32)

SetContVers gets a reference to the given []int32 and assigns it to the ContVers field.

func (*Flows) SetFNums

func (o *Flows) SetFNums(v []int32)

SetFNums gets a reference to the given []int32 and assigns it to the FNums field.

func (*Flows) SetMedCompN

func (o *Flows) SetMedCompN(v int32)

SetMedCompN sets field value

func (Flows) ToMap

func (o Flows) 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 IndividualApplicationSessionContextDocumentApiService

type IndividualApplicationSessionContextDocumentApiService service

IndividualApplicationSessionContextDocumentApiService IndividualApplicationSessionContextDocumentApi service

func (*IndividualApplicationSessionContextDocumentApiService) DeleteAppSession

DeleteAppSession Deletes an existing Individual Application Session Context

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param appSessionId String identifying the Individual Application Session Context resource.
@return ApiDeleteAppSessionRequest

func (*IndividualApplicationSessionContextDocumentApiService) DeleteAppSessionExecute

Execute executes the request

@return AppSessionContext

func (*IndividualApplicationSessionContextDocumentApiService) GetAppSession

GetAppSession Reads an existing Individual Application Session Context

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param appSessionId String identifying the resource.
@return ApiGetAppSessionRequest

func (*IndividualApplicationSessionContextDocumentApiService) GetAppSessionExecute

Execute executes the request

@return AppSessionContext

func (*IndividualApplicationSessionContextDocumentApiService) ModAppSession

ModAppSession Modifies an existing Individual Application Session Context

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param appSessionId String identifying the resource.
@return ApiModAppSessionRequest

func (*IndividualApplicationSessionContextDocumentApiService) ModAppSessionExecute

Execute executes the request

@return AppSessionContext

type InvalidParam

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

InvalidParam It contains an invalid parameter and a related description.

func NewInvalidParam

func NewInvalidParam(param string) *InvalidParam

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

func NewInvalidParamWithDefaults

func NewInvalidParamWithDefaults() *InvalidParam

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

func (*InvalidParam) GetParam

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk

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

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

func (*InvalidParam) GetReason

func (o *InvalidParam) GetReason() string

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

func (*InvalidParam) GetReasonOk

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

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

func (*InvalidParam) HasReason

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON

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

func (*InvalidParam) SetParam

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason

func (o *InvalidParam) SetReason(v string)

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

func (InvalidParam) ToMap

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

type IpAddr

type IpAddr struct {
	Interface *interface{}
}

IpAddr - Contains an IP adresse.

func InterfaceAsIpAddr

func InterfaceAsIpAddr(v *interface{}) IpAddr

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

func (*IpAddr) GetActualInstance

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

Get the actual instance

func (IpAddr) MarshalJSON

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

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

func (*IpAddr) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type IpEndPoint

type IpEndPoint struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Address *string             `json:"ipv4Address,omitempty"`
	Ipv6Address *Ipv6Addr           `json:"ipv6Address,omitempty"`
	Transport   *TransportProtocol1 `json:"transport,omitempty"`
	Port        *int32              `json:"port,omitempty"`
}

IpEndPoint IP addressing information of a given NFService; it consists on, e.g. IP address, TCP port, transport protocol...

func NewIpEndPoint

func NewIpEndPoint() *IpEndPoint

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

func NewIpEndPointWithDefaults

func NewIpEndPointWithDefaults() *IpEndPoint

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

func (*IpEndPoint) GetIpv4Address

func (o *IpEndPoint) GetIpv4Address() string

GetIpv4Address returns the Ipv4Address field value if set, zero value otherwise.

func (*IpEndPoint) GetIpv4AddressOk

func (o *IpEndPoint) GetIpv4AddressOk() (*string, bool)

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

func (*IpEndPoint) GetIpv6Address

func (o *IpEndPoint) GetIpv6Address() Ipv6Addr

GetIpv6Address returns the Ipv6Address field value if set, zero value otherwise.

func (*IpEndPoint) GetIpv6AddressOk

func (o *IpEndPoint) GetIpv6AddressOk() (*Ipv6Addr, bool)

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

func (*IpEndPoint) GetPort

func (o *IpEndPoint) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*IpEndPoint) GetPortOk

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

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

func (*IpEndPoint) GetTransport

func (o *IpEndPoint) GetTransport() TransportProtocol1

GetTransport returns the Transport field value if set, zero value otherwise.

func (*IpEndPoint) GetTransportOk

func (o *IpEndPoint) GetTransportOk() (*TransportProtocol1, bool)

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

func (*IpEndPoint) HasIpv4Address

func (o *IpEndPoint) HasIpv4Address() bool

HasIpv4Address returns a boolean if a field has been set.

func (*IpEndPoint) HasIpv6Address

func (o *IpEndPoint) HasIpv6Address() bool

HasIpv6Address returns a boolean if a field has been set.

func (*IpEndPoint) HasPort

func (o *IpEndPoint) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*IpEndPoint) HasTransport

func (o *IpEndPoint) HasTransport() bool

HasTransport returns a boolean if a field has been set.

func (IpEndPoint) MarshalJSON

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

func (*IpEndPoint) SetIpv4Address

func (o *IpEndPoint) SetIpv4Address(v string)

SetIpv4Address gets a reference to the given string and assigns it to the Ipv4Address field.

func (*IpEndPoint) SetIpv6Address

func (o *IpEndPoint) SetIpv6Address(v Ipv6Addr)

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

func (*IpEndPoint) SetPort

func (o *IpEndPoint) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*IpEndPoint) SetTransport

func (o *IpEndPoint) SetTransport(v TransportProtocol1)

SetTransport gets a reference to the given TransportProtocol1 and assigns it to the Transport field.

func (IpEndPoint) ToMap

func (o IpEndPoint) 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 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 MappedNullable

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

type MediaComponent

type MediaComponent struct {
	// Contains an AF application identifier.
	AfAppId      *string               `json:"afAppId,omitempty"`
	AfRoutReq    *AfRoutingRequirement `json:"afRoutReq,omitempty"`
	QosReference *string               `json:"qosReference,omitempty"`
	DisUeNotif   *bool                 `json:"disUeNotif,omitempty"`
	AltSerReqs   []string              `json:"altSerReqs,omitempty"`
	// Contains alternative service requirements that include individual QoS parameter sets.
	AltSerReqsData []AlternativeServiceRequirementsData `json:"altSerReqsData,omitempty"`
	// Represents the content version of some content.
	ContVer *int32   `json:"contVer,omitempty"`
	Codecs  []string `json:"codecs,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	DesMaxLatency *float32 `json:"desMaxLatency,omitempty"`
	// string with format 'float' as defined in OpenAPI.
	DesMaxLoss *float32    `json:"desMaxLoss,omitempty"`
	FlusId     *string     `json:"flusId,omitempty"`
	FStatus    *FlowStatus `json:"fStatus,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MarBwDl *string `json:"marBwDl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MarBwUl *string `json:"marBwUl,omitempty"`
	// This data type is defined in the same way as the 'PacketLossRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxPacketLossRateDl NullableInt32 `json:"maxPacketLossRateDl,omitempty"`
	// This data type is defined in the same way as the 'PacketLossRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxPacketLossRateUl NullableInt32 `json:"maxPacketLossRateUl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MaxSuppBwDl *string `json:"maxSuppBwDl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MaxSuppBwUl *string `json:"maxSuppBwUl,omitempty"`
	MedCompN    int32   `json:"medCompN"`
	// Contains the requested bitrate and filters for the set of service data flows identified by their common flow identifier. The key of the map is the fNum attribute.
	MedSubComps *map[string]MediaSubComponent `json:"medSubComps,omitempty"`
	MedType     *MediaType                    `json:"medType,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MinDesBwDl *string `json:"minDesBwDl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MinDesBwUl *string `json:"minDesBwUl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MirBwDl *string `json:"mirBwDl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MirBwUl        *string                   `json:"mirBwUl,omitempty"`
	PreemptCap     *PreemptionCapability     `json:"preemptCap,omitempty"`
	PreemptVuln    *PreemptionVulnerability  `json:"preemptVuln,omitempty"`
	PrioSharingInd *PrioritySharingIndicator `json:"prioSharingInd,omitempty"`
	ResPrio        *ReservPriority           `json:"resPrio,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	RrBw *string `json:"rrBw,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	RsBw *string `json:"rsBw,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	SharingKeyDl *int32 `json:"sharingKeyDl,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	SharingKeyUl *int32                      `json:"sharingKeyUl,omitempty"`
	TsnQos       *TsnQosContainer            `json:"tsnQos,omitempty"`
	TscaiInputDl NullableTscaiInputContainer `json:"tscaiInputDl,omitempty"`
	TscaiInputUl NullableTscaiInputContainer `json:"tscaiInputUl,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	TscaiTimeDom *int32 `json:"tscaiTimeDom,omitempty"`
}

MediaComponent Identifies a media component.

func NewMediaComponent

func NewMediaComponent(medCompN int32) *MediaComponent

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

func NewMediaComponentWithDefaults

func NewMediaComponentWithDefaults() *MediaComponent

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

func (*MediaComponent) GetAfAppId

func (o *MediaComponent) GetAfAppId() string

GetAfAppId returns the AfAppId field value if set, zero value otherwise.

func (*MediaComponent) GetAfAppIdOk

func (o *MediaComponent) GetAfAppIdOk() (*string, bool)

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

func (*MediaComponent) GetAfRoutReq

func (o *MediaComponent) GetAfRoutReq() AfRoutingRequirement

GetAfRoutReq returns the AfRoutReq field value if set, zero value otherwise.

func (*MediaComponent) GetAfRoutReqOk

func (o *MediaComponent) GetAfRoutReqOk() (*AfRoutingRequirement, bool)

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

func (*MediaComponent) GetAltSerReqs

func (o *MediaComponent) GetAltSerReqs() []string

GetAltSerReqs returns the AltSerReqs field value if set, zero value otherwise.

func (*MediaComponent) GetAltSerReqsData

func (o *MediaComponent) GetAltSerReqsData() []AlternativeServiceRequirementsData

GetAltSerReqsData returns the AltSerReqsData field value if set, zero value otherwise.

func (*MediaComponent) GetAltSerReqsDataOk

func (o *MediaComponent) GetAltSerReqsDataOk() ([]AlternativeServiceRequirementsData, bool)

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

func (*MediaComponent) GetAltSerReqsOk

func (o *MediaComponent) GetAltSerReqsOk() ([]string, bool)

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

func (*MediaComponent) GetCodecs

func (o *MediaComponent) GetCodecs() []string

GetCodecs returns the Codecs field value if set, zero value otherwise.

func (*MediaComponent) GetCodecsOk

func (o *MediaComponent) GetCodecsOk() ([]string, bool)

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

func (*MediaComponent) GetContVer

func (o *MediaComponent) GetContVer() int32

GetContVer returns the ContVer field value if set, zero value otherwise.

func (*MediaComponent) GetContVerOk

func (o *MediaComponent) GetContVerOk() (*int32, bool)

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

func (*MediaComponent) GetDesMaxLatency

func (o *MediaComponent) GetDesMaxLatency() float32

GetDesMaxLatency returns the DesMaxLatency field value if set, zero value otherwise.

func (*MediaComponent) GetDesMaxLatencyOk

func (o *MediaComponent) GetDesMaxLatencyOk() (*float32, bool)

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

func (*MediaComponent) GetDesMaxLoss

func (o *MediaComponent) GetDesMaxLoss() float32

GetDesMaxLoss returns the DesMaxLoss field value if set, zero value otherwise.

func (*MediaComponent) GetDesMaxLossOk

func (o *MediaComponent) GetDesMaxLossOk() (*float32, bool)

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

func (*MediaComponent) GetDisUeNotif

func (o *MediaComponent) GetDisUeNotif() bool

GetDisUeNotif returns the DisUeNotif field value if set, zero value otherwise.

func (*MediaComponent) GetDisUeNotifOk

func (o *MediaComponent) GetDisUeNotifOk() (*bool, bool)

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

func (*MediaComponent) GetFStatus

func (o *MediaComponent) GetFStatus() FlowStatus

GetFStatus returns the FStatus field value if set, zero value otherwise.

func (*MediaComponent) GetFStatusOk

func (o *MediaComponent) GetFStatusOk() (*FlowStatus, bool)

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

func (*MediaComponent) GetFlusId

func (o *MediaComponent) GetFlusId() string

GetFlusId returns the FlusId field value if set, zero value otherwise.

func (*MediaComponent) GetFlusIdOk

func (o *MediaComponent) GetFlusIdOk() (*string, bool)

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

func (*MediaComponent) GetMarBwDl

func (o *MediaComponent) GetMarBwDl() string

GetMarBwDl returns the MarBwDl field value if set, zero value otherwise.

func (*MediaComponent) GetMarBwDlOk

func (o *MediaComponent) GetMarBwDlOk() (*string, bool)

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

func (*MediaComponent) GetMarBwUl

func (o *MediaComponent) GetMarBwUl() string

GetMarBwUl returns the MarBwUl field value if set, zero value otherwise.

func (*MediaComponent) GetMarBwUlOk

func (o *MediaComponent) GetMarBwUlOk() (*string, bool)

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

func (*MediaComponent) GetMaxPacketLossRateDl

func (o *MediaComponent) GetMaxPacketLossRateDl() int32

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

func (*MediaComponent) GetMaxPacketLossRateDlOk

func (o *MediaComponent) GetMaxPacketLossRateDlOk() (*int32, bool)

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

func (*MediaComponent) GetMaxPacketLossRateUl

func (o *MediaComponent) GetMaxPacketLossRateUl() int32

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

func (*MediaComponent) GetMaxPacketLossRateUlOk

func (o *MediaComponent) GetMaxPacketLossRateUlOk() (*int32, bool)

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

func (*MediaComponent) GetMaxSuppBwDl

func (o *MediaComponent) GetMaxSuppBwDl() string

GetMaxSuppBwDl returns the MaxSuppBwDl field value if set, zero value otherwise.

func (*MediaComponent) GetMaxSuppBwDlOk

func (o *MediaComponent) GetMaxSuppBwDlOk() (*string, bool)

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

func (*MediaComponent) GetMaxSuppBwUl

func (o *MediaComponent) GetMaxSuppBwUl() string

GetMaxSuppBwUl returns the MaxSuppBwUl field value if set, zero value otherwise.

func (*MediaComponent) GetMaxSuppBwUlOk

func (o *MediaComponent) GetMaxSuppBwUlOk() (*string, bool)

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

func (*MediaComponent) GetMedCompN

func (o *MediaComponent) GetMedCompN() int32

GetMedCompN returns the MedCompN field value

func (*MediaComponent) GetMedCompNOk

func (o *MediaComponent) GetMedCompNOk() (*int32, bool)

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

func (*MediaComponent) GetMedSubComps

func (o *MediaComponent) GetMedSubComps() map[string]MediaSubComponent

GetMedSubComps returns the MedSubComps field value if set, zero value otherwise.

func (*MediaComponent) GetMedSubCompsOk

func (o *MediaComponent) GetMedSubCompsOk() (*map[string]MediaSubComponent, bool)

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

func (*MediaComponent) GetMedType

func (o *MediaComponent) GetMedType() MediaType

GetMedType returns the MedType field value if set, zero value otherwise.

func (*MediaComponent) GetMedTypeOk

func (o *MediaComponent) GetMedTypeOk() (*MediaType, bool)

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

func (*MediaComponent) GetMinDesBwDl

func (o *MediaComponent) GetMinDesBwDl() string

GetMinDesBwDl returns the MinDesBwDl field value if set, zero value otherwise.

func (*MediaComponent) GetMinDesBwDlOk

func (o *MediaComponent) GetMinDesBwDlOk() (*string, bool)

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

func (*MediaComponent) GetMinDesBwUl

func (o *MediaComponent) GetMinDesBwUl() string

GetMinDesBwUl returns the MinDesBwUl field value if set, zero value otherwise.

func (*MediaComponent) GetMinDesBwUlOk

func (o *MediaComponent) GetMinDesBwUlOk() (*string, bool)

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

func (*MediaComponent) GetMirBwDl

func (o *MediaComponent) GetMirBwDl() string

GetMirBwDl returns the MirBwDl field value if set, zero value otherwise.

func (*MediaComponent) GetMirBwDlOk

func (o *MediaComponent) GetMirBwDlOk() (*string, bool)

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

func (*MediaComponent) GetMirBwUl

func (o *MediaComponent) GetMirBwUl() string

GetMirBwUl returns the MirBwUl field value if set, zero value otherwise.

func (*MediaComponent) GetMirBwUlOk

func (o *MediaComponent) GetMirBwUlOk() (*string, bool)

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

func (*MediaComponent) GetPreemptCap

func (o *MediaComponent) GetPreemptCap() PreemptionCapability

GetPreemptCap returns the PreemptCap field value if set, zero value otherwise.

func (*MediaComponent) GetPreemptCapOk

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

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

func (*MediaComponent) GetPreemptVuln

func (o *MediaComponent) GetPreemptVuln() PreemptionVulnerability

GetPreemptVuln returns the PreemptVuln field value if set, zero value otherwise.

func (*MediaComponent) GetPreemptVulnOk

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

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

func (*MediaComponent) GetPrioSharingInd

func (o *MediaComponent) GetPrioSharingInd() PrioritySharingIndicator

GetPrioSharingInd returns the PrioSharingInd field value if set, zero value otherwise.

func (*MediaComponent) GetPrioSharingIndOk

func (o *MediaComponent) GetPrioSharingIndOk() (*PrioritySharingIndicator, bool)

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

func (*MediaComponent) GetQosReference

func (o *MediaComponent) GetQosReference() string

GetQosReference returns the QosReference field value if set, zero value otherwise.

func (*MediaComponent) GetQosReferenceOk

func (o *MediaComponent) GetQosReferenceOk() (*string, bool)

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

func (*MediaComponent) GetResPrio

func (o *MediaComponent) GetResPrio() ReservPriority

GetResPrio returns the ResPrio field value if set, zero value otherwise.

func (*MediaComponent) GetResPrioOk

func (o *MediaComponent) GetResPrioOk() (*ReservPriority, bool)

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

func (*MediaComponent) GetRrBw

func (o *MediaComponent) GetRrBw() string

GetRrBw returns the RrBw field value if set, zero value otherwise.

func (*MediaComponent) GetRrBwOk

func (o *MediaComponent) GetRrBwOk() (*string, bool)

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

func (*MediaComponent) GetRsBw

func (o *MediaComponent) GetRsBw() string

GetRsBw returns the RsBw field value if set, zero value otherwise.

func (*MediaComponent) GetRsBwOk

func (o *MediaComponent) GetRsBwOk() (*string, bool)

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

func (*MediaComponent) GetSharingKeyDl

func (o *MediaComponent) GetSharingKeyDl() int32

GetSharingKeyDl returns the SharingKeyDl field value if set, zero value otherwise.

func (*MediaComponent) GetSharingKeyDlOk

func (o *MediaComponent) GetSharingKeyDlOk() (*int32, bool)

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

func (*MediaComponent) GetSharingKeyUl

func (o *MediaComponent) GetSharingKeyUl() int32

GetSharingKeyUl returns the SharingKeyUl field value if set, zero value otherwise.

func (*MediaComponent) GetSharingKeyUlOk

func (o *MediaComponent) GetSharingKeyUlOk() (*int32, bool)

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

func (*MediaComponent) GetTscaiInputDl

func (o *MediaComponent) GetTscaiInputDl() TscaiInputContainer

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

func (*MediaComponent) GetTscaiInputDlOk

func (o *MediaComponent) GetTscaiInputDlOk() (*TscaiInputContainer, bool)

GetTscaiInputDlOk returns a tuple with the TscaiInputDl 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 (*MediaComponent) GetTscaiInputUl

func (o *MediaComponent) GetTscaiInputUl() TscaiInputContainer

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

func (*MediaComponent) GetTscaiInputUlOk

func (o *MediaComponent) GetTscaiInputUlOk() (*TscaiInputContainer, bool)

GetTscaiInputUlOk returns a tuple with the TscaiInputUl 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 (*MediaComponent) GetTscaiTimeDom

func (o *MediaComponent) GetTscaiTimeDom() int32

GetTscaiTimeDom returns the TscaiTimeDom field value if set, zero value otherwise.

func (*MediaComponent) GetTscaiTimeDomOk

func (o *MediaComponent) GetTscaiTimeDomOk() (*int32, bool)

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

func (*MediaComponent) GetTsnQos

func (o *MediaComponent) GetTsnQos() TsnQosContainer

GetTsnQos returns the TsnQos field value if set, zero value otherwise.

func (*MediaComponent) GetTsnQosOk

func (o *MediaComponent) GetTsnQosOk() (*TsnQosContainer, bool)

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

func (*MediaComponent) HasAfAppId

func (o *MediaComponent) HasAfAppId() bool

HasAfAppId returns a boolean if a field has been set.

func (*MediaComponent) HasAfRoutReq

func (o *MediaComponent) HasAfRoutReq() bool

HasAfRoutReq returns a boolean if a field has been set.

func (*MediaComponent) HasAltSerReqs

func (o *MediaComponent) HasAltSerReqs() bool

HasAltSerReqs returns a boolean if a field has been set.

func (*MediaComponent) HasAltSerReqsData

func (o *MediaComponent) HasAltSerReqsData() bool

HasAltSerReqsData returns a boolean if a field has been set.

func (*MediaComponent) HasCodecs

func (o *MediaComponent) HasCodecs() bool

HasCodecs returns a boolean if a field has been set.

func (*MediaComponent) HasContVer

func (o *MediaComponent) HasContVer() bool

HasContVer returns a boolean if a field has been set.

func (*MediaComponent) HasDesMaxLatency

func (o *MediaComponent) HasDesMaxLatency() bool

HasDesMaxLatency returns a boolean if a field has been set.

func (*MediaComponent) HasDesMaxLoss

func (o *MediaComponent) HasDesMaxLoss() bool

HasDesMaxLoss returns a boolean if a field has been set.

func (*MediaComponent) HasDisUeNotif

func (o *MediaComponent) HasDisUeNotif() bool

HasDisUeNotif returns a boolean if a field has been set.

func (*MediaComponent) HasFStatus

func (o *MediaComponent) HasFStatus() bool

HasFStatus returns a boolean if a field has been set.

func (*MediaComponent) HasFlusId

func (o *MediaComponent) HasFlusId() bool

HasFlusId returns a boolean if a field has been set.

func (*MediaComponent) HasMarBwDl

func (o *MediaComponent) HasMarBwDl() bool

HasMarBwDl returns a boolean if a field has been set.

func (*MediaComponent) HasMarBwUl

func (o *MediaComponent) HasMarBwUl() bool

HasMarBwUl returns a boolean if a field has been set.

func (*MediaComponent) HasMaxPacketLossRateDl

func (o *MediaComponent) HasMaxPacketLossRateDl() bool

HasMaxPacketLossRateDl returns a boolean if a field has been set.

func (*MediaComponent) HasMaxPacketLossRateUl

func (o *MediaComponent) HasMaxPacketLossRateUl() bool

HasMaxPacketLossRateUl returns a boolean if a field has been set.

func (*MediaComponent) HasMaxSuppBwDl

func (o *MediaComponent) HasMaxSuppBwDl() bool

HasMaxSuppBwDl returns a boolean if a field has been set.

func (*MediaComponent) HasMaxSuppBwUl

func (o *MediaComponent) HasMaxSuppBwUl() bool

HasMaxSuppBwUl returns a boolean if a field has been set.

func (*MediaComponent) HasMedSubComps

func (o *MediaComponent) HasMedSubComps() bool

HasMedSubComps returns a boolean if a field has been set.

func (*MediaComponent) HasMedType

func (o *MediaComponent) HasMedType() bool

HasMedType returns a boolean if a field has been set.

func (*MediaComponent) HasMinDesBwDl

func (o *MediaComponent) HasMinDesBwDl() bool

HasMinDesBwDl returns a boolean if a field has been set.

func (*MediaComponent) HasMinDesBwUl

func (o *MediaComponent) HasMinDesBwUl() bool

HasMinDesBwUl returns a boolean if a field has been set.

func (*MediaComponent) HasMirBwDl

func (o *MediaComponent) HasMirBwDl() bool

HasMirBwDl returns a boolean if a field has been set.

func (*MediaComponent) HasMirBwUl

func (o *MediaComponent) HasMirBwUl() bool

HasMirBwUl returns a boolean if a field has been set.

func (*MediaComponent) HasPreemptCap

func (o *MediaComponent) HasPreemptCap() bool

HasPreemptCap returns a boolean if a field has been set.

func (*MediaComponent) HasPreemptVuln

func (o *MediaComponent) HasPreemptVuln() bool

HasPreemptVuln returns a boolean if a field has been set.

func (*MediaComponent) HasPrioSharingInd

func (o *MediaComponent) HasPrioSharingInd() bool

HasPrioSharingInd returns a boolean if a field has been set.

func (*MediaComponent) HasQosReference

func (o *MediaComponent) HasQosReference() bool

HasQosReference returns a boolean if a field has been set.

func (*MediaComponent) HasResPrio

func (o *MediaComponent) HasResPrio() bool

HasResPrio returns a boolean if a field has been set.

func (*MediaComponent) HasRrBw

func (o *MediaComponent) HasRrBw() bool

HasRrBw returns a boolean if a field has been set.

func (*MediaComponent) HasRsBw

func (o *MediaComponent) HasRsBw() bool

HasRsBw returns a boolean if a field has been set.

func (*MediaComponent) HasSharingKeyDl

func (o *MediaComponent) HasSharingKeyDl() bool

HasSharingKeyDl returns a boolean if a field has been set.

func (*MediaComponent) HasSharingKeyUl

func (o *MediaComponent) HasSharingKeyUl() bool

HasSharingKeyUl returns a boolean if a field has been set.

func (*MediaComponent) HasTscaiInputDl

func (o *MediaComponent) HasTscaiInputDl() bool

HasTscaiInputDl returns a boolean if a field has been set.

func (*MediaComponent) HasTscaiInputUl

func (o *MediaComponent) HasTscaiInputUl() bool

HasTscaiInputUl returns a boolean if a field has been set.

func (*MediaComponent) HasTscaiTimeDom

func (o *MediaComponent) HasTscaiTimeDom() bool

HasTscaiTimeDom returns a boolean if a field has been set.

func (*MediaComponent) HasTsnQos

func (o *MediaComponent) HasTsnQos() bool

HasTsnQos returns a boolean if a field has been set.

func (MediaComponent) MarshalJSON

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

func (*MediaComponent) SetAfAppId

func (o *MediaComponent) SetAfAppId(v string)

SetAfAppId gets a reference to the given string and assigns it to the AfAppId field.

func (*MediaComponent) SetAfRoutReq

func (o *MediaComponent) SetAfRoutReq(v AfRoutingRequirement)

SetAfRoutReq gets a reference to the given AfRoutingRequirement and assigns it to the AfRoutReq field.

func (*MediaComponent) SetAltSerReqs

func (o *MediaComponent) SetAltSerReqs(v []string)

SetAltSerReqs gets a reference to the given []string and assigns it to the AltSerReqs field.

func (*MediaComponent) SetAltSerReqsData

func (o *MediaComponent) SetAltSerReqsData(v []AlternativeServiceRequirementsData)

SetAltSerReqsData gets a reference to the given []AlternativeServiceRequirementsData and assigns it to the AltSerReqsData field.

func (*MediaComponent) SetCodecs

func (o *MediaComponent) SetCodecs(v []string)

SetCodecs gets a reference to the given []string and assigns it to the Codecs field.

func (*MediaComponent) SetContVer

func (o *MediaComponent) SetContVer(v int32)

SetContVer gets a reference to the given int32 and assigns it to the ContVer field.

func (*MediaComponent) SetDesMaxLatency

func (o *MediaComponent) SetDesMaxLatency(v float32)

SetDesMaxLatency gets a reference to the given float32 and assigns it to the DesMaxLatency field.

func (*MediaComponent) SetDesMaxLoss

func (o *MediaComponent) SetDesMaxLoss(v float32)

SetDesMaxLoss gets a reference to the given float32 and assigns it to the DesMaxLoss field.

func (*MediaComponent) SetDisUeNotif

func (o *MediaComponent) SetDisUeNotif(v bool)

SetDisUeNotif gets a reference to the given bool and assigns it to the DisUeNotif field.

func (*MediaComponent) SetFStatus

func (o *MediaComponent) SetFStatus(v FlowStatus)

SetFStatus gets a reference to the given FlowStatus and assigns it to the FStatus field.

func (*MediaComponent) SetFlusId

func (o *MediaComponent) SetFlusId(v string)

SetFlusId gets a reference to the given string and assigns it to the FlusId field.

func (*MediaComponent) SetMarBwDl

func (o *MediaComponent) SetMarBwDl(v string)

SetMarBwDl gets a reference to the given string and assigns it to the MarBwDl field.

func (*MediaComponent) SetMarBwUl

func (o *MediaComponent) SetMarBwUl(v string)

SetMarBwUl gets a reference to the given string and assigns it to the MarBwUl field.

func (*MediaComponent) SetMaxPacketLossRateDl

func (o *MediaComponent) SetMaxPacketLossRateDl(v int32)

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

func (*MediaComponent) SetMaxPacketLossRateDlNil

func (o *MediaComponent) SetMaxPacketLossRateDlNil()

SetMaxPacketLossRateDlNil sets the value for MaxPacketLossRateDl to be an explicit nil

func (*MediaComponent) SetMaxPacketLossRateUl

func (o *MediaComponent) SetMaxPacketLossRateUl(v int32)

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

func (*MediaComponent) SetMaxPacketLossRateUlNil

func (o *MediaComponent) SetMaxPacketLossRateUlNil()

SetMaxPacketLossRateUlNil sets the value for MaxPacketLossRateUl to be an explicit nil

func (*MediaComponent) SetMaxSuppBwDl

func (o *MediaComponent) SetMaxSuppBwDl(v string)

SetMaxSuppBwDl gets a reference to the given string and assigns it to the MaxSuppBwDl field.

func (*MediaComponent) SetMaxSuppBwUl

func (o *MediaComponent) SetMaxSuppBwUl(v string)

SetMaxSuppBwUl gets a reference to the given string and assigns it to the MaxSuppBwUl field.

func (*MediaComponent) SetMedCompN

func (o *MediaComponent) SetMedCompN(v int32)

SetMedCompN sets field value

func (*MediaComponent) SetMedSubComps

func (o *MediaComponent) SetMedSubComps(v map[string]MediaSubComponent)

SetMedSubComps gets a reference to the given map[string]MediaSubComponent and assigns it to the MedSubComps field.

func (*MediaComponent) SetMedType

func (o *MediaComponent) SetMedType(v MediaType)

SetMedType gets a reference to the given MediaType and assigns it to the MedType field.

func (*MediaComponent) SetMinDesBwDl

func (o *MediaComponent) SetMinDesBwDl(v string)

SetMinDesBwDl gets a reference to the given string and assigns it to the MinDesBwDl field.

func (*MediaComponent) SetMinDesBwUl

func (o *MediaComponent) SetMinDesBwUl(v string)

SetMinDesBwUl gets a reference to the given string and assigns it to the MinDesBwUl field.

func (*MediaComponent) SetMirBwDl

func (o *MediaComponent) SetMirBwDl(v string)

SetMirBwDl gets a reference to the given string and assigns it to the MirBwDl field.

func (*MediaComponent) SetMirBwUl

func (o *MediaComponent) SetMirBwUl(v string)

SetMirBwUl gets a reference to the given string and assigns it to the MirBwUl field.

func (*MediaComponent) SetPreemptCap

func (o *MediaComponent) SetPreemptCap(v PreemptionCapability)

SetPreemptCap gets a reference to the given PreemptionCapability and assigns it to the PreemptCap field.

func (*MediaComponent) SetPreemptVuln

func (o *MediaComponent) SetPreemptVuln(v PreemptionVulnerability)

SetPreemptVuln gets a reference to the given PreemptionVulnerability and assigns it to the PreemptVuln field.

func (*MediaComponent) SetPrioSharingInd

func (o *MediaComponent) SetPrioSharingInd(v PrioritySharingIndicator)

SetPrioSharingInd gets a reference to the given PrioritySharingIndicator and assigns it to the PrioSharingInd field.

func (*MediaComponent) SetQosReference

func (o *MediaComponent) SetQosReference(v string)

SetQosReference gets a reference to the given string and assigns it to the QosReference field.

func (*MediaComponent) SetResPrio

func (o *MediaComponent) SetResPrio(v ReservPriority)

SetResPrio gets a reference to the given ReservPriority and assigns it to the ResPrio field.

func (*MediaComponent) SetRrBw

func (o *MediaComponent) SetRrBw(v string)

SetRrBw gets a reference to the given string and assigns it to the RrBw field.

func (*MediaComponent) SetRsBw

func (o *MediaComponent) SetRsBw(v string)

SetRsBw gets a reference to the given string and assigns it to the RsBw field.

func (*MediaComponent) SetSharingKeyDl

func (o *MediaComponent) SetSharingKeyDl(v int32)

SetSharingKeyDl gets a reference to the given int32 and assigns it to the SharingKeyDl field.

func (*MediaComponent) SetSharingKeyUl

func (o *MediaComponent) SetSharingKeyUl(v int32)

SetSharingKeyUl gets a reference to the given int32 and assigns it to the SharingKeyUl field.

func (*MediaComponent) SetTscaiInputDl

func (o *MediaComponent) SetTscaiInputDl(v TscaiInputContainer)

SetTscaiInputDl gets a reference to the given NullableTscaiInputContainer and assigns it to the TscaiInputDl field.

func (*MediaComponent) SetTscaiInputDlNil

func (o *MediaComponent) SetTscaiInputDlNil()

SetTscaiInputDlNil sets the value for TscaiInputDl to be an explicit nil

func (*MediaComponent) SetTscaiInputUl

func (o *MediaComponent) SetTscaiInputUl(v TscaiInputContainer)

SetTscaiInputUl gets a reference to the given NullableTscaiInputContainer and assigns it to the TscaiInputUl field.

func (*MediaComponent) SetTscaiInputUlNil

func (o *MediaComponent) SetTscaiInputUlNil()

SetTscaiInputUlNil sets the value for TscaiInputUl to be an explicit nil

func (*MediaComponent) SetTscaiTimeDom

func (o *MediaComponent) SetTscaiTimeDom(v int32)

SetTscaiTimeDom gets a reference to the given int32 and assigns it to the TscaiTimeDom field.

func (*MediaComponent) SetTsnQos

func (o *MediaComponent) SetTsnQos(v TsnQosContainer)

SetTsnQos gets a reference to the given TsnQosContainer and assigns it to the TsnQos field.

func (MediaComponent) ToMap

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

func (*MediaComponent) UnsetMaxPacketLossRateDl

func (o *MediaComponent) UnsetMaxPacketLossRateDl()

UnsetMaxPacketLossRateDl ensures that no value is present for MaxPacketLossRateDl, not even an explicit nil

func (*MediaComponent) UnsetMaxPacketLossRateUl

func (o *MediaComponent) UnsetMaxPacketLossRateUl()

UnsetMaxPacketLossRateUl ensures that no value is present for MaxPacketLossRateUl, not even an explicit nil

func (*MediaComponent) UnsetTscaiInputDl

func (o *MediaComponent) UnsetTscaiInputDl()

UnsetTscaiInputDl ensures that no value is present for TscaiInputDl, not even an explicit nil

func (*MediaComponent) UnsetTscaiInputUl

func (o *MediaComponent) UnsetTscaiInputUl()

UnsetTscaiInputUl ensures that no value is present for TscaiInputUl, not even an explicit nil

type MediaComponentResourcesStatus

type MediaComponentResourcesStatus struct {
	String *string
}

MediaComponentResourcesStatus Indicates whether the media component is active or inactive.

func (*MediaComponentResourcesStatus) MarshalJSON

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

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

func (*MediaComponentResourcesStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MediaComponentRm

type MediaComponentRm struct {
	// Contains an AF application identifier.
	AfAppId      *string                        `json:"afAppId,omitempty"`
	AfRoutReq    NullableAfRoutingRequirementRm `json:"afRoutReq,omitempty"`
	QosReference NullableString                 `json:"qosReference,omitempty"`
	AltSerReqs   []string                       `json:"altSerReqs,omitempty"`
	// Contains removable alternative service requirements that include individual QoS parameter sets.
	AltSerReqsData []AlternativeServiceRequirementsData `json:"altSerReqsData,omitempty"`
	DisUeNotif     *bool                                `json:"disUeNotif,omitempty"`
	// Represents the content version of some content.
	ContVer *int32   `json:"contVer,omitempty"`
	Codecs  []string `json:"codecs,omitempty"`
	// string with format 'float' as defined in OpenAPI with the OpenAPI defined 'nullable: true' property.
	DesMaxLatency NullableFloat32 `json:"desMaxLatency,omitempty"`
	// string with format 'float' as defined in OpenAPI with the OpenAPI defined 'nullable: true' property.
	DesMaxLoss NullableFloat32 `json:"desMaxLoss,omitempty"`
	FlusId     NullableString  `json:"flusId,omitempty"`
	FStatus    *FlowStatus     `json:"fStatus,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MarBwDl NullableString `json:"marBwDl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MarBwUl NullableString `json:"marBwUl,omitempty"`
	// This data type is defined in the same way as the 'PacketLossRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxPacketLossRateDl NullableInt32 `json:"maxPacketLossRateDl,omitempty"`
	// This data type is defined in the same way as the 'PacketLossRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxPacketLossRateUl NullableInt32 `json:"maxPacketLossRateUl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxSuppBwDl NullableString `json:"maxSuppBwDl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MaxSuppBwUl NullableString `json:"maxSuppBwUl,omitempty"`
	MedCompN    int32          `json:"medCompN"`
	// Contains the requested bitrate and filters for the set of service data flows identified by their common flow identifier. The key of the map is the fNum attribute.
	MedSubComps *map[string]MediaSubComponentRm `json:"medSubComps,omitempty"`
	MedType     *MediaType                      `json:"medType,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MinDesBwDl NullableString `json:"minDesBwDl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MinDesBwUl NullableString `json:"minDesBwUl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MirBwDl NullableString `json:"mirBwDl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MirBwUl        NullableString             `json:"mirBwUl,omitempty"`
	PreemptCap     *PreemptionCapabilityRm    `json:"preemptCap,omitempty"`
	PreemptVuln    *PreemptionVulnerabilityRm `json:"preemptVuln,omitempty"`
	PrioSharingInd *PrioritySharingIndicator  `json:"prioSharingInd,omitempty"`
	ResPrio        *ReservPriority            `json:"resPrio,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	RrBw NullableString `json:"rrBw,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	RsBw NullableString `json:"rsBw,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer with the OpenAPI 'nullable: true' property.
	SharingKeyDl NullableInt32 `json:"sharingKeyDl,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer with the OpenAPI 'nullable: true' property.
	SharingKeyUl NullableInt32               `json:"sharingKeyUl,omitempty"`
	TsnQos       NullableTsnQosContainerRm   `json:"tsnQos,omitempty"`
	TscaiInputDl NullableTscaiInputContainer `json:"tscaiInputDl,omitempty"`
	TscaiInputUl NullableTscaiInputContainer `json:"tscaiInputUl,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	TscaiTimeDom *int32 `json:"tscaiTimeDom,omitempty"`
}

MediaComponentRm This data type is defined in the same way as the MediaComponent data type, but with the OpenAPI nullable property set to true.

func NewMediaComponentRm

func NewMediaComponentRm(medCompN int32) *MediaComponentRm

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

func NewMediaComponentRmWithDefaults

func NewMediaComponentRmWithDefaults() *MediaComponentRm

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

func (*MediaComponentRm) GetAfAppId

func (o *MediaComponentRm) GetAfAppId() string

GetAfAppId returns the AfAppId field value if set, zero value otherwise.

func (*MediaComponentRm) GetAfAppIdOk

func (o *MediaComponentRm) GetAfAppIdOk() (*string, bool)

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

func (*MediaComponentRm) GetAfRoutReq

func (o *MediaComponentRm) GetAfRoutReq() AfRoutingRequirementRm

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

func (*MediaComponentRm) GetAfRoutReqOk

func (o *MediaComponentRm) GetAfRoutReqOk() (*AfRoutingRequirementRm, bool)

GetAfRoutReqOk returns a tuple with the AfRoutReq 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 (*MediaComponentRm) GetAltSerReqs

func (o *MediaComponentRm) GetAltSerReqs() []string

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

func (*MediaComponentRm) GetAltSerReqsData

func (o *MediaComponentRm) GetAltSerReqsData() []AlternativeServiceRequirementsData

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

func (*MediaComponentRm) GetAltSerReqsDataOk

func (o *MediaComponentRm) GetAltSerReqsDataOk() ([]AlternativeServiceRequirementsData, bool)

GetAltSerReqsDataOk returns a tuple with the AltSerReqsData 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 (*MediaComponentRm) GetAltSerReqsOk

func (o *MediaComponentRm) GetAltSerReqsOk() ([]string, bool)

GetAltSerReqsOk returns a tuple with the AltSerReqs 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 (*MediaComponentRm) GetCodecs

func (o *MediaComponentRm) GetCodecs() []string

GetCodecs returns the Codecs field value if set, zero value otherwise.

func (*MediaComponentRm) GetCodecsOk

func (o *MediaComponentRm) GetCodecsOk() ([]string, bool)

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

func (*MediaComponentRm) GetContVer

func (o *MediaComponentRm) GetContVer() int32

GetContVer returns the ContVer field value if set, zero value otherwise.

func (*MediaComponentRm) GetContVerOk

func (o *MediaComponentRm) GetContVerOk() (*int32, bool)

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

func (*MediaComponentRm) GetDesMaxLatency

func (o *MediaComponentRm) GetDesMaxLatency() float32

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

func (*MediaComponentRm) GetDesMaxLatencyOk

func (o *MediaComponentRm) GetDesMaxLatencyOk() (*float32, bool)

GetDesMaxLatencyOk returns a tuple with the DesMaxLatency 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 (*MediaComponentRm) GetDesMaxLoss

func (o *MediaComponentRm) GetDesMaxLoss() float32

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

func (*MediaComponentRm) GetDesMaxLossOk

func (o *MediaComponentRm) GetDesMaxLossOk() (*float32, bool)

GetDesMaxLossOk returns a tuple with the DesMaxLoss 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 (*MediaComponentRm) GetDisUeNotif

func (o *MediaComponentRm) GetDisUeNotif() bool

GetDisUeNotif returns the DisUeNotif field value if set, zero value otherwise.

func (*MediaComponentRm) GetDisUeNotifOk

func (o *MediaComponentRm) GetDisUeNotifOk() (*bool, bool)

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

func (*MediaComponentRm) GetFStatus

func (o *MediaComponentRm) GetFStatus() FlowStatus

GetFStatus returns the FStatus field value if set, zero value otherwise.

func (*MediaComponentRm) GetFStatusOk

func (o *MediaComponentRm) GetFStatusOk() (*FlowStatus, bool)

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

func (*MediaComponentRm) GetFlusId

func (o *MediaComponentRm) GetFlusId() string

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

func (*MediaComponentRm) GetFlusIdOk

func (o *MediaComponentRm) GetFlusIdOk() (*string, bool)

GetFlusIdOk returns a tuple with the FlusId 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 (*MediaComponentRm) GetMarBwDl

func (o *MediaComponentRm) GetMarBwDl() string

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

func (*MediaComponentRm) GetMarBwDlOk

func (o *MediaComponentRm) GetMarBwDlOk() (*string, bool)

GetMarBwDlOk returns a tuple with the MarBwDl 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 (*MediaComponentRm) GetMarBwUl

func (o *MediaComponentRm) GetMarBwUl() string

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

func (*MediaComponentRm) GetMarBwUlOk

func (o *MediaComponentRm) GetMarBwUlOk() (*string, bool)

GetMarBwUlOk returns a tuple with the MarBwUl 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 (*MediaComponentRm) GetMaxPacketLossRateDl

func (o *MediaComponentRm) GetMaxPacketLossRateDl() int32

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

func (*MediaComponentRm) GetMaxPacketLossRateDlOk

func (o *MediaComponentRm) GetMaxPacketLossRateDlOk() (*int32, bool)

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

func (*MediaComponentRm) GetMaxPacketLossRateUl

func (o *MediaComponentRm) GetMaxPacketLossRateUl() int32

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

func (*MediaComponentRm) GetMaxPacketLossRateUlOk

func (o *MediaComponentRm) GetMaxPacketLossRateUlOk() (*int32, bool)

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

func (*MediaComponentRm) GetMaxSuppBwDl

func (o *MediaComponentRm) GetMaxSuppBwDl() string

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

func (*MediaComponentRm) GetMaxSuppBwDlOk

func (o *MediaComponentRm) GetMaxSuppBwDlOk() (*string, bool)

GetMaxSuppBwDlOk returns a tuple with the MaxSuppBwDl 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 (*MediaComponentRm) GetMaxSuppBwUl

func (o *MediaComponentRm) GetMaxSuppBwUl() string

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

func (*MediaComponentRm) GetMaxSuppBwUlOk

func (o *MediaComponentRm) GetMaxSuppBwUlOk() (*string, bool)

GetMaxSuppBwUlOk returns a tuple with the MaxSuppBwUl 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 (*MediaComponentRm) GetMedCompN

func (o *MediaComponentRm) GetMedCompN() int32

GetMedCompN returns the MedCompN field value

func (*MediaComponentRm) GetMedCompNOk

func (o *MediaComponentRm) GetMedCompNOk() (*int32, bool)

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

func (*MediaComponentRm) GetMedSubComps

func (o *MediaComponentRm) GetMedSubComps() map[string]MediaSubComponentRm

GetMedSubComps returns the MedSubComps field value if set, zero value otherwise.

func (*MediaComponentRm) GetMedSubCompsOk

func (o *MediaComponentRm) GetMedSubCompsOk() (*map[string]MediaSubComponentRm, bool)

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

func (*MediaComponentRm) GetMedType

func (o *MediaComponentRm) GetMedType() MediaType

GetMedType returns the MedType field value if set, zero value otherwise.

func (*MediaComponentRm) GetMedTypeOk

func (o *MediaComponentRm) GetMedTypeOk() (*MediaType, bool)

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

func (*MediaComponentRm) GetMinDesBwDl

func (o *MediaComponentRm) GetMinDesBwDl() string

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

func (*MediaComponentRm) GetMinDesBwDlOk

func (o *MediaComponentRm) GetMinDesBwDlOk() (*string, bool)

GetMinDesBwDlOk returns a tuple with the MinDesBwDl 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 (*MediaComponentRm) GetMinDesBwUl

func (o *MediaComponentRm) GetMinDesBwUl() string

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

func (*MediaComponentRm) GetMinDesBwUlOk

func (o *MediaComponentRm) GetMinDesBwUlOk() (*string, bool)

GetMinDesBwUlOk returns a tuple with the MinDesBwUl 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 (*MediaComponentRm) GetMirBwDl

func (o *MediaComponentRm) GetMirBwDl() string

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

func (*MediaComponentRm) GetMirBwDlOk

func (o *MediaComponentRm) GetMirBwDlOk() (*string, bool)

GetMirBwDlOk returns a tuple with the MirBwDl 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 (*MediaComponentRm) GetMirBwUl

func (o *MediaComponentRm) GetMirBwUl() string

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

func (*MediaComponentRm) GetMirBwUlOk

func (o *MediaComponentRm) GetMirBwUlOk() (*string, bool)

GetMirBwUlOk returns a tuple with the MirBwUl 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 (*MediaComponentRm) GetPreemptCap

func (o *MediaComponentRm) GetPreemptCap() PreemptionCapabilityRm

GetPreemptCap returns the PreemptCap field value if set, zero value otherwise.

func (*MediaComponentRm) GetPreemptCapOk

func (o *MediaComponentRm) GetPreemptCapOk() (*PreemptionCapabilityRm, bool)

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

func (*MediaComponentRm) GetPreemptVuln

func (o *MediaComponentRm) GetPreemptVuln() PreemptionVulnerabilityRm

GetPreemptVuln returns the PreemptVuln field value if set, zero value otherwise.

func (*MediaComponentRm) GetPreemptVulnOk

func (o *MediaComponentRm) GetPreemptVulnOk() (*PreemptionVulnerabilityRm, bool)

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

func (*MediaComponentRm) GetPrioSharingInd

func (o *MediaComponentRm) GetPrioSharingInd() PrioritySharingIndicator

GetPrioSharingInd returns the PrioSharingInd field value if set, zero value otherwise.

func (*MediaComponentRm) GetPrioSharingIndOk

func (o *MediaComponentRm) GetPrioSharingIndOk() (*PrioritySharingIndicator, bool)

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

func (*MediaComponentRm) GetQosReference

func (o *MediaComponentRm) GetQosReference() string

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

func (*MediaComponentRm) GetQosReferenceOk

func (o *MediaComponentRm) GetQosReferenceOk() (*string, bool)

GetQosReferenceOk returns a tuple with the QosReference 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 (*MediaComponentRm) GetResPrio

func (o *MediaComponentRm) GetResPrio() ReservPriority

GetResPrio returns the ResPrio field value if set, zero value otherwise.

func (*MediaComponentRm) GetResPrioOk

func (o *MediaComponentRm) GetResPrioOk() (*ReservPriority, bool)

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

func (*MediaComponentRm) GetRrBw

func (o *MediaComponentRm) GetRrBw() string

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

func (*MediaComponentRm) GetRrBwOk

func (o *MediaComponentRm) GetRrBwOk() (*string, bool)

GetRrBwOk returns a tuple with the RrBw 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 (*MediaComponentRm) GetRsBw

func (o *MediaComponentRm) GetRsBw() string

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

func (*MediaComponentRm) GetRsBwOk

func (o *MediaComponentRm) GetRsBwOk() (*string, bool)

GetRsBwOk returns a tuple with the RsBw 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 (*MediaComponentRm) GetSharingKeyDl

func (o *MediaComponentRm) GetSharingKeyDl() int32

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

func (*MediaComponentRm) GetSharingKeyDlOk

func (o *MediaComponentRm) GetSharingKeyDlOk() (*int32, bool)

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

func (*MediaComponentRm) GetSharingKeyUl

func (o *MediaComponentRm) GetSharingKeyUl() int32

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

func (*MediaComponentRm) GetSharingKeyUlOk

func (o *MediaComponentRm) GetSharingKeyUlOk() (*int32, bool)

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

func (*MediaComponentRm) GetTscaiInputDl

func (o *MediaComponentRm) GetTscaiInputDl() TscaiInputContainer

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

func (*MediaComponentRm) GetTscaiInputDlOk

func (o *MediaComponentRm) GetTscaiInputDlOk() (*TscaiInputContainer, bool)

GetTscaiInputDlOk returns a tuple with the TscaiInputDl 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 (*MediaComponentRm) GetTscaiInputUl

func (o *MediaComponentRm) GetTscaiInputUl() TscaiInputContainer

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

func (*MediaComponentRm) GetTscaiInputUlOk

func (o *MediaComponentRm) GetTscaiInputUlOk() (*TscaiInputContainer, bool)

GetTscaiInputUlOk returns a tuple with the TscaiInputUl 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 (*MediaComponentRm) GetTscaiTimeDom

func (o *MediaComponentRm) GetTscaiTimeDom() int32

GetTscaiTimeDom returns the TscaiTimeDom field value if set, zero value otherwise.

func (*MediaComponentRm) GetTscaiTimeDomOk

func (o *MediaComponentRm) GetTscaiTimeDomOk() (*int32, bool)

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

func (*MediaComponentRm) GetTsnQos

func (o *MediaComponentRm) GetTsnQos() TsnQosContainerRm

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

func (*MediaComponentRm) GetTsnQosOk

func (o *MediaComponentRm) GetTsnQosOk() (*TsnQosContainerRm, bool)

GetTsnQosOk returns a tuple with the TsnQos 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 (*MediaComponentRm) HasAfAppId

func (o *MediaComponentRm) HasAfAppId() bool

HasAfAppId returns a boolean if a field has been set.

func (*MediaComponentRm) HasAfRoutReq

func (o *MediaComponentRm) HasAfRoutReq() bool

HasAfRoutReq returns a boolean if a field has been set.

func (*MediaComponentRm) HasAltSerReqs

func (o *MediaComponentRm) HasAltSerReqs() bool

HasAltSerReqs returns a boolean if a field has been set.

func (*MediaComponentRm) HasAltSerReqsData

func (o *MediaComponentRm) HasAltSerReqsData() bool

HasAltSerReqsData returns a boolean if a field has been set.

func (*MediaComponentRm) HasCodecs

func (o *MediaComponentRm) HasCodecs() bool

HasCodecs returns a boolean if a field has been set.

func (*MediaComponentRm) HasContVer

func (o *MediaComponentRm) HasContVer() bool

HasContVer returns a boolean if a field has been set.

func (*MediaComponentRm) HasDesMaxLatency

func (o *MediaComponentRm) HasDesMaxLatency() bool

HasDesMaxLatency returns a boolean if a field has been set.

func (*MediaComponentRm) HasDesMaxLoss

func (o *MediaComponentRm) HasDesMaxLoss() bool

HasDesMaxLoss returns a boolean if a field has been set.

func (*MediaComponentRm) HasDisUeNotif

func (o *MediaComponentRm) HasDisUeNotif() bool

HasDisUeNotif returns a boolean if a field has been set.

func (*MediaComponentRm) HasFStatus

func (o *MediaComponentRm) HasFStatus() bool

HasFStatus returns a boolean if a field has been set.

func (*MediaComponentRm) HasFlusId

func (o *MediaComponentRm) HasFlusId() bool

HasFlusId returns a boolean if a field has been set.

func (*MediaComponentRm) HasMarBwDl

func (o *MediaComponentRm) HasMarBwDl() bool

HasMarBwDl returns a boolean if a field has been set.

func (*MediaComponentRm) HasMarBwUl

func (o *MediaComponentRm) HasMarBwUl() bool

HasMarBwUl returns a boolean if a field has been set.

func (*MediaComponentRm) HasMaxPacketLossRateDl

func (o *MediaComponentRm) HasMaxPacketLossRateDl() bool

HasMaxPacketLossRateDl returns a boolean if a field has been set.

func (*MediaComponentRm) HasMaxPacketLossRateUl

func (o *MediaComponentRm) HasMaxPacketLossRateUl() bool

HasMaxPacketLossRateUl returns a boolean if a field has been set.

func (*MediaComponentRm) HasMaxSuppBwDl

func (o *MediaComponentRm) HasMaxSuppBwDl() bool

HasMaxSuppBwDl returns a boolean if a field has been set.

func (*MediaComponentRm) HasMaxSuppBwUl

func (o *MediaComponentRm) HasMaxSuppBwUl() bool

HasMaxSuppBwUl returns a boolean if a field has been set.

func (*MediaComponentRm) HasMedSubComps

func (o *MediaComponentRm) HasMedSubComps() bool

HasMedSubComps returns a boolean if a field has been set.

func (*MediaComponentRm) HasMedType

func (o *MediaComponentRm) HasMedType() bool

HasMedType returns a boolean if a field has been set.

func (*MediaComponentRm) HasMinDesBwDl

func (o *MediaComponentRm) HasMinDesBwDl() bool

HasMinDesBwDl returns a boolean if a field has been set.

func (*MediaComponentRm) HasMinDesBwUl

func (o *MediaComponentRm) HasMinDesBwUl() bool

HasMinDesBwUl returns a boolean if a field has been set.

func (*MediaComponentRm) HasMirBwDl

func (o *MediaComponentRm) HasMirBwDl() bool

HasMirBwDl returns a boolean if a field has been set.

func (*MediaComponentRm) HasMirBwUl

func (o *MediaComponentRm) HasMirBwUl() bool

HasMirBwUl returns a boolean if a field has been set.

func (*MediaComponentRm) HasPreemptCap

func (o *MediaComponentRm) HasPreemptCap() bool

HasPreemptCap returns a boolean if a field has been set.

func (*MediaComponentRm) HasPreemptVuln

func (o *MediaComponentRm) HasPreemptVuln() bool

HasPreemptVuln returns a boolean if a field has been set.

func (*MediaComponentRm) HasPrioSharingInd

func (o *MediaComponentRm) HasPrioSharingInd() bool

HasPrioSharingInd returns a boolean if a field has been set.

func (*MediaComponentRm) HasQosReference

func (o *MediaComponentRm) HasQosReference() bool

HasQosReference returns a boolean if a field has been set.

func (*MediaComponentRm) HasResPrio

func (o *MediaComponentRm) HasResPrio() bool

HasResPrio returns a boolean if a field has been set.

func (*MediaComponentRm) HasRrBw

func (o *MediaComponentRm) HasRrBw() bool

HasRrBw returns a boolean if a field has been set.

func (*MediaComponentRm) HasRsBw

func (o *MediaComponentRm) HasRsBw() bool

HasRsBw returns a boolean if a field has been set.

func (*MediaComponentRm) HasSharingKeyDl

func (o *MediaComponentRm) HasSharingKeyDl() bool

HasSharingKeyDl returns a boolean if a field has been set.

func (*MediaComponentRm) HasSharingKeyUl

func (o *MediaComponentRm) HasSharingKeyUl() bool

HasSharingKeyUl returns a boolean if a field has been set.

func (*MediaComponentRm) HasTscaiInputDl

func (o *MediaComponentRm) HasTscaiInputDl() bool

HasTscaiInputDl returns a boolean if a field has been set.

func (*MediaComponentRm) HasTscaiInputUl

func (o *MediaComponentRm) HasTscaiInputUl() bool

HasTscaiInputUl returns a boolean if a field has been set.

func (*MediaComponentRm) HasTscaiTimeDom

func (o *MediaComponentRm) HasTscaiTimeDom() bool

HasTscaiTimeDom returns a boolean if a field has been set.

func (*MediaComponentRm) HasTsnQos

func (o *MediaComponentRm) HasTsnQos() bool

HasTsnQos returns a boolean if a field has been set.

func (MediaComponentRm) MarshalJSON

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

func (*MediaComponentRm) SetAfAppId

func (o *MediaComponentRm) SetAfAppId(v string)

SetAfAppId gets a reference to the given string and assigns it to the AfAppId field.

func (*MediaComponentRm) SetAfRoutReq

func (o *MediaComponentRm) SetAfRoutReq(v AfRoutingRequirementRm)

SetAfRoutReq gets a reference to the given NullableAfRoutingRequirementRm and assigns it to the AfRoutReq field.

func (*MediaComponentRm) SetAfRoutReqNil

func (o *MediaComponentRm) SetAfRoutReqNil()

SetAfRoutReqNil sets the value for AfRoutReq to be an explicit nil

func (*MediaComponentRm) SetAltSerReqs

func (o *MediaComponentRm) SetAltSerReqs(v []string)

SetAltSerReqs gets a reference to the given []string and assigns it to the AltSerReqs field.

func (*MediaComponentRm) SetAltSerReqsData

func (o *MediaComponentRm) SetAltSerReqsData(v []AlternativeServiceRequirementsData)

SetAltSerReqsData gets a reference to the given []AlternativeServiceRequirementsData and assigns it to the AltSerReqsData field.

func (*MediaComponentRm) SetCodecs

func (o *MediaComponentRm) SetCodecs(v []string)

SetCodecs gets a reference to the given []string and assigns it to the Codecs field.

func (*MediaComponentRm) SetContVer

func (o *MediaComponentRm) SetContVer(v int32)

SetContVer gets a reference to the given int32 and assigns it to the ContVer field.

func (*MediaComponentRm) SetDesMaxLatency

func (o *MediaComponentRm) SetDesMaxLatency(v float32)

SetDesMaxLatency gets a reference to the given NullableFloat32 and assigns it to the DesMaxLatency field.

func (*MediaComponentRm) SetDesMaxLatencyNil

func (o *MediaComponentRm) SetDesMaxLatencyNil()

SetDesMaxLatencyNil sets the value for DesMaxLatency to be an explicit nil

func (*MediaComponentRm) SetDesMaxLoss

func (o *MediaComponentRm) SetDesMaxLoss(v float32)

SetDesMaxLoss gets a reference to the given NullableFloat32 and assigns it to the DesMaxLoss field.

func (*MediaComponentRm) SetDesMaxLossNil

func (o *MediaComponentRm) SetDesMaxLossNil()

SetDesMaxLossNil sets the value for DesMaxLoss to be an explicit nil

func (*MediaComponentRm) SetDisUeNotif

func (o *MediaComponentRm) SetDisUeNotif(v bool)

SetDisUeNotif gets a reference to the given bool and assigns it to the DisUeNotif field.

func (*MediaComponentRm) SetFStatus

func (o *MediaComponentRm) SetFStatus(v FlowStatus)

SetFStatus gets a reference to the given FlowStatus and assigns it to the FStatus field.

func (*MediaComponentRm) SetFlusId

func (o *MediaComponentRm) SetFlusId(v string)

SetFlusId gets a reference to the given NullableString and assigns it to the FlusId field.

func (*MediaComponentRm) SetFlusIdNil

func (o *MediaComponentRm) SetFlusIdNil()

SetFlusIdNil sets the value for FlusId to be an explicit nil

func (*MediaComponentRm) SetMarBwDl

func (o *MediaComponentRm) SetMarBwDl(v string)

SetMarBwDl gets a reference to the given NullableString and assigns it to the MarBwDl field.

func (*MediaComponentRm) SetMarBwDlNil

func (o *MediaComponentRm) SetMarBwDlNil()

SetMarBwDlNil sets the value for MarBwDl to be an explicit nil

func (*MediaComponentRm) SetMarBwUl

func (o *MediaComponentRm) SetMarBwUl(v string)

SetMarBwUl gets a reference to the given NullableString and assigns it to the MarBwUl field.

func (*MediaComponentRm) SetMarBwUlNil

func (o *MediaComponentRm) SetMarBwUlNil()

SetMarBwUlNil sets the value for MarBwUl to be an explicit nil

func (*MediaComponentRm) SetMaxPacketLossRateDl

func (o *MediaComponentRm) SetMaxPacketLossRateDl(v int32)

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

func (*MediaComponentRm) SetMaxPacketLossRateDlNil

func (o *MediaComponentRm) SetMaxPacketLossRateDlNil()

SetMaxPacketLossRateDlNil sets the value for MaxPacketLossRateDl to be an explicit nil

func (*MediaComponentRm) SetMaxPacketLossRateUl

func (o *MediaComponentRm) SetMaxPacketLossRateUl(v int32)

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

func (*MediaComponentRm) SetMaxPacketLossRateUlNil

func (o *MediaComponentRm) SetMaxPacketLossRateUlNil()

SetMaxPacketLossRateUlNil sets the value for MaxPacketLossRateUl to be an explicit nil

func (*MediaComponentRm) SetMaxSuppBwDl

func (o *MediaComponentRm) SetMaxSuppBwDl(v string)

SetMaxSuppBwDl gets a reference to the given NullableString and assigns it to the MaxSuppBwDl field.

func (*MediaComponentRm) SetMaxSuppBwDlNil

func (o *MediaComponentRm) SetMaxSuppBwDlNil()

SetMaxSuppBwDlNil sets the value for MaxSuppBwDl to be an explicit nil

func (*MediaComponentRm) SetMaxSuppBwUl

func (o *MediaComponentRm) SetMaxSuppBwUl(v string)

SetMaxSuppBwUl gets a reference to the given NullableString and assigns it to the MaxSuppBwUl field.

func (*MediaComponentRm) SetMaxSuppBwUlNil

func (o *MediaComponentRm) SetMaxSuppBwUlNil()

SetMaxSuppBwUlNil sets the value for MaxSuppBwUl to be an explicit nil

func (*MediaComponentRm) SetMedCompN

func (o *MediaComponentRm) SetMedCompN(v int32)

SetMedCompN sets field value

func (*MediaComponentRm) SetMedSubComps

func (o *MediaComponentRm) SetMedSubComps(v map[string]MediaSubComponentRm)

SetMedSubComps gets a reference to the given map[string]MediaSubComponentRm and assigns it to the MedSubComps field.

func (*MediaComponentRm) SetMedType

func (o *MediaComponentRm) SetMedType(v MediaType)

SetMedType gets a reference to the given MediaType and assigns it to the MedType field.

func (*MediaComponentRm) SetMinDesBwDl

func (o *MediaComponentRm) SetMinDesBwDl(v string)

SetMinDesBwDl gets a reference to the given NullableString and assigns it to the MinDesBwDl field.

func (*MediaComponentRm) SetMinDesBwDlNil

func (o *MediaComponentRm) SetMinDesBwDlNil()

SetMinDesBwDlNil sets the value for MinDesBwDl to be an explicit nil

func (*MediaComponentRm) SetMinDesBwUl

func (o *MediaComponentRm) SetMinDesBwUl(v string)

SetMinDesBwUl gets a reference to the given NullableString and assigns it to the MinDesBwUl field.

func (*MediaComponentRm) SetMinDesBwUlNil

func (o *MediaComponentRm) SetMinDesBwUlNil()

SetMinDesBwUlNil sets the value for MinDesBwUl to be an explicit nil

func (*MediaComponentRm) SetMirBwDl

func (o *MediaComponentRm) SetMirBwDl(v string)

SetMirBwDl gets a reference to the given NullableString and assigns it to the MirBwDl field.

func (*MediaComponentRm) SetMirBwDlNil

func (o *MediaComponentRm) SetMirBwDlNil()

SetMirBwDlNil sets the value for MirBwDl to be an explicit nil

func (*MediaComponentRm) SetMirBwUl

func (o *MediaComponentRm) SetMirBwUl(v string)

SetMirBwUl gets a reference to the given NullableString and assigns it to the MirBwUl field.

func (*MediaComponentRm) SetMirBwUlNil

func (o *MediaComponentRm) SetMirBwUlNil()

SetMirBwUlNil sets the value for MirBwUl to be an explicit nil

func (*MediaComponentRm) SetPreemptCap

func (o *MediaComponentRm) SetPreemptCap(v PreemptionCapabilityRm)

SetPreemptCap gets a reference to the given PreemptionCapabilityRm and assigns it to the PreemptCap field.

func (*MediaComponentRm) SetPreemptVuln

func (o *MediaComponentRm) SetPreemptVuln(v PreemptionVulnerabilityRm)

SetPreemptVuln gets a reference to the given PreemptionVulnerabilityRm and assigns it to the PreemptVuln field.

func (*MediaComponentRm) SetPrioSharingInd

func (o *MediaComponentRm) SetPrioSharingInd(v PrioritySharingIndicator)

SetPrioSharingInd gets a reference to the given PrioritySharingIndicator and assigns it to the PrioSharingInd field.

func (*MediaComponentRm) SetQosReference

func (o *MediaComponentRm) SetQosReference(v string)

SetQosReference gets a reference to the given NullableString and assigns it to the QosReference field.

func (*MediaComponentRm) SetQosReferenceNil

func (o *MediaComponentRm) SetQosReferenceNil()

SetQosReferenceNil sets the value for QosReference to be an explicit nil

func (*MediaComponentRm) SetResPrio

func (o *MediaComponentRm) SetResPrio(v ReservPriority)

SetResPrio gets a reference to the given ReservPriority and assigns it to the ResPrio field.

func (*MediaComponentRm) SetRrBw

func (o *MediaComponentRm) SetRrBw(v string)

SetRrBw gets a reference to the given NullableString and assigns it to the RrBw field.

func (*MediaComponentRm) SetRrBwNil

func (o *MediaComponentRm) SetRrBwNil()

SetRrBwNil sets the value for RrBw to be an explicit nil

func (*MediaComponentRm) SetRsBw

func (o *MediaComponentRm) SetRsBw(v string)

SetRsBw gets a reference to the given NullableString and assigns it to the RsBw field.

func (*MediaComponentRm) SetRsBwNil

func (o *MediaComponentRm) SetRsBwNil()

SetRsBwNil sets the value for RsBw to be an explicit nil

func (*MediaComponentRm) SetSharingKeyDl

func (o *MediaComponentRm) SetSharingKeyDl(v int32)

SetSharingKeyDl gets a reference to the given NullableInt32 and assigns it to the SharingKeyDl field.

func (*MediaComponentRm) SetSharingKeyDlNil

func (o *MediaComponentRm) SetSharingKeyDlNil()

SetSharingKeyDlNil sets the value for SharingKeyDl to be an explicit nil

func (*MediaComponentRm) SetSharingKeyUl

func (o *MediaComponentRm) SetSharingKeyUl(v int32)

SetSharingKeyUl gets a reference to the given NullableInt32 and assigns it to the SharingKeyUl field.

func (*MediaComponentRm) SetSharingKeyUlNil

func (o *MediaComponentRm) SetSharingKeyUlNil()

SetSharingKeyUlNil sets the value for SharingKeyUl to be an explicit nil

func (*MediaComponentRm) SetTscaiInputDl

func (o *MediaComponentRm) SetTscaiInputDl(v TscaiInputContainer)

SetTscaiInputDl gets a reference to the given NullableTscaiInputContainer and assigns it to the TscaiInputDl field.

func (*MediaComponentRm) SetTscaiInputDlNil

func (o *MediaComponentRm) SetTscaiInputDlNil()

SetTscaiInputDlNil sets the value for TscaiInputDl to be an explicit nil

func (*MediaComponentRm) SetTscaiInputUl

func (o *MediaComponentRm) SetTscaiInputUl(v TscaiInputContainer)

SetTscaiInputUl gets a reference to the given NullableTscaiInputContainer and assigns it to the TscaiInputUl field.

func (*MediaComponentRm) SetTscaiInputUlNil

func (o *MediaComponentRm) SetTscaiInputUlNil()

SetTscaiInputUlNil sets the value for TscaiInputUl to be an explicit nil

func (*MediaComponentRm) SetTscaiTimeDom

func (o *MediaComponentRm) SetTscaiTimeDom(v int32)

SetTscaiTimeDom gets a reference to the given int32 and assigns it to the TscaiTimeDom field.

func (*MediaComponentRm) SetTsnQos

func (o *MediaComponentRm) SetTsnQos(v TsnQosContainerRm)

SetTsnQos gets a reference to the given NullableTsnQosContainerRm and assigns it to the TsnQos field.

func (*MediaComponentRm) SetTsnQosNil

func (o *MediaComponentRm) SetTsnQosNil()

SetTsnQosNil sets the value for TsnQos to be an explicit nil

func (MediaComponentRm) ToMap

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

func (*MediaComponentRm) UnsetAfRoutReq

func (o *MediaComponentRm) UnsetAfRoutReq()

UnsetAfRoutReq ensures that no value is present for AfRoutReq, not even an explicit nil

func (*MediaComponentRm) UnsetDesMaxLatency

func (o *MediaComponentRm) UnsetDesMaxLatency()

UnsetDesMaxLatency ensures that no value is present for DesMaxLatency, not even an explicit nil

func (*MediaComponentRm) UnsetDesMaxLoss

func (o *MediaComponentRm) UnsetDesMaxLoss()

UnsetDesMaxLoss ensures that no value is present for DesMaxLoss, not even an explicit nil

func (*MediaComponentRm) UnsetFlusId

func (o *MediaComponentRm) UnsetFlusId()

UnsetFlusId ensures that no value is present for FlusId, not even an explicit nil

func (*MediaComponentRm) UnsetMarBwDl

func (o *MediaComponentRm) UnsetMarBwDl()

UnsetMarBwDl ensures that no value is present for MarBwDl, not even an explicit nil

func (*MediaComponentRm) UnsetMarBwUl

func (o *MediaComponentRm) UnsetMarBwUl()

UnsetMarBwUl ensures that no value is present for MarBwUl, not even an explicit nil

func (*MediaComponentRm) UnsetMaxPacketLossRateDl

func (o *MediaComponentRm) UnsetMaxPacketLossRateDl()

UnsetMaxPacketLossRateDl ensures that no value is present for MaxPacketLossRateDl, not even an explicit nil

func (*MediaComponentRm) UnsetMaxPacketLossRateUl

func (o *MediaComponentRm) UnsetMaxPacketLossRateUl()

UnsetMaxPacketLossRateUl ensures that no value is present for MaxPacketLossRateUl, not even an explicit nil

func (*MediaComponentRm) UnsetMaxSuppBwDl

func (o *MediaComponentRm) UnsetMaxSuppBwDl()

UnsetMaxSuppBwDl ensures that no value is present for MaxSuppBwDl, not even an explicit nil

func (*MediaComponentRm) UnsetMaxSuppBwUl

func (o *MediaComponentRm) UnsetMaxSuppBwUl()

UnsetMaxSuppBwUl ensures that no value is present for MaxSuppBwUl, not even an explicit nil

func (*MediaComponentRm) UnsetMinDesBwDl

func (o *MediaComponentRm) UnsetMinDesBwDl()

UnsetMinDesBwDl ensures that no value is present for MinDesBwDl, not even an explicit nil

func (*MediaComponentRm) UnsetMinDesBwUl

func (o *MediaComponentRm) UnsetMinDesBwUl()

UnsetMinDesBwUl ensures that no value is present for MinDesBwUl, not even an explicit nil

func (*MediaComponentRm) UnsetMirBwDl

func (o *MediaComponentRm) UnsetMirBwDl()

UnsetMirBwDl ensures that no value is present for MirBwDl, not even an explicit nil

func (*MediaComponentRm) UnsetMirBwUl

func (o *MediaComponentRm) UnsetMirBwUl()

UnsetMirBwUl ensures that no value is present for MirBwUl, not even an explicit nil

func (*MediaComponentRm) UnsetQosReference

func (o *MediaComponentRm) UnsetQosReference()

UnsetQosReference ensures that no value is present for QosReference, not even an explicit nil

func (*MediaComponentRm) UnsetRrBw

func (o *MediaComponentRm) UnsetRrBw()

UnsetRrBw ensures that no value is present for RrBw, not even an explicit nil

func (*MediaComponentRm) UnsetRsBw

func (o *MediaComponentRm) UnsetRsBw()

UnsetRsBw ensures that no value is present for RsBw, not even an explicit nil

func (*MediaComponentRm) UnsetSharingKeyDl

func (o *MediaComponentRm) UnsetSharingKeyDl()

UnsetSharingKeyDl ensures that no value is present for SharingKeyDl, not even an explicit nil

func (*MediaComponentRm) UnsetSharingKeyUl

func (o *MediaComponentRm) UnsetSharingKeyUl()

UnsetSharingKeyUl ensures that no value is present for SharingKeyUl, not even an explicit nil

func (*MediaComponentRm) UnsetTscaiInputDl

func (o *MediaComponentRm) UnsetTscaiInputDl()

UnsetTscaiInputDl ensures that no value is present for TscaiInputDl, not even an explicit nil

func (*MediaComponentRm) UnsetTscaiInputUl

func (o *MediaComponentRm) UnsetTscaiInputUl()

UnsetTscaiInputUl ensures that no value is present for TscaiInputUl, not even an explicit nil

func (*MediaComponentRm) UnsetTsnQos

func (o *MediaComponentRm) UnsetTsnQos()

UnsetTsnQos ensures that no value is present for TsnQos, not even an explicit nil

type MediaSubComponent

type MediaSubComponent struct {
	AfSigProtocol *AfSigProtocol       `json:"afSigProtocol,omitempty"`
	EthfDescs     []EthFlowDescription `json:"ethfDescs,omitempty"`
	FNum          int32                `json:"fNum"`
	FDescs        []string             `json:"fDescs,omitempty"`
	FStatus       *FlowStatus          `json:"fStatus,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MarBwDl *string `json:"marBwDl,omitempty"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MarBwUl *string `json:"marBwUl,omitempty"`
	// 2-octet string, where each octet is encoded in hexadecimal representation. The first octet contains the IPv4 Type-of-Service or the IPv6 Traffic-Class field and the second octet contains the ToS/Traffic Class mask field.
	TosTrCl   *string    `json:"tosTrCl,omitempty"`
	FlowUsage *FlowUsage `json:"flowUsage,omitempty"`
}

MediaSubComponent Identifies a media subcomponent.

func NewMediaSubComponent

func NewMediaSubComponent(fNum int32) *MediaSubComponent

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

func NewMediaSubComponentWithDefaults

func NewMediaSubComponentWithDefaults() *MediaSubComponent

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

func (*MediaSubComponent) GetAfSigProtocol

func (o *MediaSubComponent) GetAfSigProtocol() AfSigProtocol

GetAfSigProtocol returns the AfSigProtocol field value if set, zero value otherwise.

func (*MediaSubComponent) GetAfSigProtocolOk

func (o *MediaSubComponent) GetAfSigProtocolOk() (*AfSigProtocol, bool)

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

func (*MediaSubComponent) GetEthfDescs

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

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

func (*MediaSubComponent) GetEthfDescsOk

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

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

func (*MediaSubComponent) GetFDescs

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

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

func (*MediaSubComponent) GetFDescsOk

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

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

func (*MediaSubComponent) GetFNum

func (o *MediaSubComponent) GetFNum() int32

GetFNum returns the FNum field value

func (*MediaSubComponent) GetFNumOk

func (o *MediaSubComponent) GetFNumOk() (*int32, bool)

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

func (*MediaSubComponent) GetFStatus

func (o *MediaSubComponent) GetFStatus() FlowStatus

GetFStatus returns the FStatus field value if set, zero value otherwise.

func (*MediaSubComponent) GetFStatusOk

func (o *MediaSubComponent) GetFStatusOk() (*FlowStatus, bool)

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

func (*MediaSubComponent) GetFlowUsage

func (o *MediaSubComponent) GetFlowUsage() FlowUsage

GetFlowUsage returns the FlowUsage field value if set, zero value otherwise.

func (*MediaSubComponent) GetFlowUsageOk

func (o *MediaSubComponent) GetFlowUsageOk() (*FlowUsage, bool)

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

func (*MediaSubComponent) GetMarBwDl

func (o *MediaSubComponent) GetMarBwDl() string

GetMarBwDl returns the MarBwDl field value if set, zero value otherwise.

func (*MediaSubComponent) GetMarBwDlOk

func (o *MediaSubComponent) GetMarBwDlOk() (*string, bool)

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

func (*MediaSubComponent) GetMarBwUl

func (o *MediaSubComponent) GetMarBwUl() string

GetMarBwUl returns the MarBwUl field value if set, zero value otherwise.

func (*MediaSubComponent) GetMarBwUlOk

func (o *MediaSubComponent) GetMarBwUlOk() (*string, bool)

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

func (*MediaSubComponent) GetTosTrCl

func (o *MediaSubComponent) GetTosTrCl() string

GetTosTrCl returns the TosTrCl field value if set, zero value otherwise.

func (*MediaSubComponent) GetTosTrClOk

func (o *MediaSubComponent) GetTosTrClOk() (*string, bool)

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

func (*MediaSubComponent) HasAfSigProtocol

func (o *MediaSubComponent) HasAfSigProtocol() bool

HasAfSigProtocol returns a boolean if a field has been set.

func (*MediaSubComponent) HasEthfDescs

func (o *MediaSubComponent) HasEthfDescs() bool

HasEthfDescs returns a boolean if a field has been set.

func (*MediaSubComponent) HasFDescs

func (o *MediaSubComponent) HasFDescs() bool

HasFDescs returns a boolean if a field has been set.

func (*MediaSubComponent) HasFStatus

func (o *MediaSubComponent) HasFStatus() bool

HasFStatus returns a boolean if a field has been set.

func (*MediaSubComponent) HasFlowUsage

func (o *MediaSubComponent) HasFlowUsage() bool

HasFlowUsage returns a boolean if a field has been set.

func (*MediaSubComponent) HasMarBwDl

func (o *MediaSubComponent) HasMarBwDl() bool

HasMarBwDl returns a boolean if a field has been set.

func (*MediaSubComponent) HasMarBwUl

func (o *MediaSubComponent) HasMarBwUl() bool

HasMarBwUl returns a boolean if a field has been set.

func (*MediaSubComponent) HasTosTrCl

func (o *MediaSubComponent) HasTosTrCl() bool

HasTosTrCl returns a boolean if a field has been set.

func (MediaSubComponent) MarshalJSON

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

func (*MediaSubComponent) SetAfSigProtocol

func (o *MediaSubComponent) SetAfSigProtocol(v AfSigProtocol)

SetAfSigProtocol gets a reference to the given AfSigProtocol and assigns it to the AfSigProtocol field.

func (*MediaSubComponent) SetEthfDescs

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

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

func (*MediaSubComponent) SetFDescs

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

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

func (*MediaSubComponent) SetFNum

func (o *MediaSubComponent) SetFNum(v int32)

SetFNum sets field value

func (*MediaSubComponent) SetFStatus

func (o *MediaSubComponent) SetFStatus(v FlowStatus)

SetFStatus gets a reference to the given FlowStatus and assigns it to the FStatus field.

func (*MediaSubComponent) SetFlowUsage

func (o *MediaSubComponent) SetFlowUsage(v FlowUsage)

SetFlowUsage gets a reference to the given FlowUsage and assigns it to the FlowUsage field.

func (*MediaSubComponent) SetMarBwDl

func (o *MediaSubComponent) SetMarBwDl(v string)

SetMarBwDl gets a reference to the given string and assigns it to the MarBwDl field.

func (*MediaSubComponent) SetMarBwUl

func (o *MediaSubComponent) SetMarBwUl(v string)

SetMarBwUl gets a reference to the given string and assigns it to the MarBwUl field.

func (*MediaSubComponent) SetTosTrCl

func (o *MediaSubComponent) SetTosTrCl(v string)

SetTosTrCl gets a reference to the given string and assigns it to the TosTrCl field.

func (MediaSubComponent) ToMap

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

type MediaSubComponentRm

type MediaSubComponentRm struct {
	AfSigProtocol *AfSigProtocol       `json:"afSigProtocol,omitempty"`
	EthfDescs     []EthFlowDescription `json:"ethfDescs,omitempty"`
	FNum          int32                `json:"fNum"`
	FDescs        []string             `json:"fDescs,omitempty"`
	FStatus       *FlowStatus          `json:"fStatus,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MarBwDl NullableString `json:"marBwDl,omitempty"`
	// This data type is defined in the same way as the 'BitRate' data type, but with the OpenAPI 'nullable: true' property.
	MarBwUl NullableString `json:"marBwUl,omitempty"`
	// This data type is defined in the same way as the TosTrafficClass data type, but with the OpenAPI nullable property set to true.
	TosTrCl   NullableString `json:"tosTrCl,omitempty"`
	FlowUsage *FlowUsage     `json:"flowUsage,omitempty"`
}

MediaSubComponentRm This data type is defined in the same way as the MediaSubComponent data type, but with the OpenAPI nullable property set to true. Removable attributes marBwDl and marBwUl are defined with the corresponding removable data type.

func NewMediaSubComponentRm

func NewMediaSubComponentRm(fNum int32) *MediaSubComponentRm

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

func NewMediaSubComponentRmWithDefaults

func NewMediaSubComponentRmWithDefaults() *MediaSubComponentRm

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

func (*MediaSubComponentRm) GetAfSigProtocol

func (o *MediaSubComponentRm) GetAfSigProtocol() AfSigProtocol

GetAfSigProtocol returns the AfSigProtocol field value if set, zero value otherwise.

func (*MediaSubComponentRm) GetAfSigProtocolOk

func (o *MediaSubComponentRm) GetAfSigProtocolOk() (*AfSigProtocol, bool)

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

func (*MediaSubComponentRm) GetEthfDescs

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

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

func (*MediaSubComponentRm) GetEthfDescsOk

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

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

func (*MediaSubComponentRm) GetFDescs

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

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

func (*MediaSubComponentRm) GetFDescsOk

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

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

func (*MediaSubComponentRm) GetFNum

func (o *MediaSubComponentRm) GetFNum() int32

GetFNum returns the FNum field value

func (*MediaSubComponentRm) GetFNumOk

func (o *MediaSubComponentRm) GetFNumOk() (*int32, bool)

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

func (*MediaSubComponentRm) GetFStatus

func (o *MediaSubComponentRm) GetFStatus() FlowStatus

GetFStatus returns the FStatus field value if set, zero value otherwise.

func (*MediaSubComponentRm) GetFStatusOk

func (o *MediaSubComponentRm) GetFStatusOk() (*FlowStatus, bool)

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

func (*MediaSubComponentRm) GetFlowUsage

func (o *MediaSubComponentRm) GetFlowUsage() FlowUsage

GetFlowUsage returns the FlowUsage field value if set, zero value otherwise.

func (*MediaSubComponentRm) GetFlowUsageOk

func (o *MediaSubComponentRm) GetFlowUsageOk() (*FlowUsage, bool)

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

func (*MediaSubComponentRm) GetMarBwDl

func (o *MediaSubComponentRm) GetMarBwDl() string

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

func (*MediaSubComponentRm) GetMarBwDlOk

func (o *MediaSubComponentRm) GetMarBwDlOk() (*string, bool)

GetMarBwDlOk returns a tuple with the MarBwDl 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 (*MediaSubComponentRm) GetMarBwUl

func (o *MediaSubComponentRm) GetMarBwUl() string

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

func (*MediaSubComponentRm) GetMarBwUlOk

func (o *MediaSubComponentRm) GetMarBwUlOk() (*string, bool)

GetMarBwUlOk returns a tuple with the MarBwUl 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 (*MediaSubComponentRm) GetTosTrCl

func (o *MediaSubComponentRm) GetTosTrCl() string

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

func (*MediaSubComponentRm) GetTosTrClOk

func (o *MediaSubComponentRm) GetTosTrClOk() (*string, bool)

GetTosTrClOk returns a tuple with the TosTrCl 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 (*MediaSubComponentRm) HasAfSigProtocol

func (o *MediaSubComponentRm) HasAfSigProtocol() bool

HasAfSigProtocol returns a boolean if a field has been set.

func (*MediaSubComponentRm) HasEthfDescs

func (o *MediaSubComponentRm) HasEthfDescs() bool

HasEthfDescs returns a boolean if a field has been set.

func (*MediaSubComponentRm) HasFDescs

func (o *MediaSubComponentRm) HasFDescs() bool

HasFDescs returns a boolean if a field has been set.

func (*MediaSubComponentRm) HasFStatus

func (o *MediaSubComponentRm) HasFStatus() bool

HasFStatus returns a boolean if a field has been set.

func (*MediaSubComponentRm) HasFlowUsage

func (o *MediaSubComponentRm) HasFlowUsage() bool

HasFlowUsage returns a boolean if a field has been set.

func (*MediaSubComponentRm) HasMarBwDl

func (o *MediaSubComponentRm) HasMarBwDl() bool

HasMarBwDl returns a boolean if a field has been set.

func (*MediaSubComponentRm) HasMarBwUl

func (o *MediaSubComponentRm) HasMarBwUl() bool

HasMarBwUl returns a boolean if a field has been set.

func (*MediaSubComponentRm) HasTosTrCl

func (o *MediaSubComponentRm) HasTosTrCl() bool

HasTosTrCl returns a boolean if a field has been set.

func (MediaSubComponentRm) MarshalJSON

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

func (*MediaSubComponentRm) SetAfSigProtocol

func (o *MediaSubComponentRm) SetAfSigProtocol(v AfSigProtocol)

SetAfSigProtocol gets a reference to the given AfSigProtocol and assigns it to the AfSigProtocol field.

func (*MediaSubComponentRm) SetEthfDescs

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

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

func (*MediaSubComponentRm) SetFDescs

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

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

func (*MediaSubComponentRm) SetFNum

func (o *MediaSubComponentRm) SetFNum(v int32)

SetFNum sets field value

func (*MediaSubComponentRm) SetFStatus

func (o *MediaSubComponentRm) SetFStatus(v FlowStatus)

SetFStatus gets a reference to the given FlowStatus and assigns it to the FStatus field.

func (*MediaSubComponentRm) SetFlowUsage

func (o *MediaSubComponentRm) SetFlowUsage(v FlowUsage)

SetFlowUsage gets a reference to the given FlowUsage and assigns it to the FlowUsage field.

func (*MediaSubComponentRm) SetMarBwDl

func (o *MediaSubComponentRm) SetMarBwDl(v string)

SetMarBwDl gets a reference to the given NullableString and assigns it to the MarBwDl field.

func (*MediaSubComponentRm) SetMarBwDlNil

func (o *MediaSubComponentRm) SetMarBwDlNil()

SetMarBwDlNil sets the value for MarBwDl to be an explicit nil

func (*MediaSubComponentRm) SetMarBwUl

func (o *MediaSubComponentRm) SetMarBwUl(v string)

SetMarBwUl gets a reference to the given NullableString and assigns it to the MarBwUl field.

func (*MediaSubComponentRm) SetMarBwUlNil

func (o *MediaSubComponentRm) SetMarBwUlNil()

SetMarBwUlNil sets the value for MarBwUl to be an explicit nil

func (*MediaSubComponentRm) SetTosTrCl

func (o *MediaSubComponentRm) SetTosTrCl(v string)

SetTosTrCl gets a reference to the given NullableString and assigns it to the TosTrCl field.

func (*MediaSubComponentRm) SetTosTrClNil

func (o *MediaSubComponentRm) SetTosTrClNil()

SetTosTrClNil sets the value for TosTrCl to be an explicit nil

func (MediaSubComponentRm) ToMap

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

func (*MediaSubComponentRm) UnsetMarBwDl

func (o *MediaSubComponentRm) UnsetMarBwDl()

UnsetMarBwDl ensures that no value is present for MarBwDl, not even an explicit nil

func (*MediaSubComponentRm) UnsetMarBwUl

func (o *MediaSubComponentRm) UnsetMarBwUl()

UnsetMarBwUl ensures that no value is present for MarBwUl, not even an explicit nil

func (*MediaSubComponentRm) UnsetTosTrCl

func (o *MediaSubComponentRm) UnsetTosTrCl()

UnsetTosTrCl ensures that no value is present for TosTrCl, not even an explicit nil

type MediaType

type MediaType struct {
	String *string
}

MediaType Indicates the media type of a media component.

func (*MediaType) MarshalJSON

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

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

func (*MediaType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MpsAction

type MpsAction struct {
	String *string
}

MpsAction Indicates whether it is an invocation, a revocation or an invocation with authorization of the MPS for DTS service.

func (*MpsAction) MarshalJSON

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

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

func (*MpsAction) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type N3gaLocation

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

N3gaLocation Contains the Non-3GPP access user location.

func NewN3gaLocation

func NewN3gaLocation() *N3gaLocation

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

func NewN3gaLocationWithDefaults

func NewN3gaLocationWithDefaults() *N3gaLocation

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

func (*N3gaLocation) GetGci

func (o *N3gaLocation) GetGci() string

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

func (*N3gaLocation) GetGciOk

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

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

func (*N3gaLocation) GetGli

func (o *N3gaLocation) GetGli() string

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

func (*N3gaLocation) GetGliOk

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

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

func (*N3gaLocation) GetHfcNodeId

func (o *N3gaLocation) GetHfcNodeId() HfcNodeId

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

func (*N3gaLocation) GetHfcNodeIdOk

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

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

func (*N3gaLocation) GetN3IwfId

func (o *N3gaLocation) GetN3IwfId() string

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

func (*N3gaLocation) GetN3IwfIdOk

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

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

func (*N3gaLocation) GetN3gppTai

func (o *N3gaLocation) GetN3gppTai() Tai

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

func (*N3gaLocation) GetN3gppTaiOk

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

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

func (*N3gaLocation) GetPortNumber

func (o *N3gaLocation) GetPortNumber() int32

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

func (*N3gaLocation) GetPortNumberOk

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

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

func (*N3gaLocation) GetProtocol

func (o *N3gaLocation) GetProtocol() TransportProtocol

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

func (*N3gaLocation) GetProtocolOk

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

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

func (*N3gaLocation) GetTnapId

func (o *N3gaLocation) GetTnapId() TnapId

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

func (*N3gaLocation) GetTnapIdOk

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

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

func (*N3gaLocation) GetTwapId

func (o *N3gaLocation) GetTwapId() TwapId

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

func (*N3gaLocation) GetTwapIdOk

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

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

func (*N3gaLocation) GetUeIpv4Addr

func (o *N3gaLocation) GetUeIpv4Addr() string

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

func (*N3gaLocation) GetUeIpv4AddrOk

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

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

func (*N3gaLocation) GetUeIpv6Addr

func (o *N3gaLocation) GetUeIpv6Addr() Ipv6Addr

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

func (*N3gaLocation) GetUeIpv6AddrOk

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

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

func (*N3gaLocation) GetW5gbanLineType

func (o *N3gaLocation) GetW5gbanLineType() LineType

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

func (*N3gaLocation) GetW5gbanLineTypeOk

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

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

func (*N3gaLocation) HasGci

func (o *N3gaLocation) HasGci() bool

HasGci returns a boolean if a field has been set.

func (*N3gaLocation) HasGli

func (o *N3gaLocation) HasGli() bool

HasGli returns a boolean if a field has been set.

func (*N3gaLocation) HasHfcNodeId

func (o *N3gaLocation) HasHfcNodeId() bool

HasHfcNodeId returns a boolean if a field has been set.

func (*N3gaLocation) HasN3IwfId

func (o *N3gaLocation) HasN3IwfId() bool

HasN3IwfId returns a boolean if a field has been set.

func (*N3gaLocation) HasN3gppTai

func (o *N3gaLocation) HasN3gppTai() bool

HasN3gppTai returns a boolean if a field has been set.

func (*N3gaLocation) HasPortNumber

func (o *N3gaLocation) HasPortNumber() bool

HasPortNumber returns a boolean if a field has been set.

func (*N3gaLocation) HasProtocol

func (o *N3gaLocation) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*N3gaLocation) HasTnapId

func (o *N3gaLocation) HasTnapId() bool

HasTnapId returns a boolean if a field has been set.

func (*N3gaLocation) HasTwapId

func (o *N3gaLocation) HasTwapId() bool

HasTwapId returns a boolean if a field has been set.

func (*N3gaLocation) HasUeIpv4Addr

func (o *N3gaLocation) HasUeIpv4Addr() bool

HasUeIpv4Addr returns a boolean if a field has been set.

func (*N3gaLocation) HasUeIpv6Addr

func (o *N3gaLocation) HasUeIpv6Addr() bool

HasUeIpv6Addr returns a boolean if a field has been set.

func (*N3gaLocation) HasW5gbanLineType

func (o *N3gaLocation) HasW5gbanLineType() bool

HasW5gbanLineType returns a boolean if a field has been set.

func (N3gaLocation) MarshalJSON

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

func (*N3gaLocation) SetGci

func (o *N3gaLocation) SetGci(v string)

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

func (*N3gaLocation) SetGli

func (o *N3gaLocation) SetGli(v string)

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

func (*N3gaLocation) SetHfcNodeId

func (o *N3gaLocation) SetHfcNodeId(v HfcNodeId)

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

func (*N3gaLocation) SetN3IwfId

func (o *N3gaLocation) SetN3IwfId(v string)

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

func (*N3gaLocation) SetN3gppTai

func (o *N3gaLocation) SetN3gppTai(v Tai)

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

func (*N3gaLocation) SetPortNumber

func (o *N3gaLocation) SetPortNumber(v int32)

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

func (*N3gaLocation) SetProtocol

func (o *N3gaLocation) SetProtocol(v TransportProtocol)

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

func (*N3gaLocation) SetTnapId

func (o *N3gaLocation) SetTnapId(v TnapId)

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

func (*N3gaLocation) SetTwapId

func (o *N3gaLocation) SetTwapId(v TwapId)

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

func (*N3gaLocation) SetUeIpv4Addr

func (o *N3gaLocation) SetUeIpv4Addr(v string)

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

func (*N3gaLocation) SetUeIpv6Addr

func (o *N3gaLocation) SetUeIpv6Addr(v Ipv6Addr)

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

func (*N3gaLocation) SetW5gbanLineType

func (o *N3gaLocation) SetW5gbanLineType(v LineType)

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

func (N3gaLocation) ToMap

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

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

type NetLocAccessSupport struct {
	String *string
}

NetLocAccessSupport Possible values are - ANR_NOT_SUPPORTED: Indicates that the access network does not support the report of access network information. - TZR_NOT_SUPPORTED: Indicates that the access network does not support the report of UE time zone. - LOC_NOT_SUPPORTED: Indicates that the access network does not support the report of UE Location (or PLMN Id).

func (*NetLocAccessSupport) MarshalJSON

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

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

func (*NetLocAccessSupport) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NgApCause

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

NgApCause Represents the NGAP cause.

func NewNgApCause

func NewNgApCause(group int32, value int32) *NgApCause

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

func NewNgApCauseWithDefaults

func NewNgApCauseWithDefaults() *NgApCause

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

func (*NgApCause) GetGroup

func (o *NgApCause) GetGroup() int32

GetGroup returns the Group field value

func (*NgApCause) GetGroupOk

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

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

func (*NgApCause) GetValue

func (o *NgApCause) GetValue() int32

GetValue returns the Value field value

func (*NgApCause) GetValueOk

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

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

func (NgApCause) MarshalJSON

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

func (*NgApCause) SetGroup

func (o *NgApCause) SetGroup(v int32)

SetGroup sets field value

func (*NgApCause) SetValue

func (o *NgApCause) SetValue(v int32)

SetValue sets field value

func (NgApCause) ToMap

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

type NrLocation

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

NrLocation Contains the NR user location.

func NewNrLocation

func NewNrLocation(tai Tai, ncgi Ncgi) *NrLocation

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

func NewNrLocationWithDefaults

func NewNrLocationWithDefaults() *NrLocation

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

func (*NrLocation) GetAgeOfLocationInformation

func (o *NrLocation) GetAgeOfLocationInformation() int32

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

func (*NrLocation) GetAgeOfLocationInformationOk

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

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

func (*NrLocation) GetGeodeticInformation

func (o *NrLocation) GetGeodeticInformation() string

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

func (*NrLocation) GetGeodeticInformationOk

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

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

func (*NrLocation) GetGeographicalInformation

func (o *NrLocation) GetGeographicalInformation() string

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

func (*NrLocation) GetGeographicalInformationOk

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

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

func (*NrLocation) GetGlobalGnbId

func (o *NrLocation) GetGlobalGnbId() GlobalRanNodeId

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

func (*NrLocation) GetGlobalGnbIdOk

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

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

func (*NrLocation) GetIgnoreNcgi

func (o *NrLocation) GetIgnoreNcgi() bool

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

func (*NrLocation) GetIgnoreNcgiOk

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

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

func (*NrLocation) GetNcgi

func (o *NrLocation) GetNcgi() Ncgi

GetNcgi returns the Ncgi field value

func (*NrLocation) GetNcgiOk

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

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

func (*NrLocation) GetTai

func (o *NrLocation) GetTai() Tai

GetTai returns the Tai field value

func (*NrLocation) GetTaiOk

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

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

func (*NrLocation) GetUeLocationTimestamp

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

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

func (*NrLocation) GetUeLocationTimestampOk

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

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

func (*NrLocation) HasAgeOfLocationInformation

func (o *NrLocation) HasAgeOfLocationInformation() bool

HasAgeOfLocationInformation returns a boolean if a field has been set.

func (*NrLocation) HasGeodeticInformation

func (o *NrLocation) HasGeodeticInformation() bool

HasGeodeticInformation returns a boolean if a field has been set.

func (*NrLocation) HasGeographicalInformation

func (o *NrLocation) HasGeographicalInformation() bool

HasGeographicalInformation returns a boolean if a field has been set.

func (*NrLocation) HasGlobalGnbId

func (o *NrLocation) HasGlobalGnbId() bool

HasGlobalGnbId returns a boolean if a field has been set.

func (*NrLocation) HasIgnoreNcgi

func (o *NrLocation) HasIgnoreNcgi() bool

HasIgnoreNcgi returns a boolean if a field has been set.

func (*NrLocation) HasUeLocationTimestamp

func (o *NrLocation) HasUeLocationTimestamp() bool

HasUeLocationTimestamp returns a boolean if a field has been set.

func (NrLocation) MarshalJSON

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

func (*NrLocation) SetAgeOfLocationInformation

func (o *NrLocation) SetAgeOfLocationInformation(v int32)

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

func (*NrLocation) SetGeodeticInformation

func (o *NrLocation) SetGeodeticInformation(v string)

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

func (*NrLocation) SetGeographicalInformation

func (o *NrLocation) SetGeographicalInformation(v string)

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

func (*NrLocation) SetGlobalGnbId

func (o *NrLocation) SetGlobalGnbId(v GlobalRanNodeId)

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

func (*NrLocation) SetIgnoreNcgi

func (o *NrLocation) SetIgnoreNcgi(v bool)

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

func (*NrLocation) SetNcgi

func (o *NrLocation) SetNcgi(v Ncgi)

SetNcgi sets field value

func (*NrLocation) SetTai

func (o *NrLocation) SetTai(v Tai)

SetTai sets field value

func (*NrLocation) SetUeLocationTimestamp

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

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

func (NrLocation) ToMap

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

type NullValue

type NullValue string

NullValue JSON's null value.

const (
	NULL NullValue = "null"
)

List of NullValue

func NewNullValueFromValue

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

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

func (NullValue) IsValid

func (v NullValue) IsValid() bool

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

func (NullValue) Ptr

func (v NullValue) Ptr() *NullValue

Ptr returns reference to NullValue value

func (*NullValue) UnmarshalJSON

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

type NullableAccNetChargingAddress

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

func (NullableAccNetChargingAddress) Get

func (NullableAccNetChargingAddress) IsSet

func (NullableAccNetChargingAddress) MarshalJSON

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

func (*NullableAccNetChargingAddress) Set

func (*NullableAccNetChargingAddress) UnmarshalJSON

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

func (*NullableAccNetChargingAddress) Unset

func (v *NullableAccNetChargingAddress) Unset()

type NullableAcceptableServiceInfo

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

func (NullableAcceptableServiceInfo) Get

func (NullableAcceptableServiceInfo) IsSet

func (NullableAcceptableServiceInfo) MarshalJSON

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

func (*NullableAcceptableServiceInfo) Set

func (*NullableAcceptableServiceInfo) UnmarshalJSON

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

func (*NullableAcceptableServiceInfo) Unset

func (v *NullableAcceptableServiceInfo) Unset()

type NullableAccessNetChargingIdentifier

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

func (NullableAccessNetChargingIdentifier) Get

func (NullableAccessNetChargingIdentifier) IsSet

func (NullableAccessNetChargingIdentifier) MarshalJSON

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

func (*NullableAccessNetChargingIdentifier) Set

func (*NullableAccessNetChargingIdentifier) UnmarshalJSON

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

func (*NullableAccessNetChargingIdentifier) Unset

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 NullableAccumulatedUsage

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

func NewNullableAccumulatedUsage

func NewNullableAccumulatedUsage(val *AccumulatedUsage) *NullableAccumulatedUsage

func (NullableAccumulatedUsage) Get

func (NullableAccumulatedUsage) IsSet

func (v NullableAccumulatedUsage) IsSet() bool

func (NullableAccumulatedUsage) MarshalJSON

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

func (*NullableAccumulatedUsage) Set

func (*NullableAccumulatedUsage) UnmarshalJSON

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

func (*NullableAccumulatedUsage) Unset

func (v *NullableAccumulatedUsage) Unset()

type NullableAdditionalAccessInfo

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

func NewNullableAdditionalAccessInfo

func NewNullableAdditionalAccessInfo(val *AdditionalAccessInfo) *NullableAdditionalAccessInfo

func (NullableAdditionalAccessInfo) Get

func (NullableAdditionalAccessInfo) IsSet

func (NullableAdditionalAccessInfo) MarshalJSON

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

func (*NullableAdditionalAccessInfo) Set

func (*NullableAdditionalAccessInfo) UnmarshalJSON

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

func (*NullableAdditionalAccessInfo) Unset

func (v *NullableAdditionalAccessInfo) Unset()

type NullableAfEvent

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

func NewNullableAfEvent

func NewNullableAfEvent(val *AfEvent) *NullableAfEvent

func (NullableAfEvent) Get

func (v NullableAfEvent) Get() *AfEvent

func (NullableAfEvent) IsSet

func (v NullableAfEvent) IsSet() bool

func (NullableAfEvent) MarshalJSON

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

func (*NullableAfEvent) Set

func (v *NullableAfEvent) Set(val *AfEvent)

func (*NullableAfEvent) UnmarshalJSON

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

func (*NullableAfEvent) Unset

func (v *NullableAfEvent) Unset()

type NullableAfEventNotification

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

func NewNullableAfEventNotification

func NewNullableAfEventNotification(val *AfEventNotification) *NullableAfEventNotification

func (NullableAfEventNotification) Get

func (NullableAfEventNotification) IsSet

func (NullableAfEventNotification) MarshalJSON

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

func (*NullableAfEventNotification) Set

func (*NullableAfEventNotification) UnmarshalJSON

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

func (*NullableAfEventNotification) Unset

func (v *NullableAfEventNotification) Unset()

type NullableAfEventSubscription

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

func NewNullableAfEventSubscription

func NewNullableAfEventSubscription(val *AfEventSubscription) *NullableAfEventSubscription

func (NullableAfEventSubscription) Get

func (NullableAfEventSubscription) IsSet

func (NullableAfEventSubscription) MarshalJSON

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

func (*NullableAfEventSubscription) Set

func (*NullableAfEventSubscription) UnmarshalJSON

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

func (*NullableAfEventSubscription) Unset

func (v *NullableAfEventSubscription) Unset()

type NullableAfNotifMethod

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

func NewNullableAfNotifMethod

func NewNullableAfNotifMethod(val *AfNotifMethod) *NullableAfNotifMethod

func (NullableAfNotifMethod) Get

func (NullableAfNotifMethod) IsSet

func (v NullableAfNotifMethod) IsSet() bool

func (NullableAfNotifMethod) MarshalJSON

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

func (*NullableAfNotifMethod) Set

func (v *NullableAfNotifMethod) Set(val *AfNotifMethod)

func (*NullableAfNotifMethod) UnmarshalJSON

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

func (*NullableAfNotifMethod) Unset

func (v *NullableAfNotifMethod) Unset()

type NullableAfRequestedData

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

func NewNullableAfRequestedData

func NewNullableAfRequestedData(val *AfRequestedData) *NullableAfRequestedData

func (NullableAfRequestedData) Get

func (NullableAfRequestedData) IsSet

func (v NullableAfRequestedData) IsSet() bool

func (NullableAfRequestedData) MarshalJSON

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

func (*NullableAfRequestedData) Set

func (*NullableAfRequestedData) UnmarshalJSON

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

func (*NullableAfRequestedData) Unset

func (v *NullableAfRequestedData) Unset()

type NullableAfRoutingRequirement

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

func NewNullableAfRoutingRequirement

func NewNullableAfRoutingRequirement(val *AfRoutingRequirement) *NullableAfRoutingRequirement

func (NullableAfRoutingRequirement) Get

func (NullableAfRoutingRequirement) IsSet

func (NullableAfRoutingRequirement) MarshalJSON

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

func (*NullableAfRoutingRequirement) Set

func (*NullableAfRoutingRequirement) UnmarshalJSON

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

func (*NullableAfRoutingRequirement) Unset

func (v *NullableAfRoutingRequirement) Unset()

type NullableAfRoutingRequirementRm

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

func (NullableAfRoutingRequirementRm) Get

func (NullableAfRoutingRequirementRm) IsSet

func (NullableAfRoutingRequirementRm) MarshalJSON

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

func (*NullableAfRoutingRequirementRm) Set

func (*NullableAfRoutingRequirementRm) UnmarshalJSON

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

func (*NullableAfRoutingRequirementRm) Unset

func (v *NullableAfRoutingRequirementRm) Unset()

type NullableAfSigProtocol

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

func NewNullableAfSigProtocol

func NewNullableAfSigProtocol(val *AfSigProtocol) *NullableAfSigProtocol

func (NullableAfSigProtocol) Get

func (NullableAfSigProtocol) IsSet

func (v NullableAfSigProtocol) IsSet() bool

func (NullableAfSigProtocol) MarshalJSON

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

func (*NullableAfSigProtocol) Set

func (v *NullableAfSigProtocol) Set(val *AfSigProtocol)

func (*NullableAfSigProtocol) UnmarshalJSON

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

func (*NullableAfSigProtocol) Unset

func (v *NullableAfSigProtocol) Unset()

type NullableAlternativeServiceRequirementsData

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

func (NullableAlternativeServiceRequirementsData) Get

func (NullableAlternativeServiceRequirementsData) IsSet

func (NullableAlternativeServiceRequirementsData) MarshalJSON

func (*NullableAlternativeServiceRequirementsData) Set

func (*NullableAlternativeServiceRequirementsData) UnmarshalJSON

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

func (*NullableAlternativeServiceRequirementsData) Unset

type NullableAnGwAddress

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

func NewNullableAnGwAddress

func NewNullableAnGwAddress(val *AnGwAddress) *NullableAnGwAddress

func (NullableAnGwAddress) Get

func (NullableAnGwAddress) IsSet

func (v NullableAnGwAddress) IsSet() bool

func (NullableAnGwAddress) MarshalJSON

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

func (*NullableAnGwAddress) Set

func (v *NullableAnGwAddress) Set(val *AnGwAddress)

func (*NullableAnGwAddress) UnmarshalJSON

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

func (*NullableAnGwAddress) Unset

func (v *NullableAnGwAddress) Unset()

type NullableAppDetectionNotifType

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

func (NullableAppDetectionNotifType) Get

func (NullableAppDetectionNotifType) IsSet

func (NullableAppDetectionNotifType) MarshalJSON

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

func (*NullableAppDetectionNotifType) Set

func (*NullableAppDetectionNotifType) UnmarshalJSON

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

func (*NullableAppDetectionNotifType) Unset

func (v *NullableAppDetectionNotifType) Unset()

type NullableAppDetectionReport

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

func NewNullableAppDetectionReport

func NewNullableAppDetectionReport(val *AppDetectionReport) *NullableAppDetectionReport

func (NullableAppDetectionReport) Get

func (NullableAppDetectionReport) IsSet

func (v NullableAppDetectionReport) IsSet() bool

func (NullableAppDetectionReport) MarshalJSON

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

func (*NullableAppDetectionReport) Set

func (*NullableAppDetectionReport) UnmarshalJSON

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

func (*NullableAppDetectionReport) Unset

func (v *NullableAppDetectionReport) Unset()

type NullableAppSessionContext

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

func NewNullableAppSessionContext

func NewNullableAppSessionContext(val *AppSessionContext) *NullableAppSessionContext

func (NullableAppSessionContext) Get

func (NullableAppSessionContext) IsSet

func (v NullableAppSessionContext) IsSet() bool

func (NullableAppSessionContext) MarshalJSON

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

func (*NullableAppSessionContext) Set

func (*NullableAppSessionContext) UnmarshalJSON

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

func (*NullableAppSessionContext) Unset

func (v *NullableAppSessionContext) Unset()

type NullableAppSessionContextReqData

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

func (NullableAppSessionContextReqData) Get

func (NullableAppSessionContextReqData) IsSet

func (NullableAppSessionContextReqData) MarshalJSON

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

func (*NullableAppSessionContextReqData) Set

func (*NullableAppSessionContextReqData) UnmarshalJSON

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

func (*NullableAppSessionContextReqData) Unset

type NullableAppSessionContextRespData

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

func (NullableAppSessionContextRespData) Get

func (NullableAppSessionContextRespData) IsSet

func (NullableAppSessionContextRespData) MarshalJSON

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

func (*NullableAppSessionContextRespData) Set

func (*NullableAppSessionContextRespData) UnmarshalJSON

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

func (*NullableAppSessionContextRespData) Unset

type NullableAppSessionContextUpdateData

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

func (NullableAppSessionContextUpdateData) Get

func (NullableAppSessionContextUpdateData) IsSet

func (NullableAppSessionContextUpdateData) MarshalJSON

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

func (*NullableAppSessionContextUpdateData) Set

func (*NullableAppSessionContextUpdateData) UnmarshalJSON

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

func (*NullableAppSessionContextUpdateData) Unset

type NullableAppSessionContextUpdateDataPatch

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

func (NullableAppSessionContextUpdateDataPatch) Get

func (NullableAppSessionContextUpdateDataPatch) IsSet

func (NullableAppSessionContextUpdateDataPatch) MarshalJSON

func (*NullableAppSessionContextUpdateDataPatch) Set

func (*NullableAppSessionContextUpdateDataPatch) UnmarshalJSON

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

func (*NullableAppSessionContextUpdateDataPatch) 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 NullableBridgeManagementContainer

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

func (NullableBridgeManagementContainer) Get

func (NullableBridgeManagementContainer) IsSet

func (NullableBridgeManagementContainer) MarshalJSON

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

func (*NullableBridgeManagementContainer) Set

func (*NullableBridgeManagementContainer) UnmarshalJSON

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

func (*NullableBridgeManagementContainer) 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 NullableDnaiChangeType

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

func NewNullableDnaiChangeType

func NewNullableDnaiChangeType(val *DnaiChangeType) *NullableDnaiChangeType

func (NullableDnaiChangeType) Get

func (NullableDnaiChangeType) IsSet

func (v NullableDnaiChangeType) IsSet() bool

func (NullableDnaiChangeType) MarshalJSON

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

func (*NullableDnaiChangeType) Set

func (*NullableDnaiChangeType) UnmarshalJSON

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

func (*NullableDnaiChangeType) Unset

func (v *NullableDnaiChangeType) Unset()

type NullableEasIpReplacementInfo

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

func NewNullableEasIpReplacementInfo

func NewNullableEasIpReplacementInfo(val *EasIpReplacementInfo) *NullableEasIpReplacementInfo

func (NullableEasIpReplacementInfo) Get

func (NullableEasIpReplacementInfo) IsSet

func (NullableEasIpReplacementInfo) MarshalJSON

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

func (*NullableEasIpReplacementInfo) Set

func (*NullableEasIpReplacementInfo) UnmarshalJSON

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

func (*NullableEasIpReplacementInfo) Unset

func (v *NullableEasIpReplacementInfo) Unset()

type NullableEasServerAddress

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

func NewNullableEasServerAddress

func NewNullableEasServerAddress(val *EasServerAddress) *NullableEasServerAddress

func (NullableEasServerAddress) Get

func (NullableEasServerAddress) IsSet

func (v NullableEasServerAddress) IsSet() bool

func (NullableEasServerAddress) MarshalJSON

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

func (*NullableEasServerAddress) Set

func (*NullableEasServerAddress) UnmarshalJSON

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

func (*NullableEasServerAddress) Unset

func (v *NullableEasServerAddress) Unset()

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

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

func NewNullableEthFlowDescription

func NewNullableEthFlowDescription(val *EthFlowDescription) *NullableEthFlowDescription

func (NullableEthFlowDescription) Get

func (NullableEthFlowDescription) IsSet

func (v NullableEthFlowDescription) IsSet() bool

func (NullableEthFlowDescription) MarshalJSON

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

func (*NullableEthFlowDescription) Set

func (*NullableEthFlowDescription) UnmarshalJSON

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

func (*NullableEthFlowDescription) Unset

func (v *NullableEthFlowDescription) Unset()

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

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

func NewNullableEventsNotification

func NewNullableEventsNotification(val *EventsNotification) *NullableEventsNotification

func (NullableEventsNotification) Get

func (NullableEventsNotification) IsSet

func (v NullableEventsNotification) IsSet() bool

func (NullableEventsNotification) MarshalJSON

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

func (*NullableEventsNotification) Set

func (*NullableEventsNotification) UnmarshalJSON

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

func (*NullableEventsNotification) Unset

func (v *NullableEventsNotification) Unset()

type NullableEventsSubscPutData

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

func NewNullableEventsSubscPutData

func NewNullableEventsSubscPutData(val *EventsSubscPutData) *NullableEventsSubscPutData

func (NullableEventsSubscPutData) Get

func (NullableEventsSubscPutData) IsSet

func (v NullableEventsSubscPutData) IsSet() bool

func (NullableEventsSubscPutData) MarshalJSON

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

func (*NullableEventsSubscPutData) Set

func (*NullableEventsSubscPutData) UnmarshalJSON

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

func (*NullableEventsSubscPutData) Unset

func (v *NullableEventsSubscPutData) Unset()

type NullableEventsSubscReqData

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

func NewNullableEventsSubscReqData

func NewNullableEventsSubscReqData(val *EventsSubscReqData) *NullableEventsSubscReqData

func (NullableEventsSubscReqData) Get

func (NullableEventsSubscReqData) IsSet

func (v NullableEventsSubscReqData) IsSet() bool

func (NullableEventsSubscReqData) MarshalJSON

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

func (*NullableEventsSubscReqData) Set

func (*NullableEventsSubscReqData) UnmarshalJSON

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

func (*NullableEventsSubscReqData) Unset

func (v *NullableEventsSubscReqData) Unset()

type NullableEventsSubscReqDataRm

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

func NewNullableEventsSubscReqDataRm

func NewNullableEventsSubscReqDataRm(val *EventsSubscReqDataRm) *NullableEventsSubscReqDataRm

func (NullableEventsSubscReqDataRm) Get

func (NullableEventsSubscReqDataRm) IsSet

func (NullableEventsSubscReqDataRm) MarshalJSON

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

func (*NullableEventsSubscReqDataRm) Set

func (*NullableEventsSubscReqDataRm) UnmarshalJSON

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

func (*NullableEventsSubscReqDataRm) Unset

func (v *NullableEventsSubscReqDataRm) Unset()

type NullableExtendedProblemDetails

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

func (NullableExtendedProblemDetails) Get

func (NullableExtendedProblemDetails) IsSet

func (NullableExtendedProblemDetails) MarshalJSON

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

func (*NullableExtendedProblemDetails) Set

func (*NullableExtendedProblemDetails) UnmarshalJSON

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

func (*NullableExtendedProblemDetails) Unset

func (v *NullableExtendedProblemDetails) Unset()

type NullableExtendedProblemDetailsAllOf

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

func (NullableExtendedProblemDetailsAllOf) Get

func (NullableExtendedProblemDetailsAllOf) IsSet

func (NullableExtendedProblemDetailsAllOf) MarshalJSON

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

func (*NullableExtendedProblemDetailsAllOf) Set

func (*NullableExtendedProblemDetailsAllOf) UnmarshalJSON

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

func (*NullableExtendedProblemDetailsAllOf) Unset

type NullableFinalUnitAction

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

func NewNullableFinalUnitAction

func NewNullableFinalUnitAction(val *FinalUnitAction) *NullableFinalUnitAction

func (NullableFinalUnitAction) Get

func (NullableFinalUnitAction) IsSet

func (v NullableFinalUnitAction) IsSet() bool

func (NullableFinalUnitAction) MarshalJSON

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

func (*NullableFinalUnitAction) Set

func (*NullableFinalUnitAction) UnmarshalJSON

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

func (*NullableFinalUnitAction) Unset

func (v *NullableFinalUnitAction) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableFlowDirection

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

func NewNullableFlowDirection

func NewNullableFlowDirection(val *FlowDirection) *NullableFlowDirection

func (NullableFlowDirection) Get

func (NullableFlowDirection) IsSet

func (v NullableFlowDirection) IsSet() bool

func (NullableFlowDirection) MarshalJSON

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

func (*NullableFlowDirection) Set

func (v *NullableFlowDirection) Set(val *FlowDirection)

func (*NullableFlowDirection) UnmarshalJSON

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

func (*NullableFlowDirection) Unset

func (v *NullableFlowDirection) Unset()

type NullableFlowStatus

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

func NewNullableFlowStatus

func NewNullableFlowStatus(val *FlowStatus) *NullableFlowStatus

func (NullableFlowStatus) Get

func (v NullableFlowStatus) Get() *FlowStatus

func (NullableFlowStatus) IsSet

func (v NullableFlowStatus) IsSet() bool

func (NullableFlowStatus) MarshalJSON

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

func (*NullableFlowStatus) Set

func (v *NullableFlowStatus) Set(val *FlowStatus)

func (*NullableFlowStatus) UnmarshalJSON

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

func (*NullableFlowStatus) Unset

func (v *NullableFlowStatus) Unset()

type NullableFlowUsage

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

func NewNullableFlowUsage

func NewNullableFlowUsage(val *FlowUsage) *NullableFlowUsage

func (NullableFlowUsage) Get

func (v NullableFlowUsage) Get() *FlowUsage

func (NullableFlowUsage) IsSet

func (v NullableFlowUsage) IsSet() bool

func (NullableFlowUsage) MarshalJSON

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

func (*NullableFlowUsage) Set

func (v *NullableFlowUsage) Set(val *FlowUsage)

func (*NullableFlowUsage) UnmarshalJSON

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

func (*NullableFlowUsage) Unset

func (v *NullableFlowUsage) Unset()

type NullableFlows

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

func NewNullableFlows

func NewNullableFlows(val *Flows) *NullableFlows

func (NullableFlows) Get

func (v NullableFlows) Get() *Flows

func (NullableFlows) IsSet

func (v NullableFlows) IsSet() bool

func (NullableFlows) MarshalJSON

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

func (*NullableFlows) Set

func (v *NullableFlows) Set(val *Flows)

func (*NullableFlows) UnmarshalJSON

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

func (*NullableFlows) Unset

func (v *NullableFlows) Unset()

type NullableGNbId

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

func NewNullableGNbId

func NewNullableGNbId(val *GNbId) *NullableGNbId

func (NullableGNbId) Get

func (v NullableGNbId) Get() *GNbId

func (NullableGNbId) IsSet

func (v NullableGNbId) IsSet() bool

func (NullableGNbId) MarshalJSON

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

func (*NullableGNbId) Set

func (v *NullableGNbId) Set(val *GNbId)

func (*NullableGNbId) UnmarshalJSON

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

func (*NullableGNbId) Unset

func (v *NullableGNbId) Unset()

type NullableGeraLocation

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

func NewNullableGeraLocation

func NewNullableGeraLocation(val *GeraLocation) *NullableGeraLocation

func (NullableGeraLocation) Get

func (NullableGeraLocation) IsSet

func (v NullableGeraLocation) IsSet() bool

func (NullableGeraLocation) MarshalJSON

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

func (*NullableGeraLocation) Set

func (v *NullableGeraLocation) Set(val *GeraLocation)

func (*NullableGeraLocation) UnmarshalJSON

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

func (*NullableGeraLocation) Unset

func (v *NullableGeraLocation) Unset()

type NullableGlobalRanNodeId

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

func NewNullableGlobalRanNodeId

func NewNullableGlobalRanNodeId(val *GlobalRanNodeId) *NullableGlobalRanNodeId

func (NullableGlobalRanNodeId) Get

func (NullableGlobalRanNodeId) IsSet

func (v NullableGlobalRanNodeId) IsSet() bool

func (NullableGlobalRanNodeId) MarshalJSON

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

func (*NullableGlobalRanNodeId) Set

func (*NullableGlobalRanNodeId) UnmarshalJSON

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

func (*NullableGlobalRanNodeId) Unset

func (v *NullableGlobalRanNodeId) Unset()

type NullableHfcNodeId

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

func NewNullableHfcNodeId

func NewNullableHfcNodeId(val *HfcNodeId) *NullableHfcNodeId

func (NullableHfcNodeId) Get

func (v NullableHfcNodeId) Get() *HfcNodeId

func (NullableHfcNodeId) IsSet

func (v NullableHfcNodeId) IsSet() bool

func (NullableHfcNodeId) MarshalJSON

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

func (*NullableHfcNodeId) Set

func (v *NullableHfcNodeId) Set(val *HfcNodeId)

func (*NullableHfcNodeId) UnmarshalJSON

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

func (*NullableHfcNodeId) Unset

func (v *NullableHfcNodeId) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInvalidParam

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

func NewNullableInvalidParam

func NewNullableInvalidParam(val *InvalidParam) *NullableInvalidParam

func (NullableInvalidParam) Get

func (NullableInvalidParam) IsSet

func (v NullableInvalidParam) IsSet() bool

func (NullableInvalidParam) MarshalJSON

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

func (*NullableInvalidParam) Set

func (v *NullableInvalidParam) Set(val *InvalidParam)

func (*NullableInvalidParam) UnmarshalJSON

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

func (*NullableInvalidParam) Unset

func (v *NullableInvalidParam) Unset()

type NullableIpAddr

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

func NewNullableIpAddr

func NewNullableIpAddr(val *IpAddr) *NullableIpAddr

func (NullableIpAddr) Get

func (v NullableIpAddr) Get() *IpAddr

func (NullableIpAddr) IsSet

func (v NullableIpAddr) IsSet() bool

func (NullableIpAddr) MarshalJSON

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

func (*NullableIpAddr) Set

func (v *NullableIpAddr) Set(val *IpAddr)

func (*NullableIpAddr) UnmarshalJSON

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

func (*NullableIpAddr) Unset

func (v *NullableIpAddr) Unset()

type NullableIpEndPoint

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

func NewNullableIpEndPoint

func NewNullableIpEndPoint(val *IpEndPoint) *NullableIpEndPoint

func (NullableIpEndPoint) Get

func (v NullableIpEndPoint) Get() *IpEndPoint

func (NullableIpEndPoint) IsSet

func (v NullableIpEndPoint) IsSet() bool

func (NullableIpEndPoint) MarshalJSON

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

func (*NullableIpEndPoint) Set

func (v *NullableIpEndPoint) Set(val *IpEndPoint)

func (*NullableIpEndPoint) UnmarshalJSON

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

func (*NullableIpEndPoint) Unset

func (v *NullableIpEndPoint) Unset()

type NullableIpv6Addr

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

func NewNullableIpv6Addr

func NewNullableIpv6Addr(val *Ipv6Addr) *NullableIpv6Addr

func (NullableIpv6Addr) Get

func (v NullableIpv6Addr) Get() *Ipv6Addr

func (NullableIpv6Addr) IsSet

func (v NullableIpv6Addr) IsSet() bool

func (NullableIpv6Addr) MarshalJSON

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

func (*NullableIpv6Addr) Set

func (v *NullableIpv6Addr) Set(val *Ipv6Addr)

func (*NullableIpv6Addr) UnmarshalJSON

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

func (*NullableIpv6Addr) Unset

func (v *NullableIpv6Addr) Unset()

type NullableIpv6Prefix

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

func NewNullableIpv6Prefix

func NewNullableIpv6Prefix(val *Ipv6Prefix) *NullableIpv6Prefix

func (NullableIpv6Prefix) Get

func (v NullableIpv6Prefix) Get() *Ipv6Prefix

func (NullableIpv6Prefix) IsSet

func (v NullableIpv6Prefix) IsSet() bool

func (NullableIpv6Prefix) MarshalJSON

func (v NullableIpv6Prefix) MarshalJSON() ([]byte, error)

func (*NullableIpv6Prefix) Set

func (v *NullableIpv6Prefix) Set(val *Ipv6Prefix)

func (*NullableIpv6Prefix) UnmarshalJSON

func (v *NullableIpv6Prefix) UnmarshalJSON(src []byte) error

func (*NullableIpv6Prefix) Unset

func (v *NullableIpv6Prefix) Unset()

type NullableLineType

type NullableLineType struct {
	// contains filtered or unexported fields
}

func NewNullableLineType

func NewNullableLineType(val *LineType) *NullableLineType

func (NullableLineType) Get

func (v NullableLineType) Get() *LineType

func (NullableLineType) IsSet

func (v NullableLineType) IsSet() bool

func (NullableLineType) MarshalJSON

func (v NullableLineType) MarshalJSON() ([]byte, error)

func (*NullableLineType) Set

func (v *NullableLineType) Set(val *LineType)

func (*NullableLineType) UnmarshalJSON

func (v *NullableLineType) UnmarshalJSON(src []byte) error

func (*NullableLineType) Unset

func (v *NullableLineType) Unset()

type NullableLocationAreaId

type NullableLocationAreaId struct {
	// contains filtered or unexported fields
}

func NewNullableLocationAreaId

func NewNullableLocationAreaId(val *LocationAreaId) *NullableLocationAreaId

func (NullableLocationAreaId) Get

func (NullableLocationAreaId) IsSet

func (v NullableLocationAreaId) IsSet() bool

func (NullableLocationAreaId) MarshalJSON

func (v NullableLocationAreaId) MarshalJSON() ([]byte, error)

func (*NullableLocationAreaId) Set

func (*NullableLocationAreaId) UnmarshalJSON

func (v *NullableLocationAreaId) UnmarshalJSON(src []byte) error

func (*NullableLocationAreaId) Unset

func (v *NullableLocationAreaId) Unset()

type NullableMediaComponent

type NullableMediaComponent struct {
	// contains filtered or unexported fields
}

func NewNullableMediaComponent

func NewNullableMediaComponent(val *MediaComponent) *NullableMediaComponent

func (NullableMediaComponent) Get

func (NullableMediaComponent) IsSet

func (v NullableMediaComponent) IsSet() bool

func (NullableMediaComponent) MarshalJSON

func (v NullableMediaComponent) MarshalJSON() ([]byte, error)

func (*NullableMediaComponent) Set

func (*NullableMediaComponent) UnmarshalJSON

func (v *NullableMediaComponent) UnmarshalJSON(src []byte) error

func (*NullableMediaComponent) Unset

func (v *NullableMediaComponent) Unset()

type NullableMediaComponentResourcesStatus

type NullableMediaComponentResourcesStatus struct {
	// contains filtered or unexported fields
}

func (NullableMediaComponentResourcesStatus) Get

func (NullableMediaComponentResourcesStatus) IsSet

func (NullableMediaComponentResourcesStatus) MarshalJSON

func (v NullableMediaComponentResourcesStatus) MarshalJSON() ([]byte, error)

func (*NullableMediaComponentResourcesStatus) Set

func (*NullableMediaComponentResourcesStatus) UnmarshalJSON

func (v *NullableMediaComponentResourcesStatus) UnmarshalJSON(src []byte) error

func (*NullableMediaComponentResourcesStatus) Unset

type NullableMediaComponentRm

type NullableMediaComponentRm struct {
	// contains filtered or unexported fields
}

func NewNullableMediaComponentRm

func NewNullableMediaComponentRm(val *MediaComponentRm) *NullableMediaComponentRm

func (NullableMediaComponentRm) Get

func (NullableMediaComponentRm) IsSet

func (v NullableMediaComponentRm) IsSet() bool

func (NullableMediaComponentRm) MarshalJSON

func (v NullableMediaComponentRm) MarshalJSON() ([]byte, error)

func (*NullableMediaComponentRm) Set

func (*NullableMediaComponentRm) UnmarshalJSON

func (v *NullableMediaComponentRm) UnmarshalJSON(src []byte) error

func (*NullableMediaComponentRm) Unset

func (v *NullableMediaComponentRm) Unset()

type NullableMediaSubComponent

type NullableMediaSubComponent struct {
	// contains filtered or unexported fields
}

func NewNullableMediaSubComponent

func NewNullableMediaSubComponent(val *MediaSubComponent) *NullableMediaSubComponent

func (NullableMediaSubComponent) Get

func (NullableMediaSubComponent) IsSet

func (v NullableMediaSubComponent) IsSet() bool

func (NullableMediaSubComponent) MarshalJSON

func (v NullableMediaSubComponent) MarshalJSON() ([]byte, error)

func (*NullableMediaSubComponent) Set

func (*NullableMediaSubComponent) UnmarshalJSON

func (v *NullableMediaSubComponent) UnmarshalJSON(src []byte) error

func (*NullableMediaSubComponent) Unset

func (v *NullableMediaSubComponent) Unset()

type NullableMediaSubComponentRm

type NullableMediaSubComponentRm struct {
	// contains filtered or unexported fields
}

func NewNullableMediaSubComponentRm

func NewNullableMediaSubComponentRm(val *MediaSubComponentRm) *NullableMediaSubComponentRm

func (NullableMediaSubComponentRm) Get

func (NullableMediaSubComponentRm) IsSet

func (NullableMediaSubComponentRm) MarshalJSON

func (v NullableMediaSubComponentRm) MarshalJSON() ([]byte, error)

func (*NullableMediaSubComponentRm) Set

func (*NullableMediaSubComponentRm) UnmarshalJSON

func (v *NullableMediaSubComponentRm) UnmarshalJSON(src []byte) error

func (*NullableMediaSubComponentRm) Unset

func (v *NullableMediaSubComponentRm) Unset()

type NullableMediaType

type NullableMediaType struct {
	// contains filtered or unexported fields
}

func NewNullableMediaType

func NewNullableMediaType(val *MediaType) *NullableMediaType

func (NullableMediaType) Get

func (v NullableMediaType) Get() *MediaType

func (NullableMediaType) IsSet

func (v NullableMediaType) IsSet() bool

func (NullableMediaType) MarshalJSON

func (v NullableMediaType) MarshalJSON() ([]byte, error)

func (*NullableMediaType) Set

func (v *NullableMediaType) Set(val *MediaType)

func (*NullableMediaType) UnmarshalJSON

func (v *NullableMediaType) UnmarshalJSON(src []byte) error

func (*NullableMediaType) Unset

func (v *NullableMediaType) Unset()

type NullableMpsAction

type NullableMpsAction struct {
	// contains filtered or unexported fields
}

func NewNullableMpsAction

func NewNullableMpsAction(val *MpsAction) *NullableMpsAction

func (NullableMpsAction) Get

func (v NullableMpsAction) Get() *MpsAction

func (NullableMpsAction) IsSet

func (v NullableMpsAction) IsSet() bool

func (NullableMpsAction) MarshalJSON

func (v NullableMpsAction) MarshalJSON() ([]byte, error)

func (*NullableMpsAction) Set

func (v *NullableMpsAction) Set(val *MpsAction)

func (*NullableMpsAction) UnmarshalJSON

func (v *NullableMpsAction) UnmarshalJSON(src []byte) error

func (*NullableMpsAction) Unset

func (v *NullableMpsAction) 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 NullableNetLocAccessSupport

type NullableNetLocAccessSupport struct {
	// contains filtered or unexported fields
}

func NewNullableNetLocAccessSupport

func NewNullableNetLocAccessSupport(val *NetLocAccessSupport) *NullableNetLocAccessSupport

func (NullableNetLocAccessSupport) Get

func (NullableNetLocAccessSupport) IsSet

func (NullableNetLocAccessSupport) MarshalJSON

func (v NullableNetLocAccessSupport) MarshalJSON() ([]byte, error)

func (*NullableNetLocAccessSupport) Set

func (*NullableNetLocAccessSupport) UnmarshalJSON

func (v *NullableNetLocAccessSupport) UnmarshalJSON(src []byte) error

func (*NullableNetLocAccessSupport) Unset

func (v *NullableNetLocAccessSupport) Unset()

type NullableNgApCause

type NullableNgApCause struct {
	// contains filtered or unexported fields
}

func NewNullableNgApCause

func NewNullableNgApCause(val *NgApCause) *NullableNgApCause

func (NullableNgApCause) Get

func (v NullableNgApCause) Get() *NgApCause

func (NullableNgApCause) IsSet

func (v NullableNgApCause) IsSet() bool

func (NullableNgApCause) MarshalJSON

func (v NullableNgApCause) MarshalJSON() ([]byte, error)

func (*NullableNgApCause) Set

func (v *NullableNgApCause) Set(val *NgApCause)

func (*NullableNgApCause) UnmarshalJSON

func (v *NullableNgApCause) UnmarshalJSON(src []byte) error

func (*NullableNgApCause) Unset

func (v *NullableNgApCause) Unset()

type NullableNrLocation

type NullableNrLocation struct {
	// contains filtered or unexported fields
}

func NewNullableNrLocation

func NewNullableNrLocation(val *NrLocation) *NullableNrLocation

func (NullableNrLocation) Get

func (v NullableNrLocation) Get() *NrLocation

func (NullableNrLocation) IsSet

func (v NullableNrLocation) IsSet() bool

func (NullableNrLocation) MarshalJSON

func (v NullableNrLocation) MarshalJSON() ([]byte, error)

func (*NullableNrLocation) Set

func (v *NullableNrLocation) Set(val *NrLocation)

func (*NullableNrLocation) UnmarshalJSON

func (v *NullableNrLocation) UnmarshalJSON(src []byte) error

func (*NullableNrLocation) Unset

func (v *NullableNrLocation) Unset()

type NullableNullValue

type NullableNullValue struct {
	// contains filtered or unexported fields
}

func NewNullableNullValue

func NewNullableNullValue(val *NullValue) *NullableNullValue

func (NullableNullValue) Get

func (v NullableNullValue) Get() *NullValue

func (NullableNullValue) IsSet

func (v NullableNullValue) IsSet() bool

func (NullableNullValue) MarshalJSON

func (v NullableNullValue) MarshalJSON() ([]byte, error)

func (*NullableNullValue) Set

func (v *NullableNullValue) Set(val *NullValue)

func (*NullableNullValue) UnmarshalJSON

func (v *NullableNullValue) UnmarshalJSON(src []byte) error

func (*NullableNullValue) Unset

func (v *NullableNullValue) Unset()

type NullableOutOfCreditInformation

type NullableOutOfCreditInformation struct {
	// contains filtered or unexported fields
}

func (NullableOutOfCreditInformation) Get

func (NullableOutOfCreditInformation) IsSet

func (NullableOutOfCreditInformation) MarshalJSON

func (v NullableOutOfCreditInformation) MarshalJSON() ([]byte, error)

func (*NullableOutOfCreditInformation) Set

func (*NullableOutOfCreditInformation) UnmarshalJSON

func (v *NullableOutOfCreditInformation) UnmarshalJSON(src []byte) error

func (*NullableOutOfCreditInformation) Unset

func (v *NullableOutOfCreditInformation) Unset()

type NullablePcfAddressingInfo

type NullablePcfAddressingInfo struct {
	// contains filtered or unexported fields
}

func NewNullablePcfAddressingInfo

func NewNullablePcfAddressingInfo(val *PcfAddressingInfo) *NullablePcfAddressingInfo

func (NullablePcfAddressingInfo) Get

func (NullablePcfAddressingInfo) IsSet

func (v NullablePcfAddressingInfo) IsSet() bool

func (NullablePcfAddressingInfo) MarshalJSON

func (v NullablePcfAddressingInfo) MarshalJSON() ([]byte, error)

func (*NullablePcfAddressingInfo) Set

func (*NullablePcfAddressingInfo) UnmarshalJSON

func (v *NullablePcfAddressingInfo) UnmarshalJSON(src []byte) error

func (*NullablePcfAddressingInfo) Unset

func (v *NullablePcfAddressingInfo) Unset()

type NullablePcscfRestorationRequestData

type NullablePcscfRestorationRequestData struct {
	// contains filtered or unexported fields
}

func (NullablePcscfRestorationRequestData) Get

func (NullablePcscfRestorationRequestData) IsSet

func (NullablePcscfRestorationRequestData) MarshalJSON

func (v NullablePcscfRestorationRequestData) MarshalJSON() ([]byte, error)

func (*NullablePcscfRestorationRequestData) Set

func (*NullablePcscfRestorationRequestData) UnmarshalJSON

func (v *NullablePcscfRestorationRequestData) UnmarshalJSON(src []byte) error

func (*NullablePcscfRestorationRequestData) Unset

type NullablePduSessionEventNotification

type NullablePduSessionEventNotification struct {
	// contains filtered or unexported fields
}

func (NullablePduSessionEventNotification) Get

func (NullablePduSessionEventNotification) IsSet

func (NullablePduSessionEventNotification) MarshalJSON

func (v NullablePduSessionEventNotification) MarshalJSON() ([]byte, error)

func (*NullablePduSessionEventNotification) Set

func (*NullablePduSessionEventNotification) UnmarshalJSON

func (v *NullablePduSessionEventNotification) UnmarshalJSON(src []byte) error

func (*NullablePduSessionEventNotification) Unset

type NullablePduSessionStatus

type NullablePduSessionStatus struct {
	// contains filtered or unexported fields
}

func NewNullablePduSessionStatus

func NewNullablePduSessionStatus(val *PduSessionStatus) *NullablePduSessionStatus

func (NullablePduSessionStatus) Get

func (NullablePduSessionStatus) IsSet

func (v NullablePduSessionStatus) IsSet() bool

func (NullablePduSessionStatus) MarshalJSON

func (v NullablePduSessionStatus) MarshalJSON() ([]byte, error)

func (*NullablePduSessionStatus) Set

func (*NullablePduSessionStatus) UnmarshalJSON

func (v *NullablePduSessionStatus) UnmarshalJSON(src []byte) error

func (*NullablePduSessionStatus) Unset

func (v *NullablePduSessionStatus) Unset()

type NullablePduSessionTsnBridge

type NullablePduSessionTsnBridge struct {
	// contains filtered or unexported fields
}

func NewNullablePduSessionTsnBridge

func NewNullablePduSessionTsnBridge(val *PduSessionTsnBridge) *NullablePduSessionTsnBridge

func (NullablePduSessionTsnBridge) Get

func (NullablePduSessionTsnBridge) IsSet

func (NullablePduSessionTsnBridge) MarshalJSON

func (v NullablePduSessionTsnBridge) MarshalJSON() ([]byte, error)

func (*NullablePduSessionTsnBridge) Set

func (*NullablePduSessionTsnBridge) UnmarshalJSON

func (v *NullablePduSessionTsnBridge) UnmarshalJSON(src []byte) error

func (*NullablePduSessionTsnBridge) Unset

func (v *NullablePduSessionTsnBridge) 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 NullablePortManagementContainer

type NullablePortManagementContainer struct {
	// contains filtered or unexported fields
}

func (NullablePortManagementContainer) Get

func (NullablePortManagementContainer) IsSet

func (NullablePortManagementContainer) MarshalJSON

func (v NullablePortManagementContainer) MarshalJSON() ([]byte, error)

func (*NullablePortManagementContainer) Set

func (*NullablePortManagementContainer) UnmarshalJSON

func (v *NullablePortManagementContainer) UnmarshalJSON(src []byte) error

func (*NullablePortManagementContainer) Unset

type NullablePreemptionCapability

type NullablePreemptionCapability struct {
	// contains filtered or unexported fields
}

func NewNullablePreemptionCapability

func NewNullablePreemptionCapability(val *PreemptionCapability) *NullablePreemptionCapability

func (NullablePreemptionCapability) Get

func (NullablePreemptionCapability) IsSet

func (NullablePreemptionCapability) MarshalJSON

func (v NullablePreemptionCapability) MarshalJSON() ([]byte, error)

func (*NullablePreemptionCapability) Set

func (*NullablePreemptionCapability) UnmarshalJSON

func (v *NullablePreemptionCapability) UnmarshalJSON(src []byte) error

func (*NullablePreemptionCapability) Unset

func (v *NullablePreemptionCapability) Unset()

type NullablePreemptionCapabilityRm

type NullablePreemptionCapabilityRm struct {
	// contains filtered or unexported fields
}

func (NullablePreemptionCapabilityRm) Get

func (NullablePreemptionCapabilityRm) IsSet

func (NullablePreemptionCapabilityRm) MarshalJSON

func (v NullablePreemptionCapabilityRm) MarshalJSON() ([]byte, error)

func (*NullablePreemptionCapabilityRm) Set

func (*NullablePreemptionCapabilityRm) UnmarshalJSON

func (v *NullablePreemptionCapabilityRm) UnmarshalJSON(src []byte) error

func (*NullablePreemptionCapabilityRm) Unset

func (v *NullablePreemptionCapabilityRm) Unset()

type NullablePreemptionControlInformation

type NullablePreemptionControlInformation struct {
	// contains filtered or unexported fields
}

func (NullablePreemptionControlInformation) Get

func (NullablePreemptionControlInformation) IsSet

func (NullablePreemptionControlInformation) MarshalJSON

func (v NullablePreemptionControlInformation) MarshalJSON() ([]byte, error)

func (*NullablePreemptionControlInformation) Set

func (*NullablePreemptionControlInformation) UnmarshalJSON

func (v *NullablePreemptionControlInformation) UnmarshalJSON(src []byte) error

func (*NullablePreemptionControlInformation) Unset

type NullablePreemptionControlInformationRm

type NullablePreemptionControlInformationRm struct {
	// contains filtered or unexported fields
}

func (NullablePreemptionControlInformationRm) Get

func (NullablePreemptionControlInformationRm) IsSet

func (NullablePreemptionControlInformationRm) MarshalJSON

func (v NullablePreemptionControlInformationRm) MarshalJSON() ([]byte, error)

func (*NullablePreemptionControlInformationRm) Set

func (*NullablePreemptionControlInformationRm) UnmarshalJSON

func (v *NullablePreemptionControlInformationRm) UnmarshalJSON(src []byte) error

func (*NullablePreemptionControlInformationRm) Unset

type NullablePreemptionVulnerability

type NullablePreemptionVulnerability struct {
	// contains filtered or unexported fields
}

func (NullablePreemptionVulnerability) Get

func (NullablePreemptionVulnerability) IsSet

func (NullablePreemptionVulnerability) MarshalJSON

func (v NullablePreemptionVulnerability) MarshalJSON() ([]byte, error)

func (*NullablePreemptionVulnerability) Set

func (*NullablePreemptionVulnerability) UnmarshalJSON

func (v *NullablePreemptionVulnerability) UnmarshalJSON(src []byte) error

func (*NullablePreemptionVulnerability) Unset

type NullablePreemptionVulnerabilityRm

type NullablePreemptionVulnerabilityRm struct {
	// contains filtered or unexported fields
}

func (NullablePreemptionVulnerabilityRm) Get

func (NullablePreemptionVulnerabilityRm) IsSet

func (NullablePreemptionVulnerabilityRm) MarshalJSON

func (v NullablePreemptionVulnerabilityRm) MarshalJSON() ([]byte, error)

func (*NullablePreemptionVulnerabilityRm) Set

func (*NullablePreemptionVulnerabilityRm) UnmarshalJSON

func (v *NullablePreemptionVulnerabilityRm) UnmarshalJSON(src []byte) error

func (*NullablePreemptionVulnerabilityRm) Unset

type NullablePresenceInfo

type NullablePresenceInfo struct {
	// contains filtered or unexported fields
}

func NewNullablePresenceInfo

func NewNullablePresenceInfo(val *PresenceInfo) *NullablePresenceInfo

func (NullablePresenceInfo) Get

func (NullablePresenceInfo) IsSet

func (v NullablePresenceInfo) IsSet() bool

func (NullablePresenceInfo) MarshalJSON

func (v NullablePresenceInfo) MarshalJSON() ([]byte, error)

func (*NullablePresenceInfo) Set

func (v *NullablePresenceInfo) Set(val *PresenceInfo)

func (*NullablePresenceInfo) UnmarshalJSON

func (v *NullablePresenceInfo) UnmarshalJSON(src []byte) error

func (*NullablePresenceInfo) Unset

func (v *NullablePresenceInfo) Unset()

type NullablePresenceState

type NullablePresenceState struct {
	// contains filtered or unexported fields
}

func NewNullablePresenceState

func NewNullablePresenceState(val *PresenceState) *NullablePresenceState

func (NullablePresenceState) Get

func (NullablePresenceState) IsSet

func (v NullablePresenceState) IsSet() bool

func (NullablePresenceState) MarshalJSON

func (v NullablePresenceState) MarshalJSON() ([]byte, error)

func (*NullablePresenceState) Set

func (v *NullablePresenceState) Set(val *PresenceState)

func (*NullablePresenceState) UnmarshalJSON

func (v *NullablePresenceState) UnmarshalJSON(src []byte) error

func (*NullablePresenceState) Unset

func (v *NullablePresenceState) Unset()

type NullablePrioritySharingIndicator

type NullablePrioritySharingIndicator struct {
	// contains filtered or unexported fields
}

func (NullablePrioritySharingIndicator) Get

func (NullablePrioritySharingIndicator) IsSet

func (NullablePrioritySharingIndicator) MarshalJSON

func (v NullablePrioritySharingIndicator) MarshalJSON() ([]byte, error)

func (*NullablePrioritySharingIndicator) Set

func (*NullablePrioritySharingIndicator) UnmarshalJSON

func (v *NullablePrioritySharingIndicator) UnmarshalJSON(src []byte) error

func (*NullablePrioritySharingIndicator) 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 NullableQosMonitoringInformation

type NullableQosMonitoringInformation struct {
	// contains filtered or unexported fields
}

func (NullableQosMonitoringInformation) Get

func (NullableQosMonitoringInformation) IsSet

func (NullableQosMonitoringInformation) MarshalJSON

func (v NullableQosMonitoringInformation) MarshalJSON() ([]byte, error)

func (*NullableQosMonitoringInformation) Set

func (*NullableQosMonitoringInformation) UnmarshalJSON

func (v *NullableQosMonitoringInformation) UnmarshalJSON(src []byte) error

func (*NullableQosMonitoringInformation) Unset

type NullableQosMonitoringInformationRm

type NullableQosMonitoringInformationRm struct {
	// contains filtered or unexported fields
}

func (NullableQosMonitoringInformationRm) Get

func (NullableQosMonitoringInformationRm) IsSet

func (NullableQosMonitoringInformationRm) MarshalJSON

func (v NullableQosMonitoringInformationRm) MarshalJSON() ([]byte, error)

func (*NullableQosMonitoringInformationRm) Set

func (*NullableQosMonitoringInformationRm) UnmarshalJSON

func (v *NullableQosMonitoringInformationRm) UnmarshalJSON(src []byte) error

func (*NullableQosMonitoringInformationRm) Unset

type NullableQosMonitoringReport

type NullableQosMonitoringReport struct {
	// contains filtered or unexported fields
}

func NewNullableQosMonitoringReport

func NewNullableQosMonitoringReport(val *QosMonitoringReport) *NullableQosMonitoringReport

func (NullableQosMonitoringReport) Get

func (NullableQosMonitoringReport) IsSet

func (NullableQosMonitoringReport) MarshalJSON

func (v NullableQosMonitoringReport) MarshalJSON() ([]byte, error)

func (*NullableQosMonitoringReport) Set

func (*NullableQosMonitoringReport) UnmarshalJSON

func (v *NullableQosMonitoringReport) UnmarshalJSON(src []byte) error

func (*NullableQosMonitoringReport) Unset

func (v *NullableQosMonitoringReport) Unset()

type NullableQosNotifType

type NullableQosNotifType struct {
	// contains filtered or unexported fields
}

func NewNullableQosNotifType

func NewNullableQosNotifType(val *QosNotifType) *NullableQosNotifType

func (NullableQosNotifType) Get

func (NullableQosNotifType) IsSet

func (v NullableQosNotifType) IsSet() bool

func (NullableQosNotifType) MarshalJSON

func (v NullableQosNotifType) MarshalJSON() ([]byte, error)

func (*NullableQosNotifType) Set

func (v *NullableQosNotifType) Set(val *QosNotifType)

func (*NullableQosNotifType) UnmarshalJSON

func (v *NullableQosNotifType) UnmarshalJSON(src []byte) error

func (*NullableQosNotifType) Unset

func (v *NullableQosNotifType) Unset()

type NullableQosNotificationControlInfo

type NullableQosNotificationControlInfo struct {
	// contains filtered or unexported fields
}

func (NullableQosNotificationControlInfo) Get

func (NullableQosNotificationControlInfo) IsSet

func (NullableQosNotificationControlInfo) MarshalJSON

func (v NullableQosNotificationControlInfo) MarshalJSON() ([]byte, error)

func (*NullableQosNotificationControlInfo) Set

func (*NullableQosNotificationControlInfo) UnmarshalJSON

func (v *NullableQosNotificationControlInfo) UnmarshalJSON(src []byte) error

func (*NullableQosNotificationControlInfo) Unset

type NullableRanNasRelCause

type NullableRanNasRelCause struct {
	// contains filtered or unexported fields
}

func NewNullableRanNasRelCause

func NewNullableRanNasRelCause(val *RanNasRelCause) *NullableRanNasRelCause

func (NullableRanNasRelCause) Get

func (NullableRanNasRelCause) IsSet

func (v NullableRanNasRelCause) IsSet() bool

func (NullableRanNasRelCause) MarshalJSON

func (v NullableRanNasRelCause) MarshalJSON() ([]byte, error)

func (*NullableRanNasRelCause) Set

func (*NullableRanNasRelCause) UnmarshalJSON

func (v *NullableRanNasRelCause) UnmarshalJSON(src []byte) error

func (*NullableRanNasRelCause) Unset

func (v *NullableRanNasRelCause) Unset()

type NullableRatType

type NullableRatType struct {
	// contains filtered or unexported fields
}

func NewNullableRatType

func NewNullableRatType(val *RatType) *NullableRatType

func (NullableRatType) Get

func (v NullableRatType) Get() *RatType

func (NullableRatType) IsSet

func (v NullableRatType) IsSet() bool

func (NullableRatType) MarshalJSON

func (v NullableRatType) MarshalJSON() ([]byte, error)

func (*NullableRatType) Set

func (v *NullableRatType) Set(val *RatType)

func (*NullableRatType) UnmarshalJSON

func (v *NullableRatType) UnmarshalJSON(src []byte) error

func (*NullableRatType) Unset

func (v *NullableRatType) Unset()

type 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 NullableRequestedQosMonitoringParameter

type NullableRequestedQosMonitoringParameter struct {
	// contains filtered or unexported fields
}

func (NullableRequestedQosMonitoringParameter) Get

func (NullableRequestedQosMonitoringParameter) IsSet

func (NullableRequestedQosMonitoringParameter) MarshalJSON

func (v NullableRequestedQosMonitoringParameter) MarshalJSON() ([]byte, error)

func (*NullableRequestedQosMonitoringParameter) Set

func (*NullableRequestedQosMonitoringParameter) UnmarshalJSON

func (v *NullableRequestedQosMonitoringParameter) UnmarshalJSON(src []byte) error

func (*NullableRequestedQosMonitoringParameter) Unset

type NullableRequiredAccessInfo

type NullableRequiredAccessInfo struct {
	// contains filtered or unexported fields
}

func NewNullableRequiredAccessInfo

func NewNullableRequiredAccessInfo(val *RequiredAccessInfo) *NullableRequiredAccessInfo

func (NullableRequiredAccessInfo) Get

func (NullableRequiredAccessInfo) IsSet

func (v NullableRequiredAccessInfo) IsSet() bool

func (NullableRequiredAccessInfo) MarshalJSON

func (v NullableRequiredAccessInfo) MarshalJSON() ([]byte, error)

func (*NullableRequiredAccessInfo) Set

func (*NullableRequiredAccessInfo) UnmarshalJSON

func (v *NullableRequiredAccessInfo) UnmarshalJSON(src []byte) error

func (*NullableRequiredAccessInfo) Unset

func (v *NullableRequiredAccessInfo) Unset()

type NullableReservPriority

type NullableReservPriority struct {
	// contains filtered or unexported fields
}

func NewNullableReservPriority

func NewNullableReservPriority(val *ReservPriority) *NullableReservPriority

func (NullableReservPriority) Get

func (NullableReservPriority) IsSet

func (v NullableReservPriority) IsSet() bool

func (NullableReservPriority) MarshalJSON

func (v NullableReservPriority) MarshalJSON() ([]byte, error)

func (*NullableReservPriority) Set

func (*NullableReservPriority) UnmarshalJSON

func (v *NullableReservPriority) UnmarshalJSON(src []byte) error

func (*NullableReservPriority) Unset

func (v *NullableReservPriority) Unset()

type NullableResourcesAllocationInfo

type NullableResourcesAllocationInfo struct {
	// contains filtered or unexported fields
}

func (NullableResourcesAllocationInfo) Get

func (NullableResourcesAllocationInfo) IsSet

func (NullableResourcesAllocationInfo) MarshalJSON

func (v NullableResourcesAllocationInfo) MarshalJSON() ([]byte, error)

func (*NullableResourcesAllocationInfo) Set

func (*NullableResourcesAllocationInfo) UnmarshalJSON

func (v *NullableResourcesAllocationInfo) UnmarshalJSON(src []byte) error

func (*NullableResourcesAllocationInfo) Unset

type NullableRouteInformation

type NullableRouteInformation struct {
	// contains filtered or unexported fields
}

func NewNullableRouteInformation

func NewNullableRouteInformation(val *RouteInformation) *NullableRouteInformation

func (NullableRouteInformation) Get

func (NullableRouteInformation) IsSet

func (v NullableRouteInformation) IsSet() bool

func (NullableRouteInformation) MarshalJSON

func (v NullableRouteInformation) MarshalJSON() ([]byte, error)

func (*NullableRouteInformation) Set

func (*NullableRouteInformation) UnmarshalJSON

func (v *NullableRouteInformation) UnmarshalJSON(src []byte) error

func (*NullableRouteInformation) Unset

func (v *NullableRouteInformation) Unset()

type NullableRouteToLocation

type NullableRouteToLocation struct {
	// contains filtered or unexported fields
}

func NewNullableRouteToLocation

func NewNullableRouteToLocation(val *RouteToLocation) *NullableRouteToLocation

func (NullableRouteToLocation) Get

func (NullableRouteToLocation) IsSet

func (v NullableRouteToLocation) IsSet() bool

func (NullableRouteToLocation) MarshalJSON

func (v NullableRouteToLocation) MarshalJSON() ([]byte, error)

func (*NullableRouteToLocation) Set

func (*NullableRouteToLocation) UnmarshalJSON

func (v *NullableRouteToLocation) UnmarshalJSON(src []byte) error

func (*NullableRouteToLocation) Unset

func (v *NullableRouteToLocation) Unset()

type 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 NullableSatelliteBackhaulCategory

type NullableSatelliteBackhaulCategory struct {
	// contains filtered or unexported fields
}

func (NullableSatelliteBackhaulCategory) Get

func (NullableSatelliteBackhaulCategory) IsSet

func (NullableSatelliteBackhaulCategory) MarshalJSON

func (v NullableSatelliteBackhaulCategory) MarshalJSON() ([]byte, error)

func (*NullableSatelliteBackhaulCategory) Set

func (*NullableSatelliteBackhaulCategory) UnmarshalJSON

func (v *NullableSatelliteBackhaulCategory) UnmarshalJSON(src []byte) error

func (*NullableSatelliteBackhaulCategory) Unset

type NullableServAuthInfo

type NullableServAuthInfo struct {
	// contains filtered or unexported fields
}

func NewNullableServAuthInfo

func NewNullableServAuthInfo(val *ServAuthInfo) *NullableServAuthInfo

func (NullableServAuthInfo) Get

func (NullableServAuthInfo) IsSet

func (v NullableServAuthInfo) IsSet() bool

func (NullableServAuthInfo) MarshalJSON

func (v NullableServAuthInfo) MarshalJSON() ([]byte, error)

func (*NullableServAuthInfo) Set

func (v *NullableServAuthInfo) Set(val *ServAuthInfo)

func (*NullableServAuthInfo) UnmarshalJSON

func (v *NullableServAuthInfo) UnmarshalJSON(src []byte) error

func (*NullableServAuthInfo) Unset

func (v *NullableServAuthInfo) 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 NullableServiceInfoStatus

type NullableServiceInfoStatus struct {
	// contains filtered or unexported fields
}

func NewNullableServiceInfoStatus

func NewNullableServiceInfoStatus(val *ServiceInfoStatus) *NullableServiceInfoStatus

func (NullableServiceInfoStatus) Get

func (NullableServiceInfoStatus) IsSet

func (v NullableServiceInfoStatus) IsSet() bool

func (NullableServiceInfoStatus) MarshalJSON

func (v NullableServiceInfoStatus) MarshalJSON() ([]byte, error)

func (*NullableServiceInfoStatus) Set

func (*NullableServiceInfoStatus) UnmarshalJSON

func (v *NullableServiceInfoStatus) UnmarshalJSON(src []byte) error

func (*NullableServiceInfoStatus) Unset

func (v *NullableServiceInfoStatus) Unset()

type NullableSipForkingIndication

type NullableSipForkingIndication struct {
	// contains filtered or unexported fields
}

func NewNullableSipForkingIndication

func NewNullableSipForkingIndication(val *SipForkingIndication) *NullableSipForkingIndication

func (NullableSipForkingIndication) Get

func (NullableSipForkingIndication) IsSet

func (NullableSipForkingIndication) MarshalJSON

func (v NullableSipForkingIndication) MarshalJSON() ([]byte, error)

func (*NullableSipForkingIndication) Set

func (*NullableSipForkingIndication) UnmarshalJSON

func (v *NullableSipForkingIndication) UnmarshalJSON(src []byte) error

func (*NullableSipForkingIndication) Unset

func (v *NullableSipForkingIndication) 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 NullableSpatialValidity

type NullableSpatialValidity struct {
	// contains filtered or unexported fields
}

func NewNullableSpatialValidity

func NewNullableSpatialValidity(val *SpatialValidity) *NullableSpatialValidity

func (NullableSpatialValidity) Get

func (NullableSpatialValidity) IsSet

func (v NullableSpatialValidity) IsSet() bool

func (NullableSpatialValidity) MarshalJSON

func (v NullableSpatialValidity) MarshalJSON() ([]byte, error)

func (*NullableSpatialValidity) Set

func (*NullableSpatialValidity) UnmarshalJSON

func (v *NullableSpatialValidity) UnmarshalJSON(src []byte) error

func (*NullableSpatialValidity) Unset

func (v *NullableSpatialValidity) Unset()

type NullableSpatialValidityRm

type NullableSpatialValidityRm struct {
	// contains filtered or unexported fields
}

func NewNullableSpatialValidityRm

func NewNullableSpatialValidityRm(val *SpatialValidityRm) *NullableSpatialValidityRm

func (NullableSpatialValidityRm) Get

func (NullableSpatialValidityRm) IsSet

func (v NullableSpatialValidityRm) IsSet() bool

func (NullableSpatialValidityRm) MarshalJSON

func (v NullableSpatialValidityRm) MarshalJSON() ([]byte, error)

func (*NullableSpatialValidityRm) Set

func (*NullableSpatialValidityRm) UnmarshalJSON

func (v *NullableSpatialValidityRm) UnmarshalJSON(src []byte) error

func (*NullableSpatialValidityRm) Unset

func (v *NullableSpatialValidityRm) Unset()

type NullableSponsoringStatus

type NullableSponsoringStatus struct {
	// contains filtered or unexported fields
}

func NewNullableSponsoringStatus

func NewNullableSponsoringStatus(val *SponsoringStatus) *NullableSponsoringStatus

func (NullableSponsoringStatus) Get

func (NullableSponsoringStatus) IsSet

func (v NullableSponsoringStatus) IsSet() bool

func (NullableSponsoringStatus) MarshalJSON

func (v NullableSponsoringStatus) MarshalJSON() ([]byte, error)

func (*NullableSponsoringStatus) Set

func (*NullableSponsoringStatus) UnmarshalJSON

func (v *NullableSponsoringStatus) UnmarshalJSON(src []byte) error

func (*NullableSponsoringStatus) Unset

func (v *NullableSponsoringStatus) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTai

type NullableTai struct {
	// contains filtered or unexported fields
}

func NewNullableTai

func NewNullableTai(val *Tai) *NullableTai

func (NullableTai) Get

func (v NullableTai) Get() *Tai

func (NullableTai) IsSet

func (v NullableTai) IsSet() bool

func (NullableTai) MarshalJSON

func (v NullableTai) MarshalJSON() ([]byte, error)

func (*NullableTai) Set

func (v *NullableTai) Set(val *Tai)

func (*NullableTai) UnmarshalJSON

func (v *NullableTai) UnmarshalJSON(src []byte) error

func (*NullableTai) Unset

func (v *NullableTai) Unset()

type NullableTemporalValidity

type NullableTemporalValidity struct {
	// contains filtered or unexported fields
}

func NewNullableTemporalValidity

func NewNullableTemporalValidity(val *TemporalValidity) *NullableTemporalValidity

func (NullableTemporalValidity) Get

func (NullableTemporalValidity) IsSet

func (v NullableTemporalValidity) IsSet() bool

func (NullableTemporalValidity) MarshalJSON

func (v NullableTemporalValidity) MarshalJSON() ([]byte, error)

func (*NullableTemporalValidity) Set

func (*NullableTemporalValidity) UnmarshalJSON

func (v *NullableTemporalValidity) UnmarshalJSON(src []byte) error

func (*NullableTemporalValidity) Unset

func (v *NullableTemporalValidity) Unset()

type NullableTerminationCause

type NullableTerminationCause struct {
	// contains filtered or unexported fields
}

func NewNullableTerminationCause

func NewNullableTerminationCause(val *TerminationCause) *NullableTerminationCause

func (NullableTerminationCause) Get

func (NullableTerminationCause) IsSet

func (v NullableTerminationCause) IsSet() bool

func (NullableTerminationCause) MarshalJSON

func (v NullableTerminationCause) MarshalJSON() ([]byte, error)

func (*NullableTerminationCause) Set

func (*NullableTerminationCause) UnmarshalJSON

func (v *NullableTerminationCause) UnmarshalJSON(src []byte) error

func (*NullableTerminationCause) Unset

func (v *NullableTerminationCause) Unset()

type NullableTerminationInfo

type NullableTerminationInfo struct {
	// contains filtered or unexported fields
}

func NewNullableTerminationInfo

func NewNullableTerminationInfo(val *TerminationInfo) *NullableTerminationInfo

func (NullableTerminationInfo) Get

func (NullableTerminationInfo) IsSet

func (v NullableTerminationInfo) IsSet() bool

func (NullableTerminationInfo) MarshalJSON

func (v NullableTerminationInfo) MarshalJSON() ([]byte, error)

func (*NullableTerminationInfo) Set

func (*NullableTerminationInfo) UnmarshalJSON

func (v *NullableTerminationInfo) UnmarshalJSON(src []byte) error

func (*NullableTerminationInfo) Unset

func (v *NullableTerminationInfo) 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 NullableTransportProtocol1

type NullableTransportProtocol1 struct {
	// contains filtered or unexported fields
}

func NewNullableTransportProtocol1

func NewNullableTransportProtocol1(val *TransportProtocol1) *NullableTransportProtocol1

func (NullableTransportProtocol1) Get

func (NullableTransportProtocol1) IsSet

func (v NullableTransportProtocol1) IsSet() bool

func (NullableTransportProtocol1) MarshalJSON

func (v NullableTransportProtocol1) MarshalJSON() ([]byte, error)

func (*NullableTransportProtocol1) Set

func (*NullableTransportProtocol1) UnmarshalJSON

func (v *NullableTransportProtocol1) UnmarshalJSON(src []byte) error

func (*NullableTransportProtocol1) Unset

func (v *NullableTransportProtocol1) Unset()

type NullableTscaiInputContainer

type NullableTscaiInputContainer struct {
	// contains filtered or unexported fields
}

func NewNullableTscaiInputContainer

func NewNullableTscaiInputContainer(val *TscaiInputContainer) *NullableTscaiInputContainer

func (NullableTscaiInputContainer) Get

func (NullableTscaiInputContainer) IsSet

func (NullableTscaiInputContainer) MarshalJSON

func (v NullableTscaiInputContainer) MarshalJSON() ([]byte, error)

func (*NullableTscaiInputContainer) Set

func (*NullableTscaiInputContainer) UnmarshalJSON

func (v *NullableTscaiInputContainer) UnmarshalJSON(src []byte) error

func (*NullableTscaiInputContainer) Unset

func (v *NullableTscaiInputContainer) Unset()

type NullableTsnBridgeInfo

type NullableTsnBridgeInfo struct {
	// contains filtered or unexported fields
}

func NewNullableTsnBridgeInfo

func NewNullableTsnBridgeInfo(val *TsnBridgeInfo) *NullableTsnBridgeInfo

func (NullableTsnBridgeInfo) Get

func (NullableTsnBridgeInfo) IsSet

func (v NullableTsnBridgeInfo) IsSet() bool

func (NullableTsnBridgeInfo) MarshalJSON

func (v NullableTsnBridgeInfo) MarshalJSON() ([]byte, error)

func (*NullableTsnBridgeInfo) Set

func (v *NullableTsnBridgeInfo) Set(val *TsnBridgeInfo)

func (*NullableTsnBridgeInfo) UnmarshalJSON

func (v *NullableTsnBridgeInfo) UnmarshalJSON(src []byte) error

func (*NullableTsnBridgeInfo) Unset

func (v *NullableTsnBridgeInfo) Unset()

type NullableTsnQosContainer

type NullableTsnQosContainer struct {
	// contains filtered or unexported fields
}

func NewNullableTsnQosContainer

func NewNullableTsnQosContainer(val *TsnQosContainer) *NullableTsnQosContainer

func (NullableTsnQosContainer) Get

func (NullableTsnQosContainer) IsSet

func (v NullableTsnQosContainer) IsSet() bool

func (NullableTsnQosContainer) MarshalJSON

func (v NullableTsnQosContainer) MarshalJSON() ([]byte, error)

func (*NullableTsnQosContainer) Set

func (*NullableTsnQosContainer) UnmarshalJSON

func (v *NullableTsnQosContainer) UnmarshalJSON(src []byte) error

func (*NullableTsnQosContainer) Unset

func (v *NullableTsnQosContainer) Unset()

type NullableTsnQosContainerRm

type NullableTsnQosContainerRm struct {
	// contains filtered or unexported fields
}

func NewNullableTsnQosContainerRm

func NewNullableTsnQosContainerRm(val *TsnQosContainerRm) *NullableTsnQosContainerRm

func (NullableTsnQosContainerRm) Get

func (NullableTsnQosContainerRm) IsSet

func (v NullableTsnQosContainerRm) IsSet() bool

func (NullableTsnQosContainerRm) MarshalJSON

func (v NullableTsnQosContainerRm) MarshalJSON() ([]byte, error)

func (*NullableTsnQosContainerRm) Set

func (*NullableTsnQosContainerRm) UnmarshalJSON

func (v *NullableTsnQosContainerRm) UnmarshalJSON(src []byte) error

func (*NullableTsnQosContainerRm) Unset

func (v *NullableTsnQosContainerRm) 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 NullableUeIdentityInfo

type NullableUeIdentityInfo struct {
	// contains filtered or unexported fields
}

func NewNullableUeIdentityInfo

func NewNullableUeIdentityInfo(val *UeIdentityInfo) *NullableUeIdentityInfo

func (NullableUeIdentityInfo) Get

func (NullableUeIdentityInfo) IsSet

func (v NullableUeIdentityInfo) IsSet() bool

func (NullableUeIdentityInfo) MarshalJSON

func (v NullableUeIdentityInfo) MarshalJSON() ([]byte, error)

func (*NullableUeIdentityInfo) Set

func (*NullableUeIdentityInfo) UnmarshalJSON

func (v *NullableUeIdentityInfo) UnmarshalJSON(src []byte) error

func (*NullableUeIdentityInfo) Unset

func (v *NullableUeIdentityInfo) Unset()

type NullableUpPathChgEvent

type NullableUpPathChgEvent struct {
	// contains filtered or unexported fields
}

func NewNullableUpPathChgEvent

func NewNullableUpPathChgEvent(val *UpPathChgEvent) *NullableUpPathChgEvent

func (NullableUpPathChgEvent) Get

func (NullableUpPathChgEvent) IsSet

func (v NullableUpPathChgEvent) IsSet() bool

func (NullableUpPathChgEvent) MarshalJSON

func (v NullableUpPathChgEvent) MarshalJSON() ([]byte, error)

func (*NullableUpPathChgEvent) Set

func (*NullableUpPathChgEvent) UnmarshalJSON

func (v *NullableUpPathChgEvent) UnmarshalJSON(src []byte) error

func (*NullableUpPathChgEvent) Unset

func (v *NullableUpPathChgEvent) Unset()

type NullableUsageThreshold

type NullableUsageThreshold struct {
	// contains filtered or unexported fields
}

func NewNullableUsageThreshold

func NewNullableUsageThreshold(val *UsageThreshold) *NullableUsageThreshold

func (NullableUsageThreshold) Get

func (NullableUsageThreshold) IsSet

func (v NullableUsageThreshold) IsSet() bool

func (NullableUsageThreshold) MarshalJSON

func (v NullableUsageThreshold) MarshalJSON() ([]byte, error)

func (*NullableUsageThreshold) Set

func (*NullableUsageThreshold) UnmarshalJSON

func (v *NullableUsageThreshold) UnmarshalJSON(src []byte) error

func (*NullableUsageThreshold) Unset

func (v *NullableUsageThreshold) Unset()

type NullableUsageThresholdRm

type NullableUsageThresholdRm struct {
	// contains filtered or unexported fields
}

func NewNullableUsageThresholdRm

func NewNullableUsageThresholdRm(val *UsageThresholdRm) *NullableUsageThresholdRm

func (NullableUsageThresholdRm) Get

func (NullableUsageThresholdRm) IsSet

func (v NullableUsageThresholdRm) IsSet() bool

func (NullableUsageThresholdRm) MarshalJSON

func (v NullableUsageThresholdRm) MarshalJSON() ([]byte, error)

func (*NullableUsageThresholdRm) Set

func (*NullableUsageThresholdRm) UnmarshalJSON

func (v *NullableUsageThresholdRm) UnmarshalJSON(src []byte) error

func (*NullableUsageThresholdRm) Unset

func (v *NullableUsageThresholdRm) 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 OutOfCreditInformation

type OutOfCreditInformation struct {
	FinUnitAct FinalUnitAction `json:"finUnitAct"`
	Flows      []Flows         `json:"flows,omitempty"`
}

OutOfCreditInformation Indicates the SDFs without available credit and the corresponding termination action.

func NewOutOfCreditInformation

func NewOutOfCreditInformation(finUnitAct FinalUnitAction) *OutOfCreditInformation

NewOutOfCreditInformation instantiates a new OutOfCreditInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOutOfCreditInformationWithDefaults

func NewOutOfCreditInformationWithDefaults() *OutOfCreditInformation

NewOutOfCreditInformationWithDefaults instantiates a new OutOfCreditInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OutOfCreditInformation) GetFinUnitAct

func (o *OutOfCreditInformation) GetFinUnitAct() FinalUnitAction

GetFinUnitAct returns the FinUnitAct field value

func (*OutOfCreditInformation) GetFinUnitActOk

func (o *OutOfCreditInformation) GetFinUnitActOk() (*FinalUnitAction, bool)

GetFinUnitActOk returns a tuple with the FinUnitAct field value and a boolean to check if the value has been set.

func (*OutOfCreditInformation) GetFlows

func (o *OutOfCreditInformation) GetFlows() []Flows

GetFlows returns the Flows field value if set, zero value otherwise.

func (*OutOfCreditInformation) GetFlowsOk

func (o *OutOfCreditInformation) GetFlowsOk() ([]Flows, bool)

GetFlowsOk returns a tuple with the Flows field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OutOfCreditInformation) HasFlows

func (o *OutOfCreditInformation) HasFlows() bool

HasFlows returns a boolean if a field has been set.

func (OutOfCreditInformation) MarshalJSON

func (o OutOfCreditInformation) MarshalJSON() ([]byte, error)

func (*OutOfCreditInformation) SetFinUnitAct

func (o *OutOfCreditInformation) SetFinUnitAct(v FinalUnitAction)

SetFinUnitAct sets field value

func (*OutOfCreditInformation) SetFlows

func (o *OutOfCreditInformation) SetFlows(v []Flows)

SetFlows gets a reference to the given []Flows and assigns it to the Flows field.

func (OutOfCreditInformation) ToMap

func (o OutOfCreditInformation) ToMap() (map[string]interface{}, error)

type PCSCFRestorationIndicationApiService

type PCSCFRestorationIndicationApiService service

PCSCFRestorationIndicationApiService PCSCFRestorationIndicationApi service

func (*PCSCFRestorationIndicationApiService) PcscfRestoration

PcscfRestoration Indicates P-CSCF restoration and does not create an Individual Application Session Context

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPcscfRestorationRequest

func (*PCSCFRestorationIndicationApiService) PcscfRestorationExecute

Execute executes the request

type PcfAddressingInfo

type PcfAddressingInfo struct {
	// Fully Qualified Domain Name
	PcfFqdn *string `json:"pcfFqdn,omitempty"`
	// IP end points of the PCF hosting the Npcf_PolicyAuthorization service.
	PcfIpEndPoints []IpEndPoint `json:"pcfIpEndPoints,omitempty"`
	// contains the binding indications of the PCF.
	BindingInfo *string `json:"bindingInfo,omitempty"`
}

PcfAddressingInfo Contains PCF address information.

func NewPcfAddressingInfo

func NewPcfAddressingInfo() *PcfAddressingInfo

NewPcfAddressingInfo instantiates a new PcfAddressingInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPcfAddressingInfoWithDefaults

func NewPcfAddressingInfoWithDefaults() *PcfAddressingInfo

NewPcfAddressingInfoWithDefaults instantiates a new PcfAddressingInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PcfAddressingInfo) GetBindingInfo

func (o *PcfAddressingInfo) GetBindingInfo() string

GetBindingInfo returns the BindingInfo field value if set, zero value otherwise.

func (*PcfAddressingInfo) GetBindingInfoOk

func (o *PcfAddressingInfo) GetBindingInfoOk() (*string, bool)

GetBindingInfoOk returns a tuple with the BindingInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfAddressingInfo) GetPcfFqdn

func (o *PcfAddressingInfo) GetPcfFqdn() string

GetPcfFqdn returns the PcfFqdn field value if set, zero value otherwise.

func (*PcfAddressingInfo) GetPcfFqdnOk

func (o *PcfAddressingInfo) GetPcfFqdnOk() (*string, bool)

GetPcfFqdnOk returns a tuple with the PcfFqdn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfAddressingInfo) GetPcfIpEndPoints

func (o *PcfAddressingInfo) GetPcfIpEndPoints() []IpEndPoint

GetPcfIpEndPoints returns the PcfIpEndPoints field value if set, zero value otherwise.

func (*PcfAddressingInfo) GetPcfIpEndPointsOk

func (o *PcfAddressingInfo) GetPcfIpEndPointsOk() ([]IpEndPoint, bool)

GetPcfIpEndPointsOk returns a tuple with the PcfIpEndPoints field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcfAddressingInfo) HasBindingInfo

func (o *PcfAddressingInfo) HasBindingInfo() bool

HasBindingInfo returns a boolean if a field has been set.

func (*PcfAddressingInfo) HasPcfFqdn

func (o *PcfAddressingInfo) HasPcfFqdn() bool

HasPcfFqdn returns a boolean if a field has been set.

func (*PcfAddressingInfo) HasPcfIpEndPoints

func (o *PcfAddressingInfo) HasPcfIpEndPoints() bool

HasPcfIpEndPoints returns a boolean if a field has been set.

func (PcfAddressingInfo) MarshalJSON

func (o PcfAddressingInfo) MarshalJSON() ([]byte, error)

func (*PcfAddressingInfo) SetBindingInfo

func (o *PcfAddressingInfo) SetBindingInfo(v string)

SetBindingInfo gets a reference to the given string and assigns it to the BindingInfo field.

func (*PcfAddressingInfo) SetPcfFqdn

func (o *PcfAddressingInfo) SetPcfFqdn(v string)

SetPcfFqdn gets a reference to the given string and assigns it to the PcfFqdn field.

func (*PcfAddressingInfo) SetPcfIpEndPoints

func (o *PcfAddressingInfo) SetPcfIpEndPoints(v []IpEndPoint)

SetPcfIpEndPoints gets a reference to the given []IpEndPoint and assigns it to the PcfIpEndPoints field.

func (PcfAddressingInfo) ToMap

func (o PcfAddressingInfo) ToMap() (map[string]interface{}, error)

type PcscfRestorationRequestData

type PcscfRestorationRequestData struct {
	Interface *interface{}
}

PcscfRestorationRequestData - Indicates P-CSCF restoration.

func InterfaceAsPcscfRestorationRequestData

func InterfaceAsPcscfRestorationRequestData(v *interface{}) PcscfRestorationRequestData

interface{}AsPcscfRestorationRequestData is a convenience function that returns interface{} wrapped in PcscfRestorationRequestData

func (*PcscfRestorationRequestData) GetActualInstance

func (obj *PcscfRestorationRequestData) GetActualInstance() interface{}

Get the actual instance

func (PcscfRestorationRequestData) MarshalJSON

func (src PcscfRestorationRequestData) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PcscfRestorationRequestData) UnmarshalJSON

func (dst *PcscfRestorationRequestData) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PduSessionEventNotification

type PduSessionEventNotification struct {
	EvNotif AfEventNotification `json:"evNotif"`
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	UeIpv4 *string   `json:"ueIpv4,omitempty"`
	UeIpv6 *Ipv6Addr `json:"ueIpv6,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	UeMac   *string            `json:"ueMac,omitempty"`
	Status  *PduSessionStatus  `json:"status,omitempty"`
	PcfInfo *PcfAddressingInfo `json:"pcfInfo,omitempty"`
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn    *string `json:"dnn,omitempty"`
	Snssai *Snssai `json:"snssai,omitempty"`
	// 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"`
}

PduSessionEventNotification Indicates PDU session information for the concerned established/terminated PDU session.

func NewPduSessionEventNotification

func NewPduSessionEventNotification(evNotif AfEventNotification) *PduSessionEventNotification

NewPduSessionEventNotification instantiates a new PduSessionEventNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPduSessionEventNotificationWithDefaults

func NewPduSessionEventNotificationWithDefaults() *PduSessionEventNotification

NewPduSessionEventNotificationWithDefaults instantiates a new PduSessionEventNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PduSessionEventNotification) GetDnn

func (o *PduSessionEventNotification) GetDnn() string

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*PduSessionEventNotification) GetDnnOk

func (o *PduSessionEventNotification) 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 (*PduSessionEventNotification) GetEvNotif

GetEvNotif returns the EvNotif field value

func (*PduSessionEventNotification) GetEvNotifOk

GetEvNotifOk returns a tuple with the EvNotif field value and a boolean to check if the value has been set.

func (*PduSessionEventNotification) GetGpsi

func (o *PduSessionEventNotification) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*PduSessionEventNotification) GetGpsiOk

func (o *PduSessionEventNotification) 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 (*PduSessionEventNotification) GetPcfInfo

GetPcfInfo returns the PcfInfo field value if set, zero value otherwise.

func (*PduSessionEventNotification) GetPcfInfoOk

func (o *PduSessionEventNotification) GetPcfInfoOk() (*PcfAddressingInfo, bool)

GetPcfInfoOk returns a tuple with the PcfInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionEventNotification) GetSnssai

func (o *PduSessionEventNotification) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*PduSessionEventNotification) GetSnssaiOk

func (o *PduSessionEventNotification) GetSnssaiOk() (*Snssai, bool)

GetSnssaiOk returns a tuple with the Snssai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionEventNotification) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*PduSessionEventNotification) GetStatusOk

func (o *PduSessionEventNotification) GetStatusOk() (*PduSessionStatus, 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 (*PduSessionEventNotification) GetSupi

func (o *PduSessionEventNotification) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*PduSessionEventNotification) GetSupiOk

func (o *PduSessionEventNotification) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionEventNotification) GetUeIpv4

func (o *PduSessionEventNotification) GetUeIpv4() string

GetUeIpv4 returns the UeIpv4 field value if set, zero value otherwise.

func (*PduSessionEventNotification) GetUeIpv4Ok

func (o *PduSessionEventNotification) GetUeIpv4Ok() (*string, bool)

GetUeIpv4Ok returns a tuple with the UeIpv4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionEventNotification) GetUeIpv6

func (o *PduSessionEventNotification) GetUeIpv6() Ipv6Addr

GetUeIpv6 returns the UeIpv6 field value if set, zero value otherwise.

func (*PduSessionEventNotification) GetUeIpv6Ok

func (o *PduSessionEventNotification) GetUeIpv6Ok() (*Ipv6Addr, bool)

GetUeIpv6Ok returns a tuple with the UeIpv6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionEventNotification) GetUeMac

func (o *PduSessionEventNotification) GetUeMac() string

GetUeMac returns the UeMac field value if set, zero value otherwise.

func (*PduSessionEventNotification) GetUeMacOk

func (o *PduSessionEventNotification) GetUeMacOk() (*string, bool)

GetUeMacOk returns a tuple with the UeMac field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionEventNotification) HasDnn

func (o *PduSessionEventNotification) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*PduSessionEventNotification) HasGpsi

func (o *PduSessionEventNotification) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*PduSessionEventNotification) HasPcfInfo

func (o *PduSessionEventNotification) HasPcfInfo() bool

HasPcfInfo returns a boolean if a field has been set.

func (*PduSessionEventNotification) HasSnssai

func (o *PduSessionEventNotification) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*PduSessionEventNotification) HasStatus

func (o *PduSessionEventNotification) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*PduSessionEventNotification) HasSupi

func (o *PduSessionEventNotification) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (*PduSessionEventNotification) HasUeIpv4

func (o *PduSessionEventNotification) HasUeIpv4() bool

HasUeIpv4 returns a boolean if a field has been set.

func (*PduSessionEventNotification) HasUeIpv6

func (o *PduSessionEventNotification) HasUeIpv6() bool

HasUeIpv6 returns a boolean if a field has been set.

func (*PduSessionEventNotification) HasUeMac

func (o *PduSessionEventNotification) HasUeMac() bool

HasUeMac returns a boolean if a field has been set.

func (PduSessionEventNotification) MarshalJSON

func (o PduSessionEventNotification) MarshalJSON() ([]byte, error)

func (*PduSessionEventNotification) SetDnn

func (o *PduSessionEventNotification) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*PduSessionEventNotification) SetEvNotif

SetEvNotif sets field value

func (*PduSessionEventNotification) SetGpsi

func (o *PduSessionEventNotification) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*PduSessionEventNotification) SetPcfInfo

SetPcfInfo gets a reference to the given PcfAddressingInfo and assigns it to the PcfInfo field.

func (*PduSessionEventNotification) SetSnssai

func (o *PduSessionEventNotification) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (*PduSessionEventNotification) SetStatus

SetStatus gets a reference to the given PduSessionStatus and assigns it to the Status field.

func (*PduSessionEventNotification) SetSupi

func (o *PduSessionEventNotification) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (*PduSessionEventNotification) SetUeIpv4

func (o *PduSessionEventNotification) SetUeIpv4(v string)

SetUeIpv4 gets a reference to the given string and assigns it to the UeIpv4 field.

func (*PduSessionEventNotification) SetUeIpv6

func (o *PduSessionEventNotification) SetUeIpv6(v Ipv6Addr)

SetUeIpv6 gets a reference to the given Ipv6Addr and assigns it to the UeIpv6 field.

func (*PduSessionEventNotification) SetUeMac

func (o *PduSessionEventNotification) SetUeMac(v string)

SetUeMac gets a reference to the given string and assigns it to the UeMac field.

func (PduSessionEventNotification) ToMap

func (o PduSessionEventNotification) ToMap() (map[string]interface{}, error)

type PduSessionStatus

type PduSessionStatus struct {
	String *string
}

PduSessionStatus Indicates whether the PDU session is established or terminated.

func (*PduSessionStatus) MarshalJSON

func (src *PduSessionStatus) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PduSessionStatus) UnmarshalJSON

func (dst *PduSessionStatus) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PduSessionTsnBridge

type PduSessionTsnBridge struct {
	TsnBridgeInfo       TsnBridgeInfo              `json:"tsnBridgeInfo"`
	TsnBridgeManCont    *BridgeManagementContainer `json:"tsnBridgeManCont,omitempty"`
	TsnPortManContDstt  *PortManagementContainer   `json:"tsnPortManContDstt,omitempty"`
	TsnPortManContNwtts []PortManagementContainer  `json:"tsnPortManContNwtts,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	UeIpv4Addr *string `json:"ueIpv4Addr,omitempty"`
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn    *string `json:"dnn,omitempty"`
	Snssai *Snssai `json:"snssai,omitempty"`
	// IPv4 address domain identifier.
	IpDomain         *string     `json:"ipDomain,omitempty"`
	UeIpv6AddrPrefix *Ipv6Prefix `json:"ueIpv6AddrPrefix,omitempty"`
}

PduSessionTsnBridge Contains the new TSC user plane node information and may contain the DS-TT port and/or NW-TT port management information.

func NewPduSessionTsnBridge

func NewPduSessionTsnBridge(tsnBridgeInfo TsnBridgeInfo) *PduSessionTsnBridge

NewPduSessionTsnBridge instantiates a new PduSessionTsnBridge object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPduSessionTsnBridgeWithDefaults

func NewPduSessionTsnBridgeWithDefaults() *PduSessionTsnBridge

NewPduSessionTsnBridgeWithDefaults instantiates a new PduSessionTsnBridge object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PduSessionTsnBridge) GetDnn

func (o *PduSessionTsnBridge) GetDnn() string

GetDnn returns the Dnn field value if set, zero value otherwise.

func (*PduSessionTsnBridge) GetDnnOk

func (o *PduSessionTsnBridge) 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 (*PduSessionTsnBridge) GetIpDomain

func (o *PduSessionTsnBridge) GetIpDomain() string

GetIpDomain returns the IpDomain field value if set, zero value otherwise.

func (*PduSessionTsnBridge) GetIpDomainOk

func (o *PduSessionTsnBridge) GetIpDomainOk() (*string, bool)

GetIpDomainOk returns a tuple with the IpDomain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionTsnBridge) GetSnssai

func (o *PduSessionTsnBridge) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*PduSessionTsnBridge) GetSnssaiOk

func (o *PduSessionTsnBridge) GetSnssaiOk() (*Snssai, bool)

GetSnssaiOk returns a tuple with the Snssai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionTsnBridge) GetTsnBridgeInfo

func (o *PduSessionTsnBridge) GetTsnBridgeInfo() TsnBridgeInfo

GetTsnBridgeInfo returns the TsnBridgeInfo field value

func (*PduSessionTsnBridge) GetTsnBridgeInfoOk

func (o *PduSessionTsnBridge) GetTsnBridgeInfoOk() (*TsnBridgeInfo, bool)

GetTsnBridgeInfoOk returns a tuple with the TsnBridgeInfo field value and a boolean to check if the value has been set.

func (*PduSessionTsnBridge) GetTsnBridgeManCont

func (o *PduSessionTsnBridge) GetTsnBridgeManCont() BridgeManagementContainer

GetTsnBridgeManCont returns the TsnBridgeManCont field value if set, zero value otherwise.

func (*PduSessionTsnBridge) GetTsnBridgeManContOk

func (o *PduSessionTsnBridge) GetTsnBridgeManContOk() (*BridgeManagementContainer, bool)

GetTsnBridgeManContOk returns a tuple with the TsnBridgeManCont field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionTsnBridge) GetTsnPortManContDstt

func (o *PduSessionTsnBridge) GetTsnPortManContDstt() PortManagementContainer

GetTsnPortManContDstt returns the TsnPortManContDstt field value if set, zero value otherwise.

func (*PduSessionTsnBridge) GetTsnPortManContDsttOk

func (o *PduSessionTsnBridge) GetTsnPortManContDsttOk() (*PortManagementContainer, bool)

GetTsnPortManContDsttOk returns a tuple with the TsnPortManContDstt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionTsnBridge) GetTsnPortManContNwtts

func (o *PduSessionTsnBridge) GetTsnPortManContNwtts() []PortManagementContainer

GetTsnPortManContNwtts returns the TsnPortManContNwtts field value if set, zero value otherwise.

func (*PduSessionTsnBridge) GetTsnPortManContNwttsOk

func (o *PduSessionTsnBridge) GetTsnPortManContNwttsOk() ([]PortManagementContainer, bool)

GetTsnPortManContNwttsOk returns a tuple with the TsnPortManContNwtts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionTsnBridge) GetUeIpv4Addr

func (o *PduSessionTsnBridge) GetUeIpv4Addr() string

GetUeIpv4Addr returns the UeIpv4Addr field value if set, zero value otherwise.

func (*PduSessionTsnBridge) GetUeIpv4AddrOk

func (o *PduSessionTsnBridge) 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 (*PduSessionTsnBridge) GetUeIpv6AddrPrefix

func (o *PduSessionTsnBridge) GetUeIpv6AddrPrefix() Ipv6Prefix

GetUeIpv6AddrPrefix returns the UeIpv6AddrPrefix field value if set, zero value otherwise.

func (*PduSessionTsnBridge) GetUeIpv6AddrPrefixOk

func (o *PduSessionTsnBridge) GetUeIpv6AddrPrefixOk() (*Ipv6Prefix, bool)

GetUeIpv6AddrPrefixOk returns a tuple with the UeIpv6AddrPrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PduSessionTsnBridge) HasDnn

func (o *PduSessionTsnBridge) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*PduSessionTsnBridge) HasIpDomain

func (o *PduSessionTsnBridge) HasIpDomain() bool

HasIpDomain returns a boolean if a field has been set.

func (*PduSessionTsnBridge) HasSnssai

func (o *PduSessionTsnBridge) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*PduSessionTsnBridge) HasTsnBridgeManCont

func (o *PduSessionTsnBridge) HasTsnBridgeManCont() bool

HasTsnBridgeManCont returns a boolean if a field has been set.

func (*PduSessionTsnBridge) HasTsnPortManContDstt

func (o *PduSessionTsnBridge) HasTsnPortManContDstt() bool

HasTsnPortManContDstt returns a boolean if a field has been set.

func (*PduSessionTsnBridge) HasTsnPortManContNwtts

func (o *PduSessionTsnBridge) HasTsnPortManContNwtts() bool

HasTsnPortManContNwtts returns a boolean if a field has been set.

func (*PduSessionTsnBridge) HasUeIpv4Addr

func (o *PduSessionTsnBridge) HasUeIpv4Addr() bool

HasUeIpv4Addr returns a boolean if a field has been set.

func (*PduSessionTsnBridge) HasUeIpv6AddrPrefix

func (o *PduSessionTsnBridge) HasUeIpv6AddrPrefix() bool

HasUeIpv6AddrPrefix returns a boolean if a field has been set.

func (PduSessionTsnBridge) MarshalJSON

func (o PduSessionTsnBridge) MarshalJSON() ([]byte, error)

func (*PduSessionTsnBridge) SetDnn

func (o *PduSessionTsnBridge) SetDnn(v string)

SetDnn gets a reference to the given string and assigns it to the Dnn field.

func (*PduSessionTsnBridge) SetIpDomain

func (o *PduSessionTsnBridge) SetIpDomain(v string)

SetIpDomain gets a reference to the given string and assigns it to the IpDomain field.

func (*PduSessionTsnBridge) SetSnssai

func (o *PduSessionTsnBridge) SetSnssai(v Snssai)

SetSnssai gets a reference to the given Snssai and assigns it to the Snssai field.

func (*PduSessionTsnBridge) SetTsnBridgeInfo

func (o *PduSessionTsnBridge) SetTsnBridgeInfo(v TsnBridgeInfo)

SetTsnBridgeInfo sets field value

func (*PduSessionTsnBridge) SetTsnBridgeManCont

func (o *PduSessionTsnBridge) SetTsnBridgeManCont(v BridgeManagementContainer)

SetTsnBridgeManCont gets a reference to the given BridgeManagementContainer and assigns it to the TsnBridgeManCont field.

func (*PduSessionTsnBridge) SetTsnPortManContDstt

func (o *PduSessionTsnBridge) SetTsnPortManContDstt(v PortManagementContainer)

SetTsnPortManContDstt gets a reference to the given PortManagementContainer and assigns it to the TsnPortManContDstt field.

func (*PduSessionTsnBridge) SetTsnPortManContNwtts

func (o *PduSessionTsnBridge) SetTsnPortManContNwtts(v []PortManagementContainer)

SetTsnPortManContNwtts gets a reference to the given []PortManagementContainer and assigns it to the TsnPortManContNwtts field.

func (*PduSessionTsnBridge) SetUeIpv4Addr

func (o *PduSessionTsnBridge) SetUeIpv4Addr(v string)

SetUeIpv4Addr gets a reference to the given string and assigns it to the UeIpv4Addr field.

func (*PduSessionTsnBridge) SetUeIpv6AddrPrefix

func (o *PduSessionTsnBridge) SetUeIpv6AddrPrefix(v Ipv6Prefix)

SetUeIpv6AddrPrefix gets a reference to the given Ipv6Prefix and assigns it to the UeIpv6AddrPrefix field.

func (PduSessionTsnBridge) ToMap

func (o PduSessionTsnBridge) ToMap() (map[string]interface{}, error)

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 PortManagementContainer

type PortManagementContainer struct {
	// string with format 'bytes' as defined in OpenAPI
	PortManCont string `json:"portManCont"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNum int32 `json:"portNum"`
}

PortManagementContainer Contains the port management information container for a port.

func NewPortManagementContainer

func NewPortManagementContainer(portManCont string, portNum int32) *PortManagementContainer

NewPortManagementContainer instantiates a new PortManagementContainer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPortManagementContainerWithDefaults

func NewPortManagementContainerWithDefaults() *PortManagementContainer

NewPortManagementContainerWithDefaults instantiates a new PortManagementContainer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PortManagementContainer) GetPortManCont

func (o *PortManagementContainer) GetPortManCont() string

GetPortManCont returns the PortManCont field value

func (*PortManagementContainer) GetPortManContOk

func (o *PortManagementContainer) GetPortManContOk() (*string, bool)

GetPortManContOk returns a tuple with the PortManCont field value and a boolean to check if the value has been set.

func (*PortManagementContainer) GetPortNum

func (o *PortManagementContainer) GetPortNum() int32

GetPortNum returns the PortNum field value

func (*PortManagementContainer) GetPortNumOk

func (o *PortManagementContainer) GetPortNumOk() (*int32, bool)

GetPortNumOk returns a tuple with the PortNum field value and a boolean to check if the value has been set.

func (PortManagementContainer) MarshalJSON

func (o PortManagementContainer) MarshalJSON() ([]byte, error)

func (*PortManagementContainer) SetPortManCont

func (o *PortManagementContainer) SetPortManCont(v string)

SetPortManCont sets field value

func (*PortManagementContainer) SetPortNum

func (o *PortManagementContainer) SetPortNum(v int32)

SetPortNum sets field value

func (PortManagementContainer) ToMap

func (o PortManagementContainer) ToMap() (map[string]interface{}, error)

type PreemptionCapability

type PreemptionCapability struct {
	String *string
}

PreemptionCapability The enumeration PreemptionCapability indicates the pre-emption capability of a request on other QoS flows. See clause 5.7.2.2 of 3GPP TS 23.501. It shall comply with the provisions defined in table 5.5.3.1-1.

func (*PreemptionCapability) MarshalJSON

func (src *PreemptionCapability) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PreemptionCapability) UnmarshalJSON

func (dst *PreemptionCapability) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PreemptionCapabilityRm

type PreemptionCapabilityRm struct {
	NullValue            *NullValue
	PreemptionCapability *PreemptionCapability
}

PreemptionCapabilityRm This enumeration is defined in the same way as the 'PreemptionCapability' enumeration, but with the OpenAPI 'nullable: true' property.

func (*PreemptionCapabilityRm) MarshalJSON

func (src *PreemptionCapabilityRm) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PreemptionCapabilityRm) UnmarshalJSON

func (dst *PreemptionCapabilityRm) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PreemptionControlInformation

type PreemptionControlInformation struct {
	String *string
}

PreemptionControlInformation Represents Pre-emption control information.

func (*PreemptionControlInformation) MarshalJSON

func (src *PreemptionControlInformation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PreemptionControlInformation) UnmarshalJSON

func (dst *PreemptionControlInformation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PreemptionControlInformationRm

type PreemptionControlInformationRm struct {
	NullValue                    *NullValue
	PreemptionControlInformation *PreemptionControlInformation
}

PreemptionControlInformationRm This data type is defined in the same way as the PreemptionControlInformation data type, but with the OpenAPI nullable property set to true.

func (*PreemptionControlInformationRm) MarshalJSON

func (src *PreemptionControlInformationRm) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PreemptionControlInformationRm) UnmarshalJSON

func (dst *PreemptionControlInformationRm) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PreemptionVulnerability

type PreemptionVulnerability struct {
	String *string
}

PreemptionVulnerability The enumeration PreemptionVulnerability indicates the pre-emption vulnerability of the QoS flow to pre-emption from other QoS flows. See clause 5.7.2.2 of 3GPP TS 23.501. It shall comply with the provisions defined in table 5.5.3.2-1

func (*PreemptionVulnerability) MarshalJSON

func (src *PreemptionVulnerability) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PreemptionVulnerability) UnmarshalJSON

func (dst *PreemptionVulnerability) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PreemptionVulnerabilityRm

type PreemptionVulnerabilityRm struct {
	NullValue               *NullValue
	PreemptionVulnerability *PreemptionVulnerability
}

PreemptionVulnerabilityRm This enumeration is defined in the same way as the 'PreemptionVulnerability' enumeration, but with the OpenAPI 'nullable: true' property.\"

func (*PreemptionVulnerabilityRm) MarshalJSON

func (src *PreemptionVulnerabilityRm) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PreemptionVulnerabilityRm) UnmarshalJSON

func (dst *PreemptionVulnerabilityRm) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PresenceInfo

type PresenceInfo struct {
	// Represents an identifier of the Presence Reporting Area (see clause 28.10 of 3GPP  TS 23.003.  This IE shall be present  if the Area of Interest subscribed or reported is a Presence Reporting Area or a Set of Core Network predefined Presence Reporting Areas. When present, it shall be encoded as a string representing an integer in the following ranges: 0 to 8 388 607 for UE-dedicated PRA 8 388 608 to 16 777 215 for Core Network predefined PRA Examples: PRA ID 123 is encoded as \"123\" PRA ID 11 238 660 is encoded as \"11238660\"
	PraId *string `json:"praId,omitempty"`
	// This IE may be present if the praId IE is present and if it contains a PRA identifier referring to a set of Core Network predefined Presence Reporting Areas. When present, this IE shall contain a PRA Identifier of an individual PRA within the Set of Core Network predefined Presence Reporting Areas indicated by the praId IE.
	AdditionalPraId *string        `json:"additionalPraId,omitempty"`
	PresenceState   *PresenceState `json:"presenceState,omitempty"`
	// Represents the list of tracking areas that constitutes the area. This IE shall be present if the subscription or  the event report is for tracking UE presence in the tracking areas. For non 3GPP access the TAI shall be the N3GPP TAI.
	TrackingAreaList []Tai `json:"trackingAreaList,omitempty"`
	// Represents the list of EUTRAN cell Ids that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of EUTRAN cell Ids.
	EcgiList []Ecgi `json:"ecgiList,omitempty"`
	// Represents the list of NR cell Ids that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of NR cell Ids.
	NcgiList []Ncgi `json:"ncgiList,omitempty"`
	// Represents the list of NG RAN node identifiers that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of NG RAN node identifiers.
	GlobalRanNodeIdList []GlobalRanNodeId `json:"globalRanNodeIdList,omitempty"`
	// Represents the list of eNodeB identifiers that constitutes the area. This IE shall be  present if the Area of Interest subscribed is a list of eNodeB identifiers.
	GlobaleNbIdList []GlobalRanNodeId `json:"globaleNbIdList,omitempty"`
}

PresenceInfo If the additionalPraId IE is present, this IE shall state the presence information of the UE for the individual PRA identified by the additionalPraId IE; If the additionalPraId IE is not present, this IE shall state the presence information of the UE for the PRA identified by the praId IE.

func NewPresenceInfo

func NewPresenceInfo() *PresenceInfo

NewPresenceInfo instantiates a new PresenceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPresenceInfoWithDefaults

func NewPresenceInfoWithDefaults() *PresenceInfo

NewPresenceInfoWithDefaults instantiates a new PresenceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PresenceInfo) GetAdditionalPraId

func (o *PresenceInfo) GetAdditionalPraId() string

GetAdditionalPraId returns the AdditionalPraId field value if set, zero value otherwise.

func (*PresenceInfo) GetAdditionalPraIdOk

func (o *PresenceInfo) GetAdditionalPraIdOk() (*string, bool)

GetAdditionalPraIdOk returns a tuple with the AdditionalPraId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetEcgiList

func (o *PresenceInfo) GetEcgiList() []Ecgi

GetEcgiList returns the EcgiList field value if set, zero value otherwise.

func (*PresenceInfo) GetEcgiListOk

func (o *PresenceInfo) GetEcgiListOk() ([]Ecgi, bool)

GetEcgiListOk returns a tuple with the EcgiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetGlobalRanNodeIdList

func (o *PresenceInfo) GetGlobalRanNodeIdList() []GlobalRanNodeId

GetGlobalRanNodeIdList returns the GlobalRanNodeIdList field value if set, zero value otherwise.

func (*PresenceInfo) GetGlobalRanNodeIdListOk

func (o *PresenceInfo) GetGlobalRanNodeIdListOk() ([]GlobalRanNodeId, bool)

GetGlobalRanNodeIdListOk returns a tuple with the GlobalRanNodeIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetGlobaleNbIdList

func (o *PresenceInfo) GetGlobaleNbIdList() []GlobalRanNodeId

GetGlobaleNbIdList returns the GlobaleNbIdList field value if set, zero value otherwise.

func (*PresenceInfo) GetGlobaleNbIdListOk

func (o *PresenceInfo) GetGlobaleNbIdListOk() ([]GlobalRanNodeId, bool)

GetGlobaleNbIdListOk returns a tuple with the GlobaleNbIdList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetNcgiList

func (o *PresenceInfo) GetNcgiList() []Ncgi

GetNcgiList returns the NcgiList field value if set, zero value otherwise.

func (*PresenceInfo) GetNcgiListOk

func (o *PresenceInfo) GetNcgiListOk() ([]Ncgi, bool)

GetNcgiListOk returns a tuple with the NcgiList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetPraId

func (o *PresenceInfo) GetPraId() string

GetPraId returns the PraId field value if set, zero value otherwise.

func (*PresenceInfo) GetPraIdOk

func (o *PresenceInfo) GetPraIdOk() (*string, bool)

GetPraIdOk returns a tuple with the PraId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetPresenceState

func (o *PresenceInfo) GetPresenceState() PresenceState

GetPresenceState returns the PresenceState field value if set, zero value otherwise.

func (*PresenceInfo) GetPresenceStateOk

func (o *PresenceInfo) GetPresenceStateOk() (*PresenceState, bool)

GetPresenceStateOk returns a tuple with the PresenceState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) GetTrackingAreaList

func (o *PresenceInfo) GetTrackingAreaList() []Tai

GetTrackingAreaList returns the TrackingAreaList field value if set, zero value otherwise.

func (*PresenceInfo) GetTrackingAreaListOk

func (o *PresenceInfo) GetTrackingAreaListOk() ([]Tai, bool)

GetTrackingAreaListOk returns a tuple with the TrackingAreaList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PresenceInfo) HasAdditionalPraId

func (o *PresenceInfo) HasAdditionalPraId() bool

HasAdditionalPraId returns a boolean if a field has been set.

func (*PresenceInfo) HasEcgiList

func (o *PresenceInfo) HasEcgiList() bool

HasEcgiList returns a boolean if a field has been set.

func (*PresenceInfo) HasGlobalRanNodeIdList

func (o *PresenceInfo) HasGlobalRanNodeIdList() bool

HasGlobalRanNodeIdList returns a boolean if a field has been set.

func (*PresenceInfo) HasGlobaleNbIdList

func (o *PresenceInfo) HasGlobaleNbIdList() bool

HasGlobaleNbIdList returns a boolean if a field has been set.

func (*PresenceInfo) HasNcgiList

func (o *PresenceInfo) HasNcgiList() bool

HasNcgiList returns a boolean if a field has been set.

func (*PresenceInfo) HasPraId

func (o *PresenceInfo) HasPraId() bool

HasPraId returns a boolean if a field has been set.

func (*PresenceInfo) HasPresenceState

func (o *PresenceInfo) HasPresenceState() bool

HasPresenceState returns a boolean if a field has been set.

func (*PresenceInfo) HasTrackingAreaList

func (o *PresenceInfo) HasTrackingAreaList() bool

HasTrackingAreaList returns a boolean if a field has been set.

func (PresenceInfo) MarshalJSON

func (o PresenceInfo) MarshalJSON() ([]byte, error)

func (*PresenceInfo) SetAdditionalPraId

func (o *PresenceInfo) SetAdditionalPraId(v string)

SetAdditionalPraId gets a reference to the given string and assigns it to the AdditionalPraId field.

func (*PresenceInfo) SetEcgiList

func (o *PresenceInfo) SetEcgiList(v []Ecgi)

SetEcgiList gets a reference to the given []Ecgi and assigns it to the EcgiList field.

func (*PresenceInfo) SetGlobalRanNodeIdList

func (o *PresenceInfo) SetGlobalRanNodeIdList(v []GlobalRanNodeId)

SetGlobalRanNodeIdList gets a reference to the given []GlobalRanNodeId and assigns it to the GlobalRanNodeIdList field.

func (*PresenceInfo) SetGlobaleNbIdList

func (o *PresenceInfo) SetGlobaleNbIdList(v []GlobalRanNodeId)

SetGlobaleNbIdList gets a reference to the given []GlobalRanNodeId and assigns it to the GlobaleNbIdList field.

func (*PresenceInfo) SetNcgiList

func (o *PresenceInfo) SetNcgiList(v []Ncgi)

SetNcgiList gets a reference to the given []Ncgi and assigns it to the NcgiList field.

func (*PresenceInfo) SetPraId

func (o *PresenceInfo) SetPraId(v string)

SetPraId gets a reference to the given string and assigns it to the PraId field.

func (*PresenceInfo) SetPresenceState

func (o *PresenceInfo) SetPresenceState(v PresenceState)

SetPresenceState gets a reference to the given PresenceState and assigns it to the PresenceState field.

func (*PresenceInfo) SetTrackingAreaList

func (o *PresenceInfo) SetTrackingAreaList(v []Tai)

SetTrackingAreaList gets a reference to the given []Tai and assigns it to the TrackingAreaList field.

func (PresenceInfo) ToMap

func (o PresenceInfo) ToMap() (map[string]interface{}, error)

type PresenceState

type PresenceState struct {
	String *string
}

PresenceState Possible values are: -IN_AREA: Indicates that the UE is inside or enters the presence reporting area. -OUT_OF_AREA: Indicates that the UE is outside or leaves the presence reporting area -UNKNOW: Indicates it is unknown whether the UE is in the presence reporting area or not -INACTIVE: Indicates that the presence reporting area is inactive in the serving node.

func (*PresenceState) MarshalJSON

func (src *PresenceState) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PresenceState) UnmarshalJSON

func (dst *PresenceState) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PrioritySharingIndicator

type PrioritySharingIndicator struct {
	String *string
}

PrioritySharingIndicator Represents the Priority sharing indicator.

func (*PrioritySharingIndicator) MarshalJSON

func (src *PrioritySharingIndicator) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PrioritySharingIndicator) UnmarshalJSON

func (dst *PrioritySharingIndicator) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ProblemDetails

type ProblemDetails struct {
	// String providing an URI formatted according to RFC 3986.
	Type   *string `json:"type,omitempty"`
	Title  *string `json:"title,omitempty"`
	Status *int32  `json:"status,omitempty"`
	// A human-readable explanation specific to this occurrence of the problem.
	Detail *string `json:"detail,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	Instance *string `json:"instance,omitempty"`
	// A machine-readable application error cause specific to this occurrence of the problem.  This IE should be present and provide application-related error information, if available.
	Cause         *string        `json:"cause,omitempty"`
	InvalidParams []InvalidParam `json:"invalidParams,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures  *string         `json:"supportedFeatures,omitempty"`
	AccessTokenError   *AccessTokenErr `json:"accessTokenError,omitempty"`
	AccessTokenRequest *AccessTokenReq `json:"accessTokenRequest,omitempty"`
	// Fully Qualified Domain Name
	NrfId                *string  `json:"nrfId,omitempty"`
	SupportedApiVersions []string `json:"supportedApiVersions,omitempty"`
}

ProblemDetails Provides additional information in an error response.

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

NewProblemDetails instantiates a new ProblemDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

NewProblemDetailsWithDefaults instantiates a new ProblemDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProblemDetails) GetAccessTokenError

func (o *ProblemDetails) GetAccessTokenError() AccessTokenErr

GetAccessTokenError returns the AccessTokenError field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenErrorOk

func (o *ProblemDetails) GetAccessTokenErrorOk() (*AccessTokenErr, bool)

GetAccessTokenErrorOk returns a tuple with the AccessTokenError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetAccessTokenRequest

func (o *ProblemDetails) GetAccessTokenRequest() AccessTokenReq

GetAccessTokenRequest returns the AccessTokenRequest field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenRequestOk

func (o *ProblemDetails) GetAccessTokenRequestOk() (*AccessTokenReq, bool)

GetAccessTokenRequestOk returns a tuple with the AccessTokenRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetCause

func (o *ProblemDetails) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*ProblemDetails) GetCauseOk

func (o *ProblemDetails) GetCauseOk() (*string, bool)

GetCauseOk returns a tuple with the Cause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ProblemDetails) GetDetailOk

func (o *ProblemDetails) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise.

func (*ProblemDetails) GetInstanceOk

func (o *ProblemDetails) GetInstanceOk() (*string, bool)

GetInstanceOk returns a tuple with the Instance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetInvalidParams

func (o *ProblemDetails) GetInvalidParams() []InvalidParam

GetInvalidParams returns the InvalidParams field value if set, zero value otherwise.

func (*ProblemDetails) GetInvalidParamsOk

func (o *ProblemDetails) GetInvalidParamsOk() ([]InvalidParam, bool)

GetInvalidParamsOk returns a tuple with the InvalidParams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetNrfId

func (o *ProblemDetails) GetNrfId() string

GetNrfId returns the NrfId field value if set, zero value otherwise.

func (*ProblemDetails) GetNrfIdOk

func (o *ProblemDetails) GetNrfIdOk() (*string, bool)

GetNrfIdOk returns a tuple with the NrfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ProblemDetails) GetStatusOk

func (o *ProblemDetails) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetSupportedApiVersions

func (o *ProblemDetails) GetSupportedApiVersions() []string

GetSupportedApiVersions returns the SupportedApiVersions field value if set, zero value otherwise.

func (*ProblemDetails) GetSupportedApiVersionsOk

func (o *ProblemDetails) GetSupportedApiVersionsOk() ([]string, bool)

GetSupportedApiVersionsOk returns a tuple with the SupportedApiVersions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetSupportedFeatures

func (o *ProblemDetails) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*ProblemDetails) GetSupportedFeaturesOk

func (o *ProblemDetails) GetSupportedFeaturesOk() (*string, bool)

GetSupportedFeaturesOk returns a tuple with the SupportedFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ProblemDetails) GetTitleOk

func (o *ProblemDetails) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProblemDetails) GetTypeOk

func (o *ProblemDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) HasAccessTokenError

func (o *ProblemDetails) HasAccessTokenError() bool

HasAccessTokenError returns a boolean if a field has been set.

func (*ProblemDetails) HasAccessTokenRequest

func (o *ProblemDetails) HasAccessTokenRequest() bool

HasAccessTokenRequest returns a boolean if a field has been set.

func (*ProblemDetails) HasCause

func (o *ProblemDetails) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasInvalidParams

func (o *ProblemDetails) HasInvalidParams() bool

HasInvalidParams returns a boolean if a field has been set.

func (*ProblemDetails) HasNrfId

func (o *ProblemDetails) HasNrfId() bool

HasNrfId returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedApiVersions

func (o *ProblemDetails) HasSupportedApiVersions() bool

HasSupportedApiVersions returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

func (o ProblemDetails) MarshalJSON() ([]byte, error)

func (*ProblemDetails) SetAccessTokenError

func (o *ProblemDetails) SetAccessTokenError(v AccessTokenErr)

SetAccessTokenError gets a reference to the given AccessTokenErr and assigns it to the AccessTokenError field.

func (*ProblemDetails) SetAccessTokenRequest

func (o *ProblemDetails) SetAccessTokenRequest(v AccessTokenReq)

SetAccessTokenRequest gets a reference to the given AccessTokenReq and assigns it to the AccessTokenRequest field.

func (*ProblemDetails) SetCause

func (o *ProblemDetails) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given string and assigns it to the Instance field.

func (*ProblemDetails) SetInvalidParams

func (o *ProblemDetails) SetInvalidParams(v []InvalidParam)

SetInvalidParams gets a reference to the given []InvalidParam and assigns it to the InvalidParams field.

func (*ProblemDetails) SetNrfId

func (o *ProblemDetails) SetNrfId(v string)

SetNrfId gets a reference to the given string and assigns it to the NrfId field.

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*ProblemDetails) SetSupportedApiVersions

func (o *ProblemDetails) SetSupportedApiVersions(v []string)

SetSupportedApiVersions gets a reference to the given []string and assigns it to the SupportedApiVersions field.

func (*ProblemDetails) SetSupportedFeatures

func (o *ProblemDetails) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ProblemDetails) ToMap

func (o ProblemDetails) ToMap() (map[string]interface{}, error)

type QosMonitoringInformation

type QosMonitoringInformation struct {
	RepThreshDl *int32 `json:"repThreshDl,omitempty"`
	RepThreshUl *int32 `json:"repThreshUl,omitempty"`
	RepThreshRp *int32 `json:"repThreshRp,omitempty"`
}

QosMonitoringInformation Indicates the QoS Monitoring information to report, i.e. UL and/or DL and or round trip delay.

func NewQosMonitoringInformation

func NewQosMonitoringInformation() *QosMonitoringInformation

NewQosMonitoringInformation instantiates a new QosMonitoringInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosMonitoringInformationWithDefaults

func NewQosMonitoringInformationWithDefaults() *QosMonitoringInformation

NewQosMonitoringInformationWithDefaults instantiates a new QosMonitoringInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosMonitoringInformation) GetRepThreshDl

func (o *QosMonitoringInformation) GetRepThreshDl() int32

GetRepThreshDl returns the RepThreshDl field value if set, zero value otherwise.

func (*QosMonitoringInformation) GetRepThreshDlOk

func (o *QosMonitoringInformation) GetRepThreshDlOk() (*int32, bool)

GetRepThreshDlOk returns a tuple with the RepThreshDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosMonitoringInformation) GetRepThreshRp

func (o *QosMonitoringInformation) GetRepThreshRp() int32

GetRepThreshRp returns the RepThreshRp field value if set, zero value otherwise.

func (*QosMonitoringInformation) GetRepThreshRpOk

func (o *QosMonitoringInformation) GetRepThreshRpOk() (*int32, bool)

GetRepThreshRpOk returns a tuple with the RepThreshRp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosMonitoringInformation) GetRepThreshUl

func (o *QosMonitoringInformation) GetRepThreshUl() int32

GetRepThreshUl returns the RepThreshUl field value if set, zero value otherwise.

func (*QosMonitoringInformation) GetRepThreshUlOk

func (o *QosMonitoringInformation) GetRepThreshUlOk() (*int32, bool)

GetRepThreshUlOk returns a tuple with the RepThreshUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosMonitoringInformation) HasRepThreshDl

func (o *QosMonitoringInformation) HasRepThreshDl() bool

HasRepThreshDl returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasRepThreshRp

func (o *QosMonitoringInformation) HasRepThreshRp() bool

HasRepThreshRp returns a boolean if a field has been set.

func (*QosMonitoringInformation) HasRepThreshUl

func (o *QosMonitoringInformation) HasRepThreshUl() bool

HasRepThreshUl returns a boolean if a field has been set.

func (QosMonitoringInformation) MarshalJSON

func (o QosMonitoringInformation) MarshalJSON() ([]byte, error)

func (*QosMonitoringInformation) SetRepThreshDl

func (o *QosMonitoringInformation) SetRepThreshDl(v int32)

SetRepThreshDl gets a reference to the given int32 and assigns it to the RepThreshDl field.

func (*QosMonitoringInformation) SetRepThreshRp

func (o *QosMonitoringInformation) SetRepThreshRp(v int32)

SetRepThreshRp gets a reference to the given int32 and assigns it to the RepThreshRp field.

func (*QosMonitoringInformation) SetRepThreshUl

func (o *QosMonitoringInformation) SetRepThreshUl(v int32)

SetRepThreshUl gets a reference to the given int32 and assigns it to the RepThreshUl field.

func (QosMonitoringInformation) ToMap

func (o QosMonitoringInformation) ToMap() (map[string]interface{}, error)

type QosMonitoringInformationRm

type QosMonitoringInformationRm struct {
	RepThreshDl *int32 `json:"repThreshDl,omitempty"`
	RepThreshUl *int32 `json:"repThreshUl,omitempty"`
	RepThreshRp *int32 `json:"repThreshRp,omitempty"`
}

QosMonitoringInformationRm This data type is defined in the same way as the QosMonitoringInformation data type, but with the OpenAPI nullable property set to true.

func NewQosMonitoringInformationRm

func NewQosMonitoringInformationRm() *QosMonitoringInformationRm

NewQosMonitoringInformationRm instantiates a new QosMonitoringInformationRm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosMonitoringInformationRmWithDefaults

func NewQosMonitoringInformationRmWithDefaults() *QosMonitoringInformationRm

NewQosMonitoringInformationRmWithDefaults instantiates a new QosMonitoringInformationRm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosMonitoringInformationRm) GetRepThreshDl

func (o *QosMonitoringInformationRm) GetRepThreshDl() int32

GetRepThreshDl returns the RepThreshDl field value if set, zero value otherwise.

func (*QosMonitoringInformationRm) GetRepThreshDlOk

func (o *QosMonitoringInformationRm) GetRepThreshDlOk() (*int32, bool)

GetRepThreshDlOk returns a tuple with the RepThreshDl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosMonitoringInformationRm) GetRepThreshRp

func (o *QosMonitoringInformationRm) GetRepThreshRp() int32

GetRepThreshRp returns the RepThreshRp field value if set, zero value otherwise.

func (*QosMonitoringInformationRm) GetRepThreshRpOk

func (o *QosMonitoringInformationRm) GetRepThreshRpOk() (*int32, bool)

GetRepThreshRpOk returns a tuple with the RepThreshRp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosMonitoringInformationRm) GetRepThreshUl

func (o *QosMonitoringInformationRm) GetRepThreshUl() int32

GetRepThreshUl returns the RepThreshUl field value if set, zero value otherwise.

func (*QosMonitoringInformationRm) GetRepThreshUlOk

func (o *QosMonitoringInformationRm) GetRepThreshUlOk() (*int32, bool)

GetRepThreshUlOk returns a tuple with the RepThreshUl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosMonitoringInformationRm) HasRepThreshDl

func (o *QosMonitoringInformationRm) HasRepThreshDl() bool

HasRepThreshDl returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasRepThreshRp

func (o *QosMonitoringInformationRm) HasRepThreshRp() bool

HasRepThreshRp returns a boolean if a field has been set.

func (*QosMonitoringInformationRm) HasRepThreshUl

func (o *QosMonitoringInformationRm) HasRepThreshUl() bool

HasRepThreshUl returns a boolean if a field has been set.

func (QosMonitoringInformationRm) MarshalJSON

func (o QosMonitoringInformationRm) MarshalJSON() ([]byte, error)

func (*QosMonitoringInformationRm) SetRepThreshDl

func (o *QosMonitoringInformationRm) SetRepThreshDl(v int32)

SetRepThreshDl gets a reference to the given int32 and assigns it to the RepThreshDl field.

func (*QosMonitoringInformationRm) SetRepThreshRp

func (o *QosMonitoringInformationRm) SetRepThreshRp(v int32)

SetRepThreshRp gets a reference to the given int32 and assigns it to the RepThreshRp field.

func (*QosMonitoringInformationRm) SetRepThreshUl

func (o *QosMonitoringInformationRm) SetRepThreshUl(v int32)

SetRepThreshUl gets a reference to the given int32 and assigns it to the RepThreshUl field.

func (QosMonitoringInformationRm) ToMap

func (o QosMonitoringInformationRm) ToMap() (map[string]interface{}, error)

type QosMonitoringReport

type QosMonitoringReport struct {
	Flows    []Flows `json:"flows,omitempty"`
	UlDelays []int32 `json:"ulDelays,omitempty"`
	DlDelays []int32 `json:"dlDelays,omitempty"`
	RtDelays []int32 `json:"rtDelays,omitempty"`
}

QosMonitoringReport QoS Monitoring reporting information.

func NewQosMonitoringReport

func NewQosMonitoringReport() *QosMonitoringReport

NewQosMonitoringReport instantiates a new QosMonitoringReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosMonitoringReportWithDefaults

func NewQosMonitoringReportWithDefaults() *QosMonitoringReport

NewQosMonitoringReportWithDefaults instantiates a new QosMonitoringReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosMonitoringReport) GetDlDelays

func (o *QosMonitoringReport) GetDlDelays() []int32

GetDlDelays returns the DlDelays field value if set, zero value otherwise.

func (*QosMonitoringReport) GetDlDelaysOk

func (o *QosMonitoringReport) GetDlDelaysOk() ([]int32, bool)

GetDlDelaysOk returns a tuple with the DlDelays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosMonitoringReport) GetFlows

func (o *QosMonitoringReport) GetFlows() []Flows

GetFlows returns the Flows field value if set, zero value otherwise.

func (*QosMonitoringReport) GetFlowsOk

func (o *QosMonitoringReport) GetFlowsOk() ([]Flows, bool)

GetFlowsOk returns a tuple with the Flows field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosMonitoringReport) GetRtDelays

func (o *QosMonitoringReport) GetRtDelays() []int32

GetRtDelays returns the RtDelays field value if set, zero value otherwise.

func (*QosMonitoringReport) GetRtDelaysOk

func (o *QosMonitoringReport) GetRtDelaysOk() ([]int32, bool)

GetRtDelaysOk returns a tuple with the RtDelays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosMonitoringReport) GetUlDelays

func (o *QosMonitoringReport) GetUlDelays() []int32

GetUlDelays returns the UlDelays field value if set, zero value otherwise.

func (*QosMonitoringReport) GetUlDelaysOk

func (o *QosMonitoringReport) GetUlDelaysOk() ([]int32, bool)

GetUlDelaysOk returns a tuple with the UlDelays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosMonitoringReport) HasDlDelays

func (o *QosMonitoringReport) HasDlDelays() bool

HasDlDelays returns a boolean if a field has been set.

func (*QosMonitoringReport) HasFlows

func (o *QosMonitoringReport) HasFlows() bool

HasFlows returns a boolean if a field has been set.

func (*QosMonitoringReport) HasRtDelays

func (o *QosMonitoringReport) HasRtDelays() bool

HasRtDelays returns a boolean if a field has been set.

func (*QosMonitoringReport) HasUlDelays

func (o *QosMonitoringReport) HasUlDelays() bool

HasUlDelays returns a boolean if a field has been set.

func (QosMonitoringReport) MarshalJSON

func (o QosMonitoringReport) MarshalJSON() ([]byte, error)

func (*QosMonitoringReport) SetDlDelays

func (o *QosMonitoringReport) SetDlDelays(v []int32)

SetDlDelays gets a reference to the given []int32 and assigns it to the DlDelays field.

func (*QosMonitoringReport) SetFlows

func (o *QosMonitoringReport) SetFlows(v []Flows)

SetFlows gets a reference to the given []Flows and assigns it to the Flows field.

func (*QosMonitoringReport) SetRtDelays

func (o *QosMonitoringReport) SetRtDelays(v []int32)

SetRtDelays gets a reference to the given []int32 and assigns it to the RtDelays field.

func (*QosMonitoringReport) SetUlDelays

func (o *QosMonitoringReport) SetUlDelays(v []int32)

SetUlDelays gets a reference to the given []int32 and assigns it to the UlDelays field.

func (QosMonitoringReport) ToMap

func (o QosMonitoringReport) ToMap() (map[string]interface{}, error)

type QosNotifType

type QosNotifType struct {
	String *string
}

QosNotifType Indicates the notification type for QoS Notification Control.

func (*QosNotifType) MarshalJSON

func (src *QosNotifType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*QosNotifType) UnmarshalJSON

func (dst *QosNotifType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type QosNotificationControlInfo

type QosNotificationControlInfo struct {
	NotifType QosNotifType `json:"notifType"`
	Flows     []Flows      `json:"flows,omitempty"`
	// Indicates the alternative service requirement NG-RAN can guarantee. When it is omitted and the notifType attribute is set to NOT_GUAARANTEED it indicates that the lowest priority alternative alternative service requirement could not be fulfilled by NG-RAN.
	AltSerReq *string `json:"altSerReq,omitempty"`
	// When present and set to true it indicates that Alternative Service Requirements are not  supported by NG-RAN.
	AltSerReqNotSuppInd *bool `json:"altSerReqNotSuppInd,omitempty"`
}

QosNotificationControlInfo Indicates whether the QoS targets for a GRB flow are not guaranteed or guaranteed again.

func NewQosNotificationControlInfo

func NewQosNotificationControlInfo(notifType QosNotifType) *QosNotificationControlInfo

NewQosNotificationControlInfo instantiates a new QosNotificationControlInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosNotificationControlInfoWithDefaults

func NewQosNotificationControlInfoWithDefaults() *QosNotificationControlInfo

NewQosNotificationControlInfoWithDefaults instantiates a new QosNotificationControlInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosNotificationControlInfo) GetAltSerReq

func (o *QosNotificationControlInfo) GetAltSerReq() string

GetAltSerReq returns the AltSerReq field value if set, zero value otherwise.

func (*QosNotificationControlInfo) GetAltSerReqNotSuppInd

func (o *QosNotificationControlInfo) GetAltSerReqNotSuppInd() bool

GetAltSerReqNotSuppInd returns the AltSerReqNotSuppInd field value if set, zero value otherwise.

func (*QosNotificationControlInfo) GetAltSerReqNotSuppIndOk

func (o *QosNotificationControlInfo) GetAltSerReqNotSuppIndOk() (*bool, bool)

GetAltSerReqNotSuppIndOk returns a tuple with the AltSerReqNotSuppInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosNotificationControlInfo) GetAltSerReqOk

func (o *QosNotificationControlInfo) GetAltSerReqOk() (*string, bool)

GetAltSerReqOk returns a tuple with the AltSerReq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosNotificationControlInfo) GetFlows

func (o *QosNotificationControlInfo) GetFlows() []Flows

GetFlows returns the Flows field value if set, zero value otherwise.

func (*QosNotificationControlInfo) GetFlowsOk

func (o *QosNotificationControlInfo) GetFlowsOk() ([]Flows, bool)

GetFlowsOk returns a tuple with the Flows field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosNotificationControlInfo) GetNotifType

func (o *QosNotificationControlInfo) GetNotifType() QosNotifType

GetNotifType returns the NotifType field value

func (*QosNotificationControlInfo) GetNotifTypeOk

func (o *QosNotificationControlInfo) GetNotifTypeOk() (*QosNotifType, bool)

GetNotifTypeOk returns a tuple with the NotifType field value and a boolean to check if the value has been set.

func (*QosNotificationControlInfo) HasAltSerReq

func (o *QosNotificationControlInfo) HasAltSerReq() bool

HasAltSerReq returns a boolean if a field has been set.

func (*QosNotificationControlInfo) HasAltSerReqNotSuppInd

func (o *QosNotificationControlInfo) HasAltSerReqNotSuppInd() bool

HasAltSerReqNotSuppInd returns a boolean if a field has been set.

func (*QosNotificationControlInfo) HasFlows

func (o *QosNotificationControlInfo) HasFlows() bool

HasFlows returns a boolean if a field has been set.

func (QosNotificationControlInfo) MarshalJSON

func (o QosNotificationControlInfo) MarshalJSON() ([]byte, error)

func (*QosNotificationControlInfo) SetAltSerReq

func (o *QosNotificationControlInfo) SetAltSerReq(v string)

SetAltSerReq gets a reference to the given string and assigns it to the AltSerReq field.

func (*QosNotificationControlInfo) SetAltSerReqNotSuppInd

func (o *QosNotificationControlInfo) SetAltSerReqNotSuppInd(v bool)

SetAltSerReqNotSuppInd gets a reference to the given bool and assigns it to the AltSerReqNotSuppInd field.

func (*QosNotificationControlInfo) SetFlows

func (o *QosNotificationControlInfo) SetFlows(v []Flows)

SetFlows gets a reference to the given []Flows and assigns it to the Flows field.

func (*QosNotificationControlInfo) SetNotifType

func (o *QosNotificationControlInfo) SetNotifType(v QosNotifType)

SetNotifType sets field value

func (QosNotificationControlInfo) ToMap

func (o QosNotificationControlInfo) ToMap() (map[string]interface{}, error)

type RanNasRelCause

type RanNasRelCause struct {
	NgApCause *NgApCause `json:"ngApCause,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Var5gMmCause *int32 `json:"5gMmCause,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Var5gSmCause *int32 `json:"5gSmCause,omitempty"`
	// Defines the EPS RAN/NAS release cause.
	EpsCause *string `json:"epsCause,omitempty"`
}

RanNasRelCause Contains the RAN/NAS release cause.

func NewRanNasRelCause

func NewRanNasRelCause() *RanNasRelCause

NewRanNasRelCause instantiates a new RanNasRelCause object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRanNasRelCauseWithDefaults

func NewRanNasRelCauseWithDefaults() *RanNasRelCause

NewRanNasRelCauseWithDefaults instantiates a new RanNasRelCause object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RanNasRelCause) GetEpsCause

func (o *RanNasRelCause) GetEpsCause() string

GetEpsCause returns the EpsCause field value if set, zero value otherwise.

func (*RanNasRelCause) GetEpsCauseOk

func (o *RanNasRelCause) GetEpsCauseOk() (*string, bool)

GetEpsCauseOk returns a tuple with the EpsCause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RanNasRelCause) GetNgApCause

func (o *RanNasRelCause) GetNgApCause() NgApCause

GetNgApCause returns the NgApCause field value if set, zero value otherwise.

func (*RanNasRelCause) GetNgApCauseOk

func (o *RanNasRelCause) GetNgApCauseOk() (*NgApCause, bool)

GetNgApCauseOk returns a tuple with the NgApCause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RanNasRelCause) GetVar5gMmCause

func (o *RanNasRelCause) GetVar5gMmCause() int32

GetVar5gMmCause returns the Var5gMmCause field value if set, zero value otherwise.

func (*RanNasRelCause) GetVar5gMmCauseOk

func (o *RanNasRelCause) GetVar5gMmCauseOk() (*int32, bool)

GetVar5gMmCauseOk returns a tuple with the Var5gMmCause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RanNasRelCause) GetVar5gSmCause

func (o *RanNasRelCause) GetVar5gSmCause() int32

GetVar5gSmCause returns the Var5gSmCause field value if set, zero value otherwise.

func (*RanNasRelCause) GetVar5gSmCauseOk

func (o *RanNasRelCause) GetVar5gSmCauseOk() (*int32, bool)

GetVar5gSmCauseOk returns a tuple with the Var5gSmCause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RanNasRelCause) HasEpsCause

func (o *RanNasRelCause) HasEpsCause() bool

HasEpsCause returns a boolean if a field has been set.

func (*RanNasRelCause) HasNgApCause

func (o *RanNasRelCause) HasNgApCause() bool

HasNgApCause returns a boolean if a field has been set.

func (*RanNasRelCause) HasVar5gMmCause

func (o *RanNasRelCause) HasVar5gMmCause() bool

HasVar5gMmCause returns a boolean if a field has been set.

func (*RanNasRelCause) HasVar5gSmCause

func (o *RanNasRelCause) HasVar5gSmCause() bool

HasVar5gSmCause returns a boolean if a field has been set.

func (RanNasRelCause) MarshalJSON

func (o RanNasRelCause) MarshalJSON() ([]byte, error)

func (*RanNasRelCause) SetEpsCause

func (o *RanNasRelCause) SetEpsCause(v string)

SetEpsCause gets a reference to the given string and assigns it to the EpsCause field.

func (*RanNasRelCause) SetNgApCause

func (o *RanNasRelCause) SetNgApCause(v NgApCause)

SetNgApCause gets a reference to the given NgApCause and assigns it to the NgApCause field.

func (*RanNasRelCause) SetVar5gMmCause

func (o *RanNasRelCause) SetVar5gMmCause(v int32)

SetVar5gMmCause gets a reference to the given int32 and assigns it to the Var5gMmCause field.

func (*RanNasRelCause) SetVar5gSmCause

func (o *RanNasRelCause) SetVar5gSmCause(v int32)

SetVar5gSmCause gets a reference to the given int32 and assigns it to the Var5gSmCause field.

func (RanNasRelCause) ToMap

func (o RanNasRelCause) ToMap() (map[string]interface{}, error)

type RatType

type RatType struct {
	String *string
}

RatType Indicates the radio access used.

func (*RatType) MarshalJSON

func (src *RatType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RatType) UnmarshalJSON

func (dst *RatType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type 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 RequestedQosMonitoringParameter

type RequestedQosMonitoringParameter struct {
	String *string
}

RequestedQosMonitoringParameter Indicates the requested QoS monitoring parameters to be measured.

func (*RequestedQosMonitoringParameter) MarshalJSON

func (src *RequestedQosMonitoringParameter) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RequestedQosMonitoringParameter) UnmarshalJSON

func (dst *RequestedQosMonitoringParameter) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RequiredAccessInfo

type RequiredAccessInfo struct {
	String *string
}

RequiredAccessInfo Indicates the access network information required for an AF session.

func (*RequiredAccessInfo) MarshalJSON

func (src *RequiredAccessInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RequiredAccessInfo) UnmarshalJSON

func (dst *RequiredAccessInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ReservPriority

type ReservPriority struct {
	String *string
}

ReservPriority Indicates the reservation priority.

func (*ReservPriority) MarshalJSON

func (src *ReservPriority) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ReservPriority) UnmarshalJSON

func (dst *ReservPriority) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ResourcesAllocationInfo

type ResourcesAllocationInfo struct {
	McResourcStatus *MediaComponentResourcesStatus `json:"mcResourcStatus,omitempty"`
	Flows           []Flows                        `json:"flows,omitempty"`
	// Indicates whether NG-RAN supports alternative QoS parameters. The default value false shall apply if the attribute is not present. It shall be set to false to indicate that the lowest priority alternative QoS profile could not be fulfilled.
	AltSerReq *string `json:"altSerReq,omitempty"`
	// When present and set to true it indicates that Alternative Service Requirements are not  supported by NG-RAN.
	AltSerReqNotSuppInd *bool `json:"altSerReqNotSuppInd,omitempty"`
}

ResourcesAllocationInfo Describes the status of the PCC rule(s) related to certain media components.

func NewResourcesAllocationInfo

func NewResourcesAllocationInfo() *ResourcesAllocationInfo

NewResourcesAllocationInfo instantiates a new ResourcesAllocationInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResourcesAllocationInfoWithDefaults

func NewResourcesAllocationInfoWithDefaults() *ResourcesAllocationInfo

NewResourcesAllocationInfoWithDefaults instantiates a new ResourcesAllocationInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResourcesAllocationInfo) GetAltSerReq

func (o *ResourcesAllocationInfo) GetAltSerReq() string

GetAltSerReq returns the AltSerReq field value if set, zero value otherwise.

func (*ResourcesAllocationInfo) GetAltSerReqNotSuppInd

func (o *ResourcesAllocationInfo) GetAltSerReqNotSuppInd() bool

GetAltSerReqNotSuppInd returns the AltSerReqNotSuppInd field value if set, zero value otherwise.

func (*ResourcesAllocationInfo) GetAltSerReqNotSuppIndOk

func (o *ResourcesAllocationInfo) GetAltSerReqNotSuppIndOk() (*bool, bool)

GetAltSerReqNotSuppIndOk returns a tuple with the AltSerReqNotSuppInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourcesAllocationInfo) GetAltSerReqOk

func (o *ResourcesAllocationInfo) GetAltSerReqOk() (*string, bool)

GetAltSerReqOk returns a tuple with the AltSerReq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourcesAllocationInfo) GetFlows

func (o *ResourcesAllocationInfo) GetFlows() []Flows

GetFlows returns the Flows field value if set, zero value otherwise.

func (*ResourcesAllocationInfo) GetFlowsOk

func (o *ResourcesAllocationInfo) GetFlowsOk() ([]Flows, bool)

GetFlowsOk returns a tuple with the Flows field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourcesAllocationInfo) GetMcResourcStatus

GetMcResourcStatus returns the McResourcStatus field value if set, zero value otherwise.

func (*ResourcesAllocationInfo) GetMcResourcStatusOk

func (o *ResourcesAllocationInfo) GetMcResourcStatusOk() (*MediaComponentResourcesStatus, bool)

GetMcResourcStatusOk returns a tuple with the McResourcStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourcesAllocationInfo) HasAltSerReq

func (o *ResourcesAllocationInfo) HasAltSerReq() bool

HasAltSerReq returns a boolean if a field has been set.

func (*ResourcesAllocationInfo) HasAltSerReqNotSuppInd

func (o *ResourcesAllocationInfo) HasAltSerReqNotSuppInd() bool

HasAltSerReqNotSuppInd returns a boolean if a field has been set.

func (*ResourcesAllocationInfo) HasFlows

func (o *ResourcesAllocationInfo) HasFlows() bool

HasFlows returns a boolean if a field has been set.

func (*ResourcesAllocationInfo) HasMcResourcStatus

func (o *ResourcesAllocationInfo) HasMcResourcStatus() bool

HasMcResourcStatus returns a boolean if a field has been set.

func (ResourcesAllocationInfo) MarshalJSON

func (o ResourcesAllocationInfo) MarshalJSON() ([]byte, error)

func (*ResourcesAllocationInfo) SetAltSerReq

func (o *ResourcesAllocationInfo) SetAltSerReq(v string)

SetAltSerReq gets a reference to the given string and assigns it to the AltSerReq field.

func (*ResourcesAllocationInfo) SetAltSerReqNotSuppInd

func (o *ResourcesAllocationInfo) SetAltSerReqNotSuppInd(v bool)

SetAltSerReqNotSuppInd gets a reference to the given bool and assigns it to the AltSerReqNotSuppInd field.

func (*ResourcesAllocationInfo) SetFlows

func (o *ResourcesAllocationInfo) SetFlows(v []Flows)

SetFlows gets a reference to the given []Flows and assigns it to the Flows field.

func (*ResourcesAllocationInfo) SetMcResourcStatus

func (o *ResourcesAllocationInfo) SetMcResourcStatus(v MediaComponentResourcesStatus)

SetMcResourcStatus gets a reference to the given MediaComponentResourcesStatus and assigns it to the McResourcStatus field.

func (ResourcesAllocationInfo) ToMap

func (o ResourcesAllocationInfo) ToMap() (map[string]interface{}, error)

type RouteInformation

type RouteInformation struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string   `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber int32 `json:"portNumber"`
}

RouteInformation At least one of the \"ipv4Addr\" attribute and the \"ipv6Addr\" attribute shall be included in the \"RouteInformation\" data type.

func NewRouteInformation

func NewRouteInformation(portNumber int32) *RouteInformation

NewRouteInformation instantiates a new RouteInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRouteInformationWithDefaults

func NewRouteInformationWithDefaults() *RouteInformation

NewRouteInformationWithDefaults instantiates a new RouteInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RouteInformation) GetIpv4Addr

func (o *RouteInformation) GetIpv4Addr() string

GetIpv4Addr returns the Ipv4Addr field value if set, zero value otherwise.

func (*RouteInformation) GetIpv4AddrOk

func (o *RouteInformation) GetIpv4AddrOk() (*string, bool)

GetIpv4AddrOk returns a tuple with the Ipv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteInformation) GetIpv6Addr

func (o *RouteInformation) GetIpv6Addr() Ipv6Addr

GetIpv6Addr returns the Ipv6Addr field value if set, zero value otherwise.

func (*RouteInformation) GetIpv6AddrOk

func (o *RouteInformation) GetIpv6AddrOk() (*Ipv6Addr, bool)

GetIpv6AddrOk returns a tuple with the Ipv6Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RouteInformation) GetPortNumber

func (o *RouteInformation) GetPortNumber() int32

GetPortNumber returns the PortNumber field value

func (*RouteInformation) GetPortNumberOk

func (o *RouteInformation) GetPortNumberOk() (*int32, bool)

GetPortNumberOk returns a tuple with the PortNumber field value and a boolean to check if the value has been set.

func (*RouteInformation) HasIpv4Addr

func (o *RouteInformation) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*RouteInformation) HasIpv6Addr

func (o *RouteInformation) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (RouteInformation) MarshalJSON

func (o RouteInformation) MarshalJSON() ([]byte, error)

func (*RouteInformation) SetIpv4Addr

func (o *RouteInformation) SetIpv4Addr(v string)

SetIpv4Addr gets a reference to the given string and assigns it to the Ipv4Addr field.

func (*RouteInformation) SetIpv6Addr

func (o *RouteInformation) SetIpv6Addr(v Ipv6Addr)

SetIpv6Addr gets a reference to the given Ipv6Addr and assigns it to the Ipv6Addr field.

func (*RouteInformation) SetPortNumber

func (o *RouteInformation) SetPortNumber(v int32)

SetPortNumber sets field value

func (RouteInformation) ToMap

func (o RouteInformation) ToMap() (map[string]interface{}, error)

type RouteToLocation

type RouteToLocation struct {
	Interface *interface{}
}

RouteToLocation At least one of the \"routeInfo\" attribute and the \"routeProfId\" attribute shall be included in the \"RouteToLocation\" data type.

func (*RouteToLocation) MarshalJSON

func (src *RouteToLocation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RouteToLocation) UnmarshalJSON

func (dst *RouteToLocation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type 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 SatelliteBackhaulCategory

type SatelliteBackhaulCategory struct {
	String *string
}

SatelliteBackhaulCategory Indicates the satellite backhaul used.

func (*SatelliteBackhaulCategory) MarshalJSON

func (src *SatelliteBackhaulCategory) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SatelliteBackhaulCategory) UnmarshalJSON

func (dst *SatelliteBackhaulCategory) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ServAuthInfo

type ServAuthInfo struct {
	String *string
}

ServAuthInfo Indicates the result of the Policy Authorization service request from the AF.

func (*ServAuthInfo) MarshalJSON

func (src *ServAuthInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ServAuthInfo) UnmarshalJSON

func (dst *ServAuthInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type ServiceAreaId

type ServiceAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code.
	Lac string `json:"lac"`
	// Service Area Code.
	Sac string `json:"sac"`
}

ServiceAreaId Contains a Service Area Identifier as defined in 3GPP TS 23.003, clause 12.5.

func NewServiceAreaId

func NewServiceAreaId(plmnId PlmnId, lac string, sac string) *ServiceAreaId

NewServiceAreaId instantiates a new ServiceAreaId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceAreaIdWithDefaults

func NewServiceAreaIdWithDefaults() *ServiceAreaId

NewServiceAreaIdWithDefaults instantiates a new ServiceAreaId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceAreaId) GetLac

func (o *ServiceAreaId) GetLac() string

GetLac returns the Lac field value

func (*ServiceAreaId) GetLacOk

func (o *ServiceAreaId) GetLacOk() (*string, bool)

GetLacOk returns a tuple with the Lac field value and a boolean to check if the value has been set.

func (*ServiceAreaId) GetPlmnId

func (o *ServiceAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*ServiceAreaId) GetPlmnIdOk

func (o *ServiceAreaId) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*ServiceAreaId) GetSac

func (o *ServiceAreaId) GetSac() string

GetSac returns the Sac field value

func (*ServiceAreaId) GetSacOk

func (o *ServiceAreaId) GetSacOk() (*string, bool)

GetSacOk returns a tuple with the Sac field value and a boolean to check if the value has been set.

func (ServiceAreaId) MarshalJSON

func (o ServiceAreaId) MarshalJSON() ([]byte, error)

func (*ServiceAreaId) SetLac

func (o *ServiceAreaId) SetLac(v string)

SetLac sets field value

func (*ServiceAreaId) SetPlmnId

func (o *ServiceAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*ServiceAreaId) SetSac

func (o *ServiceAreaId) SetSac(v string)

SetSac sets field value

func (ServiceAreaId) ToMap

func (o ServiceAreaId) ToMap() (map[string]interface{}, error)

type ServiceInfoStatus

type ServiceInfoStatus struct {
	String *string
}

ServiceInfoStatus Represents the preliminary or final service information status.

func (*ServiceInfoStatus) MarshalJSON

func (src *ServiceInfoStatus) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ServiceInfoStatus) UnmarshalJSON

func (dst *ServiceInfoStatus) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SipForkingIndication

type SipForkingIndication struct {
	String *string
}

SipForkingIndication Indicates whether several SIP dialogues are related to an \"Individual Application Session Context\" resource.

func (*SipForkingIndication) MarshalJSON

func (src *SipForkingIndication) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SipForkingIndication) UnmarshalJSON

func (dst *SipForkingIndication) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type Snssai

type Snssai struct {
	// Unsigned integer, within the range 0 to 255, representing the Slice/Service Type.  It indicates the expected Network Slice behaviour in terms of features and services. Values 0 to 127 correspond to the standardized SST range. Values 128 to 255 correspond  to the Operator-specific range. See clause 28.4.2 of 3GPP TS 23.003. Standardized values are defined in clause 5.15.2.2 of 3GPP TS 23.501.
	Sst int32 `json:"sst"`
	// 3-octet string, representing the Slice Differentiator, in hexadecimal representation. Each character in the string shall take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant character representing the 4 most significant bits of the SD shall appear first in the string, and the character representing the 4 least significant bit of the SD shall appear last in the string. This is an optional parameter that complements the Slice/Service type(s) to allow to  differentiate amongst multiple Network Slices of the same Slice/Service type. This IE shall be absent if no SD value is associated with the SST.
	Sd *string `json:"sd,omitempty"`
}

Snssai When Snssai needs to be converted to string (e.g. when used in maps as key), the string shall be composed of one to three digits \"sst\" optionally followed by \"-\" and 6 hexadecimal digits \"sd\".

func NewSnssai

func NewSnssai(sst int32) *Snssai

NewSnssai instantiates a new Snssai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSnssaiWithDefaults

func NewSnssaiWithDefaults() *Snssai

NewSnssaiWithDefaults instantiates a new Snssai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Snssai) GetSd

func (o *Snssai) GetSd() string

GetSd returns the Sd field value if set, zero value otherwise.

func (*Snssai) GetSdOk

func (o *Snssai) GetSdOk() (*string, bool)

GetSdOk returns a tuple with the Sd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snssai) GetSst

func (o *Snssai) GetSst() int32

GetSst returns the Sst field value

func (*Snssai) GetSstOk

func (o *Snssai) GetSstOk() (*int32, bool)

GetSstOk returns a tuple with the Sst field value and a boolean to check if the value has been set.

func (*Snssai) HasSd

func (o *Snssai) HasSd() bool

HasSd returns a boolean if a field has been set.

func (Snssai) MarshalJSON

func (o Snssai) MarshalJSON() ([]byte, error)

func (*Snssai) SetSd

func (o *Snssai) SetSd(v string)

SetSd gets a reference to the given string and assigns it to the Sd field.

func (*Snssai) SetSst

func (o *Snssai) SetSst(v int32)

SetSst sets field value

func (Snssai) ToMap

func (o Snssai) ToMap() (map[string]interface{}, error)

type SpatialValidity

type SpatialValidity struct {
	// Defines the presence information provisioned by the AF. The praId attribute within the PresenceInfo data type is the key of the map.
	PresenceInfoList map[string]PresenceInfo `json:"presenceInfoList"`
}

SpatialValidity Describes explicitly the route to an Application location.

func NewSpatialValidity

func NewSpatialValidity(presenceInfoList map[string]PresenceInfo) *SpatialValidity

NewSpatialValidity instantiates a new SpatialValidity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSpatialValidityWithDefaults

func NewSpatialValidityWithDefaults() *SpatialValidity

NewSpatialValidityWithDefaults instantiates a new SpatialValidity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SpatialValidity) GetPresenceInfoList

func (o *SpatialValidity) GetPresenceInfoList() map[string]PresenceInfo

GetPresenceInfoList returns the PresenceInfoList field value

func (*SpatialValidity) GetPresenceInfoListOk

func (o *SpatialValidity) GetPresenceInfoListOk() (*map[string]PresenceInfo, bool)

GetPresenceInfoListOk returns a tuple with the PresenceInfoList field value and a boolean to check if the value has been set.

func (SpatialValidity) MarshalJSON

func (o SpatialValidity) MarshalJSON() ([]byte, error)

func (*SpatialValidity) SetPresenceInfoList

func (o *SpatialValidity) SetPresenceInfoList(v map[string]PresenceInfo)

SetPresenceInfoList sets field value

func (SpatialValidity) ToMap

func (o SpatialValidity) ToMap() (map[string]interface{}, error)

type SpatialValidityRm

type SpatialValidityRm struct {
	// Defines the presence information provisioned by the AF. The praId attribute within the  PresenceInfo data type is the key of the map.
	PresenceInfoList map[string]PresenceInfo `json:"presenceInfoList"`
}

SpatialValidityRm This data type is defined in the same way as the SpatialValidity data type, but with the OpenAPI nullable property set to true.

func NewSpatialValidityRm

func NewSpatialValidityRm(presenceInfoList map[string]PresenceInfo) *SpatialValidityRm

NewSpatialValidityRm instantiates a new SpatialValidityRm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSpatialValidityRmWithDefaults

func NewSpatialValidityRmWithDefaults() *SpatialValidityRm

NewSpatialValidityRmWithDefaults instantiates a new SpatialValidityRm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SpatialValidityRm) GetPresenceInfoList

func (o *SpatialValidityRm) GetPresenceInfoList() map[string]PresenceInfo

GetPresenceInfoList returns the PresenceInfoList field value

func (*SpatialValidityRm) GetPresenceInfoListOk

func (o *SpatialValidityRm) GetPresenceInfoListOk() (*map[string]PresenceInfo, bool)

GetPresenceInfoListOk returns a tuple with the PresenceInfoList field value and a boolean to check if the value has been set.

func (SpatialValidityRm) MarshalJSON

func (o SpatialValidityRm) MarshalJSON() ([]byte, error)

func (*SpatialValidityRm) SetPresenceInfoList

func (o *SpatialValidityRm) SetPresenceInfoList(v map[string]PresenceInfo)

SetPresenceInfoList sets field value

func (SpatialValidityRm) ToMap

func (o SpatialValidityRm) ToMap() (map[string]interface{}, error)

type SponsoringStatus

type SponsoringStatus struct {
	String *string
}

SponsoringStatus Indicates whether sponsored data connectivity is enabled or disabled/not enabled.

func (*SponsoringStatus) MarshalJSON

func (src *SponsoringStatus) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SponsoringStatus) UnmarshalJSON

func (dst *SponsoringStatus) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any 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 TemporalValidity

type TemporalValidity struct {
	// string with format 'date-time' as defined in OpenAPI.
	StartTime *time.Time `json:"startTime,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	StopTime *time.Time `json:"stopTime,omitempty"`
}

TemporalValidity Indicates the time interval(s) during which the AF request is to be applied.

func NewTemporalValidity

func NewTemporalValidity() *TemporalValidity

NewTemporalValidity instantiates a new TemporalValidity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemporalValidityWithDefaults

func NewTemporalValidityWithDefaults() *TemporalValidity

NewTemporalValidityWithDefaults instantiates a new TemporalValidity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemporalValidity) GetStartTime

func (o *TemporalValidity) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*TemporalValidity) GetStartTimeOk

func (o *TemporalValidity) GetStartTimeOk() (*time.Time, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemporalValidity) GetStopTime

func (o *TemporalValidity) GetStopTime() time.Time

GetStopTime returns the StopTime field value if set, zero value otherwise.

func (*TemporalValidity) GetStopTimeOk

func (o *TemporalValidity) GetStopTimeOk() (*time.Time, bool)

GetStopTimeOk returns a tuple with the StopTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemporalValidity) HasStartTime

func (o *TemporalValidity) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*TemporalValidity) HasStopTime

func (o *TemporalValidity) HasStopTime() bool

HasStopTime returns a boolean if a field has been set.

func (TemporalValidity) MarshalJSON

func (o TemporalValidity) MarshalJSON() ([]byte, error)

func (*TemporalValidity) SetStartTime

func (o *TemporalValidity) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (*TemporalValidity) SetStopTime

func (o *TemporalValidity) SetStopTime(v time.Time)

SetStopTime gets a reference to the given time.Time and assigns it to the StopTime field.

func (TemporalValidity) ToMap

func (o TemporalValidity) ToMap() (map[string]interface{}, error)

type TerminationCause

type TerminationCause struct {
	String *string
}

TerminationCause Indicates the cause behind requesting the deletion of the Individual Application Session Context resource.

func (*TerminationCause) MarshalJSON

func (src *TerminationCause) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TerminationCause) UnmarshalJSON

func (dst *TerminationCause) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TerminationInfo

type TerminationInfo struct {
	TermCause TerminationCause `json:"termCause"`
	// String providing an URI formatted according to RFC 3986.
	ResUri string `json:"resUri"`
}

TerminationInfo Indicates the cause for requesting the deletion of the Individual Application Session Context resource.

func NewTerminationInfo

func NewTerminationInfo(termCause TerminationCause, resUri string) *TerminationInfo

NewTerminationInfo instantiates a new TerminationInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTerminationInfoWithDefaults

func NewTerminationInfoWithDefaults() *TerminationInfo

NewTerminationInfoWithDefaults instantiates a new TerminationInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TerminationInfo) GetResUri

func (o *TerminationInfo) GetResUri() string

GetResUri returns the ResUri field value

func (*TerminationInfo) GetResUriOk

func (o *TerminationInfo) GetResUriOk() (*string, bool)

GetResUriOk returns a tuple with the ResUri field value and a boolean to check if the value has been set.

func (*TerminationInfo) GetTermCause

func (o *TerminationInfo) GetTermCause() TerminationCause

GetTermCause returns the TermCause field value

func (*TerminationInfo) GetTermCauseOk

func (o *TerminationInfo) GetTermCauseOk() (*TerminationCause, bool)

GetTermCauseOk returns a tuple with the TermCause field value and a boolean to check if the value has been set.

func (TerminationInfo) MarshalJSON

func (o TerminationInfo) MarshalJSON() ([]byte, error)

func (*TerminationInfo) SetResUri

func (o *TerminationInfo) SetResUri(v string)

SetResUri sets field value

func (*TerminationInfo) SetTermCause

func (o *TerminationInfo) SetTermCause(v TerminationCause)

SetTermCause sets field value

func (TerminationInfo) ToMap

func (o TerminationInfo) 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 TransportProtocol1

type TransportProtocol1 struct {
	String *string
}

TransportProtocol1 Types of transport protocol used in a given IP endpoint of an NF Service Instance

func (*TransportProtocol1) MarshalJSON

func (src *TransportProtocol1) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TransportProtocol1) UnmarshalJSON

func (dst *TransportProtocol1) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TscaiInputContainer

type TscaiInputContainer struct {
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Periodicity *int32 `json:"periodicity,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	BurstArrivalTime *time.Time `json:"burstArrivalTime,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	SurTimeInNumMsg *int32 `json:"surTimeInNumMsg,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	SurTimeInTime *int32 `json:"surTimeInTime,omitempty"`
}

TscaiInputContainer Indicates TSC Traffic pattern.

func NewTscaiInputContainer

func NewTscaiInputContainer() *TscaiInputContainer

NewTscaiInputContainer instantiates a new TscaiInputContainer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTscaiInputContainerWithDefaults

func NewTscaiInputContainerWithDefaults() *TscaiInputContainer

NewTscaiInputContainerWithDefaults instantiates a new TscaiInputContainer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TscaiInputContainer) GetBurstArrivalTime

func (o *TscaiInputContainer) GetBurstArrivalTime() time.Time

GetBurstArrivalTime returns the BurstArrivalTime field value if set, zero value otherwise.

func (*TscaiInputContainer) GetBurstArrivalTimeOk

func (o *TscaiInputContainer) GetBurstArrivalTimeOk() (*time.Time, bool)

GetBurstArrivalTimeOk returns a tuple with the BurstArrivalTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TscaiInputContainer) GetPeriodicity

func (o *TscaiInputContainer) GetPeriodicity() int32

GetPeriodicity returns the Periodicity field value if set, zero value otherwise.

func (*TscaiInputContainer) GetPeriodicityOk

func (o *TscaiInputContainer) GetPeriodicityOk() (*int32, bool)

GetPeriodicityOk returns a tuple with the Periodicity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TscaiInputContainer) GetSurTimeInNumMsg

func (o *TscaiInputContainer) GetSurTimeInNumMsg() int32

GetSurTimeInNumMsg returns the SurTimeInNumMsg field value if set, zero value otherwise.

func (*TscaiInputContainer) GetSurTimeInNumMsgOk

func (o *TscaiInputContainer) GetSurTimeInNumMsgOk() (*int32, bool)

GetSurTimeInNumMsgOk returns a tuple with the SurTimeInNumMsg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TscaiInputContainer) GetSurTimeInTime

func (o *TscaiInputContainer) GetSurTimeInTime() int32

GetSurTimeInTime returns the SurTimeInTime field value if set, zero value otherwise.

func (*TscaiInputContainer) GetSurTimeInTimeOk

func (o *TscaiInputContainer) GetSurTimeInTimeOk() (*int32, bool)

GetSurTimeInTimeOk returns a tuple with the SurTimeInTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TscaiInputContainer) HasBurstArrivalTime

func (o *TscaiInputContainer) HasBurstArrivalTime() bool

HasBurstArrivalTime returns a boolean if a field has been set.

func (*TscaiInputContainer) HasPeriodicity

func (o *TscaiInputContainer) HasPeriodicity() bool

HasPeriodicity returns a boolean if a field has been set.

func (*TscaiInputContainer) HasSurTimeInNumMsg

func (o *TscaiInputContainer) HasSurTimeInNumMsg() bool

HasSurTimeInNumMsg returns a boolean if a field has been set.

func (*TscaiInputContainer) HasSurTimeInTime

func (o *TscaiInputContainer) HasSurTimeInTime() bool

HasSurTimeInTime returns a boolean if a field has been set.

func (TscaiInputContainer) MarshalJSON

func (o TscaiInputContainer) MarshalJSON() ([]byte, error)

func (*TscaiInputContainer) SetBurstArrivalTime

func (o *TscaiInputContainer) SetBurstArrivalTime(v time.Time)

SetBurstArrivalTime gets a reference to the given time.Time and assigns it to the BurstArrivalTime field.

func (*TscaiInputContainer) SetPeriodicity

func (o *TscaiInputContainer) SetPeriodicity(v int32)

SetPeriodicity gets a reference to the given int32 and assigns it to the Periodicity field.

func (*TscaiInputContainer) SetSurTimeInNumMsg

func (o *TscaiInputContainer) SetSurTimeInNumMsg(v int32)

SetSurTimeInNumMsg gets a reference to the given int32 and assigns it to the SurTimeInNumMsg field.

func (*TscaiInputContainer) SetSurTimeInTime

func (o *TscaiInputContainer) SetSurTimeInTime(v int32)

SetSurTimeInTime gets a reference to the given int32 and assigns it to the SurTimeInTime field.

func (TscaiInputContainer) ToMap

func (o TscaiInputContainer) ToMap() (map[string]interface{}, error)

type TsnBridgeInfo

type TsnBridgeInfo struct {
	// Integer where the allowed values correspond to the value range of an unsigned 64-bit integer.
	BridgeId *int32 `json:"bridgeId,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	DsttAddr *string `json:"dsttAddr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	DsttPortNum *int32 `json:"dsttPortNum,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	DsttResidTime *int32 `json:"dsttResidTime,omitempty"`
}

TsnBridgeInfo Contains parameters that describe and identify the TSC user plane node.

func NewTsnBridgeInfo

func NewTsnBridgeInfo() *TsnBridgeInfo

NewTsnBridgeInfo instantiates a new TsnBridgeInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTsnBridgeInfoWithDefaults

func NewTsnBridgeInfoWithDefaults() *TsnBridgeInfo

NewTsnBridgeInfoWithDefaults instantiates a new TsnBridgeInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TsnBridgeInfo) GetBridgeId

func (o *TsnBridgeInfo) GetBridgeId() int32

GetBridgeId returns the BridgeId field value if set, zero value otherwise.

func (*TsnBridgeInfo) GetBridgeIdOk

func (o *TsnBridgeInfo) GetBridgeIdOk() (*int32, bool)

GetBridgeIdOk returns a tuple with the BridgeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsnBridgeInfo) GetDsttAddr

func (o *TsnBridgeInfo) GetDsttAddr() string

GetDsttAddr returns the DsttAddr field value if set, zero value otherwise.

func (*TsnBridgeInfo) GetDsttAddrOk

func (o *TsnBridgeInfo) GetDsttAddrOk() (*string, bool)

GetDsttAddrOk returns a tuple with the DsttAddr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsnBridgeInfo) GetDsttPortNum

func (o *TsnBridgeInfo) GetDsttPortNum() int32

GetDsttPortNum returns the DsttPortNum field value if set, zero value otherwise.

func (*TsnBridgeInfo) GetDsttPortNumOk

func (o *TsnBridgeInfo) GetDsttPortNumOk() (*int32, bool)

GetDsttPortNumOk returns a tuple with the DsttPortNum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsnBridgeInfo) GetDsttResidTime

func (o *TsnBridgeInfo) GetDsttResidTime() int32

GetDsttResidTime returns the DsttResidTime field value if set, zero value otherwise.

func (*TsnBridgeInfo) GetDsttResidTimeOk

func (o *TsnBridgeInfo) GetDsttResidTimeOk() (*int32, bool)

GetDsttResidTimeOk returns a tuple with the DsttResidTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsnBridgeInfo) HasBridgeId

func (o *TsnBridgeInfo) HasBridgeId() bool

HasBridgeId returns a boolean if a field has been set.

func (*TsnBridgeInfo) HasDsttAddr

func (o *TsnBridgeInfo) HasDsttAddr() bool

HasDsttAddr returns a boolean if a field has been set.

func (*TsnBridgeInfo) HasDsttPortNum

func (o *TsnBridgeInfo) HasDsttPortNum() bool

HasDsttPortNum returns a boolean if a field has been set.

func (*TsnBridgeInfo) HasDsttResidTime

func (o *TsnBridgeInfo) HasDsttResidTime() bool

HasDsttResidTime returns a boolean if a field has been set.

func (TsnBridgeInfo) MarshalJSON

func (o TsnBridgeInfo) MarshalJSON() ([]byte, error)

func (*TsnBridgeInfo) SetBridgeId

func (o *TsnBridgeInfo) SetBridgeId(v int32)

SetBridgeId gets a reference to the given int32 and assigns it to the BridgeId field.

func (*TsnBridgeInfo) SetDsttAddr

func (o *TsnBridgeInfo) SetDsttAddr(v string)

SetDsttAddr gets a reference to the given string and assigns it to the DsttAddr field.

func (*TsnBridgeInfo) SetDsttPortNum

func (o *TsnBridgeInfo) SetDsttPortNum(v int32)

SetDsttPortNum gets a reference to the given int32 and assigns it to the DsttPortNum field.

func (*TsnBridgeInfo) SetDsttResidTime

func (o *TsnBridgeInfo) SetDsttResidTime(v int32)

SetDsttResidTime gets a reference to the given int32 and assigns it to the DsttResidTime field.

func (TsnBridgeInfo) ToMap

func (o TsnBridgeInfo) ToMap() (map[string]interface{}, error)

type TsnQosContainer

type TsnQosContainer struct {
	// Unsigned integer indicating Maximum Data Burst Volume (see clauses 5.7.3.7 and 5.7.4 of 3GPP TS 23.501), expressed in Bytes.
	MaxTscBurstSize *int32 `json:"maxTscBurstSize,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	TscPackDelay *int32 `json:"tscPackDelay,omitempty"`
	// Represents the priority level of TSC Flows.
	TscPrioLevel *int32 `json:"tscPrioLevel,omitempty"`
}

TsnQosContainer Indicates TSC Traffic QoS.

func NewTsnQosContainer

func NewTsnQosContainer() *TsnQosContainer

NewTsnQosContainer instantiates a new TsnQosContainer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTsnQosContainerWithDefaults

func NewTsnQosContainerWithDefaults() *TsnQosContainer

NewTsnQosContainerWithDefaults instantiates a new TsnQosContainer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TsnQosContainer) GetMaxTscBurstSize

func (o *TsnQosContainer) GetMaxTscBurstSize() int32

GetMaxTscBurstSize returns the MaxTscBurstSize field value if set, zero value otherwise.

func (*TsnQosContainer) GetMaxTscBurstSizeOk

func (o *TsnQosContainer) GetMaxTscBurstSizeOk() (*int32, bool)

GetMaxTscBurstSizeOk returns a tuple with the MaxTscBurstSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsnQosContainer) GetTscPackDelay

func (o *TsnQosContainer) GetTscPackDelay() int32

GetTscPackDelay returns the TscPackDelay field value if set, zero value otherwise.

func (*TsnQosContainer) GetTscPackDelayOk

func (o *TsnQosContainer) GetTscPackDelayOk() (*int32, bool)

GetTscPackDelayOk returns a tuple with the TscPackDelay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsnQosContainer) GetTscPrioLevel

func (o *TsnQosContainer) GetTscPrioLevel() int32

GetTscPrioLevel returns the TscPrioLevel field value if set, zero value otherwise.

func (*TsnQosContainer) GetTscPrioLevelOk

func (o *TsnQosContainer) GetTscPrioLevelOk() (*int32, bool)

GetTscPrioLevelOk returns a tuple with the TscPrioLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TsnQosContainer) HasMaxTscBurstSize

func (o *TsnQosContainer) HasMaxTscBurstSize() bool

HasMaxTscBurstSize returns a boolean if a field has been set.

func (*TsnQosContainer) HasTscPackDelay

func (o *TsnQosContainer) HasTscPackDelay() bool

HasTscPackDelay returns a boolean if a field has been set.

func (*TsnQosContainer) HasTscPrioLevel

func (o *TsnQosContainer) HasTscPrioLevel() bool

HasTscPrioLevel returns a boolean if a field has been set.

func (TsnQosContainer) MarshalJSON

func (o TsnQosContainer) MarshalJSON() ([]byte, error)

func (*TsnQosContainer) SetMaxTscBurstSize

func (o *TsnQosContainer) SetMaxTscBurstSize(v int32)

SetMaxTscBurstSize gets a reference to the given int32 and assigns it to the MaxTscBurstSize field.

func (*TsnQosContainer) SetTscPackDelay

func (o *TsnQosContainer) SetTscPackDelay(v int32)

SetTscPackDelay gets a reference to the given int32 and assigns it to the TscPackDelay field.

func (*TsnQosContainer) SetTscPrioLevel

func (o *TsnQosContainer) SetTscPrioLevel(v int32)

SetTscPrioLevel gets a reference to the given int32 and assigns it to the TscPrioLevel field.

func (TsnQosContainer) ToMap

func (o TsnQosContainer) ToMap() (map[string]interface{}, error)

type TsnQosContainerRm

type TsnQosContainerRm struct {
	// This data type is defined in the same way as the 'ExtMaxDataBurstVol' data type, but with the OpenAPI 'nullable: true' property.
	MaxTscBurstSize NullableInt32 `json:"maxTscBurstSize,omitempty"`
	// This data type is defined in the same way as the 'PacketDelBudget' data type, but with the OpenAPI 'nullable: true' property.
	TscPackDelay NullableInt32 `json:"tscPackDelay,omitempty"`
	// This data type is defined in the same way as the TscPriorityLevel data type, but with the OpenAPI nullable property set to true.
	TscPrioLevel NullableInt32 `json:"tscPrioLevel,omitempty"`
}

TsnQosContainerRm Indicates removable TSC Traffic QoS.

func NewTsnQosContainerRm

func NewTsnQosContainerRm() *TsnQosContainerRm

NewTsnQosContainerRm instantiates a new TsnQosContainerRm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTsnQosContainerRmWithDefaults

func NewTsnQosContainerRmWithDefaults() *TsnQosContainerRm

NewTsnQosContainerRmWithDefaults instantiates a new TsnQosContainerRm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TsnQosContainerRm) GetMaxTscBurstSize

func (o *TsnQosContainerRm) GetMaxTscBurstSize() int32

GetMaxTscBurstSize returns the MaxTscBurstSize field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TsnQosContainerRm) GetMaxTscBurstSizeOk

func (o *TsnQosContainerRm) GetMaxTscBurstSizeOk() (*int32, bool)

GetMaxTscBurstSizeOk returns a tuple with the MaxTscBurstSize 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 (*TsnQosContainerRm) GetTscPackDelay

func (o *TsnQosContainerRm) GetTscPackDelay() int32

GetTscPackDelay returns the TscPackDelay field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TsnQosContainerRm) GetTscPackDelayOk

func (o *TsnQosContainerRm) GetTscPackDelayOk() (*int32, bool)

GetTscPackDelayOk returns a tuple with the TscPackDelay 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 (*TsnQosContainerRm) GetTscPrioLevel

func (o *TsnQosContainerRm) GetTscPrioLevel() int32

GetTscPrioLevel returns the TscPrioLevel field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TsnQosContainerRm) GetTscPrioLevelOk

func (o *TsnQosContainerRm) GetTscPrioLevelOk() (*int32, bool)

GetTscPrioLevelOk returns a tuple with the TscPrioLevel 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 (*TsnQosContainerRm) HasMaxTscBurstSize

func (o *TsnQosContainerRm) HasMaxTscBurstSize() bool

HasMaxTscBurstSize returns a boolean if a field has been set.

func (*TsnQosContainerRm) HasTscPackDelay

func (o *TsnQosContainerRm) HasTscPackDelay() bool

HasTscPackDelay returns a boolean if a field has been set.

func (*TsnQosContainerRm) HasTscPrioLevel

func (o *TsnQosContainerRm) HasTscPrioLevel() bool

HasTscPrioLevel returns a boolean if a field has been set.

func (TsnQosContainerRm) MarshalJSON

func (o TsnQosContainerRm) MarshalJSON() ([]byte, error)

func (*TsnQosContainerRm) SetMaxTscBurstSize

func (o *TsnQosContainerRm) SetMaxTscBurstSize(v int32)

SetMaxTscBurstSize gets a reference to the given NullableInt32 and assigns it to the MaxTscBurstSize field.

func (*TsnQosContainerRm) SetMaxTscBurstSizeNil

func (o *TsnQosContainerRm) SetMaxTscBurstSizeNil()

SetMaxTscBurstSizeNil sets the value for MaxTscBurstSize to be an explicit nil

func (*TsnQosContainerRm) SetTscPackDelay

func (o *TsnQosContainerRm) SetTscPackDelay(v int32)

SetTscPackDelay gets a reference to the given NullableInt32 and assigns it to the TscPackDelay field.

func (*TsnQosContainerRm) SetTscPackDelayNil

func (o *TsnQosContainerRm) SetTscPackDelayNil()

SetTscPackDelayNil sets the value for TscPackDelay to be an explicit nil

func (*TsnQosContainerRm) SetTscPrioLevel

func (o *TsnQosContainerRm) SetTscPrioLevel(v int32)

SetTscPrioLevel gets a reference to the given NullableInt32 and assigns it to the TscPrioLevel field.

func (*TsnQosContainerRm) SetTscPrioLevelNil

func (o *TsnQosContainerRm) SetTscPrioLevelNil()

SetTscPrioLevelNil sets the value for TscPrioLevel to be an explicit nil

func (TsnQosContainerRm) ToMap

func (o TsnQosContainerRm) ToMap() (map[string]interface{}, error)

func (*TsnQosContainerRm) UnsetMaxTscBurstSize

func (o *TsnQosContainerRm) UnsetMaxTscBurstSize()

UnsetMaxTscBurstSize ensures that no value is present for MaxTscBurstSize, not even an explicit nil

func (*TsnQosContainerRm) UnsetTscPackDelay

func (o *TsnQosContainerRm) UnsetTscPackDelay()

UnsetTscPackDelay ensures that no value is present for TscPackDelay, not even an explicit nil

func (*TsnQosContainerRm) UnsetTscPrioLevel

func (o *TsnQosContainerRm) UnsetTscPrioLevel()

UnsetTscPrioLevel ensures that no value is present for TscPrioLevel, not even an explicit nil

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 UeIdentityInfo

type UeIdentityInfo struct {
	Interface *interface{}
}

UeIdentityInfo Represents 5GS-Level UE identities.

func (*UeIdentityInfo) MarshalJSON

func (src *UeIdentityInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UeIdentityInfo) UnmarshalJSON

func (dst *UeIdentityInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UpPathChgEvent

type UpPathChgEvent struct {
	// String providing an URI formatted according to RFC 3986.
	NotificationUri string `json:"notificationUri"`
	// It is used to set the value of Notification Correlation ID in the notification sent by  the SMF.
	NotifCorreId string         `json:"notifCorreId"`
	DnaiChgType  DnaiChangeType `json:"dnaiChgType"`
	AfAckInd     *bool          `json:"afAckInd,omitempty"`
}

UpPathChgEvent Contains the UP path change event subscription from the AF.

func NewUpPathChgEvent

func NewUpPathChgEvent(notificationUri string, notifCorreId string, dnaiChgType DnaiChangeType) *UpPathChgEvent

NewUpPathChgEvent instantiates a new UpPathChgEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpPathChgEventWithDefaults

func NewUpPathChgEventWithDefaults() *UpPathChgEvent

NewUpPathChgEventWithDefaults instantiates a new UpPathChgEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpPathChgEvent) GetAfAckInd

func (o *UpPathChgEvent) GetAfAckInd() bool

GetAfAckInd returns the AfAckInd field value if set, zero value otherwise.

func (*UpPathChgEvent) GetAfAckIndOk

func (o *UpPathChgEvent) GetAfAckIndOk() (*bool, bool)

GetAfAckIndOk returns a tuple with the AfAckInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpPathChgEvent) GetDnaiChgType

func (o *UpPathChgEvent) GetDnaiChgType() DnaiChangeType

GetDnaiChgType returns the DnaiChgType field value

func (*UpPathChgEvent) GetDnaiChgTypeOk

func (o *UpPathChgEvent) GetDnaiChgTypeOk() (*DnaiChangeType, bool)

GetDnaiChgTypeOk returns a tuple with the DnaiChgType field value and a boolean to check if the value has been set.

func (*UpPathChgEvent) GetNotifCorreId

func (o *UpPathChgEvent) GetNotifCorreId() string

GetNotifCorreId returns the NotifCorreId field value

func (*UpPathChgEvent) GetNotifCorreIdOk

func (o *UpPathChgEvent) GetNotifCorreIdOk() (*string, bool)

GetNotifCorreIdOk returns a tuple with the NotifCorreId field value and a boolean to check if the value has been set.

func (*UpPathChgEvent) GetNotificationUri

func (o *UpPathChgEvent) GetNotificationUri() string

GetNotificationUri returns the NotificationUri field value

func (*UpPathChgEvent) GetNotificationUriOk

func (o *UpPathChgEvent) GetNotificationUriOk() (*string, bool)

GetNotificationUriOk returns a tuple with the NotificationUri field value and a boolean to check if the value has been set.

func (*UpPathChgEvent) HasAfAckInd

func (o *UpPathChgEvent) HasAfAckInd() bool

HasAfAckInd returns a boolean if a field has been set.

func (UpPathChgEvent) MarshalJSON

func (o UpPathChgEvent) MarshalJSON() ([]byte, error)

func (*UpPathChgEvent) SetAfAckInd

func (o *UpPathChgEvent) SetAfAckInd(v bool)

SetAfAckInd gets a reference to the given bool and assigns it to the AfAckInd field.

func (*UpPathChgEvent) SetDnaiChgType

func (o *UpPathChgEvent) SetDnaiChgType(v DnaiChangeType)

SetDnaiChgType sets field value

func (*UpPathChgEvent) SetNotifCorreId

func (o *UpPathChgEvent) SetNotifCorreId(v string)

SetNotifCorreId sets field value

func (*UpPathChgEvent) SetNotificationUri

func (o *UpPathChgEvent) SetNotificationUri(v string)

SetNotificationUri sets field value

func (UpPathChgEvent) ToMap

func (o UpPathChgEvent) ToMap() (map[string]interface{}, error)

type UsageThreshold

type UsageThreshold struct {
	// Unsigned integer identifying a period of time in units of seconds.
	Duration *int32 `json:"duration,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	TotalVolume *int64 `json:"totalVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	DownlinkVolume *int64 `json:"downlinkVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes.
	UplinkVolume *int64 `json:"uplinkVolume,omitempty"`
}

UsageThreshold Represents a usage threshold.

func NewUsageThreshold

func NewUsageThreshold() *UsageThreshold

NewUsageThreshold instantiates a new UsageThreshold object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsageThresholdWithDefaults

func NewUsageThresholdWithDefaults() *UsageThreshold

NewUsageThresholdWithDefaults instantiates a new UsageThreshold object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsageThreshold) GetDownlinkVolume

func (o *UsageThreshold) GetDownlinkVolume() int64

GetDownlinkVolume returns the DownlinkVolume field value if set, zero value otherwise.

func (*UsageThreshold) GetDownlinkVolumeOk

func (o *UsageThreshold) GetDownlinkVolumeOk() (*int64, bool)

GetDownlinkVolumeOk returns a tuple with the DownlinkVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageThreshold) GetDuration

func (o *UsageThreshold) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise.

func (*UsageThreshold) GetDurationOk

func (o *UsageThreshold) GetDurationOk() (*int32, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageThreshold) GetTotalVolume

func (o *UsageThreshold) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*UsageThreshold) GetTotalVolumeOk

func (o *UsageThreshold) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageThreshold) GetUplinkVolume

func (o *UsageThreshold) GetUplinkVolume() int64

GetUplinkVolume returns the UplinkVolume field value if set, zero value otherwise.

func (*UsageThreshold) GetUplinkVolumeOk

func (o *UsageThreshold) GetUplinkVolumeOk() (*int64, bool)

GetUplinkVolumeOk returns a tuple with the UplinkVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageThreshold) HasDownlinkVolume

func (o *UsageThreshold) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*UsageThreshold) HasDuration

func (o *UsageThreshold) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*UsageThreshold) HasTotalVolume

func (o *UsageThreshold) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*UsageThreshold) HasUplinkVolume

func (o *UsageThreshold) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (UsageThreshold) MarshalJSON

func (o UsageThreshold) MarshalJSON() ([]byte, error)

func (*UsageThreshold) SetDownlinkVolume

func (o *UsageThreshold) SetDownlinkVolume(v int64)

SetDownlinkVolume gets a reference to the given int64 and assigns it to the DownlinkVolume field.

func (*UsageThreshold) SetDuration

func (o *UsageThreshold) SetDuration(v int32)

SetDuration gets a reference to the given int32 and assigns it to the Duration field.

func (*UsageThreshold) SetTotalVolume

func (o *UsageThreshold) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (*UsageThreshold) SetUplinkVolume

func (o *UsageThreshold) SetUplinkVolume(v int64)

SetUplinkVolume gets a reference to the given int64 and assigns it to the UplinkVolume field.

func (UsageThreshold) ToMap

func (o UsageThreshold) ToMap() (map[string]interface{}, error)

type UsageThresholdRm

type UsageThresholdRm struct {
	// Unsigned integer identifying a period of time in units of seconds with \"nullable=true\" property.
	Duration NullableInt32 `json:"duration,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	TotalVolume NullableInt64 `json:"totalVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	DownlinkVolume NullableInt64 `json:"downlinkVolume,omitempty"`
	// Unsigned integer identifying a volume in units of bytes with \"nullable=true\" property.
	UplinkVolume NullableInt64 `json:"uplinkVolume,omitempty"`
}

UsageThresholdRm Represents the same as the UsageThreshold data type but with the nullable:true property.

func NewUsageThresholdRm

func NewUsageThresholdRm() *UsageThresholdRm

NewUsageThresholdRm instantiates a new UsageThresholdRm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsageThresholdRmWithDefaults

func NewUsageThresholdRmWithDefaults() *UsageThresholdRm

NewUsageThresholdRmWithDefaults instantiates a new UsageThresholdRm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsageThresholdRm) GetDownlinkVolume

func (o *UsageThresholdRm) GetDownlinkVolume() int64

GetDownlinkVolume returns the DownlinkVolume field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageThresholdRm) GetDownlinkVolumeOk

func (o *UsageThresholdRm) GetDownlinkVolumeOk() (*int64, bool)

GetDownlinkVolumeOk returns a tuple with the DownlinkVolume field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UsageThresholdRm) GetDuration

func (o *UsageThresholdRm) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageThresholdRm) GetDurationOk

func (o *UsageThresholdRm) GetDurationOk() (*int32, bool)

GetDurationOk returns a tuple with the Duration 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 (*UsageThresholdRm) GetTotalVolume

func (o *UsageThresholdRm) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageThresholdRm) GetTotalVolumeOk

func (o *UsageThresholdRm) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UsageThresholdRm) GetUplinkVolume

func (o *UsageThresholdRm) GetUplinkVolume() int64

GetUplinkVolume returns the UplinkVolume field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsageThresholdRm) GetUplinkVolumeOk

func (o *UsageThresholdRm) GetUplinkVolumeOk() (*int64, bool)

GetUplinkVolumeOk returns a tuple with the UplinkVolume field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UsageThresholdRm) HasDownlinkVolume

func (o *UsageThresholdRm) HasDownlinkVolume() bool

HasDownlinkVolume returns a boolean if a field has been set.

func (*UsageThresholdRm) HasDuration

func (o *UsageThresholdRm) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*UsageThresholdRm) HasTotalVolume

func (o *UsageThresholdRm) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*UsageThresholdRm) HasUplinkVolume

func (o *UsageThresholdRm) HasUplinkVolume() bool

HasUplinkVolume returns a boolean if a field has been set.

func (UsageThresholdRm) MarshalJSON

func (o UsageThresholdRm) MarshalJSON() ([]byte, error)

func (*UsageThresholdRm) SetDownlinkVolume

func (o *UsageThresholdRm) SetDownlinkVolume(v int64)

SetDownlinkVolume gets a reference to the given NullableInt64 and assigns it to the DownlinkVolume field.

func (*UsageThresholdRm) SetDownlinkVolumeNil

func (o *UsageThresholdRm) SetDownlinkVolumeNil()

SetDownlinkVolumeNil sets the value for DownlinkVolume to be an explicit nil

func (*UsageThresholdRm) SetDuration

func (o *UsageThresholdRm) SetDuration(v int32)

SetDuration gets a reference to the given NullableInt32 and assigns it to the Duration field.

func (*UsageThresholdRm) SetDurationNil

func (o *UsageThresholdRm) SetDurationNil()

SetDurationNil sets the value for Duration to be an explicit nil

func (*UsageThresholdRm) SetTotalVolume

func (o *UsageThresholdRm) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given NullableInt64 and assigns it to the TotalVolume field.

func (*UsageThresholdRm) SetTotalVolumeNil

func (o *UsageThresholdRm) SetTotalVolumeNil()

SetTotalVolumeNil sets the value for TotalVolume to be an explicit nil

func (*UsageThresholdRm) SetUplinkVolume

func (o *UsageThresholdRm) SetUplinkVolume(v int64)

SetUplinkVolume gets a reference to the given NullableInt64 and assigns it to the UplinkVolume field.

func (*UsageThresholdRm) SetUplinkVolumeNil

func (o *UsageThresholdRm) SetUplinkVolumeNil()

SetUplinkVolumeNil sets the value for UplinkVolume to be an explicit nil

func (UsageThresholdRm) ToMap

func (o UsageThresholdRm) ToMap() (map[string]interface{}, error)

func (*UsageThresholdRm) UnsetDownlinkVolume

func (o *UsageThresholdRm) UnsetDownlinkVolume()

UnsetDownlinkVolume ensures that no value is present for DownlinkVolume, not even an explicit nil

func (*UsageThresholdRm) UnsetDuration

func (o *UsageThresholdRm) UnsetDuration()

UnsetDuration ensures that no value is present for Duration, not even an explicit nil

func (*UsageThresholdRm) UnsetTotalVolume

func (o *UsageThresholdRm) UnsetTotalVolume()

UnsetTotalVolume ensures that no value is present for TotalVolume, not even an explicit nil

func (*UsageThresholdRm) UnsetUplinkVolume

func (o *UsageThresholdRm) UnsetUplinkVolume()

UnsetUplinkVolume ensures that no value is present for UplinkVolume, not even an explicit nil

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