openapi_Nmbsmf_MBSSession

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_Nmbsmf_MBSSession

MB-SMF MBSSession 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.1.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_Nmbsmf_MBSSession "github.com/GIT_USER_ID/GIT_REPO_ID/openapi_Nmbsmf_MBSSession"

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

Documentation for API Endpoints

All URIs are relative to https://example.com/nmbsmf-mbssession/v1

Class Method HTTP request Description
IndividualMBSSessionApi Release Delete /mbs-sessions/{mbsSessionRef} Deletes an individual MBS session resource in the MB-SMF.
IndividualMBSSessionApi Update Patch /mbs-sessions/{mbsSessionRef} Updates an individual MBS session resource in the MB-SMF.
IndividualSubscriptionForAnMBSContextApi ContextStatusSubscribeMod Patch /mbs-sessions/contexts/subscriptions/{subscriptionId} ContextStatusSubscribe modifying an individual subscription
IndividualSubscriptionForAnMBSContextApi ContextStatusUnSubscribe Delete /mbs-sessions/contexts/subscriptions/{subscriptionId} ContextStatusUnSubscribe
IndividualSubscriptionForAnMBSSessionApi StatusSubscribeMod Patch /mbs-sessions/subscriptions/{subscriptionId} StatusSubscribe to modify (update or renew) an individual subscription
IndividualSubscriptionForAnMBSSessionApi StatusUnSubscribe Delete /mbs-sessions/subscriptions/{subscriptionId} StatusUnSubscribe to unsubscribe from the Status Subscription
MBSSessionsCollectionApi ContextUpdate Post /mbs-sessions/contexts/update ContextUpdate
MBSSessionsCollectionApi Create Post /mbs-sessions Create
SubscriptionsCollectionForMBSContextsApi ContextStatusSubscribe Post /mbs-sessions/contexts/subscriptions ContextStatusSubscribe creating a subscription
SubscriptionsCollectionForMBSSessionsApi StatusSubscribe Post /mbs-sessions/subscriptions StatusSubscribe creating a subscription

Documentation For Models

Documentation For Authorization

oAuth2ClientCredentials
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • nmbsmf-mbssession: Access to the Nmbsmf-MBSSession 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 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 {
	IndividualMBSSessionApi *IndividualMBSSessionApiService

	IndividualSubscriptionForAnMBSContextApi *IndividualSubscriptionForAnMBSContextApiService

	IndividualSubscriptionForAnMBSSessionApi *IndividualSubscriptionForAnMBSSessionApiService

	MBSSessionsCollectionApi *MBSSessionsCollectionApiService

	SubscriptionsCollectionForMBSContextsApi *SubscriptionsCollectionForMBSContextsApiService

	SubscriptionsCollectionForMBSSessionsApi *SubscriptionsCollectionForMBSSessionsApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Nmbsmf-MBSSession API v1.1.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 AcceptableMbsServInfo

type AcceptableMbsServInfo struct {
	Interface *interface{}
}

AcceptableMbsServInfo - Contains the MBS Service Information that can be accepted by the PCF.

func InterfaceAsAcceptableMbsServInfo

func InterfaceAsAcceptableMbsServInfo(v *interface{}) AcceptableMbsServInfo

interface{}AsAcceptableMbsServInfo is a convenience function that returns interface{} wrapped in AcceptableMbsServInfo

func (*AcceptableMbsServInfo) GetActualInstance

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

Get the actual instance

func (AcceptableMbsServInfo) MarshalJSON

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

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

func (*AcceptableMbsServInfo) UnmarshalJSON

func (dst *AcceptableMbsServInfo) 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 ApiContextStatusSubscribeModRequest

type ApiContextStatusSubscribeModRequest struct {
	ApiService *IndividualSubscriptionForAnMBSContextApiService
	// contains filtered or unexported fields
}

func (ApiContextStatusSubscribeModRequest) Execute

func (ApiContextStatusSubscribeModRequest) PatchItem

Data to be modified in the ContextStatusSubscription

type ApiContextStatusSubscribeRequest

type ApiContextStatusSubscribeRequest struct {
	ApiService *SubscriptionsCollectionForMBSContextsApiService
	// contains filtered or unexported fields
}

func (ApiContextStatusSubscribeRequest) ContextStatusSubscribeReqData

func (r ApiContextStatusSubscribeRequest) ContextStatusSubscribeReqData(contextStatusSubscribeReqData ContextStatusSubscribeReqData) ApiContextStatusSubscribeRequest

Data within the ContextStatusSubscribe Request

func (ApiContextStatusSubscribeRequest) Execute

type ApiContextStatusUnSubscribeRequest

type ApiContextStatusUnSubscribeRequest struct {
	ApiService *IndividualSubscriptionForAnMBSContextApiService
	// contains filtered or unexported fields
}

func (ApiContextStatusUnSubscribeRequest) Execute

type ApiContextUpdateRequest

type ApiContextUpdateRequest struct {
	ApiService *MBSSessionsCollectionApiService
	// contains filtered or unexported fields
}

func (ApiContextUpdateRequest) ContextUpdateReqData

func (r ApiContextUpdateRequest) ContextUpdateReqData(contextUpdateReqData ContextUpdateReqData) ApiContextUpdateRequest

Data within the ContextUpdate Request

func (ApiContextUpdateRequest) Execute

type ApiCreateRequest

type ApiCreateRequest struct {
	ApiService *MBSSessionsCollectionApiService
	// contains filtered or unexported fields
}

func (ApiCreateRequest) CreateReqData

func (r ApiCreateRequest) CreateReqData(createReqData CreateReqData) ApiCreateRequest

Representation of the MBS session to be created in the MB-SMF Creates an individual MBS session resource in the MB-SMF.

func (ApiCreateRequest) Execute

func (r ApiCreateRequest) Execute() (*CreateRspData, *http.Response, error)

type ApiReleaseRequest

type ApiReleaseRequest struct {
	ApiService *IndividualMBSSessionApiService
	// contains filtered or unexported fields
}

func (ApiReleaseRequest) Execute

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

type ApiStatusSubscribeModRequest

type ApiStatusSubscribeModRequest struct {
	ApiService *IndividualSubscriptionForAnMBSSessionApiService
	// contains filtered or unexported fields
}

func (ApiStatusSubscribeModRequest) Execute

func (ApiStatusSubscribeModRequest) PatchItem

Data to be modified in the MBSSessionSubscription

type ApiStatusSubscribeRequest

type ApiStatusSubscribeRequest struct {
	ApiService *SubscriptionsCollectionForMBSSessionsApiService
	// contains filtered or unexported fields
}

func (ApiStatusSubscribeRequest) Execute

func (ApiStatusSubscribeRequest) StatusSubscribeReqData

func (r ApiStatusSubscribeRequest) StatusSubscribeReqData(statusSubscribeReqData StatusSubscribeReqData) ApiStatusSubscribeRequest

Data within the StatusSubscribe Request

type ApiStatusUnSubscribeRequest

type ApiStatusUnSubscribeRequest struct {
	ApiService *IndividualSubscriptionForAnMBSSessionApiService
	// contains filtered or unexported fields
}

func (ApiStatusUnSubscribeRequest) Execute

type ApiUpdateRequest

type ApiUpdateRequest struct {
	ApiService *IndividualMBSSessionApiService
	// contains filtered or unexported fields
}

func (ApiUpdateRequest) Execute

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

func (ApiUpdateRequest) PatchItem

func (r ApiUpdateRequest) PatchItem(patchItem []PatchItem) ApiUpdateRequest

Data within the Update Request

type Arp

type Arp struct {
	// nullable true shall not be used for this attribute. Unsigned integer indicating the ARP Priority Level (see clause 5.7.2.2 of 3GPP TS 23.501, within the range 1 to 15.Values are ordered in decreasing order of priority, i.e. with 1 as the highest priority and 15 as the lowest priority.
	PriorityLevel NullableInt32           `json:"priorityLevel"`
	PreemptCap    PreemptionCapability    `json:"preemptCap"`
	PreemptVuln   PreemptionVulnerability `json:"preemptVuln"`
}

Arp Contains Allocation and Retention Priority information.

func NewArp

func NewArp(priorityLevel NullableInt32, preemptCap PreemptionCapability, preemptVuln PreemptionVulnerability) *Arp

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

func NewArpWithDefaults

func NewArpWithDefaults() *Arp

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

func (*Arp) GetPreemptCap

func (o *Arp) GetPreemptCap() PreemptionCapability

GetPreemptCap returns the PreemptCap field value

func (*Arp) GetPreemptCapOk

func (o *Arp) GetPreemptCapOk() (*PreemptionCapability, bool)

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

func (*Arp) GetPreemptVuln

func (o *Arp) GetPreemptVuln() PreemptionVulnerability

GetPreemptVuln returns the PreemptVuln field value

func (*Arp) GetPreemptVulnOk

func (o *Arp) GetPreemptVulnOk() (*PreemptionVulnerability, bool)

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

func (*Arp) GetPriorityLevel

func (o *Arp) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value If the value is explicit nil, the zero value for int32 will be returned

func (*Arp) GetPriorityLevelOk

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

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

func (Arp) MarshalJSON

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

func (*Arp) SetPreemptCap

func (o *Arp) SetPreemptCap(v PreemptionCapability)

SetPreemptCap sets field value

func (*Arp) SetPreemptVuln

func (o *Arp) SetPreemptVuln(v PreemptionVulnerability)

SetPreemptVuln sets field value

func (*Arp) SetPriorityLevel

func (o *Arp) SetPriorityLevel(v int32)

SetPriorityLevel sets field value

func (Arp) ToMap

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

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

type BroadcastDeliveryStatus struct {
	String *string
}

BroadcastDeliveryStatus Broadcast MBS Session's Delivery Status

func (*BroadcastDeliveryStatus) MarshalJSON

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

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

func (*BroadcastDeliveryStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type CivicAddress

type CivicAddress struct {
	Country    *string `json:"country,omitempty"`
	A1         *string `json:"A1,omitempty"`
	A2         *string `json:"A2,omitempty"`
	A3         *string `json:"A3,omitempty"`
	A4         *string `json:"A4,omitempty"`
	A5         *string `json:"A5,omitempty"`
	A6         *string `json:"A6,omitempty"`
	PRD        *string `json:"PRD,omitempty"`
	POD        *string `json:"POD,omitempty"`
	STS        *string `json:"STS,omitempty"`
	HNO        *string `json:"HNO,omitempty"`
	HNS        *string `json:"HNS,omitempty"`
	LMK        *string `json:"LMK,omitempty"`
	LOC        *string `json:"LOC,omitempty"`
	NAM        *string `json:"NAM,omitempty"`
	PC         *string `json:"PC,omitempty"`
	BLD        *string `json:"BLD,omitempty"`
	UNIT       *string `json:"UNIT,omitempty"`
	FLR        *string `json:"FLR,omitempty"`
	ROOM       *string `json:"ROOM,omitempty"`
	PLC        *string `json:"PLC,omitempty"`
	PCN        *string `json:"PCN,omitempty"`
	POBOX      *string `json:"POBOX,omitempty"`
	ADDCODE    *string `json:"ADDCODE,omitempty"`
	SEAT       *string `json:"SEAT,omitempty"`
	RD         *string `json:"RD,omitempty"`
	RDSEC      *string `json:"RDSEC,omitempty"`
	RDBR       *string `json:"RDBR,omitempty"`
	RDSUBBR    *string `json:"RDSUBBR,omitempty"`
	PRM        *string `json:"PRM,omitempty"`
	POM        *string `json:"POM,omitempty"`
	UsageRules *string `json:"usageRules,omitempty"`
	Method     *string `json:"method,omitempty"`
	ProvidedBy *string `json:"providedBy,omitempty"`
}

CivicAddress Indicates a Civic address.

func NewCivicAddress

func NewCivicAddress() *CivicAddress

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

func NewCivicAddressWithDefaults

func NewCivicAddressWithDefaults() *CivicAddress

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

func (*CivicAddress) GetA1

func (o *CivicAddress) GetA1() string

GetA1 returns the A1 field value if set, zero value otherwise.

func (*CivicAddress) GetA1Ok

func (o *CivicAddress) GetA1Ok() (*string, bool)

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

func (*CivicAddress) GetA2

func (o *CivicAddress) GetA2() string

GetA2 returns the A2 field value if set, zero value otherwise.

func (*CivicAddress) GetA2Ok

func (o *CivicAddress) GetA2Ok() (*string, bool)

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

func (*CivicAddress) GetA3

func (o *CivicAddress) GetA3() string

GetA3 returns the A3 field value if set, zero value otherwise.

func (*CivicAddress) GetA3Ok

func (o *CivicAddress) GetA3Ok() (*string, bool)

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

func (*CivicAddress) GetA4

func (o *CivicAddress) GetA4() string

GetA4 returns the A4 field value if set, zero value otherwise.

func (*CivicAddress) GetA4Ok

func (o *CivicAddress) GetA4Ok() (*string, bool)

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

func (*CivicAddress) GetA5

func (o *CivicAddress) GetA5() string

GetA5 returns the A5 field value if set, zero value otherwise.

func (*CivicAddress) GetA5Ok

func (o *CivicAddress) GetA5Ok() (*string, bool)

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

func (*CivicAddress) GetA6

func (o *CivicAddress) GetA6() string

GetA6 returns the A6 field value if set, zero value otherwise.

func (*CivicAddress) GetA6Ok

func (o *CivicAddress) GetA6Ok() (*string, bool)

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

func (*CivicAddress) GetADDCODE

func (o *CivicAddress) GetADDCODE() string

GetADDCODE returns the ADDCODE field value if set, zero value otherwise.

func (*CivicAddress) GetADDCODEOk

func (o *CivicAddress) GetADDCODEOk() (*string, bool)

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

func (*CivicAddress) GetBLD

func (o *CivicAddress) GetBLD() string

GetBLD returns the BLD field value if set, zero value otherwise.

func (*CivicAddress) GetBLDOk

func (o *CivicAddress) GetBLDOk() (*string, bool)

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

func (*CivicAddress) GetCountry

func (o *CivicAddress) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*CivicAddress) GetCountryOk

func (o *CivicAddress) GetCountryOk() (*string, bool)

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

func (*CivicAddress) GetFLR

func (o *CivicAddress) GetFLR() string

GetFLR returns the FLR field value if set, zero value otherwise.

func (*CivicAddress) GetFLROk

func (o *CivicAddress) GetFLROk() (*string, bool)

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

func (*CivicAddress) GetHNO

func (o *CivicAddress) GetHNO() string

GetHNO returns the HNO field value if set, zero value otherwise.

func (*CivicAddress) GetHNOOk

func (o *CivicAddress) GetHNOOk() (*string, bool)

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

func (*CivicAddress) GetHNS

func (o *CivicAddress) GetHNS() string

GetHNS returns the HNS field value if set, zero value otherwise.

func (*CivicAddress) GetHNSOk

func (o *CivicAddress) GetHNSOk() (*string, bool)

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

func (*CivicAddress) GetLMK

func (o *CivicAddress) GetLMK() string

GetLMK returns the LMK field value if set, zero value otherwise.

func (*CivicAddress) GetLMKOk

func (o *CivicAddress) GetLMKOk() (*string, bool)

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

func (*CivicAddress) GetLOC

func (o *CivicAddress) GetLOC() string

GetLOC returns the LOC field value if set, zero value otherwise.

func (*CivicAddress) GetLOCOk

func (o *CivicAddress) GetLOCOk() (*string, bool)

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

func (*CivicAddress) GetMethod

func (o *CivicAddress) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*CivicAddress) GetMethodOk

func (o *CivicAddress) GetMethodOk() (*string, bool)

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

func (*CivicAddress) GetNAM

func (o *CivicAddress) GetNAM() string

GetNAM returns the NAM field value if set, zero value otherwise.

func (*CivicAddress) GetNAMOk

func (o *CivicAddress) GetNAMOk() (*string, bool)

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

func (*CivicAddress) GetPC

func (o *CivicAddress) GetPC() string

GetPC returns the PC field value if set, zero value otherwise.

func (*CivicAddress) GetPCN

func (o *CivicAddress) GetPCN() string

GetPCN returns the PCN field value if set, zero value otherwise.

func (*CivicAddress) GetPCNOk

func (o *CivicAddress) GetPCNOk() (*string, bool)

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

func (*CivicAddress) GetPCOk

func (o *CivicAddress) GetPCOk() (*string, bool)

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

func (*CivicAddress) GetPLC

func (o *CivicAddress) GetPLC() string

GetPLC returns the PLC field value if set, zero value otherwise.

func (*CivicAddress) GetPLCOk

func (o *CivicAddress) GetPLCOk() (*string, bool)

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

func (*CivicAddress) GetPOBOX

func (o *CivicAddress) GetPOBOX() string

GetPOBOX returns the POBOX field value if set, zero value otherwise.

func (*CivicAddress) GetPOBOXOk

func (o *CivicAddress) GetPOBOXOk() (*string, bool)

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

func (*CivicAddress) GetPOD

func (o *CivicAddress) GetPOD() string

GetPOD returns the POD field value if set, zero value otherwise.

func (*CivicAddress) GetPODOk

func (o *CivicAddress) GetPODOk() (*string, bool)

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

func (*CivicAddress) GetPOM

func (o *CivicAddress) GetPOM() string

GetPOM returns the POM field value if set, zero value otherwise.

func (*CivicAddress) GetPOMOk

func (o *CivicAddress) GetPOMOk() (*string, bool)

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

func (*CivicAddress) GetPRD

func (o *CivicAddress) GetPRD() string

GetPRD returns the PRD field value if set, zero value otherwise.

func (*CivicAddress) GetPRDOk

func (o *CivicAddress) GetPRDOk() (*string, bool)

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

func (*CivicAddress) GetPRM

func (o *CivicAddress) GetPRM() string

GetPRM returns the PRM field value if set, zero value otherwise.

func (*CivicAddress) GetPRMOk

func (o *CivicAddress) GetPRMOk() (*string, bool)

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

func (*CivicAddress) GetProvidedBy

func (o *CivicAddress) GetProvidedBy() string

GetProvidedBy returns the ProvidedBy field value if set, zero value otherwise.

func (*CivicAddress) GetProvidedByOk

func (o *CivicAddress) GetProvidedByOk() (*string, bool)

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

func (*CivicAddress) GetRD

func (o *CivicAddress) GetRD() string

GetRD returns the RD field value if set, zero value otherwise.

func (*CivicAddress) GetRDBR

func (o *CivicAddress) GetRDBR() string

GetRDBR returns the RDBR field value if set, zero value otherwise.

func (*CivicAddress) GetRDBROk

func (o *CivicAddress) GetRDBROk() (*string, bool)

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

func (*CivicAddress) GetRDOk

func (o *CivicAddress) GetRDOk() (*string, bool)

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

func (*CivicAddress) GetRDSEC

func (o *CivicAddress) GetRDSEC() string

GetRDSEC returns the RDSEC field value if set, zero value otherwise.

func (*CivicAddress) GetRDSECOk

func (o *CivicAddress) GetRDSECOk() (*string, bool)

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

func (*CivicAddress) GetRDSUBBR

func (o *CivicAddress) GetRDSUBBR() string

GetRDSUBBR returns the RDSUBBR field value if set, zero value otherwise.

func (*CivicAddress) GetRDSUBBROk

func (o *CivicAddress) GetRDSUBBROk() (*string, bool)

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

func (*CivicAddress) GetROOM

func (o *CivicAddress) GetROOM() string

GetROOM returns the ROOM field value if set, zero value otherwise.

func (*CivicAddress) GetROOMOk

func (o *CivicAddress) GetROOMOk() (*string, bool)

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

func (*CivicAddress) GetSEAT

func (o *CivicAddress) GetSEAT() string

GetSEAT returns the SEAT field value if set, zero value otherwise.

func (*CivicAddress) GetSEATOk

func (o *CivicAddress) GetSEATOk() (*string, bool)

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

func (*CivicAddress) GetSTS

func (o *CivicAddress) GetSTS() string

GetSTS returns the STS field value if set, zero value otherwise.

func (*CivicAddress) GetSTSOk

func (o *CivicAddress) GetSTSOk() (*string, bool)

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

func (*CivicAddress) GetUNIT

func (o *CivicAddress) GetUNIT() string

GetUNIT returns the UNIT field value if set, zero value otherwise.

func (*CivicAddress) GetUNITOk

func (o *CivicAddress) GetUNITOk() (*string, bool)

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

func (*CivicAddress) GetUsageRules

func (o *CivicAddress) GetUsageRules() string

GetUsageRules returns the UsageRules field value if set, zero value otherwise.

func (*CivicAddress) GetUsageRulesOk

func (o *CivicAddress) GetUsageRulesOk() (*string, bool)

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

func (*CivicAddress) HasA1

func (o *CivicAddress) HasA1() bool

HasA1 returns a boolean if a field has been set.

func (*CivicAddress) HasA2

func (o *CivicAddress) HasA2() bool

HasA2 returns a boolean if a field has been set.

func (*CivicAddress) HasA3

func (o *CivicAddress) HasA3() bool

HasA3 returns a boolean if a field has been set.

func (*CivicAddress) HasA4

func (o *CivicAddress) HasA4() bool

HasA4 returns a boolean if a field has been set.

func (*CivicAddress) HasA5

func (o *CivicAddress) HasA5() bool

HasA5 returns a boolean if a field has been set.

func (*CivicAddress) HasA6

func (o *CivicAddress) HasA6() bool

HasA6 returns a boolean if a field has been set.

func (*CivicAddress) HasADDCODE

func (o *CivicAddress) HasADDCODE() bool

HasADDCODE returns a boolean if a field has been set.

func (*CivicAddress) HasBLD

func (o *CivicAddress) HasBLD() bool

HasBLD returns a boolean if a field has been set.

func (*CivicAddress) HasCountry

func (o *CivicAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*CivicAddress) HasFLR

func (o *CivicAddress) HasFLR() bool

HasFLR returns a boolean if a field has been set.

func (*CivicAddress) HasHNO

func (o *CivicAddress) HasHNO() bool

HasHNO returns a boolean if a field has been set.

func (*CivicAddress) HasHNS

func (o *CivicAddress) HasHNS() bool

HasHNS returns a boolean if a field has been set.

func (*CivicAddress) HasLMK

func (o *CivicAddress) HasLMK() bool

HasLMK returns a boolean if a field has been set.

func (*CivicAddress) HasLOC

func (o *CivicAddress) HasLOC() bool

HasLOC returns a boolean if a field has been set.

func (*CivicAddress) HasMethod

func (o *CivicAddress) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*CivicAddress) HasNAM

func (o *CivicAddress) HasNAM() bool

HasNAM returns a boolean if a field has been set.

func (*CivicAddress) HasPC

func (o *CivicAddress) HasPC() bool

HasPC returns a boolean if a field has been set.

func (*CivicAddress) HasPCN

func (o *CivicAddress) HasPCN() bool

HasPCN returns a boolean if a field has been set.

func (*CivicAddress) HasPLC

func (o *CivicAddress) HasPLC() bool

HasPLC returns a boolean if a field has been set.

func (*CivicAddress) HasPOBOX

func (o *CivicAddress) HasPOBOX() bool

HasPOBOX returns a boolean if a field has been set.

func (*CivicAddress) HasPOD

func (o *CivicAddress) HasPOD() bool

HasPOD returns a boolean if a field has been set.

func (*CivicAddress) HasPOM

func (o *CivicAddress) HasPOM() bool

HasPOM returns a boolean if a field has been set.

func (*CivicAddress) HasPRD

func (o *CivicAddress) HasPRD() bool

HasPRD returns a boolean if a field has been set.

func (*CivicAddress) HasPRM

func (o *CivicAddress) HasPRM() bool

HasPRM returns a boolean if a field has been set.

func (*CivicAddress) HasProvidedBy

func (o *CivicAddress) HasProvidedBy() bool

HasProvidedBy returns a boolean if a field has been set.

func (*CivicAddress) HasRD

func (o *CivicAddress) HasRD() bool

HasRD returns a boolean if a field has been set.

func (*CivicAddress) HasRDBR

func (o *CivicAddress) HasRDBR() bool

HasRDBR returns a boolean if a field has been set.

func (*CivicAddress) HasRDSEC

func (o *CivicAddress) HasRDSEC() bool

HasRDSEC returns a boolean if a field has been set.

func (*CivicAddress) HasRDSUBBR

func (o *CivicAddress) HasRDSUBBR() bool

HasRDSUBBR returns a boolean if a field has been set.

func (*CivicAddress) HasROOM

func (o *CivicAddress) HasROOM() bool

HasROOM returns a boolean if a field has been set.

func (*CivicAddress) HasSEAT

func (o *CivicAddress) HasSEAT() bool

HasSEAT returns a boolean if a field has been set.

func (*CivicAddress) HasSTS

func (o *CivicAddress) HasSTS() bool

HasSTS returns a boolean if a field has been set.

func (*CivicAddress) HasUNIT

func (o *CivicAddress) HasUNIT() bool

HasUNIT returns a boolean if a field has been set.

func (*CivicAddress) HasUsageRules

func (o *CivicAddress) HasUsageRules() bool

HasUsageRules returns a boolean if a field has been set.

func (CivicAddress) MarshalJSON

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

func (*CivicAddress) SetA1

func (o *CivicAddress) SetA1(v string)

SetA1 gets a reference to the given string and assigns it to the A1 field.

func (*CivicAddress) SetA2

func (o *CivicAddress) SetA2(v string)

SetA2 gets a reference to the given string and assigns it to the A2 field.

func (*CivicAddress) SetA3

func (o *CivicAddress) SetA3(v string)

SetA3 gets a reference to the given string and assigns it to the A3 field.

func (*CivicAddress) SetA4

func (o *CivicAddress) SetA4(v string)

SetA4 gets a reference to the given string and assigns it to the A4 field.

func (*CivicAddress) SetA5

func (o *CivicAddress) SetA5(v string)

SetA5 gets a reference to the given string and assigns it to the A5 field.

func (*CivicAddress) SetA6

func (o *CivicAddress) SetA6(v string)

SetA6 gets a reference to the given string and assigns it to the A6 field.

func (*CivicAddress) SetADDCODE

func (o *CivicAddress) SetADDCODE(v string)

SetADDCODE gets a reference to the given string and assigns it to the ADDCODE field.

func (*CivicAddress) SetBLD

func (o *CivicAddress) SetBLD(v string)

SetBLD gets a reference to the given string and assigns it to the BLD field.

func (*CivicAddress) SetCountry

func (o *CivicAddress) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*CivicAddress) SetFLR

func (o *CivicAddress) SetFLR(v string)

SetFLR gets a reference to the given string and assigns it to the FLR field.

func (*CivicAddress) SetHNO

func (o *CivicAddress) SetHNO(v string)

SetHNO gets a reference to the given string and assigns it to the HNO field.

func (*CivicAddress) SetHNS

func (o *CivicAddress) SetHNS(v string)

SetHNS gets a reference to the given string and assigns it to the HNS field.

func (*CivicAddress) SetLMK

func (o *CivicAddress) SetLMK(v string)

SetLMK gets a reference to the given string and assigns it to the LMK field.

func (*CivicAddress) SetLOC

func (o *CivicAddress) SetLOC(v string)

SetLOC gets a reference to the given string and assigns it to the LOC field.

func (*CivicAddress) SetMethod

func (o *CivicAddress) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*CivicAddress) SetNAM

func (o *CivicAddress) SetNAM(v string)

SetNAM gets a reference to the given string and assigns it to the NAM field.

func (*CivicAddress) SetPC

func (o *CivicAddress) SetPC(v string)

SetPC gets a reference to the given string and assigns it to the PC field.

func (*CivicAddress) SetPCN

func (o *CivicAddress) SetPCN(v string)

SetPCN gets a reference to the given string and assigns it to the PCN field.

func (*CivicAddress) SetPLC

func (o *CivicAddress) SetPLC(v string)

SetPLC gets a reference to the given string and assigns it to the PLC field.

func (*CivicAddress) SetPOBOX

func (o *CivicAddress) SetPOBOX(v string)

SetPOBOX gets a reference to the given string and assigns it to the POBOX field.

func (*CivicAddress) SetPOD

func (o *CivicAddress) SetPOD(v string)

SetPOD gets a reference to the given string and assigns it to the POD field.

func (*CivicAddress) SetPOM

func (o *CivicAddress) SetPOM(v string)

SetPOM gets a reference to the given string and assigns it to the POM field.

func (*CivicAddress) SetPRD

func (o *CivicAddress) SetPRD(v string)

SetPRD gets a reference to the given string and assigns it to the PRD field.

func (*CivicAddress) SetPRM

func (o *CivicAddress) SetPRM(v string)

SetPRM gets a reference to the given string and assigns it to the PRM field.

func (*CivicAddress) SetProvidedBy

func (o *CivicAddress) SetProvidedBy(v string)

SetProvidedBy gets a reference to the given string and assigns it to the ProvidedBy field.

func (*CivicAddress) SetRD

func (o *CivicAddress) SetRD(v string)

SetRD gets a reference to the given string and assigns it to the RD field.

func (*CivicAddress) SetRDBR

func (o *CivicAddress) SetRDBR(v string)

SetRDBR gets a reference to the given string and assigns it to the RDBR field.

func (*CivicAddress) SetRDSEC

func (o *CivicAddress) SetRDSEC(v string)

SetRDSEC gets a reference to the given string and assigns it to the RDSEC field.

func (*CivicAddress) SetRDSUBBR

func (o *CivicAddress) SetRDSUBBR(v string)

SetRDSUBBR gets a reference to the given string and assigns it to the RDSUBBR field.

func (*CivicAddress) SetROOM

func (o *CivicAddress) SetROOM(v string)

SetROOM gets a reference to the given string and assigns it to the ROOM field.

func (*CivicAddress) SetSEAT

func (o *CivicAddress) SetSEAT(v string)

SetSEAT gets a reference to the given string and assigns it to the SEAT field.

func (*CivicAddress) SetSTS

func (o *CivicAddress) SetSTS(v string)

SetSTS gets a reference to the given string and assigns it to the STS field.

func (*CivicAddress) SetUNIT

func (o *CivicAddress) SetUNIT(v string)

SetUNIT gets a reference to the given string and assigns it to the UNIT field.

func (*CivicAddress) SetUsageRules

func (o *CivicAddress) SetUsageRules(v string)

SetUsageRules gets a reference to the given string and assigns it to the UsageRules field.

func (CivicAddress) ToMap

func (o CivicAddress) 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 ContextStatusEvent

type ContextStatusEvent struct {
	EventType          ContextStatusEventType `json:"eventType"`
	ImmediateReportInd *bool                  `json:"immediateReportInd,omitempty"`
	ReportingMode      *ReportingMode         `json:"reportingMode,omitempty"`
}

ContextStatusEvent Context Status Event

func NewContextStatusEvent

func NewContextStatusEvent(eventType ContextStatusEventType) *ContextStatusEvent

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

func NewContextStatusEventWithDefaults

func NewContextStatusEventWithDefaults() *ContextStatusEvent

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

func (*ContextStatusEvent) GetEventType

func (o *ContextStatusEvent) GetEventType() ContextStatusEventType

GetEventType returns the EventType field value

func (*ContextStatusEvent) GetEventTypeOk

func (o *ContextStatusEvent) GetEventTypeOk() (*ContextStatusEventType, bool)

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

func (*ContextStatusEvent) GetImmediateReportInd

func (o *ContextStatusEvent) GetImmediateReportInd() bool

GetImmediateReportInd returns the ImmediateReportInd field value if set, zero value otherwise.

func (*ContextStatusEvent) GetImmediateReportIndOk

func (o *ContextStatusEvent) GetImmediateReportIndOk() (*bool, bool)

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

func (*ContextStatusEvent) GetReportingMode

func (o *ContextStatusEvent) GetReportingMode() ReportingMode

GetReportingMode returns the ReportingMode field value if set, zero value otherwise.

func (*ContextStatusEvent) GetReportingModeOk

func (o *ContextStatusEvent) GetReportingModeOk() (*ReportingMode, bool)

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

func (*ContextStatusEvent) HasImmediateReportInd

func (o *ContextStatusEvent) HasImmediateReportInd() bool

HasImmediateReportInd returns a boolean if a field has been set.

func (*ContextStatusEvent) HasReportingMode

func (o *ContextStatusEvent) HasReportingMode() bool

HasReportingMode returns a boolean if a field has been set.

func (ContextStatusEvent) MarshalJSON

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

func (*ContextStatusEvent) SetEventType

func (o *ContextStatusEvent) SetEventType(v ContextStatusEventType)

SetEventType sets field value

func (*ContextStatusEvent) SetImmediateReportInd

func (o *ContextStatusEvent) SetImmediateReportInd(v bool)

SetImmediateReportInd gets a reference to the given bool and assigns it to the ImmediateReportInd field.

func (*ContextStatusEvent) SetReportingMode

func (o *ContextStatusEvent) SetReportingMode(v ReportingMode)

SetReportingMode gets a reference to the given ReportingMode and assigns it to the ReportingMode field.

func (ContextStatusEvent) ToMap

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

type ContextStatusEventReport

type ContextStatusEventReport struct {
	EventType ContextStatusEventType `json:"eventType"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp      time.Time                 `json:"timeStamp"`
	QosInfo        *QosInfo                  `json:"qosInfo,omitempty"`
	StatusInfo     *MbsSessionActivityStatus `json:"statusInfo,omitempty"`
	MbsServiceArea *MbsServiceArea           `json:"mbsServiceArea,omitempty"`
	// A map (list of key-value pairs) where the key identifies an areaSessionId
	MbsServiceAreaInfoList *map[string]MbsServiceAreaInfo       `json:"mbsServiceAreaInfoList,omitempty"`
	MulticastTransAddInfo  *MulticastTransportAddressChangeInfo `json:"multicastTransAddInfo,omitempty"`
	MbsSecurityContext     *MbsSecurityContext                  `json:"mbsSecurityContext,omitempty"`
}

ContextStatusEventReport Context Status Event Report

func NewContextStatusEventReport

func NewContextStatusEventReport(eventType ContextStatusEventType, timeStamp time.Time) *ContextStatusEventReport

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

func NewContextStatusEventReportWithDefaults

func NewContextStatusEventReportWithDefaults() *ContextStatusEventReport

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

func (*ContextStatusEventReport) GetEventType

GetEventType returns the EventType field value

func (*ContextStatusEventReport) GetEventTypeOk

func (o *ContextStatusEventReport) GetEventTypeOk() (*ContextStatusEventType, bool)

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

func (*ContextStatusEventReport) GetMbsSecurityContext

func (o *ContextStatusEventReport) GetMbsSecurityContext() MbsSecurityContext

GetMbsSecurityContext returns the MbsSecurityContext field value if set, zero value otherwise.

func (*ContextStatusEventReport) GetMbsSecurityContextOk

func (o *ContextStatusEventReport) GetMbsSecurityContextOk() (*MbsSecurityContext, bool)

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

func (*ContextStatusEventReport) GetMbsServiceArea

func (o *ContextStatusEventReport) GetMbsServiceArea() MbsServiceArea

GetMbsServiceArea returns the MbsServiceArea field value if set, zero value otherwise.

func (*ContextStatusEventReport) GetMbsServiceAreaInfoList

func (o *ContextStatusEventReport) GetMbsServiceAreaInfoList() map[string]MbsServiceAreaInfo

GetMbsServiceAreaInfoList returns the MbsServiceAreaInfoList field value if set, zero value otherwise.

func (*ContextStatusEventReport) GetMbsServiceAreaInfoListOk

func (o *ContextStatusEventReport) GetMbsServiceAreaInfoListOk() (*map[string]MbsServiceAreaInfo, bool)

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

func (*ContextStatusEventReport) GetMbsServiceAreaOk

func (o *ContextStatusEventReport) GetMbsServiceAreaOk() (*MbsServiceArea, bool)

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

func (*ContextStatusEventReport) GetMulticastTransAddInfo

func (o *ContextStatusEventReport) GetMulticastTransAddInfo() MulticastTransportAddressChangeInfo

GetMulticastTransAddInfo returns the MulticastTransAddInfo field value if set, zero value otherwise.

func (*ContextStatusEventReport) GetMulticastTransAddInfoOk

func (o *ContextStatusEventReport) GetMulticastTransAddInfoOk() (*MulticastTransportAddressChangeInfo, bool)

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

func (*ContextStatusEventReport) GetQosInfo

func (o *ContextStatusEventReport) GetQosInfo() QosInfo

GetQosInfo returns the QosInfo field value if set, zero value otherwise.

func (*ContextStatusEventReport) GetQosInfoOk

func (o *ContextStatusEventReport) GetQosInfoOk() (*QosInfo, bool)

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

func (*ContextStatusEventReport) GetStatusInfo

GetStatusInfo returns the StatusInfo field value if set, zero value otherwise.

func (*ContextStatusEventReport) GetStatusInfoOk

func (o *ContextStatusEventReport) GetStatusInfoOk() (*MbsSessionActivityStatus, bool)

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

func (*ContextStatusEventReport) GetTimeStamp

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

GetTimeStamp returns the TimeStamp field value

func (*ContextStatusEventReport) GetTimeStampOk

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

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

func (*ContextStatusEventReport) HasMbsSecurityContext

func (o *ContextStatusEventReport) HasMbsSecurityContext() bool

HasMbsSecurityContext returns a boolean if a field has been set.

func (*ContextStatusEventReport) HasMbsServiceArea

func (o *ContextStatusEventReport) HasMbsServiceArea() bool

HasMbsServiceArea returns a boolean if a field has been set.

func (*ContextStatusEventReport) HasMbsServiceAreaInfoList

func (o *ContextStatusEventReport) HasMbsServiceAreaInfoList() bool

HasMbsServiceAreaInfoList returns a boolean if a field has been set.

func (*ContextStatusEventReport) HasMulticastTransAddInfo

func (o *ContextStatusEventReport) HasMulticastTransAddInfo() bool

HasMulticastTransAddInfo returns a boolean if a field has been set.

func (*ContextStatusEventReport) HasQosInfo

func (o *ContextStatusEventReport) HasQosInfo() bool

HasQosInfo returns a boolean if a field has been set.

func (*ContextStatusEventReport) HasStatusInfo

func (o *ContextStatusEventReport) HasStatusInfo() bool

HasStatusInfo returns a boolean if a field has been set.

func (ContextStatusEventReport) MarshalJSON

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

func (*ContextStatusEventReport) SetEventType

SetEventType sets field value

func (*ContextStatusEventReport) SetMbsSecurityContext

func (o *ContextStatusEventReport) SetMbsSecurityContext(v MbsSecurityContext)

SetMbsSecurityContext gets a reference to the given MbsSecurityContext and assigns it to the MbsSecurityContext field.

func (*ContextStatusEventReport) SetMbsServiceArea

func (o *ContextStatusEventReport) SetMbsServiceArea(v MbsServiceArea)

SetMbsServiceArea gets a reference to the given MbsServiceArea and assigns it to the MbsServiceArea field.

func (*ContextStatusEventReport) SetMbsServiceAreaInfoList

func (o *ContextStatusEventReport) SetMbsServiceAreaInfoList(v map[string]MbsServiceAreaInfo)

SetMbsServiceAreaInfoList gets a reference to the given map[string]MbsServiceAreaInfo and assigns it to the MbsServiceAreaInfoList field.

func (*ContextStatusEventReport) SetMulticastTransAddInfo

func (o *ContextStatusEventReport) SetMulticastTransAddInfo(v MulticastTransportAddressChangeInfo)

SetMulticastTransAddInfo gets a reference to the given MulticastTransportAddressChangeInfo and assigns it to the MulticastTransAddInfo field.

func (*ContextStatusEventReport) SetQosInfo

func (o *ContextStatusEventReport) SetQosInfo(v QosInfo)

SetQosInfo gets a reference to the given QosInfo and assigns it to the QosInfo field.

func (*ContextStatusEventReport) SetStatusInfo

SetStatusInfo gets a reference to the given MbsSessionActivityStatus and assigns it to the StatusInfo field.

func (*ContextStatusEventReport) SetTimeStamp

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

SetTimeStamp sets field value

func (ContextStatusEventReport) ToMap

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

type ContextStatusEventType

type ContextStatusEventType struct {
	String *string
}

ContextStatusEventType Context Status Event Type

func (*ContextStatusEventType) MarshalJSON

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

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

func (*ContextStatusEventType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ContextStatusNotifyReqData

type ContextStatusNotifyReqData struct {
	ReportList          []ContextStatusEventReport `json:"reportList"`
	NotifyCorrelationId *string                    `json:"notifyCorrelationId,omitempty"`
}

ContextStatusNotifyReqData Context Status Notification

func NewContextStatusNotifyReqData

func NewContextStatusNotifyReqData(reportList []ContextStatusEventReport) *ContextStatusNotifyReqData

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

func NewContextStatusNotifyReqDataWithDefaults

func NewContextStatusNotifyReqDataWithDefaults() *ContextStatusNotifyReqData

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

func (*ContextStatusNotifyReqData) GetNotifyCorrelationId

func (o *ContextStatusNotifyReqData) GetNotifyCorrelationId() string

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

func (*ContextStatusNotifyReqData) GetNotifyCorrelationIdOk

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

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

func (*ContextStatusNotifyReqData) GetReportList

GetReportList returns the ReportList field value

func (*ContextStatusNotifyReqData) GetReportListOk

func (o *ContextStatusNotifyReqData) GetReportListOk() ([]ContextStatusEventReport, bool)

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

func (*ContextStatusNotifyReqData) HasNotifyCorrelationId

func (o *ContextStatusNotifyReqData) HasNotifyCorrelationId() bool

HasNotifyCorrelationId returns a boolean if a field has been set.

func (ContextStatusNotifyReqData) MarshalJSON

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

func (*ContextStatusNotifyReqData) SetNotifyCorrelationId

func (o *ContextStatusNotifyReqData) SetNotifyCorrelationId(v string)

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

func (*ContextStatusNotifyReqData) SetReportList

SetReportList sets field value

func (ContextStatusNotifyReqData) ToMap

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

type ContextStatusSubscribeReqData

type ContextStatusSubscribeReqData struct {
	Subscription ContextStatusSubscription `json:"subscription"`
}

ContextStatusSubscribeReqData Data within ContextStatusSubscribe Request

func NewContextStatusSubscribeReqData

func NewContextStatusSubscribeReqData(subscription ContextStatusSubscription) *ContextStatusSubscribeReqData

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

func NewContextStatusSubscribeReqDataWithDefaults

func NewContextStatusSubscribeReqDataWithDefaults() *ContextStatusSubscribeReqData

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

func (*ContextStatusSubscribeReqData) GetSubscription

GetSubscription returns the Subscription field value

func (*ContextStatusSubscribeReqData) GetSubscriptionOk

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

func (ContextStatusSubscribeReqData) MarshalJSON

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

func (*ContextStatusSubscribeReqData) SetSubscription

SetSubscription sets field value

func (ContextStatusSubscribeReqData) ToMap

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

type ContextStatusSubscribeRspData

type ContextStatusSubscribeRspData struct {
	Subscription   ContextStatusSubscription  `json:"subscription"`
	ReportList     []ContextStatusEventReport `json:"reportList,omitempty"`
	MbsContextInfo *MbsContextInfo            `json:"mbsContextInfo,omitempty"`
}

ContextStatusSubscribeRspData Data within ContextStatusSubscribe Response

func NewContextStatusSubscribeRspData

func NewContextStatusSubscribeRspData(subscription ContextStatusSubscription) *ContextStatusSubscribeRspData

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

func NewContextStatusSubscribeRspDataWithDefaults

func NewContextStatusSubscribeRspDataWithDefaults() *ContextStatusSubscribeRspData

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

func (*ContextStatusSubscribeRspData) GetMbsContextInfo

func (o *ContextStatusSubscribeRspData) GetMbsContextInfo() MbsContextInfo

GetMbsContextInfo returns the MbsContextInfo field value if set, zero value otherwise.

func (*ContextStatusSubscribeRspData) GetMbsContextInfoOk

func (o *ContextStatusSubscribeRspData) GetMbsContextInfoOk() (*MbsContextInfo, bool)

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

func (*ContextStatusSubscribeRspData) GetReportList

GetReportList returns the ReportList field value if set, zero value otherwise.

func (*ContextStatusSubscribeRspData) GetReportListOk

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

func (*ContextStatusSubscribeRspData) GetSubscription

GetSubscription returns the Subscription field value

func (*ContextStatusSubscribeRspData) GetSubscriptionOk

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

func (*ContextStatusSubscribeRspData) HasMbsContextInfo

func (o *ContextStatusSubscribeRspData) HasMbsContextInfo() bool

HasMbsContextInfo returns a boolean if a field has been set.

func (*ContextStatusSubscribeRspData) HasReportList

func (o *ContextStatusSubscribeRspData) HasReportList() bool

HasReportList returns a boolean if a field has been set.

func (ContextStatusSubscribeRspData) MarshalJSON

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

func (*ContextStatusSubscribeRspData) SetMbsContextInfo

func (o *ContextStatusSubscribeRspData) SetMbsContextInfo(v MbsContextInfo)

SetMbsContextInfo gets a reference to the given MbsContextInfo and assigns it to the MbsContextInfo field.

func (*ContextStatusSubscribeRspData) SetReportList

SetReportList gets a reference to the given []ContextStatusEventReport and assigns it to the ReportList field.

func (*ContextStatusSubscribeRspData) SetSubscription

SetSubscription sets field value

func (ContextStatusSubscribeRspData) ToMap

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

type ContextStatusSubscription

type ContextStatusSubscription struct {
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	NfcInstanceId string               `json:"nfcInstanceId"`
	MbsSessionId  MbsSessionId         `json:"mbsSessionId"`
	EventList     []ContextStatusEvent `json:"eventList"`
	// String providing an URI formatted according to RFC 3986.
	NotifyUri           string  `json:"notifyUri"`
	NotifyCorrelationId *string `json:"notifyCorrelationId,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	ExpiryTime *time.Time `json:"expiryTime,omitempty"`
}

ContextStatusSubscription Context Status Subscription

func NewContextStatusSubscription

func NewContextStatusSubscription(nfcInstanceId string, mbsSessionId MbsSessionId, eventList []ContextStatusEvent, notifyUri string) *ContextStatusSubscription

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

func NewContextStatusSubscriptionWithDefaults

func NewContextStatusSubscriptionWithDefaults() *ContextStatusSubscription

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

func (*ContextStatusSubscription) GetEventList

func (o *ContextStatusSubscription) GetEventList() []ContextStatusEvent

GetEventList returns the EventList field value

func (*ContextStatusSubscription) GetEventListOk

func (o *ContextStatusSubscription) GetEventListOk() ([]ContextStatusEvent, bool)

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

func (*ContextStatusSubscription) GetExpiryTime

func (o *ContextStatusSubscription) GetExpiryTime() time.Time

GetExpiryTime returns the ExpiryTime field value if set, zero value otherwise.

func (*ContextStatusSubscription) GetExpiryTimeOk

func (o *ContextStatusSubscription) GetExpiryTimeOk() (*time.Time, bool)

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

func (*ContextStatusSubscription) GetMbsSessionId

func (o *ContextStatusSubscription) GetMbsSessionId() MbsSessionId

GetMbsSessionId returns the MbsSessionId field value

func (*ContextStatusSubscription) GetMbsSessionIdOk

func (o *ContextStatusSubscription) GetMbsSessionIdOk() (*MbsSessionId, bool)

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

func (*ContextStatusSubscription) GetNfcInstanceId

func (o *ContextStatusSubscription) GetNfcInstanceId() string

GetNfcInstanceId returns the NfcInstanceId field value

func (*ContextStatusSubscription) GetNfcInstanceIdOk

func (o *ContextStatusSubscription) GetNfcInstanceIdOk() (*string, bool)

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

func (*ContextStatusSubscription) GetNotifyCorrelationId

func (o *ContextStatusSubscription) GetNotifyCorrelationId() string

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

func (*ContextStatusSubscription) GetNotifyCorrelationIdOk

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

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

func (*ContextStatusSubscription) GetNotifyUri

func (o *ContextStatusSubscription) GetNotifyUri() string

GetNotifyUri returns the NotifyUri field value

func (*ContextStatusSubscription) GetNotifyUriOk

func (o *ContextStatusSubscription) GetNotifyUriOk() (*string, bool)

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

func (*ContextStatusSubscription) HasExpiryTime

func (o *ContextStatusSubscription) HasExpiryTime() bool

HasExpiryTime returns a boolean if a field has been set.

func (*ContextStatusSubscription) HasNotifyCorrelationId

func (o *ContextStatusSubscription) HasNotifyCorrelationId() bool

HasNotifyCorrelationId returns a boolean if a field has been set.

func (ContextStatusSubscription) MarshalJSON

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

func (*ContextStatusSubscription) SetEventList

func (o *ContextStatusSubscription) SetEventList(v []ContextStatusEvent)

SetEventList sets field value

func (*ContextStatusSubscription) SetExpiryTime

func (o *ContextStatusSubscription) SetExpiryTime(v time.Time)

SetExpiryTime gets a reference to the given time.Time and assigns it to the ExpiryTime field.

func (*ContextStatusSubscription) SetMbsSessionId

func (o *ContextStatusSubscription) SetMbsSessionId(v MbsSessionId)

SetMbsSessionId sets field value

func (*ContextStatusSubscription) SetNfcInstanceId

func (o *ContextStatusSubscription) SetNfcInstanceId(v string)

SetNfcInstanceId sets field value

func (*ContextStatusSubscription) SetNotifyCorrelationId

func (o *ContextStatusSubscription) SetNotifyCorrelationId(v string)

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

func (*ContextStatusSubscription) SetNotifyUri

func (o *ContextStatusSubscription) SetNotifyUri(v string)

SetNotifyUri sets field value

func (ContextStatusSubscription) ToMap

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

type ContextUpdate200Response

type ContextUpdate200Response struct {
	JsonData                *ContextUpdateRspData `json:"jsonData,omitempty"`
	BinaryDataN2Information **os.File             `json:"binaryDataN2Information,omitempty"`
}

ContextUpdate200Response struct for ContextUpdate200Response

func NewContextUpdate200Response

func NewContextUpdate200Response() *ContextUpdate200Response

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

func NewContextUpdate200ResponseWithDefaults

func NewContextUpdate200ResponseWithDefaults() *ContextUpdate200Response

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

func (*ContextUpdate200Response) GetBinaryDataN2Information

func (o *ContextUpdate200Response) GetBinaryDataN2Information() *os.File

GetBinaryDataN2Information returns the BinaryDataN2Information field value if set, zero value otherwise.

func (*ContextUpdate200Response) GetBinaryDataN2InformationOk

func (o *ContextUpdate200Response) GetBinaryDataN2InformationOk() (**os.File, bool)

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

func (*ContextUpdate200Response) GetJsonData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*ContextUpdate200Response) GetJsonDataOk

func (o *ContextUpdate200Response) GetJsonDataOk() (*ContextUpdateRspData, bool)

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

func (*ContextUpdate200Response) HasBinaryDataN2Information

func (o *ContextUpdate200Response) HasBinaryDataN2Information() bool

HasBinaryDataN2Information returns a boolean if a field has been set.

func (*ContextUpdate200Response) HasJsonData

func (o *ContextUpdate200Response) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (ContextUpdate200Response) MarshalJSON

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

func (*ContextUpdate200Response) SetBinaryDataN2Information

func (o *ContextUpdate200Response) SetBinaryDataN2Information(v *os.File)

SetBinaryDataN2Information gets a reference to the given *os.File and assigns it to the BinaryDataN2Information field.

func (*ContextUpdate200Response) SetJsonData

SetJsonData gets a reference to the given ContextUpdateRspData and assigns it to the JsonData field.

func (ContextUpdate200Response) ToMap

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

type ContextUpdateAction

type ContextUpdateAction struct {
	String *string
}

ContextUpdateAction Start or Terminate MBS data reception

func (*ContextUpdateAction) MarshalJSON

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

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

func (*ContextUpdateAction) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ContextUpdateReqData

type ContextUpdateReqData struct {
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	NfcInstanceId string       `json:"nfcInstanceId"`
	MbsSessionId  MbsSessionId `json:"mbsSessionId"`
	// Integer where the allowed values correspond to the value range of an unsigned 16-bit integer.
	AreaSessionId   *int32               `json:"areaSessionId,omitempty"`
	RequestedAction *ContextUpdateAction `json:"requestedAction,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	DlTunnelInfo *string          `json:"dlTunnelInfo,omitempty"`
	N2MbsSmInfo  *N2MbsSmInfo     `json:"n2MbsSmInfo,omitempty"`
	RanNodeId    *GlobalRanNodeId `json:"ranNodeId,omitempty"`
	LeaveInd     *bool            `json:"leaveInd,omitempty"`
}

ContextUpdateReqData Data within ContextUpdate Request

func NewContextUpdateReqData

func NewContextUpdateReqData(nfcInstanceId string, mbsSessionId MbsSessionId) *ContextUpdateReqData

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

func NewContextUpdateReqDataWithDefaults

func NewContextUpdateReqDataWithDefaults() *ContextUpdateReqData

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

func (*ContextUpdateReqData) GetAreaSessionId

func (o *ContextUpdateReqData) GetAreaSessionId() int32

GetAreaSessionId returns the AreaSessionId field value if set, zero value otherwise.

func (*ContextUpdateReqData) GetAreaSessionIdOk

func (o *ContextUpdateReqData) GetAreaSessionIdOk() (*int32, bool)

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

func (*ContextUpdateReqData) GetDlTunnelInfo

func (o *ContextUpdateReqData) GetDlTunnelInfo() string

GetDlTunnelInfo returns the DlTunnelInfo field value if set, zero value otherwise.

func (*ContextUpdateReqData) GetDlTunnelInfoOk

func (o *ContextUpdateReqData) GetDlTunnelInfoOk() (*string, bool)

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

func (*ContextUpdateReqData) GetLeaveInd

func (o *ContextUpdateReqData) GetLeaveInd() bool

GetLeaveInd returns the LeaveInd field value if set, zero value otherwise.

func (*ContextUpdateReqData) GetLeaveIndOk

func (o *ContextUpdateReqData) GetLeaveIndOk() (*bool, bool)

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

func (*ContextUpdateReqData) GetMbsSessionId

func (o *ContextUpdateReqData) GetMbsSessionId() MbsSessionId

GetMbsSessionId returns the MbsSessionId field value

func (*ContextUpdateReqData) GetMbsSessionIdOk

func (o *ContextUpdateReqData) GetMbsSessionIdOk() (*MbsSessionId, bool)

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

func (*ContextUpdateReqData) GetN2MbsSmInfo

func (o *ContextUpdateReqData) GetN2MbsSmInfo() N2MbsSmInfo

GetN2MbsSmInfo returns the N2MbsSmInfo field value if set, zero value otherwise.

func (*ContextUpdateReqData) GetN2MbsSmInfoOk

func (o *ContextUpdateReqData) GetN2MbsSmInfoOk() (*N2MbsSmInfo, bool)

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

func (*ContextUpdateReqData) GetNfcInstanceId

func (o *ContextUpdateReqData) GetNfcInstanceId() string

GetNfcInstanceId returns the NfcInstanceId field value

func (*ContextUpdateReqData) GetNfcInstanceIdOk

func (o *ContextUpdateReqData) GetNfcInstanceIdOk() (*string, bool)

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

func (*ContextUpdateReqData) GetRanNodeId

func (o *ContextUpdateReqData) GetRanNodeId() GlobalRanNodeId

GetRanNodeId returns the RanNodeId field value if set, zero value otherwise.

func (*ContextUpdateReqData) GetRanNodeIdOk

func (o *ContextUpdateReqData) GetRanNodeIdOk() (*GlobalRanNodeId, bool)

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

func (*ContextUpdateReqData) GetRequestedAction

func (o *ContextUpdateReqData) GetRequestedAction() ContextUpdateAction

GetRequestedAction returns the RequestedAction field value if set, zero value otherwise.

func (*ContextUpdateReqData) GetRequestedActionOk

func (o *ContextUpdateReqData) GetRequestedActionOk() (*ContextUpdateAction, bool)

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

func (*ContextUpdateReqData) HasAreaSessionId

func (o *ContextUpdateReqData) HasAreaSessionId() bool

HasAreaSessionId returns a boolean if a field has been set.

func (*ContextUpdateReqData) HasDlTunnelInfo

func (o *ContextUpdateReqData) HasDlTunnelInfo() bool

HasDlTunnelInfo returns a boolean if a field has been set.

func (*ContextUpdateReqData) HasLeaveInd

func (o *ContextUpdateReqData) HasLeaveInd() bool

HasLeaveInd returns a boolean if a field has been set.

func (*ContextUpdateReqData) HasN2MbsSmInfo

func (o *ContextUpdateReqData) HasN2MbsSmInfo() bool

HasN2MbsSmInfo returns a boolean if a field has been set.

func (*ContextUpdateReqData) HasRanNodeId

func (o *ContextUpdateReqData) HasRanNodeId() bool

HasRanNodeId returns a boolean if a field has been set.

func (*ContextUpdateReqData) HasRequestedAction

func (o *ContextUpdateReqData) HasRequestedAction() bool

HasRequestedAction returns a boolean if a field has been set.

func (ContextUpdateReqData) MarshalJSON

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

func (*ContextUpdateReqData) SetAreaSessionId

func (o *ContextUpdateReqData) SetAreaSessionId(v int32)

SetAreaSessionId gets a reference to the given int32 and assigns it to the AreaSessionId field.

func (*ContextUpdateReqData) SetDlTunnelInfo

func (o *ContextUpdateReqData) SetDlTunnelInfo(v string)

SetDlTunnelInfo gets a reference to the given string and assigns it to the DlTunnelInfo field.

func (*ContextUpdateReqData) SetLeaveInd

func (o *ContextUpdateReqData) SetLeaveInd(v bool)

SetLeaveInd gets a reference to the given bool and assigns it to the LeaveInd field.

func (*ContextUpdateReqData) SetMbsSessionId

func (o *ContextUpdateReqData) SetMbsSessionId(v MbsSessionId)

SetMbsSessionId sets field value

func (*ContextUpdateReqData) SetN2MbsSmInfo

func (o *ContextUpdateReqData) SetN2MbsSmInfo(v N2MbsSmInfo)

SetN2MbsSmInfo gets a reference to the given N2MbsSmInfo and assigns it to the N2MbsSmInfo field.

func (*ContextUpdateReqData) SetNfcInstanceId

func (o *ContextUpdateReqData) SetNfcInstanceId(v string)

SetNfcInstanceId sets field value

func (*ContextUpdateReqData) SetRanNodeId

func (o *ContextUpdateReqData) SetRanNodeId(v GlobalRanNodeId)

SetRanNodeId gets a reference to the given GlobalRanNodeId and assigns it to the RanNodeId field.

func (*ContextUpdateReqData) SetRequestedAction

func (o *ContextUpdateReqData) SetRequestedAction(v ContextUpdateAction)

SetRequestedAction gets a reference to the given ContextUpdateAction and assigns it to the RequestedAction field.

func (ContextUpdateReqData) ToMap

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

type ContextUpdateRequest

type ContextUpdateRequest struct {
	JsonData                *ContextUpdateReqData `json:"jsonData,omitempty"`
	BinaryDataN2Information **os.File             `json:"binaryDataN2Information,omitempty"`
}

ContextUpdateRequest struct for ContextUpdateRequest

func NewContextUpdateRequest

func NewContextUpdateRequest() *ContextUpdateRequest

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

func NewContextUpdateRequestWithDefaults

func NewContextUpdateRequestWithDefaults() *ContextUpdateRequest

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

func (*ContextUpdateRequest) GetBinaryDataN2Information

func (o *ContextUpdateRequest) GetBinaryDataN2Information() *os.File

GetBinaryDataN2Information returns the BinaryDataN2Information field value if set, zero value otherwise.

func (*ContextUpdateRequest) GetBinaryDataN2InformationOk

func (o *ContextUpdateRequest) GetBinaryDataN2InformationOk() (**os.File, bool)

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

func (*ContextUpdateRequest) GetJsonData

func (o *ContextUpdateRequest) GetJsonData() ContextUpdateReqData

GetJsonData returns the JsonData field value if set, zero value otherwise.

func (*ContextUpdateRequest) GetJsonDataOk

func (o *ContextUpdateRequest) GetJsonDataOk() (*ContextUpdateReqData, bool)

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

func (*ContextUpdateRequest) HasBinaryDataN2Information

func (o *ContextUpdateRequest) HasBinaryDataN2Information() bool

HasBinaryDataN2Information returns a boolean if a field has been set.

func (*ContextUpdateRequest) HasJsonData

func (o *ContextUpdateRequest) HasJsonData() bool

HasJsonData returns a boolean if a field has been set.

func (ContextUpdateRequest) MarshalJSON

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

func (*ContextUpdateRequest) SetBinaryDataN2Information

func (o *ContextUpdateRequest) SetBinaryDataN2Information(v *os.File)

SetBinaryDataN2Information gets a reference to the given *os.File and assigns it to the BinaryDataN2Information field.

func (*ContextUpdateRequest) SetJsonData

func (o *ContextUpdateRequest) SetJsonData(v ContextUpdateReqData)

SetJsonData gets a reference to the given ContextUpdateReqData and assigns it to the JsonData field.

func (ContextUpdateRequest) ToMap

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

type ContextUpdateRspData

type ContextUpdateRspData struct {
	LlSsm *Ssm `json:"llSsm,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	CTeid       *int32       `json:"cTeid,omitempty"`
	N2MbsSmInfo *N2MbsSmInfo `json:"n2MbsSmInfo,omitempty"`
}

ContextUpdateRspData Data within ContextUpdate Response

func NewContextUpdateRspData

func NewContextUpdateRspData() *ContextUpdateRspData

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

func NewContextUpdateRspDataWithDefaults

func NewContextUpdateRspDataWithDefaults() *ContextUpdateRspData

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

func (*ContextUpdateRspData) GetCTeid

func (o *ContextUpdateRspData) GetCTeid() int32

GetCTeid returns the CTeid field value if set, zero value otherwise.

func (*ContextUpdateRspData) GetCTeidOk

func (o *ContextUpdateRspData) GetCTeidOk() (*int32, bool)

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

func (*ContextUpdateRspData) GetLlSsm

func (o *ContextUpdateRspData) GetLlSsm() Ssm

GetLlSsm returns the LlSsm field value if set, zero value otherwise.

func (*ContextUpdateRspData) GetLlSsmOk

func (o *ContextUpdateRspData) GetLlSsmOk() (*Ssm, bool)

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

func (*ContextUpdateRspData) GetN2MbsSmInfo

func (o *ContextUpdateRspData) GetN2MbsSmInfo() N2MbsSmInfo

GetN2MbsSmInfo returns the N2MbsSmInfo field value if set, zero value otherwise.

func (*ContextUpdateRspData) GetN2MbsSmInfoOk

func (o *ContextUpdateRspData) GetN2MbsSmInfoOk() (*N2MbsSmInfo, bool)

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

func (*ContextUpdateRspData) HasCTeid

func (o *ContextUpdateRspData) HasCTeid() bool

HasCTeid returns a boolean if a field has been set.

func (*ContextUpdateRspData) HasLlSsm

func (o *ContextUpdateRspData) HasLlSsm() bool

HasLlSsm returns a boolean if a field has been set.

func (*ContextUpdateRspData) HasN2MbsSmInfo

func (o *ContextUpdateRspData) HasN2MbsSmInfo() bool

HasN2MbsSmInfo returns a boolean if a field has been set.

func (ContextUpdateRspData) MarshalJSON

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

func (*ContextUpdateRspData) SetCTeid

func (o *ContextUpdateRspData) SetCTeid(v int32)

SetCTeid gets a reference to the given int32 and assigns it to the CTeid field.

func (*ContextUpdateRspData) SetLlSsm

func (o *ContextUpdateRspData) SetLlSsm(v Ssm)

SetLlSsm gets a reference to the given Ssm and assigns it to the LlSsm field.

func (*ContextUpdateRspData) SetN2MbsSmInfo

func (o *ContextUpdateRspData) SetN2MbsSmInfo(v N2MbsSmInfo)

SetN2MbsSmInfo gets a reference to the given N2MbsSmInfo and assigns it to the N2MbsSmInfo field.

func (ContextUpdateRspData) ToMap

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

type CreateReqData

type CreateReqData struct {
	MbsSession ExtMbsSession `json:"mbsSession"`
}

CreateReqData Data within Create Request

func NewCreateReqData

func NewCreateReqData(mbsSession ExtMbsSession) *CreateReqData

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

func NewCreateReqDataWithDefaults

func NewCreateReqDataWithDefaults() *CreateReqData

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

func (*CreateReqData) GetMbsSession

func (o *CreateReqData) GetMbsSession() ExtMbsSession

GetMbsSession returns the MbsSession field value

func (*CreateReqData) GetMbsSessionOk

func (o *CreateReqData) GetMbsSessionOk() (*ExtMbsSession, bool)

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

func (CreateReqData) MarshalJSON

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

func (*CreateReqData) SetMbsSession

func (o *CreateReqData) SetMbsSession(v ExtMbsSession)

SetMbsSession sets field value

func (CreateReqData) ToMap

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

type CreateRspData

type CreateRspData struct {
	MbsSession ExtMbsSession              `json:"mbsSession"`
	EventList  *MbsSessionEventReportList `json:"eventList,omitempty"`
}

CreateRspData Data within Create Response

func NewCreateRspData

func NewCreateRspData(mbsSession ExtMbsSession) *CreateRspData

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

func NewCreateRspDataWithDefaults

func NewCreateRspDataWithDefaults() *CreateRspData

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

func (*CreateRspData) GetEventList

func (o *CreateRspData) GetEventList() MbsSessionEventReportList

GetEventList returns the EventList field value if set, zero value otherwise.

func (*CreateRspData) GetEventListOk

func (o *CreateRspData) GetEventListOk() (*MbsSessionEventReportList, bool)

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

func (*CreateRspData) GetMbsSession

func (o *CreateRspData) GetMbsSession() ExtMbsSession

GetMbsSession returns the MbsSession field value

func (*CreateRspData) GetMbsSessionOk

func (o *CreateRspData) GetMbsSessionOk() (*ExtMbsSession, bool)

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

func (*CreateRspData) HasEventList

func (o *CreateRspData) HasEventList() bool

HasEventList returns a boolean if a field has been set.

func (CreateRspData) MarshalJSON

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

func (*CreateRspData) SetEventList

func (o *CreateRspData) SetEventList(v MbsSessionEventReportList)

SetEventList gets a reference to the given MbsSessionEventReportList and assigns it to the EventList field.

func (*CreateRspData) SetMbsSession

func (o *CreateRspData) SetMbsSession(v ExtMbsSession)

SetMbsSession sets field value

func (CreateRspData) ToMap

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

type Dynamic5Qi

type Dynamic5Qi struct {
	ResourceType QosResourceType `json:"resourceType"`
	// Unsigned integer indicating the 5QI Priority Level (see clauses 5.7.3.3 and 5.7.4 of 3GPP TS 23.501, within the range 1 to 127.Values are ordered in decreasing order of priority,  i.e. with 1 as the highest priority and 127 as the lowest priority.
	PriorityLevel int32 `json:"priorityLevel"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	PacketDelayBudget int32 `json:"packetDelayBudget"`
	// String representing Packet Error Rate (see clause 5.7.3.5 and 5.7.4 of 3GPP TS 23.501, expressed as a \"scalar x 10-k\" where the scalar and the exponent k are each encoded as one decimal digit.
	PacketErrRate string `json:"packetErrRate"`
	// Unsigned integer indicating Averaging Window (see clause 5.7.3.6 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	AverWindow *int32 `json:"averWindow,omitempty"`
	// Unsigned integer indicating Maximum Data Burst Volume (see clauses 5.7.3.7 and 5.7.4 of 3GPP TS 23.501), expressed in Bytes.
	MaxDataBurstVol *int32 `json:"maxDataBurstVol,omitempty"`
	// Unsigned integer indicating Maximum Data Burst Volume (see clauses 5.7.3.7 and 5.7.4 of 3GPP TS 23.501), expressed in Bytes.
	ExtMaxDataBurstVol *int32 `json:"extMaxDataBurstVol,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501 [8])), expressed in 0.01 milliseconds.
	ExtPacketDelBudget *int32 `json:"extPacketDelBudget,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501 [8])), expressed in 0.01 milliseconds.
	CnPacketDelayBudgetDl *int32 `json:"cnPacketDelayBudgetDl,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501 [8])), expressed in 0.01 milliseconds.
	CnPacketDelayBudgetUl *int32 `json:"cnPacketDelayBudgetUl,omitempty"`
}

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

func NewDynamic5Qi

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

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

func NewDynamic5QiWithDefaults

func NewDynamic5QiWithDefaults() *Dynamic5Qi

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

func (*Dynamic5Qi) GetAverWindow

func (o *Dynamic5Qi) GetAverWindow() int32

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

func (*Dynamic5Qi) GetAverWindowOk

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

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

func (*Dynamic5Qi) GetCnPacketDelayBudgetDl

func (o *Dynamic5Qi) GetCnPacketDelayBudgetDl() int32

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

func (*Dynamic5Qi) GetCnPacketDelayBudgetDlOk

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

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

func (*Dynamic5Qi) GetCnPacketDelayBudgetUl

func (o *Dynamic5Qi) GetCnPacketDelayBudgetUl() int32

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

func (*Dynamic5Qi) GetCnPacketDelayBudgetUlOk

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

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

func (*Dynamic5Qi) GetExtMaxDataBurstVol

func (o *Dynamic5Qi) GetExtMaxDataBurstVol() int32

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

func (*Dynamic5Qi) GetExtMaxDataBurstVolOk

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

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

func (*Dynamic5Qi) GetExtPacketDelBudget

func (o *Dynamic5Qi) GetExtPacketDelBudget() int32

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

func (*Dynamic5Qi) GetExtPacketDelBudgetOk

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

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

func (*Dynamic5Qi) GetMaxDataBurstVol

func (o *Dynamic5Qi) GetMaxDataBurstVol() int32

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

func (*Dynamic5Qi) GetMaxDataBurstVolOk

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

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

func (*Dynamic5Qi) GetPacketDelayBudget

func (o *Dynamic5Qi) GetPacketDelayBudget() int32

GetPacketDelayBudget returns the PacketDelayBudget field value

func (*Dynamic5Qi) GetPacketDelayBudgetOk

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

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

func (*Dynamic5Qi) GetPacketErrRate

func (o *Dynamic5Qi) GetPacketErrRate() string

GetPacketErrRate returns the PacketErrRate field value

func (*Dynamic5Qi) GetPacketErrRateOk

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

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

func (*Dynamic5Qi) GetPriorityLevel

func (o *Dynamic5Qi) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value

func (*Dynamic5Qi) GetPriorityLevelOk

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

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

func (*Dynamic5Qi) GetResourceType

func (o *Dynamic5Qi) GetResourceType() QosResourceType

GetResourceType returns the ResourceType field value

func (*Dynamic5Qi) GetResourceTypeOk

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

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

func (*Dynamic5Qi) HasAverWindow

func (o *Dynamic5Qi) HasAverWindow() bool

HasAverWindow returns a boolean if a field has been set.

func (*Dynamic5Qi) HasCnPacketDelayBudgetDl

func (o *Dynamic5Qi) HasCnPacketDelayBudgetDl() bool

HasCnPacketDelayBudgetDl returns a boolean if a field has been set.

func (*Dynamic5Qi) HasCnPacketDelayBudgetUl

func (o *Dynamic5Qi) HasCnPacketDelayBudgetUl() bool

HasCnPacketDelayBudgetUl returns a boolean if a field has been set.

func (*Dynamic5Qi) HasExtMaxDataBurstVol

func (o *Dynamic5Qi) HasExtMaxDataBurstVol() bool

HasExtMaxDataBurstVol returns a boolean if a field has been set.

func (*Dynamic5Qi) HasExtPacketDelBudget

func (o *Dynamic5Qi) HasExtPacketDelBudget() bool

HasExtPacketDelBudget returns a boolean if a field has been set.

func (*Dynamic5Qi) HasMaxDataBurstVol

func (o *Dynamic5Qi) HasMaxDataBurstVol() bool

HasMaxDataBurstVol returns a boolean if a field has been set.

func (Dynamic5Qi) MarshalJSON

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

func (*Dynamic5Qi) SetAverWindow

func (o *Dynamic5Qi) SetAverWindow(v int32)

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

func (*Dynamic5Qi) SetCnPacketDelayBudgetDl

func (o *Dynamic5Qi) SetCnPacketDelayBudgetDl(v int32)

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

func (*Dynamic5Qi) SetCnPacketDelayBudgetUl

func (o *Dynamic5Qi) SetCnPacketDelayBudgetUl(v int32)

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

func (*Dynamic5Qi) SetExtMaxDataBurstVol

func (o *Dynamic5Qi) SetExtMaxDataBurstVol(v int32)

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

func (*Dynamic5Qi) SetExtPacketDelBudget

func (o *Dynamic5Qi) SetExtPacketDelBudget(v int32)

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

func (*Dynamic5Qi) SetMaxDataBurstVol

func (o *Dynamic5Qi) SetMaxDataBurstVol(v int32)

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

func (*Dynamic5Qi) SetPacketDelayBudget

func (o *Dynamic5Qi) SetPacketDelayBudget(v int32)

SetPacketDelayBudget sets field value

func (*Dynamic5Qi) SetPacketErrRate

func (o *Dynamic5Qi) SetPacketErrRate(v string)

SetPacketErrRate sets field value

func (*Dynamic5Qi) SetPriorityLevel

func (o *Dynamic5Qi) SetPriorityLevel(v int32)

SetPriorityLevel sets field value

func (*Dynamic5Qi) SetResourceType

func (o *Dynamic5Qi) SetResourceType(v QosResourceType)

SetResourceType sets field value

func (Dynamic5Qi) ToMap

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

type EllipsoidArc

type EllipsoidArc struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of the inner radius.
	InnerRadius int32 `json:"innerRadius"`
	// Indicates value of uncertainty.
	UncertaintyRadius float32 `json:"uncertaintyRadius"`
	// Indicates value of angle.
	OffsetAngle int32 `json:"offsetAngle"`
	// Indicates value of angle.
	IncludedAngle int32 `json:"includedAngle"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

EllipsoidArc Ellipsoid Arc.

func NewEllipsoidArc

func NewEllipsoidArc(point GeographicalCoordinates, innerRadius int32, uncertaintyRadius float32, offsetAngle int32, includedAngle int32, confidence int32, shape SupportedGADShapes) *EllipsoidArc

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

func NewEllipsoidArcWithDefaults

func NewEllipsoidArcWithDefaults() *EllipsoidArc

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

func (*EllipsoidArc) GetConfidence

func (o *EllipsoidArc) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*EllipsoidArc) GetConfidenceOk

func (o *EllipsoidArc) GetConfidenceOk() (*int32, bool)

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

func (*EllipsoidArc) GetIncludedAngle

func (o *EllipsoidArc) GetIncludedAngle() int32

GetIncludedAngle returns the IncludedAngle field value

func (*EllipsoidArc) GetIncludedAngleOk

func (o *EllipsoidArc) GetIncludedAngleOk() (*int32, bool)

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

func (*EllipsoidArc) GetInnerRadius

func (o *EllipsoidArc) GetInnerRadius() int32

GetInnerRadius returns the InnerRadius field value

func (*EllipsoidArc) GetInnerRadiusOk

func (o *EllipsoidArc) GetInnerRadiusOk() (*int32, bool)

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

func (*EllipsoidArc) GetOffsetAngle

func (o *EllipsoidArc) GetOffsetAngle() int32

GetOffsetAngle returns the OffsetAngle field value

func (*EllipsoidArc) GetOffsetAngleOk

func (o *EllipsoidArc) GetOffsetAngleOk() (*int32, bool)

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

func (*EllipsoidArc) GetPoint

func (o *EllipsoidArc) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*EllipsoidArc) GetPointOk

func (o *EllipsoidArc) GetPointOk() (*GeographicalCoordinates, bool)

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

func (*EllipsoidArc) GetUncertaintyRadius

func (o *EllipsoidArc) GetUncertaintyRadius() float32

GetUncertaintyRadius returns the UncertaintyRadius field value

func (*EllipsoidArc) GetUncertaintyRadiusOk

func (o *EllipsoidArc) GetUncertaintyRadiusOk() (*float32, bool)

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

func (EllipsoidArc) MarshalJSON

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

func (*EllipsoidArc) SetConfidence

func (o *EllipsoidArc) SetConfidence(v int32)

SetConfidence sets field value

func (*EllipsoidArc) SetIncludedAngle

func (o *EllipsoidArc) SetIncludedAngle(v int32)

SetIncludedAngle sets field value

func (*EllipsoidArc) SetInnerRadius

func (o *EllipsoidArc) SetInnerRadius(v int32)

SetInnerRadius sets field value

func (*EllipsoidArc) SetOffsetAngle

func (o *EllipsoidArc) SetOffsetAngle(v int32)

SetOffsetAngle sets field value

func (*EllipsoidArc) SetPoint

func (o *EllipsoidArc) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (*EllipsoidArc) SetUncertaintyRadius

func (o *EllipsoidArc) SetUncertaintyRadius(v float32)

SetUncertaintyRadius sets field value

func (EllipsoidArc) ToMap

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

type EllipsoidArcAllOf

type EllipsoidArcAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of the inner radius.
	InnerRadius int32 `json:"innerRadius"`
	// Indicates value of uncertainty.
	UncertaintyRadius float32 `json:"uncertaintyRadius"`
	// Indicates value of angle.
	OffsetAngle int32 `json:"offsetAngle"`
	// Indicates value of angle.
	IncludedAngle int32 `json:"includedAngle"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

EllipsoidArcAllOf struct for EllipsoidArcAllOf

func NewEllipsoidArcAllOf

func NewEllipsoidArcAllOf(point GeographicalCoordinates, innerRadius int32, uncertaintyRadius float32, offsetAngle int32, includedAngle int32, confidence int32) *EllipsoidArcAllOf

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

func NewEllipsoidArcAllOfWithDefaults

func NewEllipsoidArcAllOfWithDefaults() *EllipsoidArcAllOf

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

func (*EllipsoidArcAllOf) GetConfidence

func (o *EllipsoidArcAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*EllipsoidArcAllOf) GetConfidenceOk

func (o *EllipsoidArcAllOf) GetConfidenceOk() (*int32, bool)

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

func (*EllipsoidArcAllOf) GetIncludedAngle

func (o *EllipsoidArcAllOf) GetIncludedAngle() int32

GetIncludedAngle returns the IncludedAngle field value

func (*EllipsoidArcAllOf) GetIncludedAngleOk

func (o *EllipsoidArcAllOf) GetIncludedAngleOk() (*int32, bool)

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

func (*EllipsoidArcAllOf) GetInnerRadius

func (o *EllipsoidArcAllOf) GetInnerRadius() int32

GetInnerRadius returns the InnerRadius field value

func (*EllipsoidArcAllOf) GetInnerRadiusOk

func (o *EllipsoidArcAllOf) GetInnerRadiusOk() (*int32, bool)

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

func (*EllipsoidArcAllOf) GetOffsetAngle

func (o *EllipsoidArcAllOf) GetOffsetAngle() int32

GetOffsetAngle returns the OffsetAngle field value

func (*EllipsoidArcAllOf) GetOffsetAngleOk

func (o *EllipsoidArcAllOf) GetOffsetAngleOk() (*int32, bool)

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

func (*EllipsoidArcAllOf) GetPoint

GetPoint returns the Point field value

func (*EllipsoidArcAllOf) GetPointOk

func (o *EllipsoidArcAllOf) GetPointOk() (*GeographicalCoordinates, bool)

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

func (*EllipsoidArcAllOf) GetUncertaintyRadius

func (o *EllipsoidArcAllOf) GetUncertaintyRadius() float32

GetUncertaintyRadius returns the UncertaintyRadius field value

func (*EllipsoidArcAllOf) GetUncertaintyRadiusOk

func (o *EllipsoidArcAllOf) GetUncertaintyRadiusOk() (*float32, bool)

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

func (EllipsoidArcAllOf) MarshalJSON

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

func (*EllipsoidArcAllOf) SetConfidence

func (o *EllipsoidArcAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*EllipsoidArcAllOf) SetIncludedAngle

func (o *EllipsoidArcAllOf) SetIncludedAngle(v int32)

SetIncludedAngle sets field value

func (*EllipsoidArcAllOf) SetInnerRadius

func (o *EllipsoidArcAllOf) SetInnerRadius(v int32)

SetInnerRadius sets field value

func (*EllipsoidArcAllOf) SetOffsetAngle

func (o *EllipsoidArcAllOf) SetOffsetAngle(v int32)

SetOffsetAngle sets field value

func (*EllipsoidArcAllOf) SetPoint

SetPoint sets field value

func (*EllipsoidArcAllOf) SetUncertaintyRadius

func (o *EllipsoidArcAllOf) SetUncertaintyRadius(v float32)

SetUncertaintyRadius sets field value

func (EllipsoidArcAllOf) ToMap

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

type ExtMbsSession

type ExtMbsSession struct {
	MbsSession
	MbsSecurityContext *MbsSecurityContext `json:"mbsSecurityContext,omitempty"`
	ContactPcfInd      *bool               `json:"contactPcfInd,omitempty"`
}

ExtMbsSession MbsSession common data type with MB-SMF API specific extensions

func NewExtMbsSession

func NewExtMbsSession() *ExtMbsSession

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

func NewExtMbsSessionWithDefaults

func NewExtMbsSessionWithDefaults() *ExtMbsSession

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

func (*ExtMbsSession) GetContactPcfInd

func (o *ExtMbsSession) GetContactPcfInd() bool

GetContactPcfInd returns the ContactPcfInd field value if set, zero value otherwise.

func (*ExtMbsSession) GetContactPcfIndOk

func (o *ExtMbsSession) GetContactPcfIndOk() (*bool, bool)

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

func (*ExtMbsSession) GetMbsSecurityContext

func (o *ExtMbsSession) GetMbsSecurityContext() MbsSecurityContext

GetMbsSecurityContext returns the MbsSecurityContext field value if set, zero value otherwise.

func (*ExtMbsSession) GetMbsSecurityContextOk

func (o *ExtMbsSession) GetMbsSecurityContextOk() (*MbsSecurityContext, bool)

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

func (*ExtMbsSession) HasContactPcfInd

func (o *ExtMbsSession) HasContactPcfInd() bool

HasContactPcfInd returns a boolean if a field has been set.

func (*ExtMbsSession) HasMbsSecurityContext

func (o *ExtMbsSession) HasMbsSecurityContext() bool

HasMbsSecurityContext returns a boolean if a field has been set.

func (ExtMbsSession) MarshalJSON

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

func (*ExtMbsSession) SetContactPcfInd

func (o *ExtMbsSession) SetContactPcfInd(v bool)

SetContactPcfInd gets a reference to the given bool and assigns it to the ContactPcfInd field.

func (*ExtMbsSession) SetMbsSecurityContext

func (o *ExtMbsSession) SetMbsSecurityContext(v MbsSecurityContext)

SetMbsSecurityContext gets a reference to the given MbsSecurityContext and assigns it to the MbsSecurityContext field.

func (ExtMbsSession) ToMap

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

type ExtProblemDetails

type ExtProblemDetails struct {
	ProblemDetails
	AccMbsServiceInfo *AcceptableMbsServInfo `json:"accMbsServiceInfo,omitempty"`
}

ExtProblemDetails Extended Problem Details data structure

func NewExtProblemDetails

func NewExtProblemDetails() *ExtProblemDetails

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

func NewExtProblemDetailsWithDefaults

func NewExtProblemDetailsWithDefaults() *ExtProblemDetails

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

func (*ExtProblemDetails) GetAccMbsServiceInfo

func (o *ExtProblemDetails) GetAccMbsServiceInfo() AcceptableMbsServInfo

GetAccMbsServiceInfo returns the AccMbsServiceInfo field value if set, zero value otherwise.

func (*ExtProblemDetails) GetAccMbsServiceInfoOk

func (o *ExtProblemDetails) GetAccMbsServiceInfoOk() (*AcceptableMbsServInfo, bool)

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

func (*ExtProblemDetails) HasAccMbsServiceInfo

func (o *ExtProblemDetails) HasAccMbsServiceInfo() bool

HasAccMbsServiceInfo returns a boolean if a field has been set.

func (ExtProblemDetails) MarshalJSON

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

func (*ExtProblemDetails) SetAccMbsServiceInfo

func (o *ExtProblemDetails) SetAccMbsServiceInfo(v AcceptableMbsServInfo)

SetAccMbsServiceInfo gets a reference to the given AcceptableMbsServInfo and assigns it to the AccMbsServiceInfo field.

func (ExtProblemDetails) ToMap

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

type ExternalMbsServiceArea

type ExternalMbsServiceArea struct {
	Interface *interface{}
}

ExternalMbsServiceArea - List of geographic area or list of civic address info for MBS Service Area

func InterfaceAsExternalMbsServiceArea

func InterfaceAsExternalMbsServiceArea(v *interface{}) ExternalMbsServiceArea

interface{}AsExternalMbsServiceArea is a convenience function that returns interface{} wrapped in ExternalMbsServiceArea

func (*ExternalMbsServiceArea) GetActualInstance

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

Get the actual instance

func (ExternalMbsServiceArea) MarshalJSON

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

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

func (*ExternalMbsServiceArea) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type GADShape

type GADShape struct {
	Shape SupportedGADShapes `json:"shape"`
}

GADShape Common base type for GAD shapes.

func NewGADShape

func NewGADShape(shape SupportedGADShapes) *GADShape

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

func NewGADShapeWithDefaults

func NewGADShapeWithDefaults() *GADShape

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

func (*GADShape) GetShape

func (o *GADShape) GetShape() SupportedGADShapes

GetShape returns the Shape field value

func (*GADShape) GetShapeOk

func (o *GADShape) GetShapeOk() (*SupportedGADShapes, bool)

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

func (GADShape) MarshalJSON

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

func (*GADShape) SetShape

func (o *GADShape) SetShape(v SupportedGADShapes)

SetShape sets field value

func (GADShape) ToMap

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

type GNbId

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

GNbId Provides the G-NB identifier.

func NewGNbId

func NewGNbId(bitLength int32, gNBValue string) *GNbId

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

func NewGNbIdWithDefaults

func NewGNbIdWithDefaults() *GNbId

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

func (*GNbId) GetBitLength

func (o *GNbId) GetBitLength() int32

GetBitLength returns the BitLength field value

func (*GNbId) GetBitLengthOk

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

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

func (*GNbId) GetGNBValue

func (o *GNbId) GetGNBValue() string

GetGNBValue returns the GNBValue field value

func (*GNbId) GetGNBValueOk

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

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

func (GNbId) MarshalJSON

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

func (*GNbId) SetBitLength

func (o *GNbId) SetBitLength(v int32)

SetBitLength sets field value

func (*GNbId) SetGNBValue

func (o *GNbId) SetGNBValue(v string)

SetGNBValue sets field value

func (GNbId) ToMap

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

type GbrQosFlowInformation

type GbrQosFlowInformation struct {
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	MaxFbrDl string `json:"maxFbrDl"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	GuaFbrDl string `json:"guaFbrDl"`
	// Unsigned integer indicating Packet Loss Rate (see clauses 5.7.2.8 and 5.7.4 of 3GPP TS 23.501), expressed in tenth of percent.
	MaxPacketLossRateDl *int32 `json:"maxPacketLossRateDl,omitempty"`
}

GbrQosFlowInformation GBR MBS QoS flow information

func NewGbrQosFlowInformation

func NewGbrQosFlowInformation(maxFbrDl string, guaFbrDl string) *GbrQosFlowInformation

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

func NewGbrQosFlowInformationWithDefaults

func NewGbrQosFlowInformationWithDefaults() *GbrQosFlowInformation

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

func (*GbrQosFlowInformation) GetGuaFbrDl

func (o *GbrQosFlowInformation) GetGuaFbrDl() string

GetGuaFbrDl returns the GuaFbrDl field value

func (*GbrQosFlowInformation) GetGuaFbrDlOk

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

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

func (*GbrQosFlowInformation) GetMaxFbrDl

func (o *GbrQosFlowInformation) GetMaxFbrDl() string

GetMaxFbrDl returns the MaxFbrDl field value

func (*GbrQosFlowInformation) GetMaxFbrDlOk

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

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

func (*GbrQosFlowInformation) GetMaxPacketLossRateDl

func (o *GbrQosFlowInformation) GetMaxPacketLossRateDl() int32

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

func (*GbrQosFlowInformation) GetMaxPacketLossRateDlOk

func (o *GbrQosFlowInformation) GetMaxPacketLossRateDlOk() (*int32, bool)

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

func (*GbrQosFlowInformation) HasMaxPacketLossRateDl

func (o *GbrQosFlowInformation) HasMaxPacketLossRateDl() bool

HasMaxPacketLossRateDl returns a boolean if a field has been set.

func (GbrQosFlowInformation) MarshalJSON

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

func (*GbrQosFlowInformation) SetGuaFbrDl

func (o *GbrQosFlowInformation) SetGuaFbrDl(v string)

SetGuaFbrDl sets field value

func (*GbrQosFlowInformation) SetMaxFbrDl

func (o *GbrQosFlowInformation) SetMaxFbrDl(v string)

SetMaxFbrDl sets field value

func (*GbrQosFlowInformation) SetMaxPacketLossRateDl

func (o *GbrQosFlowInformation) SetMaxPacketLossRateDl(v int32)

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

func (GbrQosFlowInformation) ToMap

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

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GeographicArea

type GeographicArea struct {
	EllipsoidArc             *EllipsoidArc
	Point                    *Point
	PointAltitude            *PointAltitude
	PointAltitudeUncertainty *PointAltitudeUncertainty
	PointUncertaintyCircle   *PointUncertaintyCircle
	PointUncertaintyEllipse  *PointUncertaintyEllipse
	Polygon                  *Polygon
}

GeographicArea Geographic area specified by different shape.

func (*GeographicArea) MarshalJSON

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

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

func (*GeographicArea) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type GeographicalCoordinates

type GeographicalCoordinates struct {
	Lon float64 `json:"lon"`
	Lat float64 `json:"lat"`
}

GeographicalCoordinates Geographical coordinates.

func NewGeographicalCoordinates

func NewGeographicalCoordinates(lon float64, lat float64) *GeographicalCoordinates

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

func NewGeographicalCoordinatesWithDefaults

func NewGeographicalCoordinatesWithDefaults() *GeographicalCoordinates

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

func (*GeographicalCoordinates) GetLat

func (o *GeographicalCoordinates) GetLat() float64

GetLat returns the Lat field value

func (*GeographicalCoordinates) GetLatOk

func (o *GeographicalCoordinates) GetLatOk() (*float64, bool)

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

func (*GeographicalCoordinates) GetLon

func (o *GeographicalCoordinates) GetLon() float64

GetLon returns the Lon field value

func (*GeographicalCoordinates) GetLonOk

func (o *GeographicalCoordinates) GetLonOk() (*float64, bool)

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

func (GeographicalCoordinates) MarshalJSON

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

func (*GeographicalCoordinates) SetLat

func (o *GeographicalCoordinates) SetLat(v float64)

SetLat sets field value

func (*GeographicalCoordinates) SetLon

func (o *GeographicalCoordinates) SetLon(v float64)

SetLon sets field value

func (GeographicalCoordinates) ToMap

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

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 IndividualMBSSessionApiService

type IndividualMBSSessionApiService service

IndividualMBSSessionApiService IndividualMBSSessionApi service

func (*IndividualMBSSessionApiService) Release

Release Deletes an individual MBS session resource in the MB-SMF.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param mbsSessionRef Unique ID of the MBS session to be released
@return ApiReleaseRequest

func (*IndividualMBSSessionApiService) ReleaseExecute

Execute executes the request

func (*IndividualMBSSessionApiService) Update

Update Updates an individual MBS session resource in the MB-SMF.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param mbsSessionRef Unique ID of the MBS session to be modified
@return ApiUpdateRequest

func (*IndividualMBSSessionApiService) UpdateExecute

Execute executes the request

type IndividualSubscriptionForAnMBSContextApiService

type IndividualSubscriptionForAnMBSContextApiService service

IndividualSubscriptionForAnMBSContextApiService IndividualSubscriptionForAnMBSContextApi service

func (*IndividualSubscriptionForAnMBSContextApiService) ContextStatusSubscribeMod

ContextStatusSubscribeMod ContextStatusSubscribe modifying an individual subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Unique ID of the subscription to be modified
@return ApiContextStatusSubscribeModRequest

func (*IndividualSubscriptionForAnMBSContextApiService) ContextStatusSubscribeModExecute

Execute executes the request

@return ContextStatusSubscription

func (*IndividualSubscriptionForAnMBSContextApiService) ContextStatusUnSubscribe

ContextStatusUnSubscribe ContextStatusUnSubscribe

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Unique ID of the subscription to be deleted
@return ApiContextStatusUnSubscribeRequest

func (*IndividualSubscriptionForAnMBSContextApiService) ContextStatusUnSubscribeExecute

Execute executes the request

type IndividualSubscriptionForAnMBSSessionApiService

type IndividualSubscriptionForAnMBSSessionApiService service

IndividualSubscriptionForAnMBSSessionApiService IndividualSubscriptionForAnMBSSessionApi service

func (*IndividualSubscriptionForAnMBSSessionApiService) StatusSubscribeMod

StatusSubscribeMod StatusSubscribe to modify (update or renew) an individual subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Unique ID of the individual subscription to be modified
@return ApiStatusSubscribeModRequest

func (*IndividualSubscriptionForAnMBSSessionApiService) StatusSubscribeModExecute

Execute executes the request

@return MbsSessionSubscription

func (*IndividualSubscriptionForAnMBSSessionApiService) StatusUnSubscribe

StatusUnSubscribe StatusUnSubscribe to unsubscribe from the Status Subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Unique ID of the subscription to be deleted
@return ApiStatusUnSubscribeRequest

func (*IndividualSubscriptionForAnMBSSessionApiService) StatusUnSubscribeExecute

Execute executes the request

type IngressTunAddrInfo

type IngressTunAddrInfo struct {
	IngressTunAddr []TunnelAddress `json:"ingressTunAddr"`
}

IngressTunAddrInfo Ingress Tunnel Address Information

func NewIngressTunAddrInfo

func NewIngressTunAddrInfo(ingressTunAddr []TunnelAddress) *IngressTunAddrInfo

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

func NewIngressTunAddrInfoWithDefaults

func NewIngressTunAddrInfoWithDefaults() *IngressTunAddrInfo

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

func (*IngressTunAddrInfo) GetIngressTunAddr

func (o *IngressTunAddrInfo) GetIngressTunAddr() []TunnelAddress

GetIngressTunAddr returns the IngressTunAddr field value

func (*IngressTunAddrInfo) GetIngressTunAddrOk

func (o *IngressTunAddrInfo) GetIngressTunAddrOk() ([]TunnelAddress, bool)

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

func (IngressTunAddrInfo) MarshalJSON

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

func (*IngressTunAddrInfo) SetIngressTunAddr

func (o *IngressTunAddrInfo) SetIngressTunAddr(v []TunnelAddress)

SetIngressTunAddr sets field value

func (IngressTunAddrInfo) ToMap

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

type InvalidParam

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

InvalidParam It contains an invalid parameter and a related description.

func NewInvalidParam

func NewInvalidParam(param string) *InvalidParam

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

func NewInvalidParamWithDefaults

func NewInvalidParamWithDefaults() *InvalidParam

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

func (*InvalidParam) GetParam

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk

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

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

func (*InvalidParam) GetReason

func (o *InvalidParam) GetReason() string

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

func (*InvalidParam) GetReasonOk

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

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

func (*InvalidParam) HasReason

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON

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

func (*InvalidParam) SetParam

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason

func (o *InvalidParam) SetReason(v string)

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

func (InvalidParam) ToMap

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

type IpAddr

type IpAddr struct {
	Interface *interface{}
}

IpAddr - Contains an IP adresse.

func InterfaceAsIpAddr

func InterfaceAsIpAddr(v *interface{}) IpAddr

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

func (*IpAddr) GetActualInstance

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

Get the actual instance

func (IpAddr) MarshalJSON

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

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

func (*IpAddr) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type Ipv6Addr

type Ipv6Addr struct {
}

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

func NewIpv6Addr

func NewIpv6Addr() *Ipv6Addr

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

func NewIpv6AddrWithDefaults

func NewIpv6AddrWithDefaults() *Ipv6Addr

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

func (Ipv6Addr) MarshalJSON

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

func (Ipv6Addr) ToMap

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

type Ipv6Prefix

type Ipv6Prefix struct {
}

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

func NewIpv6Prefix

func NewIpv6Prefix() *Ipv6Prefix

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

func NewIpv6PrefixWithDefaults

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

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

func (Ipv6Prefix) MarshalJSON

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

func (Ipv6Prefix) ToMap

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

type Local2dPointUncertaintyEllipse

type Local2dPointUncertaintyEllipse struct {
	GADShape
	LocalOrigin        LocalOrigin               `json:"localOrigin"`
	Point              RelativeCartesianLocation `json:"point"`
	UncertaintyEllipse UncertaintyEllipse        `json:"uncertaintyEllipse"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

Local2dPointUncertaintyEllipse Local 2D point with uncertainty ellipse

func NewLocal2dPointUncertaintyEllipse

func NewLocal2dPointUncertaintyEllipse(localOrigin LocalOrigin, point RelativeCartesianLocation, uncertaintyEllipse UncertaintyEllipse, confidence int32, shape SupportedGADShapes) *Local2dPointUncertaintyEllipse

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

func NewLocal2dPointUncertaintyEllipseWithDefaults

func NewLocal2dPointUncertaintyEllipseWithDefaults() *Local2dPointUncertaintyEllipse

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

func (*Local2dPointUncertaintyEllipse) GetConfidence

func (o *Local2dPointUncertaintyEllipse) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local2dPointUncertaintyEllipse) GetConfidenceOk

func (o *Local2dPointUncertaintyEllipse) GetConfidenceOk() (*int32, bool)

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

func (*Local2dPointUncertaintyEllipse) GetLocalOrigin

func (o *Local2dPointUncertaintyEllipse) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local2dPointUncertaintyEllipse) GetLocalOriginOk

func (o *Local2dPointUncertaintyEllipse) GetLocalOriginOk() (*LocalOrigin, bool)

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

func (*Local2dPointUncertaintyEllipse) GetPoint

GetPoint returns the Point field value

func (*Local2dPointUncertaintyEllipse) GetPointOk

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

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipse) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipseOk

func (o *Local2dPointUncertaintyEllipse) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

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

func (Local2dPointUncertaintyEllipse) MarshalJSON

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

func (*Local2dPointUncertaintyEllipse) SetConfidence

func (o *Local2dPointUncertaintyEllipse) SetConfidence(v int32)

SetConfidence sets field value

func (*Local2dPointUncertaintyEllipse) SetLocalOrigin

func (o *Local2dPointUncertaintyEllipse) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local2dPointUncertaintyEllipse) SetPoint

SetPoint sets field value

func (*Local2dPointUncertaintyEllipse) SetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipse) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (Local2dPointUncertaintyEllipse) ToMap

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

type Local2dPointUncertaintyEllipseAllOf

type Local2dPointUncertaintyEllipseAllOf struct {
	LocalOrigin        LocalOrigin               `json:"localOrigin"`
	Point              RelativeCartesianLocation `json:"point"`
	UncertaintyEllipse UncertaintyEllipse        `json:"uncertaintyEllipse"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

Local2dPointUncertaintyEllipseAllOf struct for Local2dPointUncertaintyEllipseAllOf

func NewLocal2dPointUncertaintyEllipseAllOf

func NewLocal2dPointUncertaintyEllipseAllOf(localOrigin LocalOrigin, point RelativeCartesianLocation, uncertaintyEllipse UncertaintyEllipse, confidence int32) *Local2dPointUncertaintyEllipseAllOf

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

func NewLocal2dPointUncertaintyEllipseAllOfWithDefaults

func NewLocal2dPointUncertaintyEllipseAllOfWithDefaults() *Local2dPointUncertaintyEllipseAllOf

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

func (*Local2dPointUncertaintyEllipseAllOf) GetConfidence

func (o *Local2dPointUncertaintyEllipseAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local2dPointUncertaintyEllipseAllOf) GetConfidenceOk

func (o *Local2dPointUncertaintyEllipseAllOf) GetConfidenceOk() (*int32, bool)

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

func (*Local2dPointUncertaintyEllipseAllOf) GetLocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local2dPointUncertaintyEllipseAllOf) GetLocalOriginOk

func (o *Local2dPointUncertaintyEllipseAllOf) GetLocalOriginOk() (*LocalOrigin, bool)

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

func (*Local2dPointUncertaintyEllipseAllOf) GetPoint

GetPoint returns the Point field value

func (*Local2dPointUncertaintyEllipseAllOf) GetPointOk

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

func (*Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipseOk

func (o *Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

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

func (Local2dPointUncertaintyEllipseAllOf) MarshalJSON

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

func (*Local2dPointUncertaintyEllipseAllOf) SetConfidence

func (o *Local2dPointUncertaintyEllipseAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*Local2dPointUncertaintyEllipseAllOf) SetLocalOrigin

func (o *Local2dPointUncertaintyEllipseAllOf) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local2dPointUncertaintyEllipseAllOf) SetPoint

SetPoint sets field value

func (*Local2dPointUncertaintyEllipseAllOf) SetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipseAllOf) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (Local2dPointUncertaintyEllipseAllOf) ToMap

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

type Local3dPointUncertaintyEllipsoid

type Local3dPointUncertaintyEllipsoid struct {
	GADShape
	LocalOrigin          LocalOrigin               `json:"localOrigin"`
	Point                RelativeCartesianLocation `json:"point"`
	UncertaintyEllipsoid UncertaintyEllipsoid      `json:"uncertaintyEllipsoid"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

Local3dPointUncertaintyEllipsoid Local 3D point with uncertainty ellipsoid

func NewLocal3dPointUncertaintyEllipsoid

func NewLocal3dPointUncertaintyEllipsoid(localOrigin LocalOrigin, point RelativeCartesianLocation, uncertaintyEllipsoid UncertaintyEllipsoid, confidence int32, shape SupportedGADShapes) *Local3dPointUncertaintyEllipsoid

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

func NewLocal3dPointUncertaintyEllipsoidWithDefaults

func NewLocal3dPointUncertaintyEllipsoidWithDefaults() *Local3dPointUncertaintyEllipsoid

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

func (*Local3dPointUncertaintyEllipsoid) GetConfidence

func (o *Local3dPointUncertaintyEllipsoid) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local3dPointUncertaintyEllipsoid) GetConfidenceOk

func (o *Local3dPointUncertaintyEllipsoid) GetConfidenceOk() (*int32, bool)

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

func (*Local3dPointUncertaintyEllipsoid) GetLocalOrigin

func (o *Local3dPointUncertaintyEllipsoid) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local3dPointUncertaintyEllipsoid) GetLocalOriginOk

func (o *Local3dPointUncertaintyEllipsoid) GetLocalOriginOk() (*LocalOrigin, bool)

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

func (*Local3dPointUncertaintyEllipsoid) GetPoint

GetPoint returns the Point field value

func (*Local3dPointUncertaintyEllipsoid) GetPointOk

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

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid() UncertaintyEllipsoid

GetUncertaintyEllipsoid returns the UncertaintyEllipsoid field value

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoidOk

func (o *Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoidOk() (*UncertaintyEllipsoid, bool)

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

func (Local3dPointUncertaintyEllipsoid) MarshalJSON

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

func (*Local3dPointUncertaintyEllipsoid) SetConfidence

func (o *Local3dPointUncertaintyEllipsoid) SetConfidence(v int32)

SetConfidence sets field value

func (*Local3dPointUncertaintyEllipsoid) SetLocalOrigin

func (o *Local3dPointUncertaintyEllipsoid) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local3dPointUncertaintyEllipsoid) SetPoint

SetPoint sets field value

func (*Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid(v UncertaintyEllipsoid)

SetUncertaintyEllipsoid sets field value

func (Local3dPointUncertaintyEllipsoid) ToMap

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

type Local3dPointUncertaintyEllipsoidAllOf

type Local3dPointUncertaintyEllipsoidAllOf struct {
	LocalOrigin          LocalOrigin               `json:"localOrigin"`
	Point                RelativeCartesianLocation `json:"point"`
	UncertaintyEllipsoid UncertaintyEllipsoid      `json:"uncertaintyEllipsoid"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

Local3dPointUncertaintyEllipsoidAllOf struct for Local3dPointUncertaintyEllipsoidAllOf

func NewLocal3dPointUncertaintyEllipsoidAllOf

func NewLocal3dPointUncertaintyEllipsoidAllOf(localOrigin LocalOrigin, point RelativeCartesianLocation, uncertaintyEllipsoid UncertaintyEllipsoid, confidence int32) *Local3dPointUncertaintyEllipsoidAllOf

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

func NewLocal3dPointUncertaintyEllipsoidAllOfWithDefaults

func NewLocal3dPointUncertaintyEllipsoidAllOfWithDefaults() *Local3dPointUncertaintyEllipsoidAllOf

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

func (*Local3dPointUncertaintyEllipsoidAllOf) GetConfidence

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetConfidenceOk

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetConfidenceOk() (*int32, bool)

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

func (*Local3dPointUncertaintyEllipsoidAllOf) GetLocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetLocalOriginOk

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetLocalOriginOk() (*LocalOrigin, bool)

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

func (*Local3dPointUncertaintyEllipsoidAllOf) GetPoint

GetPoint returns the Point field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetPointOk

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

func (*Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoid() UncertaintyEllipsoid

GetUncertaintyEllipsoid returns the UncertaintyEllipsoid field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoidOk

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoidOk() (*UncertaintyEllipsoid, bool)

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

func (Local3dPointUncertaintyEllipsoidAllOf) MarshalJSON

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

func (*Local3dPointUncertaintyEllipsoidAllOf) SetConfidence

func (o *Local3dPointUncertaintyEllipsoidAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*Local3dPointUncertaintyEllipsoidAllOf) SetLocalOrigin

SetLocalOrigin sets field value

func (*Local3dPointUncertaintyEllipsoidAllOf) SetPoint

SetPoint sets field value

func (*Local3dPointUncertaintyEllipsoidAllOf) SetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoidAllOf) SetUncertaintyEllipsoid(v UncertaintyEllipsoid)

SetUncertaintyEllipsoid sets field value

func (Local3dPointUncertaintyEllipsoidAllOf) ToMap

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

type LocalOrigin

type LocalOrigin struct {
	CoordinateId *string                  `json:"coordinateId,omitempty"`
	Point        *GeographicalCoordinates `json:"point,omitempty"`
}

LocalOrigin Indicates a Local origin in a reference system

func NewLocalOrigin

func NewLocalOrigin() *LocalOrigin

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

func NewLocalOriginWithDefaults

func NewLocalOriginWithDefaults() *LocalOrigin

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

func (*LocalOrigin) GetCoordinateId

func (o *LocalOrigin) GetCoordinateId() string

GetCoordinateId returns the CoordinateId field value if set, zero value otherwise.

func (*LocalOrigin) GetCoordinateIdOk

func (o *LocalOrigin) GetCoordinateIdOk() (*string, bool)

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

func (*LocalOrigin) GetPoint

func (o *LocalOrigin) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value if set, zero value otherwise.

func (*LocalOrigin) GetPointOk

func (o *LocalOrigin) GetPointOk() (*GeographicalCoordinates, bool)

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

func (*LocalOrigin) HasCoordinateId

func (o *LocalOrigin) HasCoordinateId() bool

HasCoordinateId returns a boolean if a field has been set.

func (*LocalOrigin) HasPoint

func (o *LocalOrigin) HasPoint() bool

HasPoint returns a boolean if a field has been set.

func (LocalOrigin) MarshalJSON

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

func (*LocalOrigin) SetCoordinateId

func (o *LocalOrigin) SetCoordinateId(v string)

SetCoordinateId gets a reference to the given string and assigns it to the CoordinateId field.

func (*LocalOrigin) SetPoint

func (o *LocalOrigin) SetPoint(v GeographicalCoordinates)

SetPoint gets a reference to the given GeographicalCoordinates and assigns it to the Point field.

func (LocalOrigin) ToMap

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

type MBSSessionsCollectionApiService

type MBSSessionsCollectionApiService service

MBSSessionsCollectionApiService MBSSessionsCollectionApi service

func (*MBSSessionsCollectionApiService) ContextUpdate

ContextUpdate ContextUpdate

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

func (*MBSSessionsCollectionApiService) ContextUpdateExecute

Execute executes the request

@return ContextUpdateRspData

func (*MBSSessionsCollectionApiService) Create

Create Create

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

func (*MBSSessionsCollectionApiService) CreateExecute

Execute executes the request

@return CreateRspData

type MappedNullable

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

type MbsContextInfo

type MbsContextInfo struct {
	// string with format 'date-time' as defined in OpenAPI.
	StartTime *time.Time `json:"startTime,omitempty"`
	AnyUeInd  *bool      `json:"anyUeInd,omitempty"`
	LlSsm     *Ssm       `json:"llSsm,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	CTeid          *int32          `json:"cTeid,omitempty"`
	MbsServiceArea *MbsServiceArea `json:"mbsServiceArea,omitempty"`
	// A map (list of key-value pairs) where the key identifies an areaSessionId
	MbsServiceAreaInfoList *map[string]MbsServiceAreaInfo `json:"mbsServiceAreaInfoList,omitempty"`
}

MbsContextInfo MBS context information

func NewMbsContextInfo

func NewMbsContextInfo() *MbsContextInfo

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

func NewMbsContextInfoWithDefaults

func NewMbsContextInfoWithDefaults() *MbsContextInfo

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

func (*MbsContextInfo) GetAnyUeInd

func (o *MbsContextInfo) GetAnyUeInd() bool

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

func (*MbsContextInfo) GetAnyUeIndOk

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

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

func (*MbsContextInfo) GetCTeid

func (o *MbsContextInfo) GetCTeid() int32

GetCTeid returns the CTeid field value if set, zero value otherwise.

func (*MbsContextInfo) GetCTeidOk

func (o *MbsContextInfo) GetCTeidOk() (*int32, bool)

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

func (*MbsContextInfo) GetLlSsm

func (o *MbsContextInfo) GetLlSsm() Ssm

GetLlSsm returns the LlSsm field value if set, zero value otherwise.

func (*MbsContextInfo) GetLlSsmOk

func (o *MbsContextInfo) GetLlSsmOk() (*Ssm, bool)

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

func (*MbsContextInfo) GetMbsServiceArea

func (o *MbsContextInfo) GetMbsServiceArea() MbsServiceArea

GetMbsServiceArea returns the MbsServiceArea field value if set, zero value otherwise.

func (*MbsContextInfo) GetMbsServiceAreaInfoList

func (o *MbsContextInfo) GetMbsServiceAreaInfoList() map[string]MbsServiceAreaInfo

GetMbsServiceAreaInfoList returns the MbsServiceAreaInfoList field value if set, zero value otherwise.

func (*MbsContextInfo) GetMbsServiceAreaInfoListOk

func (o *MbsContextInfo) GetMbsServiceAreaInfoListOk() (*map[string]MbsServiceAreaInfo, bool)

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

func (*MbsContextInfo) GetMbsServiceAreaOk

func (o *MbsContextInfo) GetMbsServiceAreaOk() (*MbsServiceArea, bool)

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

func (*MbsContextInfo) GetStartTime

func (o *MbsContextInfo) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*MbsContextInfo) GetStartTimeOk

func (o *MbsContextInfo) 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 (*MbsContextInfo) HasAnyUeInd

func (o *MbsContextInfo) HasAnyUeInd() bool

HasAnyUeInd returns a boolean if a field has been set.

func (*MbsContextInfo) HasCTeid

func (o *MbsContextInfo) HasCTeid() bool

HasCTeid returns a boolean if a field has been set.

func (*MbsContextInfo) HasLlSsm

func (o *MbsContextInfo) HasLlSsm() bool

HasLlSsm returns a boolean if a field has been set.

func (*MbsContextInfo) HasMbsServiceArea

func (o *MbsContextInfo) HasMbsServiceArea() bool

HasMbsServiceArea returns a boolean if a field has been set.

func (*MbsContextInfo) HasMbsServiceAreaInfoList

func (o *MbsContextInfo) HasMbsServiceAreaInfoList() bool

HasMbsServiceAreaInfoList returns a boolean if a field has been set.

func (*MbsContextInfo) HasStartTime

func (o *MbsContextInfo) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (MbsContextInfo) MarshalJSON

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

func (*MbsContextInfo) SetAnyUeInd

func (o *MbsContextInfo) SetAnyUeInd(v bool)

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

func (*MbsContextInfo) SetCTeid

func (o *MbsContextInfo) SetCTeid(v int32)

SetCTeid gets a reference to the given int32 and assigns it to the CTeid field.

func (*MbsContextInfo) SetLlSsm

func (o *MbsContextInfo) SetLlSsm(v Ssm)

SetLlSsm gets a reference to the given Ssm and assigns it to the LlSsm field.

func (*MbsContextInfo) SetMbsServiceArea

func (o *MbsContextInfo) SetMbsServiceArea(v MbsServiceArea)

SetMbsServiceArea gets a reference to the given MbsServiceArea and assigns it to the MbsServiceArea field.

func (*MbsContextInfo) SetMbsServiceAreaInfoList

func (o *MbsContextInfo) SetMbsServiceAreaInfoList(v map[string]MbsServiceAreaInfo)

SetMbsServiceAreaInfoList gets a reference to the given map[string]MbsServiceAreaInfo and assigns it to the MbsServiceAreaInfoList field.

func (*MbsContextInfo) SetStartTime

func (o *MbsContextInfo) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (MbsContextInfo) ToMap

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

type MbsKeyInfo

type MbsKeyInfo struct {
	// string with format 'bytes' as defined in OpenAPI
	KeyDomainId string `json:"keyDomainId"`
	// string with format 'bytes' as defined in OpenAPI
	MskId string `json:"mskId"`
	// string with format 'bytes' as defined in OpenAPI
	Msk *string `json:"msk,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	MskLifetime *time.Time `json:"mskLifetime,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	MtkId *string `json:"mtkId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	Mtk *string `json:"mtk,omitempty"`
}

MbsKeyInfo MBS Security Key Data Structure

func NewMbsKeyInfo

func NewMbsKeyInfo(keyDomainId string, mskId string) *MbsKeyInfo

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

func NewMbsKeyInfoWithDefaults

func NewMbsKeyInfoWithDefaults() *MbsKeyInfo

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

func (*MbsKeyInfo) GetKeyDomainId

func (o *MbsKeyInfo) GetKeyDomainId() string

GetKeyDomainId returns the KeyDomainId field value

func (*MbsKeyInfo) GetKeyDomainIdOk

func (o *MbsKeyInfo) GetKeyDomainIdOk() (*string, bool)

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

func (*MbsKeyInfo) GetMsk

func (o *MbsKeyInfo) GetMsk() string

GetMsk returns the Msk field value if set, zero value otherwise.

func (*MbsKeyInfo) GetMskId

func (o *MbsKeyInfo) GetMskId() string

GetMskId returns the MskId field value

func (*MbsKeyInfo) GetMskIdOk

func (o *MbsKeyInfo) GetMskIdOk() (*string, bool)

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

func (*MbsKeyInfo) GetMskLifetime

func (o *MbsKeyInfo) GetMskLifetime() time.Time

GetMskLifetime returns the MskLifetime field value if set, zero value otherwise.

func (*MbsKeyInfo) GetMskLifetimeOk

func (o *MbsKeyInfo) GetMskLifetimeOk() (*time.Time, bool)

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

func (*MbsKeyInfo) GetMskOk

func (o *MbsKeyInfo) GetMskOk() (*string, bool)

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

func (*MbsKeyInfo) GetMtk

func (o *MbsKeyInfo) GetMtk() string

GetMtk returns the Mtk field value if set, zero value otherwise.

func (*MbsKeyInfo) GetMtkId

func (o *MbsKeyInfo) GetMtkId() string

GetMtkId returns the MtkId field value if set, zero value otherwise.

func (*MbsKeyInfo) GetMtkIdOk

func (o *MbsKeyInfo) GetMtkIdOk() (*string, bool)

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

func (*MbsKeyInfo) GetMtkOk

func (o *MbsKeyInfo) GetMtkOk() (*string, bool)

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

func (*MbsKeyInfo) HasMsk

func (o *MbsKeyInfo) HasMsk() bool

HasMsk returns a boolean if a field has been set.

func (*MbsKeyInfo) HasMskLifetime

func (o *MbsKeyInfo) HasMskLifetime() bool

HasMskLifetime returns a boolean if a field has been set.

func (*MbsKeyInfo) HasMtk

func (o *MbsKeyInfo) HasMtk() bool

HasMtk returns a boolean if a field has been set.

func (*MbsKeyInfo) HasMtkId

func (o *MbsKeyInfo) HasMtkId() bool

HasMtkId returns a boolean if a field has been set.

func (MbsKeyInfo) MarshalJSON

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

func (*MbsKeyInfo) SetKeyDomainId

func (o *MbsKeyInfo) SetKeyDomainId(v string)

SetKeyDomainId sets field value

func (*MbsKeyInfo) SetMsk

func (o *MbsKeyInfo) SetMsk(v string)

SetMsk gets a reference to the given string and assigns it to the Msk field.

func (*MbsKeyInfo) SetMskId

func (o *MbsKeyInfo) SetMskId(v string)

SetMskId sets field value

func (*MbsKeyInfo) SetMskLifetime

func (o *MbsKeyInfo) SetMskLifetime(v time.Time)

SetMskLifetime gets a reference to the given time.Time and assigns it to the MskLifetime field.

func (*MbsKeyInfo) SetMtk

func (o *MbsKeyInfo) SetMtk(v string)

SetMtk gets a reference to the given string and assigns it to the Mtk field.

func (*MbsKeyInfo) SetMtkId

func (o *MbsKeyInfo) SetMtkId(v string)

SetMtkId gets a reference to the given string and assigns it to the MtkId field.

func (MbsKeyInfo) ToMap

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

type MbsMediaComp

type MbsMediaComp struct {
	MbsMedCompNum int32           `json:"mbsMedCompNum"`
	MbsFlowDescs  []string        `json:"mbsFlowDescs,omitempty"`
	MbsSdfResPrio *ReservPriority `json:"mbsSdfResPrio,omitempty"`
	MbsMediaInfo  *MbsMediaInfo   `json:"mbsMediaInfo,omitempty"`
	QosRef        *string         `json:"qosRef,omitempty"`
	MbsQoSReq     *MbsQoSReq      `json:"mbsQoSReq,omitempty"`
}

MbsMediaComp Represents an MBS Media Component.

func NewMbsMediaComp

func NewMbsMediaComp(mbsMedCompNum int32) *MbsMediaComp

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

func NewMbsMediaCompWithDefaults

func NewMbsMediaCompWithDefaults() *MbsMediaComp

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

func (*MbsMediaComp) GetMbsFlowDescs

func (o *MbsMediaComp) GetMbsFlowDescs() []string

GetMbsFlowDescs returns the MbsFlowDescs field value if set, zero value otherwise.

func (*MbsMediaComp) GetMbsFlowDescsOk

func (o *MbsMediaComp) GetMbsFlowDescsOk() ([]string, bool)

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

func (*MbsMediaComp) GetMbsMedCompNum

func (o *MbsMediaComp) GetMbsMedCompNum() int32

GetMbsMedCompNum returns the MbsMedCompNum field value

func (*MbsMediaComp) GetMbsMedCompNumOk

func (o *MbsMediaComp) GetMbsMedCompNumOk() (*int32, bool)

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

func (*MbsMediaComp) GetMbsMediaInfo

func (o *MbsMediaComp) GetMbsMediaInfo() MbsMediaInfo

GetMbsMediaInfo returns the MbsMediaInfo field value if set, zero value otherwise.

func (*MbsMediaComp) GetMbsMediaInfoOk

func (o *MbsMediaComp) GetMbsMediaInfoOk() (*MbsMediaInfo, bool)

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

func (*MbsMediaComp) GetMbsQoSReq

func (o *MbsMediaComp) GetMbsQoSReq() MbsQoSReq

GetMbsQoSReq returns the MbsQoSReq field value if set, zero value otherwise.

func (*MbsMediaComp) GetMbsQoSReqOk

func (o *MbsMediaComp) GetMbsQoSReqOk() (*MbsQoSReq, bool)

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

func (*MbsMediaComp) GetMbsSdfResPrio

func (o *MbsMediaComp) GetMbsSdfResPrio() ReservPriority

GetMbsSdfResPrio returns the MbsSdfResPrio field value if set, zero value otherwise.

func (*MbsMediaComp) GetMbsSdfResPrioOk

func (o *MbsMediaComp) GetMbsSdfResPrioOk() (*ReservPriority, bool)

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

func (*MbsMediaComp) GetQosRef

func (o *MbsMediaComp) GetQosRef() string

GetQosRef returns the QosRef field value if set, zero value otherwise.

func (*MbsMediaComp) GetQosRefOk

func (o *MbsMediaComp) GetQosRefOk() (*string, bool)

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

func (*MbsMediaComp) HasMbsFlowDescs

func (o *MbsMediaComp) HasMbsFlowDescs() bool

HasMbsFlowDescs returns a boolean if a field has been set.

func (*MbsMediaComp) HasMbsMediaInfo

func (o *MbsMediaComp) HasMbsMediaInfo() bool

HasMbsMediaInfo returns a boolean if a field has been set.

func (*MbsMediaComp) HasMbsQoSReq

func (o *MbsMediaComp) HasMbsQoSReq() bool

HasMbsQoSReq returns a boolean if a field has been set.

func (*MbsMediaComp) HasMbsSdfResPrio

func (o *MbsMediaComp) HasMbsSdfResPrio() bool

HasMbsSdfResPrio returns a boolean if a field has been set.

func (*MbsMediaComp) HasQosRef

func (o *MbsMediaComp) HasQosRef() bool

HasQosRef returns a boolean if a field has been set.

func (MbsMediaComp) MarshalJSON

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

func (*MbsMediaComp) SetMbsFlowDescs

func (o *MbsMediaComp) SetMbsFlowDescs(v []string)

SetMbsFlowDescs gets a reference to the given []string and assigns it to the MbsFlowDescs field.

func (*MbsMediaComp) SetMbsMedCompNum

func (o *MbsMediaComp) SetMbsMedCompNum(v int32)

SetMbsMedCompNum sets field value

func (*MbsMediaComp) SetMbsMediaInfo

func (o *MbsMediaComp) SetMbsMediaInfo(v MbsMediaInfo)

SetMbsMediaInfo gets a reference to the given MbsMediaInfo and assigns it to the MbsMediaInfo field.

func (*MbsMediaComp) SetMbsQoSReq

func (o *MbsMediaComp) SetMbsQoSReq(v MbsQoSReq)

SetMbsQoSReq gets a reference to the given MbsQoSReq and assigns it to the MbsQoSReq field.

func (*MbsMediaComp) SetMbsSdfResPrio

func (o *MbsMediaComp) SetMbsSdfResPrio(v ReservPriority)

SetMbsSdfResPrio gets a reference to the given ReservPriority and assigns it to the MbsSdfResPrio field.

func (*MbsMediaComp) SetQosRef

func (o *MbsMediaComp) SetQosRef(v string)

SetQosRef gets a reference to the given string and assigns it to the QosRef field.

func (MbsMediaComp) ToMap

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

type MbsMediaCompRm

type MbsMediaCompRm struct {
	MbsMediaComp *MbsMediaComp
	NullValue    *NullValue
}

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

func (*MbsMediaCompRm) MarshalJSON

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

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

func (*MbsMediaCompRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MbsMediaInfo

type MbsMediaInfo struct {
	MbsMedType *MediaType `json:"mbsMedType,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\".
	MaxReqMbsBwDl *string `json:"maxReqMbsBwDl,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\".
	MinReqMbsBwDl *string  `json:"minReqMbsBwDl,omitempty"`
	Codecs        []string `json:"codecs,omitempty"`
}

MbsMediaInfo Represent MBS Media Information.

func NewMbsMediaInfo

func NewMbsMediaInfo() *MbsMediaInfo

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

func NewMbsMediaInfoWithDefaults

func NewMbsMediaInfoWithDefaults() *MbsMediaInfo

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

func (*MbsMediaInfo) GetCodecs

func (o *MbsMediaInfo) GetCodecs() []string

GetCodecs returns the Codecs field value if set, zero value otherwise.

func (*MbsMediaInfo) GetCodecsOk

func (o *MbsMediaInfo) 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 (*MbsMediaInfo) GetMaxReqMbsBwDl

func (o *MbsMediaInfo) GetMaxReqMbsBwDl() string

GetMaxReqMbsBwDl returns the MaxReqMbsBwDl field value if set, zero value otherwise.

func (*MbsMediaInfo) GetMaxReqMbsBwDlOk

func (o *MbsMediaInfo) GetMaxReqMbsBwDlOk() (*string, bool)

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

func (*MbsMediaInfo) GetMbsMedType

func (o *MbsMediaInfo) GetMbsMedType() MediaType

GetMbsMedType returns the MbsMedType field value if set, zero value otherwise.

func (*MbsMediaInfo) GetMbsMedTypeOk

func (o *MbsMediaInfo) GetMbsMedTypeOk() (*MediaType, bool)

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

func (*MbsMediaInfo) GetMinReqMbsBwDl

func (o *MbsMediaInfo) GetMinReqMbsBwDl() string

GetMinReqMbsBwDl returns the MinReqMbsBwDl field value if set, zero value otherwise.

func (*MbsMediaInfo) GetMinReqMbsBwDlOk

func (o *MbsMediaInfo) GetMinReqMbsBwDlOk() (*string, bool)

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

func (*MbsMediaInfo) HasCodecs

func (o *MbsMediaInfo) HasCodecs() bool

HasCodecs returns a boolean if a field has been set.

func (*MbsMediaInfo) HasMaxReqMbsBwDl

func (o *MbsMediaInfo) HasMaxReqMbsBwDl() bool

HasMaxReqMbsBwDl returns a boolean if a field has been set.

func (*MbsMediaInfo) HasMbsMedType

func (o *MbsMediaInfo) HasMbsMedType() bool

HasMbsMedType returns a boolean if a field has been set.

func (*MbsMediaInfo) HasMinReqMbsBwDl

func (o *MbsMediaInfo) HasMinReqMbsBwDl() bool

HasMinReqMbsBwDl returns a boolean if a field has been set.

func (MbsMediaInfo) MarshalJSON

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

func (*MbsMediaInfo) SetCodecs

func (o *MbsMediaInfo) SetCodecs(v []string)

SetCodecs gets a reference to the given []string and assigns it to the Codecs field.

func (*MbsMediaInfo) SetMaxReqMbsBwDl

func (o *MbsMediaInfo) SetMaxReqMbsBwDl(v string)

SetMaxReqMbsBwDl gets a reference to the given string and assigns it to the MaxReqMbsBwDl field.

func (*MbsMediaInfo) SetMbsMedType

func (o *MbsMediaInfo) SetMbsMedType(v MediaType)

SetMbsMedType gets a reference to the given MediaType and assigns it to the MbsMedType field.

func (*MbsMediaInfo) SetMinReqMbsBwDl

func (o *MbsMediaInfo) SetMinReqMbsBwDl(v string)

SetMinReqMbsBwDl gets a reference to the given string and assigns it to the MinReqMbsBwDl field.

func (MbsMediaInfo) ToMap

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

type MbsQoSReq

type MbsQoSReq struct {
	// Unsigned integer representing a 5G QoS Identifier (see clause 5.7.2.1 of 3GPP TS 23.501, within the range 0 to 255.
	Var5qi int32 `json:"5qi"`
	// 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\".
	GuarBitRate *string `json:"guarBitRate,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\".
	MaxBitRate *string `json:"maxBitRate,omitempty"`
	// Unsigned integer indicating Averaging Window (see clause 5.7.3.6 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	AverWindow *int32 `json:"averWindow,omitempty"`
	ReqMbsArp  *Arp   `json:"reqMbsArp,omitempty"`
}

MbsQoSReq Represent MBS QoS requirements.

func NewMbsQoSReq

func NewMbsQoSReq(var5qi int32) *MbsQoSReq

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

func NewMbsQoSReqWithDefaults

func NewMbsQoSReqWithDefaults() *MbsQoSReq

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

func (*MbsQoSReq) GetAverWindow

func (o *MbsQoSReq) GetAverWindow() int32

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

func (*MbsQoSReq) GetAverWindowOk

func (o *MbsQoSReq) GetAverWindowOk() (*int32, bool)

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

func (*MbsQoSReq) GetGuarBitRate

func (o *MbsQoSReq) GetGuarBitRate() string

GetGuarBitRate returns the GuarBitRate field value if set, zero value otherwise.

func (*MbsQoSReq) GetGuarBitRateOk

func (o *MbsQoSReq) GetGuarBitRateOk() (*string, bool)

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

func (*MbsQoSReq) GetMaxBitRate

func (o *MbsQoSReq) GetMaxBitRate() string

GetMaxBitRate returns the MaxBitRate field value if set, zero value otherwise.

func (*MbsQoSReq) GetMaxBitRateOk

func (o *MbsQoSReq) GetMaxBitRateOk() (*string, bool)

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

func (*MbsQoSReq) GetReqMbsArp

func (o *MbsQoSReq) GetReqMbsArp() Arp

GetReqMbsArp returns the ReqMbsArp field value if set, zero value otherwise.

func (*MbsQoSReq) GetReqMbsArpOk

func (o *MbsQoSReq) GetReqMbsArpOk() (*Arp, bool)

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

func (*MbsQoSReq) GetVar5qi

func (o *MbsQoSReq) GetVar5qi() int32

GetVar5qi returns the Var5qi field value

func (*MbsQoSReq) GetVar5qiOk

func (o *MbsQoSReq) GetVar5qiOk() (*int32, bool)

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

func (*MbsQoSReq) HasAverWindow

func (o *MbsQoSReq) HasAverWindow() bool

HasAverWindow returns a boolean if a field has been set.

func (*MbsQoSReq) HasGuarBitRate

func (o *MbsQoSReq) HasGuarBitRate() bool

HasGuarBitRate returns a boolean if a field has been set.

func (*MbsQoSReq) HasMaxBitRate

func (o *MbsQoSReq) HasMaxBitRate() bool

HasMaxBitRate returns a boolean if a field has been set.

func (*MbsQoSReq) HasReqMbsArp

func (o *MbsQoSReq) HasReqMbsArp() bool

HasReqMbsArp returns a boolean if a field has been set.

func (MbsQoSReq) MarshalJSON

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

func (*MbsQoSReq) SetAverWindow

func (o *MbsQoSReq) SetAverWindow(v int32)

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

func (*MbsQoSReq) SetGuarBitRate

func (o *MbsQoSReq) SetGuarBitRate(v string)

SetGuarBitRate gets a reference to the given string and assigns it to the GuarBitRate field.

func (*MbsQoSReq) SetMaxBitRate

func (o *MbsQoSReq) SetMaxBitRate(v string)

SetMaxBitRate gets a reference to the given string and assigns it to the MaxBitRate field.

func (*MbsQoSReq) SetReqMbsArp

func (o *MbsQoSReq) SetReqMbsArp(v Arp)

SetReqMbsArp gets a reference to the given Arp and assigns it to the ReqMbsArp field.

func (*MbsQoSReq) SetVar5qi

func (o *MbsQoSReq) SetVar5qi(v int32)

SetVar5qi sets field value

func (MbsQoSReq) ToMap

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

type MbsSecurityContext

type MbsSecurityContext struct {
	// A map (list of key-value pairs) where a (unique) valid JSON string serves as key of MbsSecurityContext
	KeyList map[string]MbsKeyInfo `json:"keyList"`
}

MbsSecurityContext struct for MbsSecurityContext

func NewMbsSecurityContext

func NewMbsSecurityContext(keyList map[string]MbsKeyInfo) *MbsSecurityContext

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

func NewMbsSecurityContextWithDefaults

func NewMbsSecurityContextWithDefaults() *MbsSecurityContext

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

func (*MbsSecurityContext) GetKeyList

func (o *MbsSecurityContext) GetKeyList() map[string]MbsKeyInfo

GetKeyList returns the KeyList field value

func (*MbsSecurityContext) GetKeyListOk

func (o *MbsSecurityContext) GetKeyListOk() (*map[string]MbsKeyInfo, bool)

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

func (MbsSecurityContext) MarshalJSON

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

func (*MbsSecurityContext) SetKeyList

func (o *MbsSecurityContext) SetKeyList(v map[string]MbsKeyInfo)

SetKeyList sets field value

func (MbsSecurityContext) ToMap

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

type MbsServiceArea

type MbsServiceArea struct {
	Interface *interface{}
}

MbsServiceArea MBS Service Area

func (*MbsServiceArea) MarshalJSON

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

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

func (*MbsServiceArea) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MbsServiceAreaInfo

type MbsServiceAreaInfo struct {
	// Integer where the allowed values correspond to the value range of an unsigned 16-bit integer.
	AreaSessionId  int32          `json:"areaSessionId"`
	MbsServiceArea MbsServiceArea `json:"mbsServiceArea"`
}

MbsServiceAreaInfo MBS Service Area Information for location dependent MBS session

func NewMbsServiceAreaInfo

func NewMbsServiceAreaInfo(areaSessionId int32, mbsServiceArea MbsServiceArea) *MbsServiceAreaInfo

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

func NewMbsServiceAreaInfoWithDefaults

func NewMbsServiceAreaInfoWithDefaults() *MbsServiceAreaInfo

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

func (*MbsServiceAreaInfo) GetAreaSessionId

func (o *MbsServiceAreaInfo) GetAreaSessionId() int32

GetAreaSessionId returns the AreaSessionId field value

func (*MbsServiceAreaInfo) GetAreaSessionIdOk

func (o *MbsServiceAreaInfo) GetAreaSessionIdOk() (*int32, bool)

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

func (*MbsServiceAreaInfo) GetMbsServiceArea

func (o *MbsServiceAreaInfo) GetMbsServiceArea() MbsServiceArea

GetMbsServiceArea returns the MbsServiceArea field value

func (*MbsServiceAreaInfo) GetMbsServiceAreaOk

func (o *MbsServiceAreaInfo) GetMbsServiceAreaOk() (*MbsServiceArea, bool)

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

func (MbsServiceAreaInfo) MarshalJSON

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

func (*MbsServiceAreaInfo) SetAreaSessionId

func (o *MbsServiceAreaInfo) SetAreaSessionId(v int32)

SetAreaSessionId sets field value

func (*MbsServiceAreaInfo) SetMbsServiceArea

func (o *MbsServiceAreaInfo) SetMbsServiceArea(v MbsServiceArea)

SetMbsServiceArea sets field value

func (MbsServiceAreaInfo) ToMap

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

type MbsServiceInfo

type MbsServiceInfo struct {
	MbsMediaComps map[string]MbsMediaCompRm `json:"mbsMediaComps"`
	MbsSdfResPrio *ReservPriority           `json:"mbsSdfResPrio,omitempty"`
	// Contains an AF application identifier.
	AfAppId *string `json:"afAppId,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\".
	MbsSessionAmbr *string `json:"mbsSessionAmbr,omitempty"`
}

MbsServiceInfo Represent MBS Service Information.

func NewMbsServiceInfo

func NewMbsServiceInfo(mbsMediaComps map[string]MbsMediaCompRm) *MbsServiceInfo

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

func NewMbsServiceInfoWithDefaults

func NewMbsServiceInfoWithDefaults() *MbsServiceInfo

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

func (*MbsServiceInfo) GetAfAppId

func (o *MbsServiceInfo) GetAfAppId() string

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

func (*MbsServiceInfo) GetAfAppIdOk

func (o *MbsServiceInfo) 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 (*MbsServiceInfo) GetMbsMediaComps

func (o *MbsServiceInfo) GetMbsMediaComps() map[string]MbsMediaCompRm

GetMbsMediaComps returns the MbsMediaComps field value

func (*MbsServiceInfo) GetMbsMediaCompsOk

func (o *MbsServiceInfo) GetMbsMediaCompsOk() (*map[string]MbsMediaCompRm, bool)

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

func (*MbsServiceInfo) GetMbsSdfResPrio

func (o *MbsServiceInfo) GetMbsSdfResPrio() ReservPriority

GetMbsSdfResPrio returns the MbsSdfResPrio field value if set, zero value otherwise.

func (*MbsServiceInfo) GetMbsSdfResPrioOk

func (o *MbsServiceInfo) GetMbsSdfResPrioOk() (*ReservPriority, bool)

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

func (*MbsServiceInfo) GetMbsSessionAmbr

func (o *MbsServiceInfo) GetMbsSessionAmbr() string

GetMbsSessionAmbr returns the MbsSessionAmbr field value if set, zero value otherwise.

func (*MbsServiceInfo) GetMbsSessionAmbrOk

func (o *MbsServiceInfo) GetMbsSessionAmbrOk() (*string, bool)

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

func (*MbsServiceInfo) HasAfAppId

func (o *MbsServiceInfo) HasAfAppId() bool

HasAfAppId returns a boolean if a field has been set.

func (*MbsServiceInfo) HasMbsSdfResPrio

func (o *MbsServiceInfo) HasMbsSdfResPrio() bool

HasMbsSdfResPrio returns a boolean if a field has been set.

func (*MbsServiceInfo) HasMbsSessionAmbr

func (o *MbsServiceInfo) HasMbsSessionAmbr() bool

HasMbsSessionAmbr returns a boolean if a field has been set.

func (MbsServiceInfo) MarshalJSON

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

func (*MbsServiceInfo) SetAfAppId

func (o *MbsServiceInfo) SetAfAppId(v string)

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

func (*MbsServiceInfo) SetMbsMediaComps

func (o *MbsServiceInfo) SetMbsMediaComps(v map[string]MbsMediaCompRm)

SetMbsMediaComps sets field value

func (*MbsServiceInfo) SetMbsSdfResPrio

func (o *MbsServiceInfo) SetMbsSdfResPrio(v ReservPriority)

SetMbsSdfResPrio gets a reference to the given ReservPriority and assigns it to the MbsSdfResPrio field.

func (*MbsServiceInfo) SetMbsSessionAmbr

func (o *MbsServiceInfo) SetMbsSessionAmbr(v string)

SetMbsSessionAmbr gets a reference to the given string and assigns it to the MbsSessionAmbr field.

func (MbsServiceInfo) ToMap

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

type MbsServiceType

type MbsServiceType struct {
	String *string
}

MbsServiceType Indicates the MBS service type of an MBS session

func (*MbsServiceType) MarshalJSON

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

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

func (*MbsServiceType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MbsSession

type MbsSession struct {
	Interface *interface{}
}

MbsSession Individual MBS session

func (*MbsSession) MarshalJSON

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

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

func (*MbsSession) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MbsSessionActivityStatus

type MbsSessionActivityStatus struct {
	String *string
}

MbsSessionActivityStatus Indicates the MBS session's activity status

func (*MbsSessionActivityStatus) MarshalJSON

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

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

func (*MbsSessionActivityStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MbsSessionEvent

type MbsSessionEvent struct {
	EventType MbsSessionEventType `json:"eventType"`
}

MbsSessionEvent MBS session event

func NewMbsSessionEvent

func NewMbsSessionEvent(eventType MbsSessionEventType) *MbsSessionEvent

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

func NewMbsSessionEventWithDefaults

func NewMbsSessionEventWithDefaults() *MbsSessionEvent

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

func (*MbsSessionEvent) GetEventType

func (o *MbsSessionEvent) GetEventType() MbsSessionEventType

GetEventType returns the EventType field value

func (*MbsSessionEvent) GetEventTypeOk

func (o *MbsSessionEvent) GetEventTypeOk() (*MbsSessionEventType, bool)

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

func (MbsSessionEvent) MarshalJSON

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

func (*MbsSessionEvent) SetEventType

func (o *MbsSessionEvent) SetEventType(v MbsSessionEventType)

SetEventType sets field value

func (MbsSessionEvent) ToMap

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

type MbsSessionEventReport

type MbsSessionEventReport struct {
	EventType MbsSessionEventType `json:"eventType"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp          *time.Time               `json:"timeStamp,omitempty"`
	IngressTunAddrInfo *IngressTunAddrInfo      `json:"ingressTunAddrInfo,omitempty"`
	BroadcastDelStatus *BroadcastDeliveryStatus `json:"broadcastDelStatus,omitempty"`
}

MbsSessionEventReport MBS session event report

func NewMbsSessionEventReport

func NewMbsSessionEventReport(eventType MbsSessionEventType) *MbsSessionEventReport

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

func NewMbsSessionEventReportWithDefaults

func NewMbsSessionEventReportWithDefaults() *MbsSessionEventReport

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

func (*MbsSessionEventReport) GetBroadcastDelStatus

func (o *MbsSessionEventReport) GetBroadcastDelStatus() BroadcastDeliveryStatus

GetBroadcastDelStatus returns the BroadcastDelStatus field value if set, zero value otherwise.

func (*MbsSessionEventReport) GetBroadcastDelStatusOk

func (o *MbsSessionEventReport) GetBroadcastDelStatusOk() (*BroadcastDeliveryStatus, bool)

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

func (*MbsSessionEventReport) GetEventType

func (o *MbsSessionEventReport) GetEventType() MbsSessionEventType

GetEventType returns the EventType field value

func (*MbsSessionEventReport) GetEventTypeOk

func (o *MbsSessionEventReport) GetEventTypeOk() (*MbsSessionEventType, bool)

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

func (*MbsSessionEventReport) GetIngressTunAddrInfo

func (o *MbsSessionEventReport) GetIngressTunAddrInfo() IngressTunAddrInfo

GetIngressTunAddrInfo returns the IngressTunAddrInfo field value if set, zero value otherwise.

func (*MbsSessionEventReport) GetIngressTunAddrInfoOk

func (o *MbsSessionEventReport) GetIngressTunAddrInfoOk() (*IngressTunAddrInfo, bool)

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

func (*MbsSessionEventReport) GetTimeStamp

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

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

func (*MbsSessionEventReport) GetTimeStampOk

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

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

func (*MbsSessionEventReport) HasBroadcastDelStatus

func (o *MbsSessionEventReport) HasBroadcastDelStatus() bool

HasBroadcastDelStatus returns a boolean if a field has been set.

func (*MbsSessionEventReport) HasIngressTunAddrInfo

func (o *MbsSessionEventReport) HasIngressTunAddrInfo() bool

HasIngressTunAddrInfo returns a boolean if a field has been set.

func (*MbsSessionEventReport) HasTimeStamp

func (o *MbsSessionEventReport) HasTimeStamp() bool

HasTimeStamp returns a boolean if a field has been set.

func (MbsSessionEventReport) MarshalJSON

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

func (*MbsSessionEventReport) SetBroadcastDelStatus

func (o *MbsSessionEventReport) SetBroadcastDelStatus(v BroadcastDeliveryStatus)

SetBroadcastDelStatus gets a reference to the given BroadcastDeliveryStatus and assigns it to the BroadcastDelStatus field.

func (*MbsSessionEventReport) SetEventType

func (o *MbsSessionEventReport) SetEventType(v MbsSessionEventType)

SetEventType sets field value

func (*MbsSessionEventReport) SetIngressTunAddrInfo

func (o *MbsSessionEventReport) SetIngressTunAddrInfo(v IngressTunAddrInfo)

SetIngressTunAddrInfo gets a reference to the given IngressTunAddrInfo and assigns it to the IngressTunAddrInfo field.

func (*MbsSessionEventReport) SetTimeStamp

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

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

func (MbsSessionEventReport) ToMap

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

type MbsSessionEventReportList

type MbsSessionEventReportList struct {
	EventReportList     []MbsSessionEventReport `json:"eventReportList"`
	NotifyCorrelationId *string                 `json:"notifyCorrelationId,omitempty"`
}

MbsSessionEventReportList MBS session event report list

func NewMbsSessionEventReportList

func NewMbsSessionEventReportList(eventReportList []MbsSessionEventReport) *MbsSessionEventReportList

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

func NewMbsSessionEventReportListWithDefaults

func NewMbsSessionEventReportListWithDefaults() *MbsSessionEventReportList

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

func (*MbsSessionEventReportList) GetEventReportList

func (o *MbsSessionEventReportList) GetEventReportList() []MbsSessionEventReport

GetEventReportList returns the EventReportList field value

func (*MbsSessionEventReportList) GetEventReportListOk

func (o *MbsSessionEventReportList) GetEventReportListOk() ([]MbsSessionEventReport, bool)

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

func (*MbsSessionEventReportList) GetNotifyCorrelationId

func (o *MbsSessionEventReportList) GetNotifyCorrelationId() string

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

func (*MbsSessionEventReportList) GetNotifyCorrelationIdOk

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

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

func (*MbsSessionEventReportList) HasNotifyCorrelationId

func (o *MbsSessionEventReportList) HasNotifyCorrelationId() bool

HasNotifyCorrelationId returns a boolean if a field has been set.

func (MbsSessionEventReportList) MarshalJSON

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

func (*MbsSessionEventReportList) SetEventReportList

func (o *MbsSessionEventReportList) SetEventReportList(v []MbsSessionEventReport)

SetEventReportList sets field value

func (*MbsSessionEventReportList) SetNotifyCorrelationId

func (o *MbsSessionEventReportList) SetNotifyCorrelationId(v string)

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

func (MbsSessionEventReportList) ToMap

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

type MbsSessionEventType

type MbsSessionEventType struct {
	String *string
}

MbsSessionEventType MBS Session Event Type

func (*MbsSessionEventType) MarshalJSON

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

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

func (*MbsSessionEventType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MbsSessionExtension

type MbsSessionExtension struct {
	MbsSecurityContext *MbsSecurityContext `json:"mbsSecurityContext,omitempty"`
	ContactPcfInd      *bool               `json:"contactPcfInd,omitempty"`
}

MbsSessionExtension MB-SMF API specific extensions to the MbsSession common data type

func NewMbsSessionExtension

func NewMbsSessionExtension() *MbsSessionExtension

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

func NewMbsSessionExtensionWithDefaults

func NewMbsSessionExtensionWithDefaults() *MbsSessionExtension

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

func (*MbsSessionExtension) GetContactPcfInd

func (o *MbsSessionExtension) GetContactPcfInd() bool

GetContactPcfInd returns the ContactPcfInd field value if set, zero value otherwise.

func (*MbsSessionExtension) GetContactPcfIndOk

func (o *MbsSessionExtension) GetContactPcfIndOk() (*bool, bool)

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

func (*MbsSessionExtension) GetMbsSecurityContext

func (o *MbsSessionExtension) GetMbsSecurityContext() MbsSecurityContext

GetMbsSecurityContext returns the MbsSecurityContext field value if set, zero value otherwise.

func (*MbsSessionExtension) GetMbsSecurityContextOk

func (o *MbsSessionExtension) GetMbsSecurityContextOk() (*MbsSecurityContext, bool)

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

func (*MbsSessionExtension) HasContactPcfInd

func (o *MbsSessionExtension) HasContactPcfInd() bool

HasContactPcfInd returns a boolean if a field has been set.

func (*MbsSessionExtension) HasMbsSecurityContext

func (o *MbsSessionExtension) HasMbsSecurityContext() bool

HasMbsSecurityContext returns a boolean if a field has been set.

func (MbsSessionExtension) MarshalJSON

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

func (*MbsSessionExtension) SetContactPcfInd

func (o *MbsSessionExtension) SetContactPcfInd(v bool)

SetContactPcfInd gets a reference to the given bool and assigns it to the ContactPcfInd field.

func (*MbsSessionExtension) SetMbsSecurityContext

func (o *MbsSessionExtension) SetMbsSecurityContext(v MbsSecurityContext)

SetMbsSecurityContext gets a reference to the given MbsSecurityContext and assigns it to the MbsSecurityContext field.

func (MbsSessionExtension) ToMap

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

type MbsSessionId

type MbsSessionId struct {
	Interface *interface{}
}

MbsSessionId MBS Session Identifier

func (*MbsSessionId) MarshalJSON

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

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

func (*MbsSessionId) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MbsSessionSubscription

type MbsSessionSubscription struct {
	MbsSessionId *MbsSessionId `json:"mbsSessionId,omitempty"`
	// Integer where the allowed values correspond to the value range of an unsigned 16-bit integer.
	AreaSessionId *int32            `json:"areaSessionId,omitempty"`
	EventList     []MbsSessionEvent `json:"eventList"`
	// String providing an URI formatted according to RFC 3986.
	NotifyUri           string  `json:"notifyUri"`
	NotifyCorrelationId *string `json:"notifyCorrelationId,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	ExpiryTime *time.Time `json:"expiryTime,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.
	NfcInstanceId *string `json:"nfcInstanceId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	MbsSessionSubscUri *string `json:"mbsSessionSubscUri,omitempty"`
}

MbsSessionSubscription MBS session subscription

func NewMbsSessionSubscription

func NewMbsSessionSubscription(eventList []MbsSessionEvent, notifyUri string) *MbsSessionSubscription

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

func NewMbsSessionSubscriptionWithDefaults

func NewMbsSessionSubscriptionWithDefaults() *MbsSessionSubscription

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

func (*MbsSessionSubscription) GetAreaSessionId

func (o *MbsSessionSubscription) GetAreaSessionId() int32

GetAreaSessionId returns the AreaSessionId field value if set, zero value otherwise.

func (*MbsSessionSubscription) GetAreaSessionIdOk

func (o *MbsSessionSubscription) GetAreaSessionIdOk() (*int32, bool)

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

func (*MbsSessionSubscription) GetEventList

func (o *MbsSessionSubscription) GetEventList() []MbsSessionEvent

GetEventList returns the EventList field value

func (*MbsSessionSubscription) GetEventListOk

func (o *MbsSessionSubscription) GetEventListOk() ([]MbsSessionEvent, bool)

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

func (*MbsSessionSubscription) GetExpiryTime

func (o *MbsSessionSubscription) GetExpiryTime() time.Time

GetExpiryTime returns the ExpiryTime field value if set, zero value otherwise.

func (*MbsSessionSubscription) GetExpiryTimeOk

func (o *MbsSessionSubscription) GetExpiryTimeOk() (*time.Time, bool)

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

func (*MbsSessionSubscription) GetMbsSessionId

func (o *MbsSessionSubscription) GetMbsSessionId() MbsSessionId

GetMbsSessionId returns the MbsSessionId field value if set, zero value otherwise.

func (*MbsSessionSubscription) GetMbsSessionIdOk

func (o *MbsSessionSubscription) GetMbsSessionIdOk() (*MbsSessionId, bool)

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

func (*MbsSessionSubscription) GetMbsSessionSubscUri

func (o *MbsSessionSubscription) GetMbsSessionSubscUri() string

GetMbsSessionSubscUri returns the MbsSessionSubscUri field value if set, zero value otherwise.

func (*MbsSessionSubscription) GetMbsSessionSubscUriOk

func (o *MbsSessionSubscription) GetMbsSessionSubscUriOk() (*string, bool)

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

func (*MbsSessionSubscription) GetNfcInstanceId

func (o *MbsSessionSubscription) GetNfcInstanceId() string

GetNfcInstanceId returns the NfcInstanceId field value if set, zero value otherwise.

func (*MbsSessionSubscription) GetNfcInstanceIdOk

func (o *MbsSessionSubscription) GetNfcInstanceIdOk() (*string, bool)

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

func (*MbsSessionSubscription) GetNotifyCorrelationId

func (o *MbsSessionSubscription) GetNotifyCorrelationId() string

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

func (*MbsSessionSubscription) GetNotifyCorrelationIdOk

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

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

func (*MbsSessionSubscription) GetNotifyUri

func (o *MbsSessionSubscription) GetNotifyUri() string

GetNotifyUri returns the NotifyUri field value

func (*MbsSessionSubscription) GetNotifyUriOk

func (o *MbsSessionSubscription) GetNotifyUriOk() (*string, bool)

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

func (*MbsSessionSubscription) HasAreaSessionId

func (o *MbsSessionSubscription) HasAreaSessionId() bool

HasAreaSessionId returns a boolean if a field has been set.

func (*MbsSessionSubscription) HasExpiryTime

func (o *MbsSessionSubscription) HasExpiryTime() bool

HasExpiryTime returns a boolean if a field has been set.

func (*MbsSessionSubscription) HasMbsSessionId

func (o *MbsSessionSubscription) HasMbsSessionId() bool

HasMbsSessionId returns a boolean if a field has been set.

func (*MbsSessionSubscription) HasMbsSessionSubscUri

func (o *MbsSessionSubscription) HasMbsSessionSubscUri() bool

HasMbsSessionSubscUri returns a boolean if a field has been set.

func (*MbsSessionSubscription) HasNfcInstanceId

func (o *MbsSessionSubscription) HasNfcInstanceId() bool

HasNfcInstanceId returns a boolean if a field has been set.

func (*MbsSessionSubscription) HasNotifyCorrelationId

func (o *MbsSessionSubscription) HasNotifyCorrelationId() bool

HasNotifyCorrelationId returns a boolean if a field has been set.

func (MbsSessionSubscription) MarshalJSON

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

func (*MbsSessionSubscription) SetAreaSessionId

func (o *MbsSessionSubscription) SetAreaSessionId(v int32)

SetAreaSessionId gets a reference to the given int32 and assigns it to the AreaSessionId field.

func (*MbsSessionSubscription) SetEventList

func (o *MbsSessionSubscription) SetEventList(v []MbsSessionEvent)

SetEventList sets field value

func (*MbsSessionSubscription) SetExpiryTime

func (o *MbsSessionSubscription) SetExpiryTime(v time.Time)

SetExpiryTime gets a reference to the given time.Time and assigns it to the ExpiryTime field.

func (*MbsSessionSubscription) SetMbsSessionId

func (o *MbsSessionSubscription) SetMbsSessionId(v MbsSessionId)

SetMbsSessionId gets a reference to the given MbsSessionId and assigns it to the MbsSessionId field.

func (*MbsSessionSubscription) SetMbsSessionSubscUri

func (o *MbsSessionSubscription) SetMbsSessionSubscUri(v string)

SetMbsSessionSubscUri gets a reference to the given string and assigns it to the MbsSessionSubscUri field.

func (*MbsSessionSubscription) SetNfcInstanceId

func (o *MbsSessionSubscription) SetNfcInstanceId(v string)

SetNfcInstanceId gets a reference to the given string and assigns it to the NfcInstanceId field.

func (*MbsSessionSubscription) SetNotifyCorrelationId

func (o *MbsSessionSubscription) SetNotifyCorrelationId(v string)

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

func (*MbsSessionSubscription) SetNotifyUri

func (o *MbsSessionSubscription) SetNotifyUri(v string)

SetNotifyUri sets field value

func (MbsSessionSubscription) ToMap

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

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 MulticastTransportAddressChangeInfo

type MulticastTransportAddressChangeInfo struct {
	LlSsm Ssm `json:"llSsm"`
	// Integer where the allowed values correspond to the value range of an unsigned 32-bit integer.
	CTeid int32 `json:"cTeid"`
	// Integer where the allowed values correspond to the value range of an unsigned 16-bit integer.
	AreaSessionId *int32 `json:"areaSessionId,omitempty"`
}

MulticastTransportAddressChangeInfo Multicast Transport Address Change Information

func NewMulticastTransportAddressChangeInfo

func NewMulticastTransportAddressChangeInfo(llSsm Ssm, cTeid int32) *MulticastTransportAddressChangeInfo

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

func NewMulticastTransportAddressChangeInfoWithDefaults

func NewMulticastTransportAddressChangeInfoWithDefaults() *MulticastTransportAddressChangeInfo

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

func (*MulticastTransportAddressChangeInfo) GetAreaSessionId

func (o *MulticastTransportAddressChangeInfo) GetAreaSessionId() int32

GetAreaSessionId returns the AreaSessionId field value if set, zero value otherwise.

func (*MulticastTransportAddressChangeInfo) GetAreaSessionIdOk

func (o *MulticastTransportAddressChangeInfo) GetAreaSessionIdOk() (*int32, bool)

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

func (*MulticastTransportAddressChangeInfo) GetCTeid

GetCTeid returns the CTeid field value

func (*MulticastTransportAddressChangeInfo) GetCTeidOk

func (o *MulticastTransportAddressChangeInfo) GetCTeidOk() (*int32, bool)

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

func (*MulticastTransportAddressChangeInfo) GetLlSsm

GetLlSsm returns the LlSsm field value

func (*MulticastTransportAddressChangeInfo) GetLlSsmOk

func (o *MulticastTransportAddressChangeInfo) GetLlSsmOk() (*Ssm, bool)

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

func (*MulticastTransportAddressChangeInfo) HasAreaSessionId

func (o *MulticastTransportAddressChangeInfo) HasAreaSessionId() bool

HasAreaSessionId returns a boolean if a field has been set.

func (MulticastTransportAddressChangeInfo) MarshalJSON

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

func (*MulticastTransportAddressChangeInfo) SetAreaSessionId

func (o *MulticastTransportAddressChangeInfo) SetAreaSessionId(v int32)

SetAreaSessionId gets a reference to the given int32 and assigns it to the AreaSessionId field.

func (*MulticastTransportAddressChangeInfo) SetCTeid

SetCTeid sets field value

func (*MulticastTransportAddressChangeInfo) SetLlSsm

SetLlSsm sets field value

func (MulticastTransportAddressChangeInfo) ToMap

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

type N2MbsSmInfo

type N2MbsSmInfo struct {
	NgapIeType NgapIeType      `json:"ngapIeType"`
	NgapData   RefToBinaryData `json:"ngapData"`
}

N2MbsSmInfo N2 MBS Session Management information

func NewN2MbsSmInfo

func NewN2MbsSmInfo(ngapIeType NgapIeType, ngapData RefToBinaryData) *N2MbsSmInfo

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

func NewN2MbsSmInfoWithDefaults

func NewN2MbsSmInfoWithDefaults() *N2MbsSmInfo

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

func (*N2MbsSmInfo) GetNgapData

func (o *N2MbsSmInfo) GetNgapData() RefToBinaryData

GetNgapData returns the NgapData field value

func (*N2MbsSmInfo) GetNgapDataOk

func (o *N2MbsSmInfo) GetNgapDataOk() (*RefToBinaryData, bool)

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

func (*N2MbsSmInfo) GetNgapIeType

func (o *N2MbsSmInfo) GetNgapIeType() NgapIeType

GetNgapIeType returns the NgapIeType field value

func (*N2MbsSmInfo) GetNgapIeTypeOk

func (o *N2MbsSmInfo) GetNgapIeTypeOk() (*NgapIeType, bool)

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

func (N2MbsSmInfo) MarshalJSON

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

func (*N2MbsSmInfo) SetNgapData

func (o *N2MbsSmInfo) SetNgapData(v RefToBinaryData)

SetNgapData sets field value

func (*N2MbsSmInfo) SetNgapIeType

func (o *N2MbsSmInfo) SetNgapIeType(v NgapIeType)

SetNgapIeType sets field value

func (N2MbsSmInfo) ToMap

func (o N2MbsSmInfo) 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 NcgiTai

type NcgiTai struct {
	Tai Tai `json:"tai"`
	// List of List of NR cell ids
	CellList []Ncgi `json:"cellList"`
}

NcgiTai List of NR cell ids, with their pertaining TAIs

func NewNcgiTai

func NewNcgiTai(tai Tai, cellList []Ncgi) *NcgiTai

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

func NewNcgiTaiWithDefaults

func NewNcgiTaiWithDefaults() *NcgiTai

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

func (*NcgiTai) GetCellList

func (o *NcgiTai) GetCellList() []Ncgi

GetCellList returns the CellList field value

func (*NcgiTai) GetCellListOk

func (o *NcgiTai) GetCellListOk() ([]Ncgi, bool)

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

func (*NcgiTai) GetTai

func (o *NcgiTai) GetTai() Tai

GetTai returns the Tai field value

func (*NcgiTai) GetTaiOk

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

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

func (NcgiTai) MarshalJSON

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

func (*NcgiTai) SetCellList

func (o *NcgiTai) SetCellList(v []Ncgi)

SetCellList sets field value

func (*NcgiTai) SetTai

func (o *NcgiTai) SetTai(v Tai)

SetTai sets field value

func (NcgiTai) ToMap

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

type NgapIeType

type NgapIeType struct {
	String *string
}

NgapIeType NGAP Information Element Type

func (*NgapIeType) MarshalJSON

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

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

func (*NgapIeType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NonDynamic5Qi

type NonDynamic5Qi struct {
	// Unsigned integer indicating the 5QI Priority Level (see clauses 5.7.3.3 and 5.7.4 of 3GPP TS 23.501, within the range 1 to 127.Values are ordered in decreasing order of priority,  i.e. with 1 as the highest priority and 127 as the lowest priority.
	PriorityLevel *int32 `json:"priorityLevel,omitempty"`
	// Unsigned integer indicating Averaging Window (see clause 5.7.3.6 and 5.7.4 of 3GPP TS 23.501), expressed in milliseconds.
	AverWindow *int32 `json:"averWindow,omitempty"`
	// Unsigned integer indicating Maximum Data Burst Volume (see clauses 5.7.3.7 and 5.7.4 of 3GPP TS 23.501), expressed in Bytes.
	MaxDataBurstVol *int32 `json:"maxDataBurstVol,omitempty"`
	// Unsigned integer indicating Maximum Data Burst Volume (see clauses 5.7.3.7 and 5.7.4 of 3GPP TS 23.501), expressed in Bytes.
	ExtMaxDataBurstVol *int32 `json:"extMaxDataBurstVol,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501 [8])), expressed in 0.01 milliseconds.
	CnPacketDelayBudgetDl *int32 `json:"cnPacketDelayBudgetDl,omitempty"`
	// Unsigned integer indicating Packet Delay Budget (see clauses 5.7.3.4 and 5.7.4 of 3GPP TS 23.501 [8])), expressed in 0.01 milliseconds.
	CnPacketDelayBudgetUl *int32 `json:"cnPacketDelayBudgetUl,omitempty"`
}

NonDynamic5Qi It indicates the QoS Characteristics for a standardized or pre-configured 5QI for downlink and uplink.

func NewNonDynamic5Qi

func NewNonDynamic5Qi() *NonDynamic5Qi

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

func NewNonDynamic5QiWithDefaults

func NewNonDynamic5QiWithDefaults() *NonDynamic5Qi

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

func (*NonDynamic5Qi) GetAverWindow

func (o *NonDynamic5Qi) GetAverWindow() int32

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

func (*NonDynamic5Qi) GetAverWindowOk

func (o *NonDynamic5Qi) GetAverWindowOk() (*int32, bool)

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

func (*NonDynamic5Qi) GetCnPacketDelayBudgetDl

func (o *NonDynamic5Qi) GetCnPacketDelayBudgetDl() int32

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

func (*NonDynamic5Qi) GetCnPacketDelayBudgetDlOk

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

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

func (*NonDynamic5Qi) GetCnPacketDelayBudgetUl

func (o *NonDynamic5Qi) GetCnPacketDelayBudgetUl() int32

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

func (*NonDynamic5Qi) GetCnPacketDelayBudgetUlOk

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

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

func (*NonDynamic5Qi) GetExtMaxDataBurstVol

func (o *NonDynamic5Qi) GetExtMaxDataBurstVol() int32

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

func (*NonDynamic5Qi) GetExtMaxDataBurstVolOk

func (o *NonDynamic5Qi) GetExtMaxDataBurstVolOk() (*int32, bool)

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

func (*NonDynamic5Qi) GetMaxDataBurstVol

func (o *NonDynamic5Qi) GetMaxDataBurstVol() int32

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

func (*NonDynamic5Qi) GetMaxDataBurstVolOk

func (o *NonDynamic5Qi) GetMaxDataBurstVolOk() (*int32, bool)

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

func (*NonDynamic5Qi) GetPriorityLevel

func (o *NonDynamic5Qi) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value if set, zero value otherwise.

func (*NonDynamic5Qi) GetPriorityLevelOk

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

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

func (*NonDynamic5Qi) HasAverWindow

func (o *NonDynamic5Qi) HasAverWindow() bool

HasAverWindow returns a boolean if a field has been set.

func (*NonDynamic5Qi) HasCnPacketDelayBudgetDl

func (o *NonDynamic5Qi) HasCnPacketDelayBudgetDl() bool

HasCnPacketDelayBudgetDl returns a boolean if a field has been set.

func (*NonDynamic5Qi) HasCnPacketDelayBudgetUl

func (o *NonDynamic5Qi) HasCnPacketDelayBudgetUl() bool

HasCnPacketDelayBudgetUl returns a boolean if a field has been set.

func (*NonDynamic5Qi) HasExtMaxDataBurstVol

func (o *NonDynamic5Qi) HasExtMaxDataBurstVol() bool

HasExtMaxDataBurstVol returns a boolean if a field has been set.

func (*NonDynamic5Qi) HasMaxDataBurstVol

func (o *NonDynamic5Qi) HasMaxDataBurstVol() bool

HasMaxDataBurstVol returns a boolean if a field has been set.

func (*NonDynamic5Qi) HasPriorityLevel

func (o *NonDynamic5Qi) HasPriorityLevel() bool

HasPriorityLevel returns a boolean if a field has been set.

func (NonDynamic5Qi) MarshalJSON

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

func (*NonDynamic5Qi) SetAverWindow

func (o *NonDynamic5Qi) SetAverWindow(v int32)

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

func (*NonDynamic5Qi) SetCnPacketDelayBudgetDl

func (o *NonDynamic5Qi) SetCnPacketDelayBudgetDl(v int32)

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

func (*NonDynamic5Qi) SetCnPacketDelayBudgetUl

func (o *NonDynamic5Qi) SetCnPacketDelayBudgetUl(v int32)

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

func (*NonDynamic5Qi) SetExtMaxDataBurstVol

func (o *NonDynamic5Qi) SetExtMaxDataBurstVol(v int32)

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

func (*NonDynamic5Qi) SetMaxDataBurstVol

func (o *NonDynamic5Qi) SetMaxDataBurstVol(v int32)

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

func (*NonDynamic5Qi) SetPriorityLevel

func (o *NonDynamic5Qi) SetPriorityLevel(v int32)

SetPriorityLevel gets a reference to the given int32 and assigns it to the PriorityLevel field.

func (NonDynamic5Qi) ToMap

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

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

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

func (NullableAcceptableMbsServInfo) Get

func (NullableAcceptableMbsServInfo) IsSet

func (NullableAcceptableMbsServInfo) MarshalJSON

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

func (*NullableAcceptableMbsServInfo) Set

func (*NullableAcceptableMbsServInfo) UnmarshalJSON

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

func (*NullableAcceptableMbsServInfo) Unset

func (v *NullableAcceptableMbsServInfo) 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 NullableArp

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

func NewNullableArp

func NewNullableArp(val *Arp) *NullableArp

func (NullableArp) Get

func (v NullableArp) Get() *Arp

func (NullableArp) IsSet

func (v NullableArp) IsSet() bool

func (NullableArp) MarshalJSON

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

func (*NullableArp) Set

func (v *NullableArp) Set(val *Arp)

func (*NullableArp) UnmarshalJSON

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

func (*NullableArp) Unset

func (v *NullableArp) Unset()

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

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

func (NullableBroadcastDeliveryStatus) Get

func (NullableBroadcastDeliveryStatus) IsSet

func (NullableBroadcastDeliveryStatus) MarshalJSON

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

func (*NullableBroadcastDeliveryStatus) Set

func (*NullableBroadcastDeliveryStatus) UnmarshalJSON

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

func (*NullableBroadcastDeliveryStatus) Unset

type NullableCivicAddress

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

func NewNullableCivicAddress

func NewNullableCivicAddress(val *CivicAddress) *NullableCivicAddress

func (NullableCivicAddress) Get

func (NullableCivicAddress) IsSet

func (v NullableCivicAddress) IsSet() bool

func (NullableCivicAddress) MarshalJSON

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

func (*NullableCivicAddress) Set

func (v *NullableCivicAddress) Set(val *CivicAddress)

func (*NullableCivicAddress) UnmarshalJSON

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

func (*NullableCivicAddress) Unset

func (v *NullableCivicAddress) Unset()

type NullableContextStatusEvent

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

func NewNullableContextStatusEvent

func NewNullableContextStatusEvent(val *ContextStatusEvent) *NullableContextStatusEvent

func (NullableContextStatusEvent) Get

func (NullableContextStatusEvent) IsSet

func (v NullableContextStatusEvent) IsSet() bool

func (NullableContextStatusEvent) MarshalJSON

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

func (*NullableContextStatusEvent) Set

func (*NullableContextStatusEvent) UnmarshalJSON

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

func (*NullableContextStatusEvent) Unset

func (v *NullableContextStatusEvent) Unset()

type NullableContextStatusEventReport

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

func (NullableContextStatusEventReport) Get

func (NullableContextStatusEventReport) IsSet

func (NullableContextStatusEventReport) MarshalJSON

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

func (*NullableContextStatusEventReport) Set

func (*NullableContextStatusEventReport) UnmarshalJSON

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

func (*NullableContextStatusEventReport) Unset

type NullableContextStatusEventType

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

func (NullableContextStatusEventType) Get

func (NullableContextStatusEventType) IsSet

func (NullableContextStatusEventType) MarshalJSON

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

func (*NullableContextStatusEventType) Set

func (*NullableContextStatusEventType) UnmarshalJSON

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

func (*NullableContextStatusEventType) Unset

func (v *NullableContextStatusEventType) Unset()

type NullableContextStatusNotifyReqData

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

func (NullableContextStatusNotifyReqData) Get

func (NullableContextStatusNotifyReqData) IsSet

func (NullableContextStatusNotifyReqData) MarshalJSON

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

func (*NullableContextStatusNotifyReqData) Set

func (*NullableContextStatusNotifyReqData) UnmarshalJSON

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

func (*NullableContextStatusNotifyReqData) Unset

type NullableContextStatusSubscribeReqData

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

func (NullableContextStatusSubscribeReqData) Get

func (NullableContextStatusSubscribeReqData) IsSet

func (NullableContextStatusSubscribeReqData) MarshalJSON

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

func (*NullableContextStatusSubscribeReqData) Set

func (*NullableContextStatusSubscribeReqData) UnmarshalJSON

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

func (*NullableContextStatusSubscribeReqData) Unset

type NullableContextStatusSubscribeRspData

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

func (NullableContextStatusSubscribeRspData) Get

func (NullableContextStatusSubscribeRspData) IsSet

func (NullableContextStatusSubscribeRspData) MarshalJSON

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

func (*NullableContextStatusSubscribeRspData) Set

func (*NullableContextStatusSubscribeRspData) UnmarshalJSON

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

func (*NullableContextStatusSubscribeRspData) Unset

type NullableContextStatusSubscription

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

func (NullableContextStatusSubscription) Get

func (NullableContextStatusSubscription) IsSet

func (NullableContextStatusSubscription) MarshalJSON

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

func (*NullableContextStatusSubscription) Set

func (*NullableContextStatusSubscription) UnmarshalJSON

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

func (*NullableContextStatusSubscription) Unset

type NullableContextUpdate200Response

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

func (NullableContextUpdate200Response) Get

func (NullableContextUpdate200Response) IsSet

func (NullableContextUpdate200Response) MarshalJSON

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

func (*NullableContextUpdate200Response) Set

func (*NullableContextUpdate200Response) UnmarshalJSON

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

func (*NullableContextUpdate200Response) Unset

type NullableContextUpdateAction

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

func NewNullableContextUpdateAction

func NewNullableContextUpdateAction(val *ContextUpdateAction) *NullableContextUpdateAction

func (NullableContextUpdateAction) Get

func (NullableContextUpdateAction) IsSet

func (NullableContextUpdateAction) MarshalJSON

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

func (*NullableContextUpdateAction) Set

func (*NullableContextUpdateAction) UnmarshalJSON

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

func (*NullableContextUpdateAction) Unset

func (v *NullableContextUpdateAction) Unset()

type NullableContextUpdateReqData

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

func NewNullableContextUpdateReqData

func NewNullableContextUpdateReqData(val *ContextUpdateReqData) *NullableContextUpdateReqData

func (NullableContextUpdateReqData) Get

func (NullableContextUpdateReqData) IsSet

func (NullableContextUpdateReqData) MarshalJSON

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

func (*NullableContextUpdateReqData) Set

func (*NullableContextUpdateReqData) UnmarshalJSON

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

func (*NullableContextUpdateReqData) Unset

func (v *NullableContextUpdateReqData) Unset()

type NullableContextUpdateRequest

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

func NewNullableContextUpdateRequest

func NewNullableContextUpdateRequest(val *ContextUpdateRequest) *NullableContextUpdateRequest

func (NullableContextUpdateRequest) Get

func (NullableContextUpdateRequest) IsSet

func (NullableContextUpdateRequest) MarshalJSON

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

func (*NullableContextUpdateRequest) Set

func (*NullableContextUpdateRequest) UnmarshalJSON

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

func (*NullableContextUpdateRequest) Unset

func (v *NullableContextUpdateRequest) Unset()

type NullableContextUpdateRspData

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

func NewNullableContextUpdateRspData

func NewNullableContextUpdateRspData(val *ContextUpdateRspData) *NullableContextUpdateRspData

func (NullableContextUpdateRspData) Get

func (NullableContextUpdateRspData) IsSet

func (NullableContextUpdateRspData) MarshalJSON

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

func (*NullableContextUpdateRspData) Set

func (*NullableContextUpdateRspData) UnmarshalJSON

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

func (*NullableContextUpdateRspData) Unset

func (v *NullableContextUpdateRspData) Unset()

type NullableCreateReqData

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

func NewNullableCreateReqData

func NewNullableCreateReqData(val *CreateReqData) *NullableCreateReqData

func (NullableCreateReqData) Get

func (NullableCreateReqData) IsSet

func (v NullableCreateReqData) IsSet() bool

func (NullableCreateReqData) MarshalJSON

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

func (*NullableCreateReqData) Set

func (v *NullableCreateReqData) Set(val *CreateReqData)

func (*NullableCreateReqData) UnmarshalJSON

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

func (*NullableCreateReqData) Unset

func (v *NullableCreateReqData) Unset()

type NullableCreateRspData

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

func NewNullableCreateRspData

func NewNullableCreateRspData(val *CreateRspData) *NullableCreateRspData

func (NullableCreateRspData) Get

func (NullableCreateRspData) IsSet

func (v NullableCreateRspData) IsSet() bool

func (NullableCreateRspData) MarshalJSON

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

func (*NullableCreateRspData) Set

func (v *NullableCreateRspData) Set(val *CreateRspData)

func (*NullableCreateRspData) UnmarshalJSON

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

func (*NullableCreateRspData) Unset

func (v *NullableCreateRspData) Unset()

type NullableDynamic5Qi

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

func NewNullableDynamic5Qi

func NewNullableDynamic5Qi(val *Dynamic5Qi) *NullableDynamic5Qi

func (NullableDynamic5Qi) Get

func (v NullableDynamic5Qi) Get() *Dynamic5Qi

func (NullableDynamic5Qi) IsSet

func (v NullableDynamic5Qi) IsSet() bool

func (NullableDynamic5Qi) MarshalJSON

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

func (*NullableDynamic5Qi) Set

func (v *NullableDynamic5Qi) Set(val *Dynamic5Qi)

func (*NullableDynamic5Qi) UnmarshalJSON

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

func (*NullableDynamic5Qi) Unset

func (v *NullableDynamic5Qi) Unset()

type NullableEllipsoidArc

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

func NewNullableEllipsoidArc

func NewNullableEllipsoidArc(val *EllipsoidArc) *NullableEllipsoidArc

func (NullableEllipsoidArc) Get

func (NullableEllipsoidArc) IsSet

func (v NullableEllipsoidArc) IsSet() bool

func (NullableEllipsoidArc) MarshalJSON

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

func (*NullableEllipsoidArc) Set

func (v *NullableEllipsoidArc) Set(val *EllipsoidArc)

func (*NullableEllipsoidArc) UnmarshalJSON

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

func (*NullableEllipsoidArc) Unset

func (v *NullableEllipsoidArc) Unset()

type NullableEllipsoidArcAllOf

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

func NewNullableEllipsoidArcAllOf

func NewNullableEllipsoidArcAllOf(val *EllipsoidArcAllOf) *NullableEllipsoidArcAllOf

func (NullableEllipsoidArcAllOf) Get

func (NullableEllipsoidArcAllOf) IsSet

func (v NullableEllipsoidArcAllOf) IsSet() bool

func (NullableEllipsoidArcAllOf) MarshalJSON

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

func (*NullableEllipsoidArcAllOf) Set

func (*NullableEllipsoidArcAllOf) UnmarshalJSON

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

func (*NullableEllipsoidArcAllOf) Unset

func (v *NullableEllipsoidArcAllOf) Unset()

type NullableExtMbsSession

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

func NewNullableExtMbsSession

func NewNullableExtMbsSession(val *ExtMbsSession) *NullableExtMbsSession

func (NullableExtMbsSession) Get

func (NullableExtMbsSession) IsSet

func (v NullableExtMbsSession) IsSet() bool

func (NullableExtMbsSession) MarshalJSON

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

func (*NullableExtMbsSession) Set

func (v *NullableExtMbsSession) Set(val *ExtMbsSession)

func (*NullableExtMbsSession) UnmarshalJSON

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

func (*NullableExtMbsSession) Unset

func (v *NullableExtMbsSession) Unset()

type NullableExtProblemDetails

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

func NewNullableExtProblemDetails

func NewNullableExtProblemDetails(val *ExtProblemDetails) *NullableExtProblemDetails

func (NullableExtProblemDetails) Get

func (NullableExtProblemDetails) IsSet

func (v NullableExtProblemDetails) IsSet() bool

func (NullableExtProblemDetails) MarshalJSON

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

func (*NullableExtProblemDetails) Set

func (*NullableExtProblemDetails) UnmarshalJSON

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

func (*NullableExtProblemDetails) Unset

func (v *NullableExtProblemDetails) Unset()

type NullableExternalMbsServiceArea

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

func (NullableExternalMbsServiceArea) Get

func (NullableExternalMbsServiceArea) IsSet

func (NullableExternalMbsServiceArea) MarshalJSON

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

func (*NullableExternalMbsServiceArea) Set

func (*NullableExternalMbsServiceArea) UnmarshalJSON

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

func (*NullableExternalMbsServiceArea) Unset

func (v *NullableExternalMbsServiceArea) 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 NullableGADShape

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

func NewNullableGADShape

func NewNullableGADShape(val *GADShape) *NullableGADShape

func (NullableGADShape) Get

func (v NullableGADShape) Get() *GADShape

func (NullableGADShape) IsSet

func (v NullableGADShape) IsSet() bool

func (NullableGADShape) MarshalJSON

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

func (*NullableGADShape) Set

func (v *NullableGADShape) Set(val *GADShape)

func (*NullableGADShape) UnmarshalJSON

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

func (*NullableGADShape) Unset

func (v *NullableGADShape) Unset()

type NullableGNbId

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

func NewNullableGNbId

func NewNullableGNbId(val *GNbId) *NullableGNbId

func (NullableGNbId) Get

func (v NullableGNbId) Get() *GNbId

func (NullableGNbId) IsSet

func (v NullableGNbId) IsSet() bool

func (NullableGNbId) MarshalJSON

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

func (*NullableGNbId) Set

func (v *NullableGNbId) Set(val *GNbId)

func (*NullableGNbId) UnmarshalJSON

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

func (*NullableGNbId) Unset

func (v *NullableGNbId) Unset()

type NullableGbrQosFlowInformation

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

func (NullableGbrQosFlowInformation) Get

func (NullableGbrQosFlowInformation) IsSet

func (NullableGbrQosFlowInformation) MarshalJSON

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

func (*NullableGbrQosFlowInformation) Set

func (*NullableGbrQosFlowInformation) UnmarshalJSON

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

func (*NullableGbrQosFlowInformation) Unset

func (v *NullableGbrQosFlowInformation) Unset()

type NullableGeographicArea

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

func NewNullableGeographicArea

func NewNullableGeographicArea(val *GeographicArea) *NullableGeographicArea

func (NullableGeographicArea) Get

func (NullableGeographicArea) IsSet

func (v NullableGeographicArea) IsSet() bool

func (NullableGeographicArea) MarshalJSON

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

func (*NullableGeographicArea) Set

func (*NullableGeographicArea) UnmarshalJSON

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

func (*NullableGeographicArea) Unset

func (v *NullableGeographicArea) Unset()

type NullableGeographicalCoordinates

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

func (NullableGeographicalCoordinates) Get

func (NullableGeographicalCoordinates) IsSet

func (NullableGeographicalCoordinates) MarshalJSON

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

func (*NullableGeographicalCoordinates) Set

func (*NullableGeographicalCoordinates) UnmarshalJSON

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

func (*NullableGeographicalCoordinates) 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 NullableIngressTunAddrInfo

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

func NewNullableIngressTunAddrInfo

func NewNullableIngressTunAddrInfo(val *IngressTunAddrInfo) *NullableIngressTunAddrInfo

func (NullableIngressTunAddrInfo) Get

func (NullableIngressTunAddrInfo) IsSet

func (v NullableIngressTunAddrInfo) IsSet() bool

func (NullableIngressTunAddrInfo) MarshalJSON

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

func (*NullableIngressTunAddrInfo) Set

func (*NullableIngressTunAddrInfo) UnmarshalJSON

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

func (*NullableIngressTunAddrInfo) Unset

func (v *NullableIngressTunAddrInfo) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInvalidParam

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

func NewNullableInvalidParam

func NewNullableInvalidParam(val *InvalidParam) *NullableInvalidParam

func (NullableInvalidParam) Get

func (NullableInvalidParam) IsSet

func (v NullableInvalidParam) IsSet() bool

func (NullableInvalidParam) MarshalJSON

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

func (*NullableInvalidParam) Set

func (v *NullableInvalidParam) Set(val *InvalidParam)

func (*NullableInvalidParam) UnmarshalJSON

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

func (*NullableInvalidParam) Unset

func (v *NullableInvalidParam) Unset()

type NullableIpAddr

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

func NewNullableIpAddr

func NewNullableIpAddr(val *IpAddr) *NullableIpAddr

func (NullableIpAddr) Get

func (v NullableIpAddr) Get() *IpAddr

func (NullableIpAddr) IsSet

func (v NullableIpAddr) IsSet() bool

func (NullableIpAddr) MarshalJSON

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

func (*NullableIpAddr) Set

func (v *NullableIpAddr) Set(val *IpAddr)

func (*NullableIpAddr) UnmarshalJSON

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

func (*NullableIpAddr) Unset

func (v *NullableIpAddr) Unset()

type NullableIpv6Addr

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

func NewNullableIpv6Addr

func NewNullableIpv6Addr(val *Ipv6Addr) *NullableIpv6Addr

func (NullableIpv6Addr) Get

func (v NullableIpv6Addr) Get() *Ipv6Addr

func (NullableIpv6Addr) IsSet

func (v NullableIpv6Addr) IsSet() bool

func (NullableIpv6Addr) MarshalJSON

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

func (*NullableIpv6Addr) Set

func (v *NullableIpv6Addr) Set(val *Ipv6Addr)

func (*NullableIpv6Addr) UnmarshalJSON

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

func (*NullableIpv6Addr) Unset

func (v *NullableIpv6Addr) Unset()

type NullableIpv6Prefix

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

func NewNullableIpv6Prefix

func NewNullableIpv6Prefix(val *Ipv6Prefix) *NullableIpv6Prefix

func (NullableIpv6Prefix) Get

func (v NullableIpv6Prefix) Get() *Ipv6Prefix

func (NullableIpv6Prefix) IsSet

func (v NullableIpv6Prefix) IsSet() bool

func (NullableIpv6Prefix) MarshalJSON

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

func (*NullableIpv6Prefix) Set

func (v *NullableIpv6Prefix) Set(val *Ipv6Prefix)

func (*NullableIpv6Prefix) UnmarshalJSON

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

func (*NullableIpv6Prefix) Unset

func (v *NullableIpv6Prefix) Unset()

type NullableLocal2dPointUncertaintyEllipse

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

func (NullableLocal2dPointUncertaintyEllipse) Get

func (NullableLocal2dPointUncertaintyEllipse) IsSet

func (NullableLocal2dPointUncertaintyEllipse) MarshalJSON

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

func (*NullableLocal2dPointUncertaintyEllipse) Set

func (*NullableLocal2dPointUncertaintyEllipse) UnmarshalJSON

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

func (*NullableLocal2dPointUncertaintyEllipse) Unset

type NullableLocal2dPointUncertaintyEllipseAllOf

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

func (NullableLocal2dPointUncertaintyEllipseAllOf) Get

func (NullableLocal2dPointUncertaintyEllipseAllOf) IsSet

func (NullableLocal2dPointUncertaintyEllipseAllOf) MarshalJSON

func (*NullableLocal2dPointUncertaintyEllipseAllOf) Set

func (*NullableLocal2dPointUncertaintyEllipseAllOf) UnmarshalJSON

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

func (*NullableLocal2dPointUncertaintyEllipseAllOf) Unset

type NullableLocal3dPointUncertaintyEllipsoid

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

func (NullableLocal3dPointUncertaintyEllipsoid) Get

func (NullableLocal3dPointUncertaintyEllipsoid) IsSet

func (NullableLocal3dPointUncertaintyEllipsoid) MarshalJSON

func (*NullableLocal3dPointUncertaintyEllipsoid) Set

func (*NullableLocal3dPointUncertaintyEllipsoid) UnmarshalJSON

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

func (*NullableLocal3dPointUncertaintyEllipsoid) Unset

type NullableLocal3dPointUncertaintyEllipsoidAllOf

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

func (NullableLocal3dPointUncertaintyEllipsoidAllOf) Get

func (NullableLocal3dPointUncertaintyEllipsoidAllOf) IsSet

func (NullableLocal3dPointUncertaintyEllipsoidAllOf) MarshalJSON

func (*NullableLocal3dPointUncertaintyEllipsoidAllOf) Set

func (*NullableLocal3dPointUncertaintyEllipsoidAllOf) UnmarshalJSON

func (*NullableLocal3dPointUncertaintyEllipsoidAllOf) Unset

type NullableLocalOrigin

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

func NewNullableLocalOrigin

func NewNullableLocalOrigin(val *LocalOrigin) *NullableLocalOrigin

func (NullableLocalOrigin) Get

func (NullableLocalOrigin) IsSet

func (v NullableLocalOrigin) IsSet() bool

func (NullableLocalOrigin) MarshalJSON

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

func (*NullableLocalOrigin) Set

func (v *NullableLocalOrigin) Set(val *LocalOrigin)

func (*NullableLocalOrigin) UnmarshalJSON

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

func (*NullableLocalOrigin) Unset

func (v *NullableLocalOrigin) Unset()

type NullableMbsContextInfo

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

func NewNullableMbsContextInfo

func NewNullableMbsContextInfo(val *MbsContextInfo) *NullableMbsContextInfo

func (NullableMbsContextInfo) Get

func (NullableMbsContextInfo) IsSet

func (v NullableMbsContextInfo) IsSet() bool

func (NullableMbsContextInfo) MarshalJSON

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

func (*NullableMbsContextInfo) Set

func (*NullableMbsContextInfo) UnmarshalJSON

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

func (*NullableMbsContextInfo) Unset

func (v *NullableMbsContextInfo) Unset()

type NullableMbsKeyInfo

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

func NewNullableMbsKeyInfo

func NewNullableMbsKeyInfo(val *MbsKeyInfo) *NullableMbsKeyInfo

func (NullableMbsKeyInfo) Get

func (v NullableMbsKeyInfo) Get() *MbsKeyInfo

func (NullableMbsKeyInfo) IsSet

func (v NullableMbsKeyInfo) IsSet() bool

func (NullableMbsKeyInfo) MarshalJSON

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

func (*NullableMbsKeyInfo) Set

func (v *NullableMbsKeyInfo) Set(val *MbsKeyInfo)

func (*NullableMbsKeyInfo) UnmarshalJSON

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

func (*NullableMbsKeyInfo) Unset

func (v *NullableMbsKeyInfo) Unset()

type NullableMbsMediaComp

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

func NewNullableMbsMediaComp

func NewNullableMbsMediaComp(val *MbsMediaComp) *NullableMbsMediaComp

func (NullableMbsMediaComp) Get

func (NullableMbsMediaComp) IsSet

func (v NullableMbsMediaComp) IsSet() bool

func (NullableMbsMediaComp) MarshalJSON

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

func (*NullableMbsMediaComp) Set

func (v *NullableMbsMediaComp) Set(val *MbsMediaComp)

func (*NullableMbsMediaComp) UnmarshalJSON

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

func (*NullableMbsMediaComp) Unset

func (v *NullableMbsMediaComp) Unset()

type NullableMbsMediaCompRm

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

func NewNullableMbsMediaCompRm

func NewNullableMbsMediaCompRm(val *MbsMediaCompRm) *NullableMbsMediaCompRm

func (NullableMbsMediaCompRm) Get

func (NullableMbsMediaCompRm) IsSet

func (v NullableMbsMediaCompRm) IsSet() bool

func (NullableMbsMediaCompRm) MarshalJSON

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

func (*NullableMbsMediaCompRm) Set

func (*NullableMbsMediaCompRm) UnmarshalJSON

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

func (*NullableMbsMediaCompRm) Unset

func (v *NullableMbsMediaCompRm) Unset()

type NullableMbsMediaInfo

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

func NewNullableMbsMediaInfo

func NewNullableMbsMediaInfo(val *MbsMediaInfo) *NullableMbsMediaInfo

func (NullableMbsMediaInfo) Get

func (NullableMbsMediaInfo) IsSet

func (v NullableMbsMediaInfo) IsSet() bool

func (NullableMbsMediaInfo) MarshalJSON

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

func (*NullableMbsMediaInfo) Set

func (v *NullableMbsMediaInfo) Set(val *MbsMediaInfo)

func (*NullableMbsMediaInfo) UnmarshalJSON

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

func (*NullableMbsMediaInfo) Unset

func (v *NullableMbsMediaInfo) Unset()

type NullableMbsQoSReq

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

func NewNullableMbsQoSReq

func NewNullableMbsQoSReq(val *MbsQoSReq) *NullableMbsQoSReq

func (NullableMbsQoSReq) Get

func (v NullableMbsQoSReq) Get() *MbsQoSReq

func (NullableMbsQoSReq) IsSet

func (v NullableMbsQoSReq) IsSet() bool

func (NullableMbsQoSReq) MarshalJSON

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

func (*NullableMbsQoSReq) Set

func (v *NullableMbsQoSReq) Set(val *MbsQoSReq)

func (*NullableMbsQoSReq) UnmarshalJSON

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

func (*NullableMbsQoSReq) Unset

func (v *NullableMbsQoSReq) Unset()

type NullableMbsSecurityContext

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

func NewNullableMbsSecurityContext

func NewNullableMbsSecurityContext(val *MbsSecurityContext) *NullableMbsSecurityContext

func (NullableMbsSecurityContext) Get

func (NullableMbsSecurityContext) IsSet

func (v NullableMbsSecurityContext) IsSet() bool

func (NullableMbsSecurityContext) MarshalJSON

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

func (*NullableMbsSecurityContext) Set

func (*NullableMbsSecurityContext) UnmarshalJSON

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

func (*NullableMbsSecurityContext) Unset

func (v *NullableMbsSecurityContext) Unset()

type NullableMbsServiceArea

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

func NewNullableMbsServiceArea

func NewNullableMbsServiceArea(val *MbsServiceArea) *NullableMbsServiceArea

func (NullableMbsServiceArea) Get

func (NullableMbsServiceArea) IsSet

func (v NullableMbsServiceArea) IsSet() bool

func (NullableMbsServiceArea) MarshalJSON

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

func (*NullableMbsServiceArea) Set

func (*NullableMbsServiceArea) UnmarshalJSON

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

func (*NullableMbsServiceArea) Unset

func (v *NullableMbsServiceArea) Unset()

type NullableMbsServiceAreaInfo

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

func NewNullableMbsServiceAreaInfo

func NewNullableMbsServiceAreaInfo(val *MbsServiceAreaInfo) *NullableMbsServiceAreaInfo

func (NullableMbsServiceAreaInfo) Get

func (NullableMbsServiceAreaInfo) IsSet

func (v NullableMbsServiceAreaInfo) IsSet() bool

func (NullableMbsServiceAreaInfo) MarshalJSON

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

func (*NullableMbsServiceAreaInfo) Set

func (*NullableMbsServiceAreaInfo) UnmarshalJSON

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

func (*NullableMbsServiceAreaInfo) Unset

func (v *NullableMbsServiceAreaInfo) Unset()

type NullableMbsServiceInfo

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

func NewNullableMbsServiceInfo

func NewNullableMbsServiceInfo(val *MbsServiceInfo) *NullableMbsServiceInfo

func (NullableMbsServiceInfo) Get

func (NullableMbsServiceInfo) IsSet

func (v NullableMbsServiceInfo) IsSet() bool

func (NullableMbsServiceInfo) MarshalJSON

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

func (*NullableMbsServiceInfo) Set

func (*NullableMbsServiceInfo) UnmarshalJSON

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

func (*NullableMbsServiceInfo) Unset

func (v *NullableMbsServiceInfo) Unset()

type NullableMbsServiceType

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

func NewNullableMbsServiceType

func NewNullableMbsServiceType(val *MbsServiceType) *NullableMbsServiceType

func (NullableMbsServiceType) Get

func (NullableMbsServiceType) IsSet

func (v NullableMbsServiceType) IsSet() bool

func (NullableMbsServiceType) MarshalJSON

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

func (*NullableMbsServiceType) Set

func (*NullableMbsServiceType) UnmarshalJSON

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

func (*NullableMbsServiceType) Unset

func (v *NullableMbsServiceType) Unset()

type NullableMbsSession

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

func NewNullableMbsSession

func NewNullableMbsSession(val *MbsSession) *NullableMbsSession

func (NullableMbsSession) Get

func (v NullableMbsSession) Get() *MbsSession

func (NullableMbsSession) IsSet

func (v NullableMbsSession) IsSet() bool

func (NullableMbsSession) MarshalJSON

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

func (*NullableMbsSession) Set

func (v *NullableMbsSession) Set(val *MbsSession)

func (*NullableMbsSession) UnmarshalJSON

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

func (*NullableMbsSession) Unset

func (v *NullableMbsSession) Unset()

type NullableMbsSessionActivityStatus

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

func (NullableMbsSessionActivityStatus) Get

func (NullableMbsSessionActivityStatus) IsSet

func (NullableMbsSessionActivityStatus) MarshalJSON

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

func (*NullableMbsSessionActivityStatus) Set

func (*NullableMbsSessionActivityStatus) UnmarshalJSON

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

func (*NullableMbsSessionActivityStatus) Unset

type NullableMbsSessionEvent

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

func NewNullableMbsSessionEvent

func NewNullableMbsSessionEvent(val *MbsSessionEvent) *NullableMbsSessionEvent

func (NullableMbsSessionEvent) Get

func (NullableMbsSessionEvent) IsSet

func (v NullableMbsSessionEvent) IsSet() bool

func (NullableMbsSessionEvent) MarshalJSON

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

func (*NullableMbsSessionEvent) Set

func (*NullableMbsSessionEvent) UnmarshalJSON

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

func (*NullableMbsSessionEvent) Unset

func (v *NullableMbsSessionEvent) Unset()

type NullableMbsSessionEventReport

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

func (NullableMbsSessionEventReport) Get

func (NullableMbsSessionEventReport) IsSet

func (NullableMbsSessionEventReport) MarshalJSON

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

func (*NullableMbsSessionEventReport) Set

func (*NullableMbsSessionEventReport) UnmarshalJSON

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

func (*NullableMbsSessionEventReport) Unset

func (v *NullableMbsSessionEventReport) Unset()

type NullableMbsSessionEventReportList

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

func (NullableMbsSessionEventReportList) Get

func (NullableMbsSessionEventReportList) IsSet

func (NullableMbsSessionEventReportList) MarshalJSON

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

func (*NullableMbsSessionEventReportList) Set

func (*NullableMbsSessionEventReportList) UnmarshalJSON

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

func (*NullableMbsSessionEventReportList) Unset

type NullableMbsSessionEventType

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

func NewNullableMbsSessionEventType

func NewNullableMbsSessionEventType(val *MbsSessionEventType) *NullableMbsSessionEventType

func (NullableMbsSessionEventType) Get

func (NullableMbsSessionEventType) IsSet

func (NullableMbsSessionEventType) MarshalJSON

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

func (*NullableMbsSessionEventType) Set

func (*NullableMbsSessionEventType) UnmarshalJSON

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

func (*NullableMbsSessionEventType) Unset

func (v *NullableMbsSessionEventType) Unset()

type NullableMbsSessionExtension

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

func NewNullableMbsSessionExtension

func NewNullableMbsSessionExtension(val *MbsSessionExtension) *NullableMbsSessionExtension

func (NullableMbsSessionExtension) Get

func (NullableMbsSessionExtension) IsSet

func (NullableMbsSessionExtension) MarshalJSON

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

func (*NullableMbsSessionExtension) Set

func (*NullableMbsSessionExtension) UnmarshalJSON

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

func (*NullableMbsSessionExtension) Unset

func (v *NullableMbsSessionExtension) Unset()

type NullableMbsSessionId

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

func NewNullableMbsSessionId

func NewNullableMbsSessionId(val *MbsSessionId) *NullableMbsSessionId

func (NullableMbsSessionId) Get

func (NullableMbsSessionId) IsSet

func (v NullableMbsSessionId) IsSet() bool

func (NullableMbsSessionId) MarshalJSON

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

func (*NullableMbsSessionId) Set

func (v *NullableMbsSessionId) Set(val *MbsSessionId)

func (*NullableMbsSessionId) UnmarshalJSON

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

func (*NullableMbsSessionId) Unset

func (v *NullableMbsSessionId) Unset()

type NullableMbsSessionSubscription

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

func (NullableMbsSessionSubscription) Get

func (NullableMbsSessionSubscription) IsSet

func (NullableMbsSessionSubscription) MarshalJSON

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

func (*NullableMbsSessionSubscription) Set

func (*NullableMbsSessionSubscription) UnmarshalJSON

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

func (*NullableMbsSessionSubscription) Unset

func (v *NullableMbsSessionSubscription) 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 NullableMulticastTransportAddressChangeInfo

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

func (NullableMulticastTransportAddressChangeInfo) Get

func (NullableMulticastTransportAddressChangeInfo) IsSet

func (NullableMulticastTransportAddressChangeInfo) MarshalJSON

func (*NullableMulticastTransportAddressChangeInfo) Set

func (*NullableMulticastTransportAddressChangeInfo) UnmarshalJSON

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

func (*NullableMulticastTransportAddressChangeInfo) Unset

type NullableN2MbsSmInfo

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

func NewNullableN2MbsSmInfo

func NewNullableN2MbsSmInfo(val *N2MbsSmInfo) *NullableN2MbsSmInfo

func (NullableN2MbsSmInfo) Get

func (NullableN2MbsSmInfo) IsSet

func (v NullableN2MbsSmInfo) IsSet() bool

func (NullableN2MbsSmInfo) MarshalJSON

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

func (*NullableN2MbsSmInfo) Set

func (v *NullableN2MbsSmInfo) Set(val *N2MbsSmInfo)

func (*NullableN2MbsSmInfo) UnmarshalJSON

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

func (*NullableN2MbsSmInfo) Unset

func (v *NullableN2MbsSmInfo) 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 NullableNcgiTai

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

func NewNullableNcgiTai

func NewNullableNcgiTai(val *NcgiTai) *NullableNcgiTai

func (NullableNcgiTai) Get

func (v NullableNcgiTai) Get() *NcgiTai

func (NullableNcgiTai) IsSet

func (v NullableNcgiTai) IsSet() bool

func (NullableNcgiTai) MarshalJSON

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

func (*NullableNcgiTai) Set

func (v *NullableNcgiTai) Set(val *NcgiTai)

func (*NullableNcgiTai) UnmarshalJSON

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

func (*NullableNcgiTai) Unset

func (v *NullableNcgiTai) Unset()

type NullableNgapIeType

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

func NewNullableNgapIeType

func NewNullableNgapIeType(val *NgapIeType) *NullableNgapIeType

func (NullableNgapIeType) Get

func (v NullableNgapIeType) Get() *NgapIeType

func (NullableNgapIeType) IsSet

func (v NullableNgapIeType) IsSet() bool

func (NullableNgapIeType) MarshalJSON

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

func (*NullableNgapIeType) Set

func (v *NullableNgapIeType) Set(val *NgapIeType)

func (*NullableNgapIeType) UnmarshalJSON

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

func (*NullableNgapIeType) Unset

func (v *NullableNgapIeType) Unset()

type NullableNonDynamic5Qi

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

func NewNullableNonDynamic5Qi

func NewNullableNonDynamic5Qi(val *NonDynamic5Qi) *NullableNonDynamic5Qi

func (NullableNonDynamic5Qi) Get

func (NullableNonDynamic5Qi) IsSet

func (v NullableNonDynamic5Qi) IsSet() bool

func (NullableNonDynamic5Qi) MarshalJSON

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

func (*NullableNonDynamic5Qi) Set

func (v *NullableNonDynamic5Qi) Set(val *NonDynamic5Qi)

func (*NullableNonDynamic5Qi) UnmarshalJSON

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

func (*NullableNonDynamic5Qi) Unset

func (v *NullableNonDynamic5Qi) Unset()

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

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

func NewNullablePatchItem

func NewNullablePatchItem(val *PatchItem) *NullablePatchItem

func (NullablePatchItem) Get

func (v NullablePatchItem) Get() *PatchItem

func (NullablePatchItem) IsSet

func (v NullablePatchItem) IsSet() bool

func (NullablePatchItem) MarshalJSON

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

func (*NullablePatchItem) Set

func (v *NullablePatchItem) Set(val *PatchItem)

func (*NullablePatchItem) UnmarshalJSON

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

func (*NullablePatchItem) Unset

func (v *NullablePatchItem) Unset()

type NullablePatchOperation

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

func NewNullablePatchOperation

func NewNullablePatchOperation(val *PatchOperation) *NullablePatchOperation

func (NullablePatchOperation) Get

func (NullablePatchOperation) IsSet

func (v NullablePatchOperation) IsSet() bool

func (NullablePatchOperation) MarshalJSON

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

func (*NullablePatchOperation) Set

func (*NullablePatchOperation) UnmarshalJSON

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

func (*NullablePatchOperation) Unset

func (v *NullablePatchOperation) Unset()

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

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

func NewNullablePoint

func NewNullablePoint(val *Point) *NullablePoint

func (NullablePoint) Get

func (v NullablePoint) Get() *Point

func (NullablePoint) IsSet

func (v NullablePoint) IsSet() bool

func (NullablePoint) MarshalJSON

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

func (*NullablePoint) Set

func (v *NullablePoint) Set(val *Point)

func (*NullablePoint) UnmarshalJSON

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

func (*NullablePoint) Unset

func (v *NullablePoint) Unset()

type NullablePointAllOf

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

func NewNullablePointAllOf

func NewNullablePointAllOf(val *PointAllOf) *NullablePointAllOf

func (NullablePointAllOf) Get

func (v NullablePointAllOf) Get() *PointAllOf

func (NullablePointAllOf) IsSet

func (v NullablePointAllOf) IsSet() bool

func (NullablePointAllOf) MarshalJSON

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

func (*NullablePointAllOf) Set

func (v *NullablePointAllOf) Set(val *PointAllOf)

func (*NullablePointAllOf) UnmarshalJSON

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

func (*NullablePointAllOf) Unset

func (v *NullablePointAllOf) Unset()

type NullablePointAltitude

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

func NewNullablePointAltitude

func NewNullablePointAltitude(val *PointAltitude) *NullablePointAltitude

func (NullablePointAltitude) Get

func (NullablePointAltitude) IsSet

func (v NullablePointAltitude) IsSet() bool

func (NullablePointAltitude) MarshalJSON

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

func (*NullablePointAltitude) Set

func (v *NullablePointAltitude) Set(val *PointAltitude)

func (*NullablePointAltitude) UnmarshalJSON

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

func (*NullablePointAltitude) Unset

func (v *NullablePointAltitude) Unset()

type NullablePointAltitudeAllOf

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

func NewNullablePointAltitudeAllOf

func NewNullablePointAltitudeAllOf(val *PointAltitudeAllOf) *NullablePointAltitudeAllOf

func (NullablePointAltitudeAllOf) Get

func (NullablePointAltitudeAllOf) IsSet

func (v NullablePointAltitudeAllOf) IsSet() bool

func (NullablePointAltitudeAllOf) MarshalJSON

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

func (*NullablePointAltitudeAllOf) Set

func (*NullablePointAltitudeAllOf) UnmarshalJSON

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

func (*NullablePointAltitudeAllOf) Unset

func (v *NullablePointAltitudeAllOf) Unset()

type NullablePointAltitudeUncertainty

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

func (NullablePointAltitudeUncertainty) Get

func (NullablePointAltitudeUncertainty) IsSet

func (NullablePointAltitudeUncertainty) MarshalJSON

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

func (*NullablePointAltitudeUncertainty) Set

func (*NullablePointAltitudeUncertainty) UnmarshalJSON

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

func (*NullablePointAltitudeUncertainty) Unset

type NullablePointAltitudeUncertaintyAllOf

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

func (NullablePointAltitudeUncertaintyAllOf) Get

func (NullablePointAltitudeUncertaintyAllOf) IsSet

func (NullablePointAltitudeUncertaintyAllOf) MarshalJSON

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

func (*NullablePointAltitudeUncertaintyAllOf) Set

func (*NullablePointAltitudeUncertaintyAllOf) UnmarshalJSON

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

func (*NullablePointAltitudeUncertaintyAllOf) Unset

type NullablePointUncertaintyCircle

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

func (NullablePointUncertaintyCircle) Get

func (NullablePointUncertaintyCircle) IsSet

func (NullablePointUncertaintyCircle) MarshalJSON

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

func (*NullablePointUncertaintyCircle) Set

func (*NullablePointUncertaintyCircle) UnmarshalJSON

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

func (*NullablePointUncertaintyCircle) Unset

func (v *NullablePointUncertaintyCircle) Unset()

type NullablePointUncertaintyCircleAllOf

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

func (NullablePointUncertaintyCircleAllOf) Get

func (NullablePointUncertaintyCircleAllOf) IsSet

func (NullablePointUncertaintyCircleAllOf) MarshalJSON

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

func (*NullablePointUncertaintyCircleAllOf) Set

func (*NullablePointUncertaintyCircleAllOf) UnmarshalJSON

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

func (*NullablePointUncertaintyCircleAllOf) Unset

type NullablePointUncertaintyEllipse

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

func (NullablePointUncertaintyEllipse) Get

func (NullablePointUncertaintyEllipse) IsSet

func (NullablePointUncertaintyEllipse) MarshalJSON

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

func (*NullablePointUncertaintyEllipse) Set

func (*NullablePointUncertaintyEllipse) UnmarshalJSON

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

func (*NullablePointUncertaintyEllipse) Unset

type NullablePointUncertaintyEllipseAllOf

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

func (NullablePointUncertaintyEllipseAllOf) Get

func (NullablePointUncertaintyEllipseAllOf) IsSet

func (NullablePointUncertaintyEllipseAllOf) MarshalJSON

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

func (*NullablePointUncertaintyEllipseAllOf) Set

func (*NullablePointUncertaintyEllipseAllOf) UnmarshalJSON

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

func (*NullablePointUncertaintyEllipseAllOf) Unset

type NullablePolygon

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

func NewNullablePolygon

func NewNullablePolygon(val *Polygon) *NullablePolygon

func (NullablePolygon) Get

func (v NullablePolygon) Get() *Polygon

func (NullablePolygon) IsSet

func (v NullablePolygon) IsSet() bool

func (NullablePolygon) MarshalJSON

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

func (*NullablePolygon) Set

func (v *NullablePolygon) Set(val *Polygon)

func (*NullablePolygon) UnmarshalJSON

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

func (*NullablePolygon) Unset

func (v *NullablePolygon) Unset()

type NullablePolygonAllOf

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

func NewNullablePolygonAllOf

func NewNullablePolygonAllOf(val *PolygonAllOf) *NullablePolygonAllOf

func (NullablePolygonAllOf) Get

func (NullablePolygonAllOf) IsSet

func (v NullablePolygonAllOf) IsSet() bool

func (NullablePolygonAllOf) MarshalJSON

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

func (*NullablePolygonAllOf) Set

func (v *NullablePolygonAllOf) Set(val *PolygonAllOf)

func (*NullablePolygonAllOf) UnmarshalJSON

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

func (*NullablePolygonAllOf) Unset

func (v *NullablePolygonAllOf) Unset()

type NullablePreemptionCapability

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

func NewNullablePreemptionCapability

func NewNullablePreemptionCapability(val *PreemptionCapability) *NullablePreemptionCapability

func (NullablePreemptionCapability) Get

func (NullablePreemptionCapability) IsSet

func (NullablePreemptionCapability) MarshalJSON

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

func (*NullablePreemptionCapability) Set

func (*NullablePreemptionCapability) UnmarshalJSON

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

func (*NullablePreemptionCapability) Unset

func (v *NullablePreemptionCapability) Unset()

type NullablePreemptionVulnerability

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

func (NullablePreemptionVulnerability) Get

func (NullablePreemptionVulnerability) IsSet

func (NullablePreemptionVulnerability) MarshalJSON

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

func (*NullablePreemptionVulnerability) Set

func (*NullablePreemptionVulnerability) UnmarshalJSON

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

func (*NullablePreemptionVulnerability) Unset

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

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

func (NullableProblemDetailsExtension) Get

func (NullableProblemDetailsExtension) IsSet

func (NullableProblemDetailsExtension) MarshalJSON

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

func (*NullableProblemDetailsExtension) Set

func (*NullableProblemDetailsExtension) UnmarshalJSON

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

func (*NullableProblemDetailsExtension) Unset

type NullableQosFlowAddModifyRequestItem

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

func (NullableQosFlowAddModifyRequestItem) Get

func (NullableQosFlowAddModifyRequestItem) IsSet

func (NullableQosFlowAddModifyRequestItem) MarshalJSON

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

func (*NullableQosFlowAddModifyRequestItem) Set

func (*NullableQosFlowAddModifyRequestItem) UnmarshalJSON

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

func (*NullableQosFlowAddModifyRequestItem) Unset

type NullableQosFlowProfile

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

func NewNullableQosFlowProfile

func NewNullableQosFlowProfile(val *QosFlowProfile) *NullableQosFlowProfile

func (NullableQosFlowProfile) Get

func (NullableQosFlowProfile) IsSet

func (v NullableQosFlowProfile) IsSet() bool

func (NullableQosFlowProfile) MarshalJSON

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

func (*NullableQosFlowProfile) Set

func (*NullableQosFlowProfile) UnmarshalJSON

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

func (*NullableQosFlowProfile) Unset

func (v *NullableQosFlowProfile) Unset()

type NullableQosInfo

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

func NewNullableQosInfo

func NewNullableQosInfo(val *QosInfo) *NullableQosInfo

func (NullableQosInfo) Get

func (v NullableQosInfo) Get() *QosInfo

func (NullableQosInfo) IsSet

func (v NullableQosInfo) IsSet() bool

func (NullableQosInfo) MarshalJSON

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

func (*NullableQosInfo) Set

func (v *NullableQosInfo) Set(val *QosInfo)

func (*NullableQosInfo) UnmarshalJSON

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

func (*NullableQosInfo) Unset

func (v *NullableQosInfo) Unset()

type NullableQosResourceType

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

func NewNullableQosResourceType

func NewNullableQosResourceType(val *QosResourceType) *NullableQosResourceType

func (NullableQosResourceType) Get

func (NullableQosResourceType) IsSet

func (v NullableQosResourceType) IsSet() bool

func (NullableQosResourceType) MarshalJSON

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

func (*NullableQosResourceType) Set

func (*NullableQosResourceType) UnmarshalJSON

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

func (*NullableQosResourceType) Unset

func (v *NullableQosResourceType) Unset()

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

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

func NewNullableRefToBinaryData

func NewNullableRefToBinaryData(val *RefToBinaryData) *NullableRefToBinaryData

func (NullableRefToBinaryData) Get

func (NullableRefToBinaryData) IsSet

func (v NullableRefToBinaryData) IsSet() bool

func (NullableRefToBinaryData) MarshalJSON

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

func (*NullableRefToBinaryData) Set

func (*NullableRefToBinaryData) UnmarshalJSON

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

func (*NullableRefToBinaryData) Unset

func (v *NullableRefToBinaryData) Unset()

type NullableRelativeCartesianLocation

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

func (NullableRelativeCartesianLocation) Get

func (NullableRelativeCartesianLocation) IsSet

func (NullableRelativeCartesianLocation) MarshalJSON

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

func (*NullableRelativeCartesianLocation) Set

func (*NullableRelativeCartesianLocation) UnmarshalJSON

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

func (*NullableRelativeCartesianLocation) Unset

type NullableReportingMode

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

func NewNullableReportingMode

func NewNullableReportingMode(val *ReportingMode) *NullableReportingMode

func (NullableReportingMode) Get

func (NullableReportingMode) IsSet

func (v NullableReportingMode) IsSet() bool

func (NullableReportingMode) MarshalJSON

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

func (*NullableReportingMode) Set

func (v *NullableReportingMode) Set(val *ReportingMode)

func (*NullableReportingMode) UnmarshalJSON

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

func (*NullableReportingMode) Unset

func (v *NullableReportingMode) 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 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 NullableSsm

type NullableSsm struct {
	// contains filtered or unexported fields
}

func NewNullableSsm

func NewNullableSsm(val *Ssm) *NullableSsm

func (NullableSsm) Get

func (v NullableSsm) Get() *Ssm

func (NullableSsm) IsSet

func (v NullableSsm) IsSet() bool

func (NullableSsm) MarshalJSON

func (v NullableSsm) MarshalJSON() ([]byte, error)

func (*NullableSsm) Set

func (v *NullableSsm) Set(val *Ssm)

func (*NullableSsm) UnmarshalJSON

func (v *NullableSsm) UnmarshalJSON(src []byte) error

func (*NullableSsm) Unset

func (v *NullableSsm) Unset()

type NullableStatusNotifyReqData

type NullableStatusNotifyReqData struct {
	// contains filtered or unexported fields
}

func NewNullableStatusNotifyReqData

func NewNullableStatusNotifyReqData(val *StatusNotifyReqData) *NullableStatusNotifyReqData

func (NullableStatusNotifyReqData) Get

func (NullableStatusNotifyReqData) IsSet

func (NullableStatusNotifyReqData) MarshalJSON

func (v NullableStatusNotifyReqData) MarshalJSON() ([]byte, error)

func (*NullableStatusNotifyReqData) Set

func (*NullableStatusNotifyReqData) UnmarshalJSON

func (v *NullableStatusNotifyReqData) UnmarshalJSON(src []byte) error

func (*NullableStatusNotifyReqData) Unset

func (v *NullableStatusNotifyReqData) Unset()

type NullableStatusSubscribeReqData

type NullableStatusSubscribeReqData struct {
	// contains filtered or unexported fields
}

func (NullableStatusSubscribeReqData) Get

func (NullableStatusSubscribeReqData) IsSet

func (NullableStatusSubscribeReqData) MarshalJSON

func (v NullableStatusSubscribeReqData) MarshalJSON() ([]byte, error)

func (*NullableStatusSubscribeReqData) Set

func (*NullableStatusSubscribeReqData) UnmarshalJSON

func (v *NullableStatusSubscribeReqData) UnmarshalJSON(src []byte) error

func (*NullableStatusSubscribeReqData) Unset

func (v *NullableStatusSubscribeReqData) Unset()

type NullableStatusSubscribeRspData

type NullableStatusSubscribeRspData struct {
	// contains filtered or unexported fields
}

func (NullableStatusSubscribeRspData) Get

func (NullableStatusSubscribeRspData) IsSet

func (NullableStatusSubscribeRspData) MarshalJSON

func (v NullableStatusSubscribeRspData) MarshalJSON() ([]byte, error)

func (*NullableStatusSubscribeRspData) Set

func (*NullableStatusSubscribeRspData) UnmarshalJSON

func (v *NullableStatusSubscribeRspData) UnmarshalJSON(src []byte) error

func (*NullableStatusSubscribeRspData) Unset

func (v *NullableStatusSubscribeRspData) 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 NullableSupportedGADShapes

type NullableSupportedGADShapes struct {
	// contains filtered or unexported fields
}

func NewNullableSupportedGADShapes

func NewNullableSupportedGADShapes(val *SupportedGADShapes) *NullableSupportedGADShapes

func (NullableSupportedGADShapes) Get

func (NullableSupportedGADShapes) IsSet

func (v NullableSupportedGADShapes) IsSet() bool

func (NullableSupportedGADShapes) MarshalJSON

func (v NullableSupportedGADShapes) MarshalJSON() ([]byte, error)

func (*NullableSupportedGADShapes) Set

func (*NullableSupportedGADShapes) UnmarshalJSON

func (v *NullableSupportedGADShapes) UnmarshalJSON(src []byte) error

func (*NullableSupportedGADShapes) Unset

func (v *NullableSupportedGADShapes) Unset()

type NullableTai

type NullableTai struct {
	// contains filtered or unexported fields
}

func NewNullableTai

func NewNullableTai(val *Tai) *NullableTai

func (NullableTai) Get

func (v NullableTai) Get() *Tai

func (NullableTai) IsSet

func (v NullableTai) IsSet() bool

func (NullableTai) MarshalJSON

func (v NullableTai) MarshalJSON() ([]byte, error)

func (*NullableTai) Set

func (v *NullableTai) Set(val *Tai)

func (*NullableTai) UnmarshalJSON

func (v *NullableTai) UnmarshalJSON(src []byte) error

func (*NullableTai) Unset

func (v *NullableTai) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTmgi

type NullableTmgi struct {
	// contains filtered or unexported fields
}

func NewNullableTmgi

func NewNullableTmgi(val *Tmgi) *NullableTmgi

func (NullableTmgi) Get

func (v NullableTmgi) Get() *Tmgi

func (NullableTmgi) IsSet

func (v NullableTmgi) IsSet() bool

func (NullableTmgi) MarshalJSON

func (v NullableTmgi) MarshalJSON() ([]byte, error)

func (*NullableTmgi) Set

func (v *NullableTmgi) Set(val *Tmgi)

func (*NullableTmgi) UnmarshalJSON

func (v *NullableTmgi) UnmarshalJSON(src []byte) error

func (*NullableTmgi) Unset

func (v *NullableTmgi) Unset()

type NullableTunnelAddress

type NullableTunnelAddress struct {
	// contains filtered or unexported fields
}

func NewNullableTunnelAddress

func NewNullableTunnelAddress(val *TunnelAddress) *NullableTunnelAddress

func (NullableTunnelAddress) Get

func (NullableTunnelAddress) IsSet

func (v NullableTunnelAddress) IsSet() bool

func (NullableTunnelAddress) MarshalJSON

func (v NullableTunnelAddress) MarshalJSON() ([]byte, error)

func (*NullableTunnelAddress) Set

func (v *NullableTunnelAddress) Set(val *TunnelAddress)

func (*NullableTunnelAddress) UnmarshalJSON

func (v *NullableTunnelAddress) UnmarshalJSON(src []byte) error

func (*NullableTunnelAddress) Unset

func (v *NullableTunnelAddress) Unset()

type NullableUncertaintyEllipse

type NullableUncertaintyEllipse struct {
	// contains filtered or unexported fields
}

func NewNullableUncertaintyEllipse

func NewNullableUncertaintyEllipse(val *UncertaintyEllipse) *NullableUncertaintyEllipse

func (NullableUncertaintyEllipse) Get

func (NullableUncertaintyEllipse) IsSet

func (v NullableUncertaintyEllipse) IsSet() bool

func (NullableUncertaintyEllipse) MarshalJSON

func (v NullableUncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*NullableUncertaintyEllipse) Set

func (*NullableUncertaintyEllipse) UnmarshalJSON

func (v *NullableUncertaintyEllipse) UnmarshalJSON(src []byte) error

func (*NullableUncertaintyEllipse) Unset

func (v *NullableUncertaintyEllipse) Unset()

type NullableUncertaintyEllipsoid

type NullableUncertaintyEllipsoid struct {
	// contains filtered or unexported fields
}

func NewNullableUncertaintyEllipsoid

func NewNullableUncertaintyEllipsoid(val *UncertaintyEllipsoid) *NullableUncertaintyEllipsoid

func (NullableUncertaintyEllipsoid) Get

func (NullableUncertaintyEllipsoid) IsSet

func (NullableUncertaintyEllipsoid) MarshalJSON

func (v NullableUncertaintyEllipsoid) MarshalJSON() ([]byte, error)

func (*NullableUncertaintyEllipsoid) Set

func (*NullableUncertaintyEllipsoid) UnmarshalJSON

func (v *NullableUncertaintyEllipsoid) UnmarshalJSON(src []byte) error

func (*NullableUncertaintyEllipsoid) Unset

func (v *NullableUncertaintyEllipsoid) Unset()

type PatchItem

type PatchItem struct {
	Op PatchOperation `json:"op"`
	// contains a JSON pointer value (as defined in IETF RFC 6901) that references a location of a resource on which the patch operation shall be performed.
	Path string `json:"path"`
	// indicates the path of the source JSON element (according to JSON Pointer syntax) being moved or copied to the location indicated by the \"path\" attribute.
	From  *string     `json:"from,omitempty"`
	Value interface{} `json:"value,omitempty"`
}

PatchItem it contains information on data to be changed.

func NewPatchItem

func NewPatchItem(op PatchOperation, path string) *PatchItem

NewPatchItem instantiates a new PatchItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPatchItemWithDefaults

func NewPatchItemWithDefaults() *PatchItem

NewPatchItemWithDefaults instantiates a new PatchItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PatchItem) GetFrom

func (o *PatchItem) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*PatchItem) GetFromOk

func (o *PatchItem) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PatchItem) GetOp

func (o *PatchItem) GetOp() PatchOperation

GetOp returns the Op field value

func (*PatchItem) GetOpOk

func (o *PatchItem) GetOpOk() (*PatchOperation, bool)

GetOpOk returns a tuple with the Op field value and a boolean to check if the value has been set.

func (*PatchItem) GetPath

func (o *PatchItem) GetPath() string

GetPath returns the Path field value

func (*PatchItem) GetPathOk

func (o *PatchItem) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (*PatchItem) GetValue

func (o *PatchItem) GetValue() interface{}

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PatchItem) GetValueOk

func (o *PatchItem) GetValueOk() (*interface{}, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PatchItem) HasFrom

func (o *PatchItem) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*PatchItem) HasValue

func (o *PatchItem) HasValue() bool

HasValue returns a boolean if a field has been set.

func (PatchItem) MarshalJSON

func (o PatchItem) MarshalJSON() ([]byte, error)

func (*PatchItem) SetFrom

func (o *PatchItem) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*PatchItem) SetOp

func (o *PatchItem) SetOp(v PatchOperation)

SetOp sets field value

func (*PatchItem) SetPath

func (o *PatchItem) SetPath(v string)

SetPath sets field value

func (*PatchItem) SetValue

func (o *PatchItem) SetValue(v interface{})

SetValue gets a reference to the given interface{} and assigns it to the Value field.

func (PatchItem) ToMap

func (o PatchItem) ToMap() (map[string]interface{}, error)

type PatchOperation

type PatchOperation struct {
	String *string
}

PatchOperation Operations as defined in IETF RFC 6902.

func (*PatchOperation) MarshalJSON

func (src *PatchOperation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PatchOperation) UnmarshalJSON

func (dst *PatchOperation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type 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 Point

type Point struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
}

Point Ellipsoid Point.

func NewPoint

func NewPoint(point GeographicalCoordinates, shape SupportedGADShapes) *Point

NewPoint instantiates a new Point object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointWithDefaults

func NewPointWithDefaults() *Point

NewPointWithDefaults instantiates a new Point object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Point) GetPoint

func (o *Point) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*Point) GetPointOk

func (o *Point) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (Point) MarshalJSON

func (o Point) MarshalJSON() ([]byte, error)

func (*Point) SetPoint

func (o *Point) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (Point) ToMap

func (o Point) ToMap() (map[string]interface{}, error)

type PointAllOf

type PointAllOf struct {
	Point GeographicalCoordinates `json:"point"`
}

PointAllOf struct for PointAllOf

func NewPointAllOf

func NewPointAllOf(point GeographicalCoordinates) *PointAllOf

NewPointAllOf instantiates a new PointAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointAllOfWithDefaults

func NewPointAllOfWithDefaults() *PointAllOf

NewPointAllOfWithDefaults instantiates a new PointAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointAllOf) GetPoint

func (o *PointAllOf) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*PointAllOf) GetPointOk

func (o *PointAllOf) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (PointAllOf) MarshalJSON

func (o PointAllOf) MarshalJSON() ([]byte, error)

func (*PointAllOf) SetPoint

func (o *PointAllOf) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (PointAllOf) ToMap

func (o PointAllOf) ToMap() (map[string]interface{}, error)

type PointAltitude

type PointAltitude struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude float64 `json:"altitude"`
}

PointAltitude Ellipsoid point with altitude.

func NewPointAltitude

func NewPointAltitude(point GeographicalCoordinates, altitude float64, shape SupportedGADShapes) *PointAltitude

NewPointAltitude instantiates a new PointAltitude object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointAltitudeWithDefaults

func NewPointAltitudeWithDefaults() *PointAltitude

NewPointAltitudeWithDefaults instantiates a new PointAltitude object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointAltitude) GetAltitude

func (o *PointAltitude) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitude) GetAltitudeOk

func (o *PointAltitude) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitude) GetPoint

func (o *PointAltitude) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*PointAltitude) GetPointOk

func (o *PointAltitude) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (PointAltitude) MarshalJSON

func (o PointAltitude) MarshalJSON() ([]byte, error)

func (*PointAltitude) SetAltitude

func (o *PointAltitude) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitude) SetPoint

func (o *PointAltitude) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (PointAltitude) ToMap

func (o PointAltitude) ToMap() (map[string]interface{}, error)

type PointAltitudeAllOf

type PointAltitudeAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude float64 `json:"altitude"`
}

PointAltitudeAllOf struct for PointAltitudeAllOf

func NewPointAltitudeAllOf

func NewPointAltitudeAllOf(point GeographicalCoordinates, altitude float64) *PointAltitudeAllOf

NewPointAltitudeAllOf instantiates a new PointAltitudeAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointAltitudeAllOfWithDefaults

func NewPointAltitudeAllOfWithDefaults() *PointAltitudeAllOf

NewPointAltitudeAllOfWithDefaults instantiates a new PointAltitudeAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointAltitudeAllOf) GetAltitude

func (o *PointAltitudeAllOf) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitudeAllOf) GetAltitudeOk

func (o *PointAltitudeAllOf) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitudeAllOf) GetPoint

GetPoint returns the Point field value

func (*PointAltitudeAllOf) GetPointOk

func (o *PointAltitudeAllOf) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (PointAltitudeAllOf) MarshalJSON

func (o PointAltitudeAllOf) MarshalJSON() ([]byte, error)

func (*PointAltitudeAllOf) SetAltitude

func (o *PointAltitudeAllOf) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitudeAllOf) SetPoint

SetPoint sets field value

func (PointAltitudeAllOf) ToMap

func (o PointAltitudeAllOf) ToMap() (map[string]interface{}, error)

type PointAltitudeUncertainty

type PointAltitudeUncertainty struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude           float64            `json:"altitude"`
	UncertaintyEllipse UncertaintyEllipse `json:"uncertaintyEllipse"`
	// Indicates value of uncertainty.
	UncertaintyAltitude float32 `json:"uncertaintyAltitude"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointAltitudeUncertainty Ellipsoid point with altitude and uncertainty ellipsoid.

func NewPointAltitudeUncertainty

func NewPointAltitudeUncertainty(point GeographicalCoordinates, altitude float64, uncertaintyEllipse UncertaintyEllipse, uncertaintyAltitude float32, confidence int32, shape SupportedGADShapes) *PointAltitudeUncertainty

NewPointAltitudeUncertainty instantiates a new PointAltitudeUncertainty object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointAltitudeUncertaintyWithDefaults

func NewPointAltitudeUncertaintyWithDefaults() *PointAltitudeUncertainty

NewPointAltitudeUncertaintyWithDefaults instantiates a new PointAltitudeUncertainty object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointAltitudeUncertainty) GetAltitude

func (o *PointAltitudeUncertainty) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitudeUncertainty) GetAltitudeOk

func (o *PointAltitudeUncertainty) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetConfidence

func (o *PointAltitudeUncertainty) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointAltitudeUncertainty) GetConfidenceOk

func (o *PointAltitudeUncertainty) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetPoint

GetPoint returns the Point field value

func (*PointAltitudeUncertainty) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetUncertaintyAltitude

func (o *PointAltitudeUncertainty) GetUncertaintyAltitude() float32

GetUncertaintyAltitude returns the UncertaintyAltitude field value

func (*PointAltitudeUncertainty) GetUncertaintyAltitudeOk

func (o *PointAltitudeUncertainty) GetUncertaintyAltitudeOk() (*float32, bool)

GetUncertaintyAltitudeOk returns a tuple with the UncertaintyAltitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetUncertaintyEllipse

func (o *PointAltitudeUncertainty) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointAltitudeUncertainty) GetUncertaintyEllipseOk

func (o *PointAltitudeUncertainty) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointAltitudeUncertainty) MarshalJSON

func (o PointAltitudeUncertainty) MarshalJSON() ([]byte, error)

func (*PointAltitudeUncertainty) SetAltitude

func (o *PointAltitudeUncertainty) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitudeUncertainty) SetConfidence

func (o *PointAltitudeUncertainty) SetConfidence(v int32)

SetConfidence sets field value

func (*PointAltitudeUncertainty) SetPoint

SetPoint sets field value

func (*PointAltitudeUncertainty) SetUncertaintyAltitude

func (o *PointAltitudeUncertainty) SetUncertaintyAltitude(v float32)

SetUncertaintyAltitude sets field value

func (*PointAltitudeUncertainty) SetUncertaintyEllipse

func (o *PointAltitudeUncertainty) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointAltitudeUncertainty) ToMap

func (o PointAltitudeUncertainty) ToMap() (map[string]interface{}, error)

type PointAltitudeUncertaintyAllOf

type PointAltitudeUncertaintyAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude           float64            `json:"altitude"`
	UncertaintyEllipse UncertaintyEllipse `json:"uncertaintyEllipse"`
	// Indicates value of uncertainty.
	UncertaintyAltitude float32 `json:"uncertaintyAltitude"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointAltitudeUncertaintyAllOf struct for PointAltitudeUncertaintyAllOf

func NewPointAltitudeUncertaintyAllOf

func NewPointAltitudeUncertaintyAllOf(point GeographicalCoordinates, altitude float64, uncertaintyEllipse UncertaintyEllipse, uncertaintyAltitude float32, confidence int32) *PointAltitudeUncertaintyAllOf

NewPointAltitudeUncertaintyAllOf instantiates a new PointAltitudeUncertaintyAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointAltitudeUncertaintyAllOfWithDefaults

func NewPointAltitudeUncertaintyAllOfWithDefaults() *PointAltitudeUncertaintyAllOf

NewPointAltitudeUncertaintyAllOfWithDefaults instantiates a new PointAltitudeUncertaintyAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointAltitudeUncertaintyAllOf) GetAltitude

func (o *PointAltitudeUncertaintyAllOf) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitudeUncertaintyAllOf) GetAltitudeOk

func (o *PointAltitudeUncertaintyAllOf) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertaintyAllOf) GetConfidence

func (o *PointAltitudeUncertaintyAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointAltitudeUncertaintyAllOf) GetConfidenceOk

func (o *PointAltitudeUncertaintyAllOf) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertaintyAllOf) GetPoint

GetPoint returns the Point field value

func (*PointAltitudeUncertaintyAllOf) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyAltitude

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyAltitude() float32

GetUncertaintyAltitude returns the UncertaintyAltitude field value

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyAltitudeOk

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyAltitudeOk() (*float32, bool)

GetUncertaintyAltitudeOk returns a tuple with the UncertaintyAltitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyEllipse

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyEllipseOk

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointAltitudeUncertaintyAllOf) MarshalJSON

func (o PointAltitudeUncertaintyAllOf) MarshalJSON() ([]byte, error)

func (*PointAltitudeUncertaintyAllOf) SetAltitude

func (o *PointAltitudeUncertaintyAllOf) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitudeUncertaintyAllOf) SetConfidence

func (o *PointAltitudeUncertaintyAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*PointAltitudeUncertaintyAllOf) SetPoint

SetPoint sets field value

func (*PointAltitudeUncertaintyAllOf) SetUncertaintyAltitude

func (o *PointAltitudeUncertaintyAllOf) SetUncertaintyAltitude(v float32)

SetUncertaintyAltitude sets field value

func (*PointAltitudeUncertaintyAllOf) SetUncertaintyEllipse

func (o *PointAltitudeUncertaintyAllOf) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointAltitudeUncertaintyAllOf) ToMap

func (o PointAltitudeUncertaintyAllOf) ToMap() (map[string]interface{}, error)

type PointUncertaintyCircle

type PointUncertaintyCircle struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of uncertainty.
	Uncertainty float32 `json:"uncertainty"`
}

PointUncertaintyCircle Ellipsoid point with uncertainty circle.

func NewPointUncertaintyCircle

func NewPointUncertaintyCircle(point GeographicalCoordinates, uncertainty float32, shape SupportedGADShapes) *PointUncertaintyCircle

NewPointUncertaintyCircle instantiates a new PointUncertaintyCircle object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointUncertaintyCircleWithDefaults

func NewPointUncertaintyCircleWithDefaults() *PointUncertaintyCircle

NewPointUncertaintyCircleWithDefaults instantiates a new PointUncertaintyCircle object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointUncertaintyCircle) GetPoint

GetPoint returns the Point field value

func (*PointUncertaintyCircle) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyCircle) GetUncertainty

func (o *PointUncertaintyCircle) GetUncertainty() float32

GetUncertainty returns the Uncertainty field value

func (*PointUncertaintyCircle) GetUncertaintyOk

func (o *PointUncertaintyCircle) GetUncertaintyOk() (*float32, bool)

GetUncertaintyOk returns a tuple with the Uncertainty field value and a boolean to check if the value has been set.

func (PointUncertaintyCircle) MarshalJSON

func (o PointUncertaintyCircle) MarshalJSON() ([]byte, error)

func (*PointUncertaintyCircle) SetPoint

SetPoint sets field value

func (*PointUncertaintyCircle) SetUncertainty

func (o *PointUncertaintyCircle) SetUncertainty(v float32)

SetUncertainty sets field value

func (PointUncertaintyCircle) ToMap

func (o PointUncertaintyCircle) ToMap() (map[string]interface{}, error)

type PointUncertaintyCircleAllOf

type PointUncertaintyCircleAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of uncertainty.
	Uncertainty float32 `json:"uncertainty"`
}

PointUncertaintyCircleAllOf struct for PointUncertaintyCircleAllOf

func NewPointUncertaintyCircleAllOf

func NewPointUncertaintyCircleAllOf(point GeographicalCoordinates, uncertainty float32) *PointUncertaintyCircleAllOf

NewPointUncertaintyCircleAllOf instantiates a new PointUncertaintyCircleAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointUncertaintyCircleAllOfWithDefaults

func NewPointUncertaintyCircleAllOfWithDefaults() *PointUncertaintyCircleAllOf

NewPointUncertaintyCircleAllOfWithDefaults instantiates a new PointUncertaintyCircleAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointUncertaintyCircleAllOf) GetPoint

GetPoint returns the Point field value

func (*PointUncertaintyCircleAllOf) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyCircleAllOf) GetUncertainty

func (o *PointUncertaintyCircleAllOf) GetUncertainty() float32

GetUncertainty returns the Uncertainty field value

func (*PointUncertaintyCircleAllOf) GetUncertaintyOk

func (o *PointUncertaintyCircleAllOf) GetUncertaintyOk() (*float32, bool)

GetUncertaintyOk returns a tuple with the Uncertainty field value and a boolean to check if the value has been set.

func (PointUncertaintyCircleAllOf) MarshalJSON

func (o PointUncertaintyCircleAllOf) MarshalJSON() ([]byte, error)

func (*PointUncertaintyCircleAllOf) SetPoint

SetPoint sets field value

func (*PointUncertaintyCircleAllOf) SetUncertainty

func (o *PointUncertaintyCircleAllOf) SetUncertainty(v float32)

SetUncertainty sets field value

func (PointUncertaintyCircleAllOf) ToMap

func (o PointUncertaintyCircleAllOf) ToMap() (map[string]interface{}, error)

type PointUncertaintyEllipse

type PointUncertaintyEllipse struct {
	GADShape
	Point              GeographicalCoordinates `json:"point"`
	UncertaintyEllipse UncertaintyEllipse      `json:"uncertaintyEllipse"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointUncertaintyEllipse Ellipsoid point with uncertainty ellipse.

func NewPointUncertaintyEllipse

func NewPointUncertaintyEllipse(point GeographicalCoordinates, uncertaintyEllipse UncertaintyEllipse, confidence int32, shape SupportedGADShapes) *PointUncertaintyEllipse

NewPointUncertaintyEllipse instantiates a new PointUncertaintyEllipse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointUncertaintyEllipseWithDefaults

func NewPointUncertaintyEllipseWithDefaults() *PointUncertaintyEllipse

NewPointUncertaintyEllipseWithDefaults instantiates a new PointUncertaintyEllipse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointUncertaintyEllipse) GetConfidence

func (o *PointUncertaintyEllipse) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointUncertaintyEllipse) GetConfidenceOk

func (o *PointUncertaintyEllipse) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipse) GetPoint

GetPoint returns the Point field value

func (*PointUncertaintyEllipse) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipse) GetUncertaintyEllipse

func (o *PointUncertaintyEllipse) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointUncertaintyEllipse) GetUncertaintyEllipseOk

func (o *PointUncertaintyEllipse) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointUncertaintyEllipse) MarshalJSON

func (o PointUncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*PointUncertaintyEllipse) SetConfidence

func (o *PointUncertaintyEllipse) SetConfidence(v int32)

SetConfidence sets field value

func (*PointUncertaintyEllipse) SetPoint

SetPoint sets field value

func (*PointUncertaintyEllipse) SetUncertaintyEllipse

func (o *PointUncertaintyEllipse) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointUncertaintyEllipse) ToMap

func (o PointUncertaintyEllipse) ToMap() (map[string]interface{}, error)

type PointUncertaintyEllipseAllOf

type PointUncertaintyEllipseAllOf struct {
	Point              GeographicalCoordinates `json:"point"`
	UncertaintyEllipse UncertaintyEllipse      `json:"uncertaintyEllipse"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointUncertaintyEllipseAllOf struct for PointUncertaintyEllipseAllOf

func NewPointUncertaintyEllipseAllOf

func NewPointUncertaintyEllipseAllOf(point GeographicalCoordinates, uncertaintyEllipse UncertaintyEllipse, confidence int32) *PointUncertaintyEllipseAllOf

NewPointUncertaintyEllipseAllOf instantiates a new PointUncertaintyEllipseAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointUncertaintyEllipseAllOfWithDefaults

func NewPointUncertaintyEllipseAllOfWithDefaults() *PointUncertaintyEllipseAllOf

NewPointUncertaintyEllipseAllOfWithDefaults instantiates a new PointUncertaintyEllipseAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointUncertaintyEllipseAllOf) GetConfidence

func (o *PointUncertaintyEllipseAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointUncertaintyEllipseAllOf) GetConfidenceOk

func (o *PointUncertaintyEllipseAllOf) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipseAllOf) GetPoint

GetPoint returns the Point field value

func (*PointUncertaintyEllipseAllOf) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipseAllOf) GetUncertaintyEllipse

func (o *PointUncertaintyEllipseAllOf) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointUncertaintyEllipseAllOf) GetUncertaintyEllipseOk

func (o *PointUncertaintyEllipseAllOf) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointUncertaintyEllipseAllOf) MarshalJSON

func (o PointUncertaintyEllipseAllOf) MarshalJSON() ([]byte, error)

func (*PointUncertaintyEllipseAllOf) SetConfidence

func (o *PointUncertaintyEllipseAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*PointUncertaintyEllipseAllOf) SetPoint

SetPoint sets field value

func (*PointUncertaintyEllipseAllOf) SetUncertaintyEllipse

func (o *PointUncertaintyEllipseAllOf) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointUncertaintyEllipseAllOf) ToMap

func (o PointUncertaintyEllipseAllOf) ToMap() (map[string]interface{}, error)

type Polygon

type Polygon struct {
	GADShape
	// List of points.
	PointList []GeographicalCoordinates `json:"pointList"`
}

Polygon Polygon.

func NewPolygon

func NewPolygon(pointList []GeographicalCoordinates, shape SupportedGADShapes) *Polygon

NewPolygon instantiates a new Polygon object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPolygonWithDefaults

func NewPolygonWithDefaults() *Polygon

NewPolygonWithDefaults instantiates a new Polygon object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Polygon) GetPointList

func (o *Polygon) GetPointList() []GeographicalCoordinates

GetPointList returns the PointList field value

func (*Polygon) GetPointListOk

func (o *Polygon) GetPointListOk() ([]GeographicalCoordinates, bool)

GetPointListOk returns a tuple with the PointList field value and a boolean to check if the value has been set.

func (Polygon) MarshalJSON

func (o Polygon) MarshalJSON() ([]byte, error)

func (*Polygon) SetPointList

func (o *Polygon) SetPointList(v []GeographicalCoordinates)

SetPointList sets field value

func (Polygon) ToMap

func (o Polygon) ToMap() (map[string]interface{}, error)

type PolygonAllOf

type PolygonAllOf struct {
	// List of points.
	PointList []GeographicalCoordinates `json:"pointList"`
}

PolygonAllOf struct for PolygonAllOf

func NewPolygonAllOf

func NewPolygonAllOf(pointList []GeographicalCoordinates) *PolygonAllOf

NewPolygonAllOf instantiates a new PolygonAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPolygonAllOfWithDefaults

func NewPolygonAllOfWithDefaults() *PolygonAllOf

NewPolygonAllOfWithDefaults instantiates a new PolygonAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PolygonAllOf) GetPointList

func (o *PolygonAllOf) GetPointList() []GeographicalCoordinates

GetPointList returns the PointList field value

func (*PolygonAllOf) GetPointListOk

func (o *PolygonAllOf) GetPointListOk() ([]GeographicalCoordinates, bool)

GetPointListOk returns a tuple with the PointList field value and a boolean to check if the value has been set.

func (PolygonAllOf) MarshalJSON

func (o PolygonAllOf) MarshalJSON() ([]byte, error)

func (*PolygonAllOf) SetPointList

func (o *PolygonAllOf) SetPointList(v []GeographicalCoordinates)

SetPointList sets field value

func (PolygonAllOf) ToMap

func (o PolygonAllOf) ToMap() (map[string]interface{}, error)

type PreemptionCapability

type PreemptionCapability struct {
	String *string
}

PreemptionCapability The enumeration PreemptionCapability indicates the pre-emption capability of a request on other QoS flows. See clause 5.7.2.2 of 3GPP TS 23.501. It shall comply with the provisions defined in table 5.5.3.1-1.

func (*PreemptionCapability) MarshalJSON

func (src *PreemptionCapability) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PreemptionCapability) UnmarshalJSON

func (dst *PreemptionCapability) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PreemptionVulnerability

type PreemptionVulnerability struct {
	String *string
}

PreemptionVulnerability The enumeration PreemptionVulnerability indicates the pre-emption vulnerability of the QoS flow to pre-emption from other QoS flows. See clause 5.7.2.2 of 3GPP TS 23.501. It shall comply with the provisions defined in table 5.5.3.2-1

func (*PreemptionVulnerability) MarshalJSON

func (src *PreemptionVulnerability) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PreemptionVulnerability) UnmarshalJSON

func (dst *PreemptionVulnerability) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type 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 ProblemDetailsExtension

type ProblemDetailsExtension struct {
	AccMbsServiceInfo *AcceptableMbsServInfo `json:"accMbsServiceInfo,omitempty"`
}

ProblemDetailsExtension Extensions to ProblemDetails

func NewProblemDetailsExtension

func NewProblemDetailsExtension() *ProblemDetailsExtension

NewProblemDetailsExtension instantiates a new ProblemDetailsExtension object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProblemDetailsExtensionWithDefaults

func NewProblemDetailsExtensionWithDefaults() *ProblemDetailsExtension

NewProblemDetailsExtensionWithDefaults instantiates a new ProblemDetailsExtension object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProblemDetailsExtension) GetAccMbsServiceInfo

func (o *ProblemDetailsExtension) GetAccMbsServiceInfo() AcceptableMbsServInfo

GetAccMbsServiceInfo returns the AccMbsServiceInfo field value if set, zero value otherwise.

func (*ProblemDetailsExtension) GetAccMbsServiceInfoOk

func (o *ProblemDetailsExtension) GetAccMbsServiceInfoOk() (*AcceptableMbsServInfo, bool)

GetAccMbsServiceInfoOk returns a tuple with the AccMbsServiceInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetailsExtension) HasAccMbsServiceInfo

func (o *ProblemDetailsExtension) HasAccMbsServiceInfo() bool

HasAccMbsServiceInfo returns a boolean if a field has been set.

func (ProblemDetailsExtension) MarshalJSON

func (o ProblemDetailsExtension) MarshalJSON() ([]byte, error)

func (*ProblemDetailsExtension) SetAccMbsServiceInfo

func (o *ProblemDetailsExtension) SetAccMbsServiceInfo(v AcceptableMbsServInfo)

SetAccMbsServiceInfo gets a reference to the given AcceptableMbsServInfo and assigns it to the AccMbsServiceInfo field.

func (ProblemDetailsExtension) ToMap

func (o ProblemDetailsExtension) ToMap() (map[string]interface{}, error)

type QosFlowAddModifyRequestItem

type QosFlowAddModifyRequestItem struct {
	// Unsigned integer identifying a QoS flow, within the range 0 to 63.
	Qfi            int32           `json:"qfi"`
	QosFlowProfile *QosFlowProfile `json:"qosFlowProfile,omitempty"`
}

QosFlowAddModifyRequestItem Individual MBS QoS flow requested to be created or modified

func NewQosFlowAddModifyRequestItem

func NewQosFlowAddModifyRequestItem(qfi int32) *QosFlowAddModifyRequestItem

NewQosFlowAddModifyRequestItem instantiates a new QosFlowAddModifyRequestItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosFlowAddModifyRequestItemWithDefaults

func NewQosFlowAddModifyRequestItemWithDefaults() *QosFlowAddModifyRequestItem

NewQosFlowAddModifyRequestItemWithDefaults instantiates a new QosFlowAddModifyRequestItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosFlowAddModifyRequestItem) GetQfi

func (o *QosFlowAddModifyRequestItem) GetQfi() int32

GetQfi returns the Qfi field value

func (*QosFlowAddModifyRequestItem) GetQfiOk

func (o *QosFlowAddModifyRequestItem) GetQfiOk() (*int32, bool)

GetQfiOk returns a tuple with the Qfi field value and a boolean to check if the value has been set.

func (*QosFlowAddModifyRequestItem) GetQosFlowProfile

func (o *QosFlowAddModifyRequestItem) GetQosFlowProfile() QosFlowProfile

GetQosFlowProfile returns the QosFlowProfile field value if set, zero value otherwise.

func (*QosFlowAddModifyRequestItem) GetQosFlowProfileOk

func (o *QosFlowAddModifyRequestItem) GetQosFlowProfileOk() (*QosFlowProfile, bool)

GetQosFlowProfileOk returns a tuple with the QosFlowProfile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowAddModifyRequestItem) HasQosFlowProfile

func (o *QosFlowAddModifyRequestItem) HasQosFlowProfile() bool

HasQosFlowProfile returns a boolean if a field has been set.

func (QosFlowAddModifyRequestItem) MarshalJSON

func (o QosFlowAddModifyRequestItem) MarshalJSON() ([]byte, error)

func (*QosFlowAddModifyRequestItem) SetQfi

func (o *QosFlowAddModifyRequestItem) SetQfi(v int32)

SetQfi sets field value

func (*QosFlowAddModifyRequestItem) SetQosFlowProfile

func (o *QosFlowAddModifyRequestItem) SetQosFlowProfile(v QosFlowProfile)

SetQosFlowProfile gets a reference to the given QosFlowProfile and assigns it to the QosFlowProfile field.

func (QosFlowAddModifyRequestItem) ToMap

func (o QosFlowAddModifyRequestItem) ToMap() (map[string]interface{}, error)

type QosFlowProfile

type QosFlowProfile struct {
	// Unsigned integer representing a 5G QoS Identifier (see clause 5.7.2.1 of 3GPP TS 23.501, within the range 0 to 255.
	Var5qi         int32                  `json:"5qi"`
	NonDynamic5Qi  *NonDynamic5Qi         `json:"nonDynamic5Qi,omitempty"`
	Dynamic5Qi     *Dynamic5Qi            `json:"dynamic5Qi,omitempty"`
	Arp            *Arp                   `json:"arp,omitempty"`
	GbrQosFlowInfo *GbrQosFlowInformation `json:"gbrQosFlowInfo,omitempty"`
}

QosFlowProfile MBS QoS flow profile

func NewQosFlowProfile

func NewQosFlowProfile(var5qi int32) *QosFlowProfile

NewQosFlowProfile instantiates a new QosFlowProfile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosFlowProfileWithDefaults

func NewQosFlowProfileWithDefaults() *QosFlowProfile

NewQosFlowProfileWithDefaults instantiates a new QosFlowProfile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosFlowProfile) GetArp

func (o *QosFlowProfile) GetArp() Arp

GetArp returns the Arp field value if set, zero value otherwise.

func (*QosFlowProfile) GetArpOk

func (o *QosFlowProfile) GetArpOk() (*Arp, bool)

GetArpOk returns a tuple with the Arp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowProfile) GetDynamic5Qi

func (o *QosFlowProfile) GetDynamic5Qi() Dynamic5Qi

GetDynamic5Qi returns the Dynamic5Qi field value if set, zero value otherwise.

func (*QosFlowProfile) GetDynamic5QiOk

func (o *QosFlowProfile) GetDynamic5QiOk() (*Dynamic5Qi, bool)

GetDynamic5QiOk returns a tuple with the Dynamic5Qi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowProfile) GetGbrQosFlowInfo

func (o *QosFlowProfile) GetGbrQosFlowInfo() GbrQosFlowInformation

GetGbrQosFlowInfo returns the GbrQosFlowInfo field value if set, zero value otherwise.

func (*QosFlowProfile) GetGbrQosFlowInfoOk

func (o *QosFlowProfile) GetGbrQosFlowInfoOk() (*GbrQosFlowInformation, bool)

GetGbrQosFlowInfoOk returns a tuple with the GbrQosFlowInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowProfile) GetNonDynamic5Qi

func (o *QosFlowProfile) GetNonDynamic5Qi() NonDynamic5Qi

GetNonDynamic5Qi returns the NonDynamic5Qi field value if set, zero value otherwise.

func (*QosFlowProfile) GetNonDynamic5QiOk

func (o *QosFlowProfile) GetNonDynamic5QiOk() (*NonDynamic5Qi, bool)

GetNonDynamic5QiOk returns a tuple with the NonDynamic5Qi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosFlowProfile) GetVar5qi

func (o *QosFlowProfile) GetVar5qi() int32

GetVar5qi returns the Var5qi field value

func (*QosFlowProfile) GetVar5qiOk

func (o *QosFlowProfile) GetVar5qiOk() (*int32, bool)

GetVar5qiOk returns a tuple with the Var5qi field value and a boolean to check if the value has been set.

func (*QosFlowProfile) HasArp

func (o *QosFlowProfile) HasArp() bool

HasArp returns a boolean if a field has been set.

func (*QosFlowProfile) HasDynamic5Qi

func (o *QosFlowProfile) HasDynamic5Qi() bool

HasDynamic5Qi returns a boolean if a field has been set.

func (*QosFlowProfile) HasGbrQosFlowInfo

func (o *QosFlowProfile) HasGbrQosFlowInfo() bool

HasGbrQosFlowInfo returns a boolean if a field has been set.

func (*QosFlowProfile) HasNonDynamic5Qi

func (o *QosFlowProfile) HasNonDynamic5Qi() bool

HasNonDynamic5Qi returns a boolean if a field has been set.

func (QosFlowProfile) MarshalJSON

func (o QosFlowProfile) MarshalJSON() ([]byte, error)

func (*QosFlowProfile) SetArp

func (o *QosFlowProfile) SetArp(v Arp)

SetArp gets a reference to the given Arp and assigns it to the Arp field.

func (*QosFlowProfile) SetDynamic5Qi

func (o *QosFlowProfile) SetDynamic5Qi(v Dynamic5Qi)

SetDynamic5Qi gets a reference to the given Dynamic5Qi and assigns it to the Dynamic5Qi field.

func (*QosFlowProfile) SetGbrQosFlowInfo

func (o *QosFlowProfile) SetGbrQosFlowInfo(v GbrQosFlowInformation)

SetGbrQosFlowInfo gets a reference to the given GbrQosFlowInformation and assigns it to the GbrQosFlowInfo field.

func (*QosFlowProfile) SetNonDynamic5Qi

func (o *QosFlowProfile) SetNonDynamic5Qi(v NonDynamic5Qi)

SetNonDynamic5Qi gets a reference to the given NonDynamic5Qi and assigns it to the NonDynamic5Qi field.

func (*QosFlowProfile) SetVar5qi

func (o *QosFlowProfile) SetVar5qi(v int32)

SetVar5qi sets field value

func (QosFlowProfile) ToMap

func (o QosFlowProfile) ToMap() (map[string]interface{}, error)

type QosInfo

type QosInfo struct {
	QosFlowsAddModRequestList []QosFlowAddModifyRequestItem `json:"qosFlowsAddModRequestList,omitempty"`
	QosFlowsRelRequestList    []int32                       `json:"qosFlowsRelRequestList,omitempty"`
}

QosInfo QoS Information

func NewQosInfo

func NewQosInfo() *QosInfo

NewQosInfo instantiates a new QosInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQosInfoWithDefaults

func NewQosInfoWithDefaults() *QosInfo

NewQosInfoWithDefaults instantiates a new QosInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QosInfo) GetQosFlowsAddModRequestList

func (o *QosInfo) GetQosFlowsAddModRequestList() []QosFlowAddModifyRequestItem

GetQosFlowsAddModRequestList returns the QosFlowsAddModRequestList field value if set, zero value otherwise.

func (*QosInfo) GetQosFlowsAddModRequestListOk

func (o *QosInfo) GetQosFlowsAddModRequestListOk() ([]QosFlowAddModifyRequestItem, bool)

GetQosFlowsAddModRequestListOk returns a tuple with the QosFlowsAddModRequestList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosInfo) GetQosFlowsRelRequestList

func (o *QosInfo) GetQosFlowsRelRequestList() []int32

GetQosFlowsRelRequestList returns the QosFlowsRelRequestList field value if set, zero value otherwise.

func (*QosInfo) GetQosFlowsRelRequestListOk

func (o *QosInfo) GetQosFlowsRelRequestListOk() ([]int32, bool)

GetQosFlowsRelRequestListOk returns a tuple with the QosFlowsRelRequestList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QosInfo) HasQosFlowsAddModRequestList

func (o *QosInfo) HasQosFlowsAddModRequestList() bool

HasQosFlowsAddModRequestList returns a boolean if a field has been set.

func (*QosInfo) HasQosFlowsRelRequestList

func (o *QosInfo) HasQosFlowsRelRequestList() bool

HasQosFlowsRelRequestList returns a boolean if a field has been set.

func (QosInfo) MarshalJSON

func (o QosInfo) MarshalJSON() ([]byte, error)

func (*QosInfo) SetQosFlowsAddModRequestList

func (o *QosInfo) SetQosFlowsAddModRequestList(v []QosFlowAddModifyRequestItem)

SetQosFlowsAddModRequestList gets a reference to the given []QosFlowAddModifyRequestItem and assigns it to the QosFlowsAddModRequestList field.

func (*QosInfo) SetQosFlowsRelRequestList

func (o *QosInfo) SetQosFlowsRelRequestList(v []int32)

SetQosFlowsRelRequestList gets a reference to the given []int32 and assigns it to the QosFlowsRelRequestList field.

func (QosInfo) ToMap

func (o QosInfo) ToMap() (map[string]interface{}, error)

type QosResourceType

type QosResourceType struct {
	String *string
}

QosResourceType The enumeration QosResourceType indicates whether a QoS Flow is non-GBR, delay critical GBR, or non-delay critical GBR (see clauses 5.7.3.4 and 5.7.3.5 of 3GPP TS 23.501). It shall comply with the provisions defined in table 5.5.3.6-1.

func (*QosResourceType) MarshalJSON

func (src *QosResourceType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*QosResourceType) UnmarshalJSON

func (dst *QosResourceType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type 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 RefToBinaryData

type RefToBinaryData struct {
	// This IE shall contain the value of the Content-ID header of the referenced binary body part.
	ContentId string `json:"contentId"`
}

RefToBinaryData This parameter provides information about the referenced binary body data.

func NewRefToBinaryData

func NewRefToBinaryData(contentId string) *RefToBinaryData

NewRefToBinaryData instantiates a new RefToBinaryData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRefToBinaryDataWithDefaults

func NewRefToBinaryDataWithDefaults() *RefToBinaryData

NewRefToBinaryDataWithDefaults instantiates a new RefToBinaryData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RefToBinaryData) GetContentId

func (o *RefToBinaryData) GetContentId() string

GetContentId returns the ContentId field value

func (*RefToBinaryData) GetContentIdOk

func (o *RefToBinaryData) GetContentIdOk() (*string, bool)

GetContentIdOk returns a tuple with the ContentId field value and a boolean to check if the value has been set.

func (RefToBinaryData) MarshalJSON

func (o RefToBinaryData) MarshalJSON() ([]byte, error)

func (*RefToBinaryData) SetContentId

func (o *RefToBinaryData) SetContentId(v string)

SetContentId sets field value

func (RefToBinaryData) ToMap

func (o RefToBinaryData) ToMap() (map[string]interface{}, error)

type RelativeCartesianLocation

type RelativeCartesianLocation struct {
	// string with format 'float' as defined in OpenAPI.
	X float32 `json:"x"`
	// string with format 'float' as defined in OpenAPI.
	Y float32 `json:"y"`
	// string with format 'float' as defined in OpenAPI.
	Z *float32 `json:"z,omitempty"`
}

RelativeCartesianLocation Relative Cartesian Location

func NewRelativeCartesianLocation

func NewRelativeCartesianLocation(x float32, y float32) *RelativeCartesianLocation

NewRelativeCartesianLocation instantiates a new RelativeCartesianLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRelativeCartesianLocationWithDefaults

func NewRelativeCartesianLocationWithDefaults() *RelativeCartesianLocation

NewRelativeCartesianLocationWithDefaults instantiates a new RelativeCartesianLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RelativeCartesianLocation) GetX

GetX returns the X field value

func (*RelativeCartesianLocation) GetXOk

func (o *RelativeCartesianLocation) GetXOk() (*float32, bool)

GetXOk returns a tuple with the X field value and a boolean to check if the value has been set.

func (*RelativeCartesianLocation) GetY

GetY returns the Y field value

func (*RelativeCartesianLocation) GetYOk

func (o *RelativeCartesianLocation) GetYOk() (*float32, bool)

GetYOk returns a tuple with the Y field value and a boolean to check if the value has been set.

func (*RelativeCartesianLocation) GetZ

GetZ returns the Z field value if set, zero value otherwise.

func (*RelativeCartesianLocation) GetZOk

func (o *RelativeCartesianLocation) GetZOk() (*float32, bool)

GetZOk returns a tuple with the Z field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RelativeCartesianLocation) HasZ

func (o *RelativeCartesianLocation) HasZ() bool

HasZ returns a boolean if a field has been set.

func (RelativeCartesianLocation) MarshalJSON

func (o RelativeCartesianLocation) MarshalJSON() ([]byte, error)

func (*RelativeCartesianLocation) SetX

SetX sets field value

func (*RelativeCartesianLocation) SetY

SetY sets field value

func (*RelativeCartesianLocation) SetZ

SetZ gets a reference to the given float32 and assigns it to the Z field.

func (RelativeCartesianLocation) ToMap

func (o RelativeCartesianLocation) ToMap() (map[string]interface{}, error)

type ReportingMode

type ReportingMode struct {
	String *string
}

ReportingMode Reporting Mode

func (*ReportingMode) MarshalJSON

func (src *ReportingMode) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ReportingMode) UnmarshalJSON

func (dst *ReportingMode) 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 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 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 Ssm

type Ssm struct {
	SourceIpAddr IpAddr `json:"sourceIpAddr"`
	DestIpAddr   IpAddr `json:"destIpAddr"`
}

Ssm Source specific IP multicast address

func NewSsm

func NewSsm(sourceIpAddr IpAddr, destIpAddr IpAddr) *Ssm

NewSsm instantiates a new Ssm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSsmWithDefaults

func NewSsmWithDefaults() *Ssm

NewSsmWithDefaults instantiates a new Ssm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Ssm) GetDestIpAddr

func (o *Ssm) GetDestIpAddr() IpAddr

GetDestIpAddr returns the DestIpAddr field value

func (*Ssm) GetDestIpAddrOk

func (o *Ssm) GetDestIpAddrOk() (*IpAddr, bool)

GetDestIpAddrOk returns a tuple with the DestIpAddr field value and a boolean to check if the value has been set.

func (*Ssm) GetSourceIpAddr

func (o *Ssm) GetSourceIpAddr() IpAddr

GetSourceIpAddr returns the SourceIpAddr field value

func (*Ssm) GetSourceIpAddrOk

func (o *Ssm) GetSourceIpAddrOk() (*IpAddr, bool)

GetSourceIpAddrOk returns a tuple with the SourceIpAddr field value and a boolean to check if the value has been set.

func (Ssm) MarshalJSON

func (o Ssm) MarshalJSON() ([]byte, error)

func (*Ssm) SetDestIpAddr

func (o *Ssm) SetDestIpAddr(v IpAddr)

SetDestIpAddr sets field value

func (*Ssm) SetSourceIpAddr

func (o *Ssm) SetSourceIpAddr(v IpAddr)

SetSourceIpAddr sets field value

func (Ssm) ToMap

func (o Ssm) ToMap() (map[string]interface{}, error)

type StatusNotifyReqData

type StatusNotifyReqData struct {
	EventList MbsSessionEventReportList `json:"eventList"`
}

StatusNotifyReqData Status Notification

func NewStatusNotifyReqData

func NewStatusNotifyReqData(eventList MbsSessionEventReportList) *StatusNotifyReqData

NewStatusNotifyReqData instantiates a new StatusNotifyReqData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStatusNotifyReqDataWithDefaults

func NewStatusNotifyReqDataWithDefaults() *StatusNotifyReqData

NewStatusNotifyReqDataWithDefaults instantiates a new StatusNotifyReqData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StatusNotifyReqData) GetEventList

GetEventList returns the EventList field value

func (*StatusNotifyReqData) GetEventListOk

func (o *StatusNotifyReqData) GetEventListOk() (*MbsSessionEventReportList, bool)

GetEventListOk returns a tuple with the EventList field value and a boolean to check if the value has been set.

func (StatusNotifyReqData) MarshalJSON

func (o StatusNotifyReqData) MarshalJSON() ([]byte, error)

func (*StatusNotifyReqData) SetEventList

SetEventList sets field value

func (StatusNotifyReqData) ToMap

func (o StatusNotifyReqData) ToMap() (map[string]interface{}, error)

type StatusSubscribeReqData

type StatusSubscribeReqData struct {
	Subscription MbsSessionSubscription `json:"subscription"`
}

StatusSubscribeReqData Data within the StatusSubscribe Request

func NewStatusSubscribeReqData

func NewStatusSubscribeReqData(subscription MbsSessionSubscription) *StatusSubscribeReqData

NewStatusSubscribeReqData instantiates a new StatusSubscribeReqData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStatusSubscribeReqDataWithDefaults

func NewStatusSubscribeReqDataWithDefaults() *StatusSubscribeReqData

NewStatusSubscribeReqDataWithDefaults instantiates a new StatusSubscribeReqData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StatusSubscribeReqData) GetSubscription

func (o *StatusSubscribeReqData) GetSubscription() MbsSessionSubscription

GetSubscription returns the Subscription field value

func (*StatusSubscribeReqData) GetSubscriptionOk

func (o *StatusSubscribeReqData) GetSubscriptionOk() (*MbsSessionSubscription, bool)

GetSubscriptionOk returns a tuple with the Subscription field value and a boolean to check if the value has been set.

func (StatusSubscribeReqData) MarshalJSON

func (o StatusSubscribeReqData) MarshalJSON() ([]byte, error)

func (*StatusSubscribeReqData) SetSubscription

func (o *StatusSubscribeReqData) SetSubscription(v MbsSessionSubscription)

SetSubscription sets field value

func (StatusSubscribeReqData) ToMap

func (o StatusSubscribeReqData) ToMap() (map[string]interface{}, error)

type StatusSubscribeRspData

type StatusSubscribeRspData struct {
	Subscription MbsSessionSubscription     `json:"subscription"`
	EventList    *MbsSessionEventReportList `json:"eventList,omitempty"`
}

StatusSubscribeRspData Data within StatusSubscribe Response

func NewStatusSubscribeRspData

func NewStatusSubscribeRspData(subscription MbsSessionSubscription) *StatusSubscribeRspData

NewStatusSubscribeRspData instantiates a new StatusSubscribeRspData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStatusSubscribeRspDataWithDefaults

func NewStatusSubscribeRspDataWithDefaults() *StatusSubscribeRspData

NewStatusSubscribeRspDataWithDefaults instantiates a new StatusSubscribeRspData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StatusSubscribeRspData) GetEventList

GetEventList returns the EventList field value if set, zero value otherwise.

func (*StatusSubscribeRspData) GetEventListOk

func (o *StatusSubscribeRspData) GetEventListOk() (*MbsSessionEventReportList, bool)

GetEventListOk returns a tuple with the EventList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatusSubscribeRspData) GetSubscription

func (o *StatusSubscribeRspData) GetSubscription() MbsSessionSubscription

GetSubscription returns the Subscription field value

func (*StatusSubscribeRspData) GetSubscriptionOk

func (o *StatusSubscribeRspData) GetSubscriptionOk() (*MbsSessionSubscription, bool)

GetSubscriptionOk returns a tuple with the Subscription field value and a boolean to check if the value has been set.

func (*StatusSubscribeRspData) HasEventList

func (o *StatusSubscribeRspData) HasEventList() bool

HasEventList returns a boolean if a field has been set.

func (StatusSubscribeRspData) MarshalJSON

func (o StatusSubscribeRspData) MarshalJSON() ([]byte, error)

func (*StatusSubscribeRspData) SetEventList

SetEventList gets a reference to the given MbsSessionEventReportList and assigns it to the EventList field.

func (*StatusSubscribeRspData) SetSubscription

func (o *StatusSubscribeRspData) SetSubscription(v MbsSessionSubscription)

SetSubscription sets field value

func (StatusSubscribeRspData) ToMap

func (o StatusSubscribeRspData) ToMap() (map[string]interface{}, error)

type SubscriptionsCollectionForMBSContextsApiService

type SubscriptionsCollectionForMBSContextsApiService service

SubscriptionsCollectionForMBSContextsApiService SubscriptionsCollectionForMBSContextsApi service

func (*SubscriptionsCollectionForMBSContextsApiService) ContextStatusSubscribe

ContextStatusSubscribe ContextStatusSubscribe creating a subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContextStatusSubscribeRequest

func (*SubscriptionsCollectionForMBSContextsApiService) ContextStatusSubscribeExecute

Execute executes the request

@return ContextStatusSubscribeRspData

type SubscriptionsCollectionForMBSSessionsApiService

type SubscriptionsCollectionForMBSSessionsApiService service

SubscriptionsCollectionForMBSSessionsApiService SubscriptionsCollectionForMBSSessionsApi service

func (*SubscriptionsCollectionForMBSSessionsApiService) StatusSubscribe

StatusSubscribe StatusSubscribe creating a subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatusSubscribeRequest

func (*SubscriptionsCollectionForMBSSessionsApiService) StatusSubscribeExecute

Execute executes the request

@return StatusSubscribeRspData

type SupportedGADShapes

type SupportedGADShapes struct {
	String *string
}

SupportedGADShapes Indicates supported GAD shapes.

func (*SupportedGADShapes) MarshalJSON

func (src *SupportedGADShapes) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SupportedGADShapes) UnmarshalJSON

func (dst *SupportedGADShapes) 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 Tmgi

type Tmgi struct {
	// MBS Service ID
	MbsServiceId string `json:"mbsServiceId"`
	PlmnId       PlmnId `json:"plmnId"`
}

Tmgi Temporary Mobile Group Identity

func NewTmgi

func NewTmgi(mbsServiceId string, plmnId PlmnId) *Tmgi

NewTmgi instantiates a new Tmgi object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTmgiWithDefaults

func NewTmgiWithDefaults() *Tmgi

NewTmgiWithDefaults instantiates a new Tmgi object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Tmgi) GetMbsServiceId

func (o *Tmgi) GetMbsServiceId() string

GetMbsServiceId returns the MbsServiceId field value

func (*Tmgi) GetMbsServiceIdOk

func (o *Tmgi) GetMbsServiceIdOk() (*string, bool)

GetMbsServiceIdOk returns a tuple with the MbsServiceId field value and a boolean to check if the value has been set.

func (*Tmgi) GetPlmnId

func (o *Tmgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Tmgi) GetPlmnIdOk

func (o *Tmgi) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (Tmgi) MarshalJSON

func (o Tmgi) MarshalJSON() ([]byte, error)

func (*Tmgi) SetMbsServiceId

func (o *Tmgi) SetMbsServiceId(v string)

SetMbsServiceId sets field value

func (*Tmgi) SetPlmnId

func (o *Tmgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Tmgi) ToMap

func (o Tmgi) ToMap() (map[string]interface{}, error)

type TunnelAddress

type TunnelAddress struct {
	Interface *interface{}
}

TunnelAddress Tunnel address

func (*TunnelAddress) MarshalJSON

func (src *TunnelAddress) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TunnelAddress) UnmarshalJSON

func (dst *TunnelAddress) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UncertaintyEllipse

type UncertaintyEllipse struct {
	// Indicates value of uncertainty.
	SemiMajor float32 `json:"semiMajor"`
	// Indicates value of uncertainty.
	SemiMinor float32 `json:"semiMinor"`
	// Indicates value of orientation angle.
	OrientationMajor int32 `json:"orientationMajor"`
}

UncertaintyEllipse Ellipse with uncertainty.

func NewUncertaintyEllipse

func NewUncertaintyEllipse(semiMajor float32, semiMinor float32, orientationMajor int32) *UncertaintyEllipse

NewUncertaintyEllipse instantiates a new UncertaintyEllipse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUncertaintyEllipseWithDefaults

func NewUncertaintyEllipseWithDefaults() *UncertaintyEllipse

NewUncertaintyEllipseWithDefaults instantiates a new UncertaintyEllipse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UncertaintyEllipse) GetOrientationMajor

func (o *UncertaintyEllipse) GetOrientationMajor() int32

GetOrientationMajor returns the OrientationMajor field value

func (*UncertaintyEllipse) GetOrientationMajorOk

func (o *UncertaintyEllipse) GetOrientationMajorOk() (*int32, bool)

GetOrientationMajorOk returns a tuple with the OrientationMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipse) GetSemiMajor

func (o *UncertaintyEllipse) GetSemiMajor() float32

GetSemiMajor returns the SemiMajor field value

func (*UncertaintyEllipse) GetSemiMajorOk

func (o *UncertaintyEllipse) GetSemiMajorOk() (*float32, bool)

GetSemiMajorOk returns a tuple with the SemiMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipse) GetSemiMinor

func (o *UncertaintyEllipse) GetSemiMinor() float32

GetSemiMinor returns the SemiMinor field value

func (*UncertaintyEllipse) GetSemiMinorOk

func (o *UncertaintyEllipse) GetSemiMinorOk() (*float32, bool)

GetSemiMinorOk returns a tuple with the SemiMinor field value and a boolean to check if the value has been set.

func (UncertaintyEllipse) MarshalJSON

func (o UncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*UncertaintyEllipse) SetOrientationMajor

func (o *UncertaintyEllipse) SetOrientationMajor(v int32)

SetOrientationMajor sets field value

func (*UncertaintyEllipse) SetSemiMajor

func (o *UncertaintyEllipse) SetSemiMajor(v float32)

SetSemiMajor sets field value

func (*UncertaintyEllipse) SetSemiMinor

func (o *UncertaintyEllipse) SetSemiMinor(v float32)

SetSemiMinor sets field value

func (UncertaintyEllipse) ToMap

func (o UncertaintyEllipse) ToMap() (map[string]interface{}, error)

type UncertaintyEllipsoid

type UncertaintyEllipsoid struct {
	// Indicates value of uncertainty.
	SemiMajor float32 `json:"semiMajor"`
	// Indicates value of uncertainty.
	SemiMinor float32 `json:"semiMinor"`
	// Indicates value of uncertainty.
	Vertical float32 `json:"vertical"`
	// Indicates value of orientation angle.
	OrientationMajor int32 `json:"orientationMajor"`
}

UncertaintyEllipsoid Ellipsoid with uncertainty

func NewUncertaintyEllipsoid

func NewUncertaintyEllipsoid(semiMajor float32, semiMinor float32, vertical float32, orientationMajor int32) *UncertaintyEllipsoid

NewUncertaintyEllipsoid instantiates a new UncertaintyEllipsoid object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUncertaintyEllipsoidWithDefaults

func NewUncertaintyEllipsoidWithDefaults() *UncertaintyEllipsoid

NewUncertaintyEllipsoidWithDefaults instantiates a new UncertaintyEllipsoid object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UncertaintyEllipsoid) GetOrientationMajor

func (o *UncertaintyEllipsoid) GetOrientationMajor() int32

GetOrientationMajor returns the OrientationMajor field value

func (*UncertaintyEllipsoid) GetOrientationMajorOk

func (o *UncertaintyEllipsoid) GetOrientationMajorOk() (*int32, bool)

GetOrientationMajorOk returns a tuple with the OrientationMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetSemiMajor

func (o *UncertaintyEllipsoid) GetSemiMajor() float32

GetSemiMajor returns the SemiMajor field value

func (*UncertaintyEllipsoid) GetSemiMajorOk

func (o *UncertaintyEllipsoid) GetSemiMajorOk() (*float32, bool)

GetSemiMajorOk returns a tuple with the SemiMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetSemiMinor

func (o *UncertaintyEllipsoid) GetSemiMinor() float32

GetSemiMinor returns the SemiMinor field value

func (*UncertaintyEllipsoid) GetSemiMinorOk

func (o *UncertaintyEllipsoid) GetSemiMinorOk() (*float32, bool)

GetSemiMinorOk returns a tuple with the SemiMinor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetVertical

func (o *UncertaintyEllipsoid) GetVertical() float32

GetVertical returns the Vertical field value

func (*UncertaintyEllipsoid) GetVerticalOk

func (o *UncertaintyEllipsoid) GetVerticalOk() (*float32, bool)

GetVerticalOk returns a tuple with the Vertical field value and a boolean to check if the value has been set.

func (UncertaintyEllipsoid) MarshalJSON

func (o UncertaintyEllipsoid) MarshalJSON() ([]byte, error)

func (*UncertaintyEllipsoid) SetOrientationMajor

func (o *UncertaintyEllipsoid) SetOrientationMajor(v int32)

SetOrientationMajor sets field value

func (*UncertaintyEllipsoid) SetSemiMajor

func (o *UncertaintyEllipsoid) SetSemiMajor(v float32)

SetSemiMajor sets field value

func (*UncertaintyEllipsoid) SetSemiMinor

func (o *UncertaintyEllipsoid) SetSemiMinor(v float32)

SetSemiMinor sets field value

func (*UncertaintyEllipsoid) SetVertical

func (o *UncertaintyEllipsoid) SetVertical(v float32)

SetVertical sets field value

func (UncertaintyEllipsoid) ToMap

func (o UncertaintyEllipsoid) ToMap() (map[string]interface{}, error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL