openapi_CommonData

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: 20 Imported by: 4

README

Go API client for openapi_CommonData

Common Data Types for Service Based Interfaces.   © 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.5.0-alpha.1
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

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

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

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

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 (
	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

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

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

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

All allowed values of AccessType enum

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

All allowed values of NullValue enum

Functions

func CacheExpires

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

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

func IsNil added in v1.18.2

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

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

APIClient manages communication with the Common Data Types API v1.5.0-alpha.1 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AccessTokenErr

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

AccessTokenErr Error returned in the access token response message

func NewAccessTokenErr

func NewAccessTokenErr(error_ string) *AccessTokenErr

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

func NewAccessTokenErrWithDefaults

func NewAccessTokenErrWithDefaults() *AccessTokenErr

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

func (*AccessTokenErr) GetError

func (o *AccessTokenErr) GetError() string

GetError returns the Error field value

func (*AccessTokenErr) GetErrorDescription

func (o *AccessTokenErr) GetErrorDescription() string

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

func (*AccessTokenErr) GetErrorDescriptionOk

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

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

func (*AccessTokenErr) GetErrorOk

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

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

func (*AccessTokenErr) GetErrorUri

func (o *AccessTokenErr) GetErrorUri() string

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

func (*AccessTokenErr) GetErrorUriOk

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

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

func (*AccessTokenErr) HasErrorDescription

func (o *AccessTokenErr) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*AccessTokenErr) HasErrorUri

func (o *AccessTokenErr) HasErrorUri() bool

HasErrorUri returns a boolean if a field has been set.

func (AccessTokenErr) MarshalJSON

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

func (*AccessTokenErr) SetError

func (o *AccessTokenErr) SetError(v string)

SetError sets field value

func (*AccessTokenErr) SetErrorDescription

func (o *AccessTokenErr) SetErrorDescription(v string)

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

func (*AccessTokenErr) SetErrorUri

func (o *AccessTokenErr) SetErrorUri(v string)

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

func (AccessTokenErr) ToMap

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

type AccessTokenReq

type AccessTokenReq struct {
	GrantType string `json:"grant_type"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	NfInstanceId string  `json:"nfInstanceId"`
	NfType       *NFType `json:"nfType,omitempty"`
	TargetNfType *NFType `json:"targetNfType,omitempty"`
	Scope        string  `json:"scope"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	TargetNfInstanceId  *string   `json:"targetNfInstanceId,omitempty"`
	RequesterPlmn       *PlmnId1  `json:"requesterPlmn,omitempty"`
	RequesterPlmnList   []PlmnId1 `json:"requesterPlmnList,omitempty"`
	RequesterSnssaiList []Snssai  `json:"requesterSnssaiList,omitempty"`
	// Fully Qualified Domain Name
	RequesterFqdn     *string      `json:"requesterFqdn,omitempty"`
	RequesterSnpnList []PlmnIdNid1 `json:"requesterSnpnList,omitempty"`
	TargetPlmn        *PlmnId1     `json:"targetPlmn,omitempty"`
	TargetSnpn        *PlmnIdNid1  `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() PlmnId1

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

func (*AccessTokenReq) GetRequesterPlmnList

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

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

func (*AccessTokenReq) GetRequesterPlmnListOk

func (o *AccessTokenReq) GetRequesterPlmnListOk() ([]PlmnId1, 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() (*PlmnId1, 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() []PlmnIdNid1

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

func (*AccessTokenReq) GetRequesterSnpnListOk

func (o *AccessTokenReq) GetRequesterSnpnListOk() ([]PlmnIdNid1, 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() PlmnId1

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

func (*AccessTokenReq) GetTargetPlmnOk

func (o *AccessTokenReq) GetTargetPlmnOk() (*PlmnId1, 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() PlmnIdNid1

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

func (*AccessTokenReq) GetTargetSnpnOk

func (o *AccessTokenReq) GetTargetSnpnOk() (*PlmnIdNid1, 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 PlmnId1)

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

func (*AccessTokenReq) SetRequesterPlmnList

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

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

func (*AccessTokenReq) SetRequesterSnpnList

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

SetRequesterSnpnList gets a reference to the given []PlmnIdNid1 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 PlmnId1)

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

func (*AccessTokenReq) SetTargetSnpn

func (o *AccessTokenReq) SetTargetSnpn(v PlmnIdNid1)

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

func (*AccessTokenReq) SetTargetSnssaiList

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

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

func (AccessTokenReq) ToMap

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

type AccessType

type AccessType string

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

const (
	NON_3_GPP_ACCESS AccessType = "NON_3GPP_ACCESS"
)

List of AccessType

func NewAccessTypeFromValue

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

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

func (AccessType) IsValid

func (v AccessType) IsValid() bool

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

func (AccessType) Ptr

func (v AccessType) Ptr() *AccessType

Ptr returns reference to AccessType value

func (*AccessType) UnmarshalJSON

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

type AccessTypeRm

type AccessTypeRm struct {
	AccessType *AccessType
	NullValue  *NullValue
}

AccessTypeRm Indicates wether the access is via 3GPP or via non-3GPP but with the OpenAPI 'nullable: true' property.\"

func (*AccessTypeRm) MarshalJSON

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

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

func (*AccessTypeRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AcsInfo

type AcsInfo struct {
	// String providing an URI formatted according to RFC 3986.
	AcsUrl *string `json:"acsUrl,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	AcsIpv4Addr *string   `json:"acsIpv4Addr,omitempty"`
	AcsIpv6Addr *Ipv6Addr `json:"acsIpv6Addr,omitempty"`
}

AcsInfo The ACS information for the 5G-RG is defined in BBF TR-069 [42] or in BBF TR-369

func NewAcsInfo

func NewAcsInfo() *AcsInfo

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

func NewAcsInfoWithDefaults

func NewAcsInfoWithDefaults() *AcsInfo

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

func (*AcsInfo) GetAcsIpv4Addr

func (o *AcsInfo) GetAcsIpv4Addr() string

GetAcsIpv4Addr returns the AcsIpv4Addr field value if set, zero value otherwise.

func (*AcsInfo) GetAcsIpv4AddrOk

func (o *AcsInfo) GetAcsIpv4AddrOk() (*string, bool)

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

func (*AcsInfo) GetAcsIpv6Addr

func (o *AcsInfo) GetAcsIpv6Addr() Ipv6Addr

GetAcsIpv6Addr returns the AcsIpv6Addr field value if set, zero value otherwise.

func (*AcsInfo) GetAcsIpv6AddrOk

func (o *AcsInfo) GetAcsIpv6AddrOk() (*Ipv6Addr, bool)

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

func (*AcsInfo) GetAcsUrl

func (o *AcsInfo) GetAcsUrl() string

GetAcsUrl returns the AcsUrl field value if set, zero value otherwise.

func (*AcsInfo) GetAcsUrlOk

func (o *AcsInfo) GetAcsUrlOk() (*string, bool)

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

func (*AcsInfo) HasAcsIpv4Addr

func (o *AcsInfo) HasAcsIpv4Addr() bool

HasAcsIpv4Addr returns a boolean if a field has been set.

func (*AcsInfo) HasAcsIpv6Addr

func (o *AcsInfo) HasAcsIpv6Addr() bool

HasAcsIpv6Addr returns a boolean if a field has been set.

func (*AcsInfo) HasAcsUrl

func (o *AcsInfo) HasAcsUrl() bool

HasAcsUrl returns a boolean if a field has been set.

func (AcsInfo) MarshalJSON

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

func (*AcsInfo) SetAcsIpv4Addr

func (o *AcsInfo) SetAcsIpv4Addr(v string)

SetAcsIpv4Addr gets a reference to the given string and assigns it to the AcsIpv4Addr field.

func (*AcsInfo) SetAcsIpv6Addr

func (o *AcsInfo) SetAcsIpv6Addr(v Ipv6Addr)

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

func (*AcsInfo) SetAcsUrl

func (o *AcsInfo) SetAcsUrl(v string)

SetAcsUrl gets a reference to the given string and assigns it to the AcsUrl field.

func (AcsInfo) ToMap

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

type AcsInfoRm

type AcsInfoRm struct {
	AcsInfo   *AcsInfo
	NullValue *NullValue
}

AcsInfoRm This data type is defined in the same way as the 'AcsInfo' data type, but with the OpenAPI 'nullable: true' property.

func (*AcsInfoRm) MarshalJSON

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

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

func (*AcsInfoRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AdditionalQosFlowInfo

type AdditionalQosFlowInfo struct {
	AdditionalQosFlowInfoAnyOf *AdditionalQosFlowInfoAnyOf
	NullValue                  *NullValue
}

AdditionalQosFlowInfo The enumeration AdditionalQosFlowInfo provides additional QoS flow information (see clause 9.3.1.12 3GPP TS 38.413 [11]). It shall comply with the provisions defined in table 5.5.3.12-1.

func (*AdditionalQosFlowInfo) MarshalJSON

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

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

func (*AdditionalQosFlowInfo) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AdditionalQosFlowInfoAnyOf

type AdditionalQosFlowInfoAnyOf struct {
	String *string
}

AdditionalQosFlowInfoAnyOf struct for AdditionalQosFlowInfoAnyOf

func (*AdditionalQosFlowInfoAnyOf) MarshalJSON

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

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

func (*AdditionalQosFlowInfoAnyOf) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Ambr

type Ambr struct {
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	Uplink string `json:"uplink"`
	// String representing a bit rate; the prefixes follow the standard symbols from The International System of Units, and represent x1000 multipliers, with the exception that prefix \"K\" is used to represent the standard symbol \"k\".
	Downlink string `json:"downlink"`
}

Ambr Contains the maximum aggregated uplink and downlink bit rates.

func NewAmbr

func NewAmbr(uplink string, downlink string) *Ambr

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

func NewAmbrWithDefaults

func NewAmbrWithDefaults() *Ambr

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

func (o *Ambr) GetDownlink() string

GetDownlink returns the Downlink field value

func (*Ambr) GetDownlinkOk

func (o *Ambr) GetDownlinkOk() (*string, bool)

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

func (o *Ambr) GetUplink() string

GetUplink returns the Uplink field value

func (*Ambr) GetUplinkOk

func (o *Ambr) GetUplinkOk() (*string, bool)

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

func (Ambr) MarshalJSON

func (o Ambr) MarshalJSON() ([]byte, error)
func (o *Ambr) SetDownlink(v string)

SetDownlink sets field value

func (o *Ambr) SetUplink(v string)

SetUplink sets field value

func (Ambr) ToMap

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

type AmbrRm

type AmbrRm struct {
	Ambr      *Ambr
	NullValue *NullValue
}

AmbrRm This data type is defined in the same way as the 'Ambr' data type, but with the OpenAPI 'nullable: true' property.\"

func (*AmbrRm) MarshalJSON

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

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

func (*AmbrRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ApnRateStatus

type ApnRateStatus struct {
	// When present, it shall contain the number of packets the UE is allowed to send uplink in the given time unit for the given APN (all PDN connections of the UE to this APN see clause 4.7.7.3 in 3GPP TS 23.401.
	RemainPacketsUl *int32 `json:"remainPacketsUl,omitempty"`
	// When present, it shall contain the number of packets the UE is allowed to send uplink in the given time unit for the given APN (all PDN connections of the UE to this APN see clause 4.7.7.3 in 3GPP TS 23.401.
	RemainPacketsDl *int32 `json:"remainPacketsDl,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	ValidityTime *time.Time `json:"validityTime,omitempty"`
	// When present, it shall indicate the number of additional exception reports the UE is allowed to send uplink in the given time unit for the given APN (all PDN connections of the UE to this APN, see clause 4.7.7.3 in 3GPP TS 23.401.
	RemainExReportsUl *int32 `json:"remainExReportsUl,omitempty"`
	// When present, it shall indicate the number of additional exception reports the AF is allowed to send downlink in the  given time unit for the given APN (all PDN connections of the UE to this APN, see clause 4.7.7.3 in 3GPP TS 23.401.
	RemainExReportsDl *int32 `json:"remainExReportsDl,omitempty"`
}

ApnRateStatus Contains the APN rate control status e.g. of the AMF.

func NewApnRateStatus

func NewApnRateStatus() *ApnRateStatus

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

func NewApnRateStatusWithDefaults

func NewApnRateStatusWithDefaults() *ApnRateStatus

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

func (*ApnRateStatus) GetRemainExReportsDl

func (o *ApnRateStatus) GetRemainExReportsDl() int32

GetRemainExReportsDl returns the RemainExReportsDl field value if set, zero value otherwise.

func (*ApnRateStatus) GetRemainExReportsDlOk

func (o *ApnRateStatus) GetRemainExReportsDlOk() (*int32, bool)

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

func (*ApnRateStatus) GetRemainExReportsUl

func (o *ApnRateStatus) GetRemainExReportsUl() int32

GetRemainExReportsUl returns the RemainExReportsUl field value if set, zero value otherwise.

func (*ApnRateStatus) GetRemainExReportsUlOk

func (o *ApnRateStatus) GetRemainExReportsUlOk() (*int32, bool)

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

func (*ApnRateStatus) GetRemainPacketsDl

func (o *ApnRateStatus) GetRemainPacketsDl() int32

GetRemainPacketsDl returns the RemainPacketsDl field value if set, zero value otherwise.

func (*ApnRateStatus) GetRemainPacketsDlOk

func (o *ApnRateStatus) GetRemainPacketsDlOk() (*int32, bool)

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

func (*ApnRateStatus) GetRemainPacketsUl

func (o *ApnRateStatus) GetRemainPacketsUl() int32

GetRemainPacketsUl returns the RemainPacketsUl field value if set, zero value otherwise.

func (*ApnRateStatus) GetRemainPacketsUlOk

func (o *ApnRateStatus) GetRemainPacketsUlOk() (*int32, bool)

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

func (*ApnRateStatus) GetValidityTime

func (o *ApnRateStatus) GetValidityTime() time.Time

GetValidityTime returns the ValidityTime field value if set, zero value otherwise.

func (*ApnRateStatus) GetValidityTimeOk

func (o *ApnRateStatus) GetValidityTimeOk() (*time.Time, bool)

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

func (*ApnRateStatus) HasRemainExReportsDl

func (o *ApnRateStatus) HasRemainExReportsDl() bool

HasRemainExReportsDl returns a boolean if a field has been set.

func (*ApnRateStatus) HasRemainExReportsUl

func (o *ApnRateStatus) HasRemainExReportsUl() bool

HasRemainExReportsUl returns a boolean if a field has been set.

func (*ApnRateStatus) HasRemainPacketsDl

func (o *ApnRateStatus) HasRemainPacketsDl() bool

HasRemainPacketsDl returns a boolean if a field has been set.

func (*ApnRateStatus) HasRemainPacketsUl

func (o *ApnRateStatus) HasRemainPacketsUl() bool

HasRemainPacketsUl returns a boolean if a field has been set.

func (*ApnRateStatus) HasValidityTime

func (o *ApnRateStatus) HasValidityTime() bool

HasValidityTime returns a boolean if a field has been set.

func (ApnRateStatus) MarshalJSON

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

func (*ApnRateStatus) SetRemainExReportsDl

func (o *ApnRateStatus) SetRemainExReportsDl(v int32)

SetRemainExReportsDl gets a reference to the given int32 and assigns it to the RemainExReportsDl field.

func (*ApnRateStatus) SetRemainExReportsUl

func (o *ApnRateStatus) SetRemainExReportsUl(v int32)

SetRemainExReportsUl gets a reference to the given int32 and assigns it to the RemainExReportsUl field.

func (*ApnRateStatus) SetRemainPacketsDl

func (o *ApnRateStatus) SetRemainPacketsDl(v int32)

SetRemainPacketsDl gets a reference to the given int32 and assigns it to the RemainPacketsDl field.

func (*ApnRateStatus) SetRemainPacketsUl

func (o *ApnRateStatus) SetRemainPacketsUl(v int32)

SetRemainPacketsUl gets a reference to the given int32 and assigns it to the RemainPacketsUl field.

func (*ApnRateStatus) SetValidityTime

func (o *ApnRateStatus) SetValidityTime(v time.Time)

SetValidityTime gets a reference to the given time.Time and assigns it to the ValidityTime field.

func (ApnRateStatus) ToMap

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

type Area

type Area struct {
	Interface *interface{}
}

Area - Provides area information.

func InterfaceAsArea

func InterfaceAsArea(v *interface{}) Area

interface{}AsArea is a convenience function that returns interface{} wrapped in Area

func (*Area) GetActualInstance

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

Get the actual instance

func (Area) MarshalJSON

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

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

func (*Area) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type AreaScope

type AreaScope struct {
	EutraCellIdList []string `json:"eutraCellIdList,omitempty"`
	NrCellIdList    []string `json:"nrCellIdList,omitempty"`
	TacList         []string `json:"tacList,omitempty"`
	// A map (list of key-value pairs) where PlmnId converted to a string serves as key
	TacInfoPerPlmn *map[string]TacInfo `json:"tacInfoPerPlmn,omitempty"`
}

AreaScope Contain the area based on Cells or Tracking Areas.

func NewAreaScope

func NewAreaScope() *AreaScope

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

func NewAreaScopeWithDefaults

func NewAreaScopeWithDefaults() *AreaScope

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

func (*AreaScope) GetEutraCellIdList

func (o *AreaScope) GetEutraCellIdList() []string

GetEutraCellIdList returns the EutraCellIdList field value if set, zero value otherwise.

func (*AreaScope) GetEutraCellIdListOk

func (o *AreaScope) GetEutraCellIdListOk() ([]string, bool)

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

func (*AreaScope) GetNrCellIdList

func (o *AreaScope) GetNrCellIdList() []string

GetNrCellIdList returns the NrCellIdList field value if set, zero value otherwise.

func (*AreaScope) GetNrCellIdListOk

func (o *AreaScope) GetNrCellIdListOk() ([]string, bool)

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

func (*AreaScope) GetTacInfoPerPlmn

func (o *AreaScope) GetTacInfoPerPlmn() map[string]TacInfo

GetTacInfoPerPlmn returns the TacInfoPerPlmn field value if set, zero value otherwise.

func (*AreaScope) GetTacInfoPerPlmnOk

func (o *AreaScope) GetTacInfoPerPlmnOk() (*map[string]TacInfo, bool)

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

func (*AreaScope) GetTacList

func (o *AreaScope) GetTacList() []string

GetTacList returns the TacList field value if set, zero value otherwise.

func (*AreaScope) GetTacListOk

func (o *AreaScope) GetTacListOk() ([]string, bool)

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

func (*AreaScope) HasEutraCellIdList

func (o *AreaScope) HasEutraCellIdList() bool

HasEutraCellIdList returns a boolean if a field has been set.

func (*AreaScope) HasNrCellIdList

func (o *AreaScope) HasNrCellIdList() bool

HasNrCellIdList returns a boolean if a field has been set.

func (*AreaScope) HasTacInfoPerPlmn

func (o *AreaScope) HasTacInfoPerPlmn() bool

HasTacInfoPerPlmn returns a boolean if a field has been set.

func (*AreaScope) HasTacList

func (o *AreaScope) HasTacList() bool

HasTacList returns a boolean if a field has been set.

func (AreaScope) MarshalJSON

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

func (*AreaScope) SetEutraCellIdList

func (o *AreaScope) SetEutraCellIdList(v []string)

SetEutraCellIdList gets a reference to the given []string and assigns it to the EutraCellIdList field.

func (*AreaScope) SetNrCellIdList

func (o *AreaScope) SetNrCellIdList(v []string)

SetNrCellIdList gets a reference to the given []string and assigns it to the NrCellIdList field.

func (*AreaScope) SetTacInfoPerPlmn

func (o *AreaScope) SetTacInfoPerPlmn(v map[string]TacInfo)

SetTacInfoPerPlmn gets a reference to the given map[string]TacInfo and assigns it to the TacInfoPerPlmn field.

func (*AreaScope) SetTacList

func (o *AreaScope) SetTacList(v []string)

SetTacList gets a reference to the given []string and assigns it to the TacList field.

func (AreaScope) ToMap

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

type Arp

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

Arp Contains Allocation and Retention Priority information.

func NewArp

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

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

func NewArpWithDefaults

func NewArpWithDefaults() *Arp

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

func (*Arp) GetPreemptCap

func (o *Arp) GetPreemptCap() PreemptionCapability

GetPreemptCap returns the PreemptCap field value

func (*Arp) GetPreemptCapOk

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

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

func (*Arp) GetPreemptVuln

func (o *Arp) GetPreemptVuln() PreemptionVulnerability

GetPreemptVuln returns the PreemptVuln field value

func (*Arp) GetPreemptVulnOk

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

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

func (*Arp) GetPriorityLevel

func (o *Arp) GetPriorityLevel() int32

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

func (*Arp) GetPriorityLevelOk

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

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

func (Arp) MarshalJSON

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

func (*Arp) SetPreemptCap

func (o *Arp) SetPreemptCap(v PreemptionCapability)

SetPreemptCap sets field value

func (*Arp) SetPreemptVuln

func (o *Arp) SetPreemptVuln(v PreemptionVulnerability)

SetPreemptVuln sets field value

func (*Arp) SetPriorityLevel

func (o *Arp) SetPriorityLevel(v int32)

SetPriorityLevel sets field value

func (Arp) ToMap

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

type ArpRm

type ArpRm struct {
	Arp       *Arp
	NullValue *NullValue
}

ArpRm This data type is defined in the same way as the 'Arp' data type, but with the OpenAPI 'nullable: true' property.

func (*ArpRm) MarshalJSON

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

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

func (*ArpRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Atom

type Atom struct {
	// contains the name of a defined query parameter.
	Attr  string      `json:"attr"`
	Value interface{} `json:"value"`
	// indicates whether the negative condition applies for the query condition.
	Negative *bool `json:"negative,omitempty"`
}

Atom contains a search parameter and its positive or negative content.

func NewAtom

func NewAtom(attr string, value interface{}) *Atom

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

func NewAtomWithDefaults

func NewAtomWithDefaults() *Atom

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

func (*Atom) GetAttr

func (o *Atom) GetAttr() string

GetAttr returns the Attr field value

func (*Atom) GetAttrOk

func (o *Atom) GetAttrOk() (*string, bool)

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

func (*Atom) GetNegative

func (o *Atom) GetNegative() bool

GetNegative returns the Negative field value if set, zero value otherwise.

func (*Atom) GetNegativeOk

func (o *Atom) GetNegativeOk() (*bool, bool)

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

func (*Atom) GetValue

func (o *Atom) GetValue() interface{}

GetValue returns the Value field value If the value is explicit nil, the zero value for interface{} will be returned

func (*Atom) GetValueOk

func (o *Atom) GetValueOk() (*interface{}, bool)

GetValueOk returns a tuple with the Value 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 (*Atom) HasNegative

func (o *Atom) HasNegative() bool

HasNegative returns a boolean if a field has been set.

func (Atom) MarshalJSON

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

func (*Atom) SetAttr

func (o *Atom) SetAttr(v string)

SetAttr sets field value

func (*Atom) SetNegative

func (o *Atom) SetNegative(v bool)

SetNegative gets a reference to the given bool and assigns it to the Negative field.

func (*Atom) SetValue

func (o *Atom) SetValue(v interface{})

SetValue sets field value

func (Atom) ToMap

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

type AtsssCapability

type AtsssCapability struct {
	// Indicates the ATSSS-LL capability to support procedures related to Access Traffic Steering, Switching, Splitting (see clauses 4.2.10, 5.32 of 3GPP TS 23.501). true: Supported false (default): Not Supported
	AtsssLL *bool `json:"atsssLL,omitempty"`
	// Indicates the MPTCP capability to support procedures related to Access Traffic Steering, Switching, Splitting (see clauses 4.2.10, 5.32 of 3GPP TS 23.501 true: Supported false (default): Not Supported
	Mptcp *bool `json:"mptcp,omitempty"`
	// This IE is only used by the UPF to indicate whether the UPF supports RTT measurement without PMF (see clauses 5.32.2, 6.3.3.3 of 3GPP TS 23.501 true: Supported false (default): Not Supported
	RttWithoutPmf *bool `json:"rttWithoutPmf,omitempty"`
}

AtsssCapability Containes Capability to support procedures related to Access Traffic Steering, Switching, Splitting.

func NewAtsssCapability

func NewAtsssCapability() *AtsssCapability

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

func NewAtsssCapabilityWithDefaults

func NewAtsssCapabilityWithDefaults() *AtsssCapability

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

func (*AtsssCapability) GetAtsssLL

func (o *AtsssCapability) GetAtsssLL() bool

GetAtsssLL returns the AtsssLL field value if set, zero value otherwise.

func (*AtsssCapability) GetAtsssLLOk

func (o *AtsssCapability) GetAtsssLLOk() (*bool, bool)

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

func (*AtsssCapability) GetMptcp

func (o *AtsssCapability) GetMptcp() bool

GetMptcp returns the Mptcp field value if set, zero value otherwise.

func (*AtsssCapability) GetMptcpOk

func (o *AtsssCapability) GetMptcpOk() (*bool, bool)

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

func (*AtsssCapability) GetRttWithoutPmf

func (o *AtsssCapability) GetRttWithoutPmf() bool

GetRttWithoutPmf returns the RttWithoutPmf field value if set, zero value otherwise.

func (*AtsssCapability) GetRttWithoutPmfOk

func (o *AtsssCapability) GetRttWithoutPmfOk() (*bool, bool)

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

func (*AtsssCapability) HasAtsssLL

func (o *AtsssCapability) HasAtsssLL() bool

HasAtsssLL returns a boolean if a field has been set.

func (*AtsssCapability) HasMptcp

func (o *AtsssCapability) HasMptcp() bool

HasMptcp returns a boolean if a field has been set.

func (*AtsssCapability) HasRttWithoutPmf

func (o *AtsssCapability) HasRttWithoutPmf() bool

HasRttWithoutPmf returns a boolean if a field has been set.

func (AtsssCapability) MarshalJSON

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

func (*AtsssCapability) SetAtsssLL

func (o *AtsssCapability) SetAtsssLL(v bool)

SetAtsssLL gets a reference to the given bool and assigns it to the AtsssLL field.

func (*AtsssCapability) SetMptcp

func (o *AtsssCapability) SetMptcp(v bool)

SetMptcp gets a reference to the given bool and assigns it to the Mptcp field.

func (*AtsssCapability) SetRttWithoutPmf

func (o *AtsssCapability) SetRttWithoutPmf(v bool)

SetRttWithoutPmf gets a reference to the given bool and assigns it to the RttWithoutPmf field.

func (AtsssCapability) ToMap

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

type AuthStatus

type AuthStatus struct {
	String *string
}

AuthStatus Possible values are: - \"EAP_SUCCESS\": The NSSAA status is EAP-Success. - \"EAP_FAILURE\": The NSSAA status is EAP-Failure. - \"PENDING\": The NSSAA status is Pending.

func (*AuthStatus) MarshalJSON

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

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

func (*AuthStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type BackupAmfInfo

type BackupAmfInfo struct {
	// Fully Qualified Domain Name
	BackupAmf string `json:"backupAmf"`
	// If present, this IE shall contain the list of GUAMI(s) (supported by the AMF) for which the backupAmf IE applies.
	GuamiList []Guami `json:"guamiList,omitempty"`
}

BackupAmfInfo Provides details of the Backup AMF.

func NewBackupAmfInfo

func NewBackupAmfInfo(backupAmf string) *BackupAmfInfo

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

func NewBackupAmfInfoWithDefaults

func NewBackupAmfInfoWithDefaults() *BackupAmfInfo

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

func (*BackupAmfInfo) GetBackupAmf

func (o *BackupAmfInfo) GetBackupAmf() string

GetBackupAmf returns the BackupAmf field value

func (*BackupAmfInfo) GetBackupAmfOk

func (o *BackupAmfInfo) GetBackupAmfOk() (*string, bool)

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

func (*BackupAmfInfo) GetGuamiList

func (o *BackupAmfInfo) GetGuamiList() []Guami

GetGuamiList returns the GuamiList field value if set, zero value otherwise.

func (*BackupAmfInfo) GetGuamiListOk

func (o *BackupAmfInfo) GetGuamiListOk() ([]Guami, bool)

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

func (*BackupAmfInfo) HasGuamiList

func (o *BackupAmfInfo) HasGuamiList() bool

HasGuamiList returns a boolean if a field has been set.

func (BackupAmfInfo) MarshalJSON

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

func (*BackupAmfInfo) SetBackupAmf

func (o *BackupAmfInfo) SetBackupAmf(v string)

SetBackupAmf sets field value

func (*BackupAmfInfo) SetGuamiList

func (o *BackupAmfInfo) SetGuamiList(v []Guami)

SetGuamiList gets a reference to the given []Guami and assigns it to the GuamiList field.

func (BackupAmfInfo) ToMap

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

type BasicAuth

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

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

type BatteryIndication

type BatteryIndication struct {
	// This IE shall indicate whether the UE is battery powered or not. true: the UE is battery powered; false or absent: the UE is not battery powered
	BatteryInd *bool `json:"batteryInd,omitempty"`
	// This IE shall indicate whether the battery of the UE is replaceable or not. true: the battery of the UE is replaceable; false or absent: the battery of the UE is not replaceable.
	ReplaceableInd *bool `json:"replaceableInd,omitempty"`
	// This IE shall indicate whether the battery of the UE is rechargeable or not. true: the battery of UE is rechargeable; false or absent: the battery of the UE is not rechargeable.
	RechargeableInd *bool `json:"rechargeableInd,omitempty"`
}

BatteryIndication Parameters \"replaceableInd\" and \"rechargeableInd\" are only included if the value of Parameter \"batteryInd\" is true.

func NewBatteryIndication

func NewBatteryIndication() *BatteryIndication

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

func NewBatteryIndicationWithDefaults

func NewBatteryIndicationWithDefaults() *BatteryIndication

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

func (*BatteryIndication) GetBatteryInd

func (o *BatteryIndication) GetBatteryInd() bool

GetBatteryInd returns the BatteryInd field value if set, zero value otherwise.

func (*BatteryIndication) GetBatteryIndOk

func (o *BatteryIndication) GetBatteryIndOk() (*bool, bool)

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

func (*BatteryIndication) GetRechargeableInd

func (o *BatteryIndication) GetRechargeableInd() bool

GetRechargeableInd returns the RechargeableInd field value if set, zero value otherwise.

func (*BatteryIndication) GetRechargeableIndOk

func (o *BatteryIndication) GetRechargeableIndOk() (*bool, bool)

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

func (*BatteryIndication) GetReplaceableInd

func (o *BatteryIndication) GetReplaceableInd() bool

GetReplaceableInd returns the ReplaceableInd field value if set, zero value otherwise.

func (*BatteryIndication) GetReplaceableIndOk

func (o *BatteryIndication) GetReplaceableIndOk() (*bool, bool)

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

func (*BatteryIndication) HasBatteryInd

func (o *BatteryIndication) HasBatteryInd() bool

HasBatteryInd returns a boolean if a field has been set.

func (*BatteryIndication) HasRechargeableInd

func (o *BatteryIndication) HasRechargeableInd() bool

HasRechargeableInd returns a boolean if a field has been set.

func (*BatteryIndication) HasReplaceableInd

func (o *BatteryIndication) HasReplaceableInd() bool

HasReplaceableInd returns a boolean if a field has been set.

func (BatteryIndication) MarshalJSON

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

func (*BatteryIndication) SetBatteryInd

func (o *BatteryIndication) SetBatteryInd(v bool)

SetBatteryInd gets a reference to the given bool and assigns it to the BatteryInd field.

func (*BatteryIndication) SetRechargeableInd

func (o *BatteryIndication) SetRechargeableInd(v bool)

SetRechargeableInd gets a reference to the given bool and assigns it to the RechargeableInd field.

func (*BatteryIndication) SetReplaceableInd

func (o *BatteryIndication) SetReplaceableInd(v bool)

SetReplaceableInd gets a reference to the given bool and assigns it to the ReplaceableInd field.

func (BatteryIndication) ToMap

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

type BatteryIndicationRm

type BatteryIndicationRm struct {
	BatteryIndication *BatteryIndication
	NullValue         *NullValue
}

BatteryIndicationRm This data type is defined in the same way as the 'BatteryIndication' data type, but with the OpenAPI 'nullable: true' property.

func (*BatteryIndicationRm) MarshalJSON

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

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

func (*BatteryIndicationRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 CellGlobalId

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

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

func NewCellGlobalId

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

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

func NewCellGlobalIdWithDefaults

func NewCellGlobalIdWithDefaults() *CellGlobalId

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

func (*CellGlobalId) GetCellId

func (o *CellGlobalId) GetCellId() string

GetCellId returns the CellId field value

func (*CellGlobalId) GetCellIdOk

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

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

func (*CellGlobalId) GetLac

func (o *CellGlobalId) GetLac() string

GetLac returns the Lac field value

func (*CellGlobalId) GetLacOk

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

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

func (*CellGlobalId) GetPlmnId

func (o *CellGlobalId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*CellGlobalId) GetPlmnIdOk

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

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

func (CellGlobalId) MarshalJSON

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

func (*CellGlobalId) SetCellId

func (o *CellGlobalId) SetCellId(v string)

SetCellId sets field value

func (*CellGlobalId) SetLac

func (o *CellGlobalId) SetLac(v string)

SetLac sets field value

func (*CellGlobalId) SetPlmnId

func (o *CellGlobalId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (CellGlobalId) ToMap

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

type ChangeItem

type ChangeItem struct {
	Op ChangeType `json:"op"`
	// contains a JSON pointer value (as defined in IETF RFC 6901) that references a target  location within the resource on which the change has been applied.
	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. It shall  be present if the \"op\" attribute is of value \"MOVE\".
	From      *string     `json:"from,omitempty"`
	OrigValue interface{} `json:"origValue,omitempty"`
	NewValue  interface{} `json:"newValue,omitempty"`
}

ChangeItem It contains data which need to be changed.

func NewChangeItem

func NewChangeItem(op ChangeType, path string) *ChangeItem

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

func NewChangeItemWithDefaults

func NewChangeItemWithDefaults() *ChangeItem

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

func (*ChangeItem) GetFrom

func (o *ChangeItem) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*ChangeItem) GetFromOk

func (o *ChangeItem) 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 (*ChangeItem) GetNewValue

func (o *ChangeItem) GetNewValue() interface{}

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

func (*ChangeItem) GetNewValueOk

func (o *ChangeItem) GetNewValueOk() (*interface{}, bool)

GetNewValueOk returns a tuple with the NewValue 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 (*ChangeItem) GetOp

func (o *ChangeItem) GetOp() ChangeType

GetOp returns the Op field value

func (*ChangeItem) GetOpOk

func (o *ChangeItem) GetOpOk() (*ChangeType, bool)

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

func (*ChangeItem) GetOrigValue

func (o *ChangeItem) GetOrigValue() interface{}

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

func (*ChangeItem) GetOrigValueOk

func (o *ChangeItem) GetOrigValueOk() (*interface{}, bool)

GetOrigValueOk returns a tuple with the OrigValue 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 (*ChangeItem) GetPath

func (o *ChangeItem) GetPath() string

GetPath returns the Path field value

func (*ChangeItem) GetPathOk

func (o *ChangeItem) GetPathOk() (*string, bool)

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

func (*ChangeItem) HasFrom

func (o *ChangeItem) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*ChangeItem) HasNewValue

func (o *ChangeItem) HasNewValue() bool

HasNewValue returns a boolean if a field has been set.

func (*ChangeItem) HasOrigValue

func (o *ChangeItem) HasOrigValue() bool

HasOrigValue returns a boolean if a field has been set.

func (ChangeItem) MarshalJSON

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

func (*ChangeItem) SetFrom

func (o *ChangeItem) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*ChangeItem) SetNewValue

func (o *ChangeItem) SetNewValue(v interface{})

SetNewValue gets a reference to the given interface{} and assigns it to the NewValue field.

func (*ChangeItem) SetOp

func (o *ChangeItem) SetOp(v ChangeType)

SetOp sets field value

func (*ChangeItem) SetOrigValue

func (o *ChangeItem) SetOrigValue(v interface{})

SetOrigValue gets a reference to the given interface{} and assigns it to the OrigValue field.

func (*ChangeItem) SetPath

func (o *ChangeItem) SetPath(v string)

SetPath sets field value

func (ChangeItem) ToMap

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

type ChangeType

type ChangeType struct {
	String *string
}

ChangeType Indicates the type of change to be performed.

func (*ChangeType) MarshalJSON

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

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

func (*ChangeType) UnmarshalJSON

func (dst *ChangeType) 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 Cnf

type Cnf struct {
	CnfUnits []CnfUnit `json:"cnfUnits"`
}

Cnf A conjunctive normal form

func NewCnf

func NewCnf(cnfUnits []CnfUnit) *Cnf

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

func NewCnfWithDefaults

func NewCnfWithDefaults() *Cnf

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

func (*Cnf) GetCnfUnits

func (o *Cnf) GetCnfUnits() []CnfUnit

GetCnfUnits returns the CnfUnits field value

func (*Cnf) GetCnfUnitsOk

func (o *Cnf) GetCnfUnitsOk() ([]CnfUnit, bool)

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

func (Cnf) MarshalJSON

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

func (*Cnf) SetCnfUnits

func (o *Cnf) SetCnfUnits(v []CnfUnit)

SetCnfUnits sets field value

func (Cnf) ToMap

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

type CnfUnit

type CnfUnit struct {
	CnfUnit []Atom `json:"cnfUnit"`
}

CnfUnit During the processing of cnfUnits attribute, all the members in the array shall be interpreted as logically concatenated with logical \"AND\".

func NewCnfUnit

func NewCnfUnit(cnfUnit []Atom) *CnfUnit

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

func NewCnfUnitWithDefaults

func NewCnfUnitWithDefaults() *CnfUnit

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

func (*CnfUnit) GetCnfUnit

func (o *CnfUnit) GetCnfUnit() []Atom

GetCnfUnit returns the CnfUnit field value

func (*CnfUnit) GetCnfUnitOk

func (o *CnfUnit) GetCnfUnitOk() ([]Atom, bool)

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

func (CnfUnit) MarshalJSON

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

func (*CnfUnit) SetCnfUnit

func (o *CnfUnit) SetCnfUnit(v []Atom)

SetCnfUnit sets field value

func (CnfUnit) ToMap

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

type CollectionPeriodRmmLteMdt

type CollectionPeriodRmmLteMdt struct {
	String *string
}

CollectionPeriodRmmLteMdt The enumeration CollectionPeriodRmmLteMdt defines Collection period for RRM measurements LTE for MDT in the trace. See 3GPP TS 32.422 for further description of the values. It shall comply with the provisions defined in table 5.6.3.15-1.

func (*CollectionPeriodRmmLteMdt) MarshalJSON

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

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

func (*CollectionPeriodRmmLteMdt) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type CollectionPeriodRmmNrMdt

type CollectionPeriodRmmNrMdt struct {
	String *string
}

CollectionPeriodRmmNrMdt The enumeration CollectionPeriodRmmNrMdt defines Collection period for RRM measurements NR for MDT in the trace. See 3GPP TS 32.422 for further description of the values. It shall comply with the provisions defined in table 5.6.3.19-1

func (*CollectionPeriodRmmNrMdt) MarshalJSON

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

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

func (*CollectionPeriodRmmNrMdt) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ComplexQuery

type ComplexQuery struct {
	Cnf *Cnf
	Dnf *Dnf
}

ComplexQuery - The ComplexQuery data type is either a conjunctive normal form or a disjunctive normal form. The attribute names \"cnfUnits\" and \"dnfUnits\" (see clause 5.2.4.11 and clause 5.2.4.12) serve as discriminator.

func CnfAsComplexQuery

func CnfAsComplexQuery(v *Cnf) ComplexQuery

CnfAsComplexQuery is a convenience function that returns Cnf wrapped in ComplexQuery

func DnfAsComplexQuery

func DnfAsComplexQuery(v *Dnf) ComplexQuery

DnfAsComplexQuery is a convenience function that returns Dnf wrapped in ComplexQuery

func (*ComplexQuery) GetActualInstance

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

Get the actual instance

func (ComplexQuery) MarshalJSON

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

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

func (*ComplexQuery) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

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 CoreNetworkType

type CoreNetworkType struct {
	String *string
}

CoreNetworkType It contains the Core Network type 5GC or EPC.

func (*CoreNetworkType) MarshalJSON

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

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

func (*CoreNetworkType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type CoreNetworkTypeRm

type CoreNetworkTypeRm struct {
	CoreNetworkType *CoreNetworkType
	NullValue       *NullValue
}

CoreNetworkTypeRm It contains the Core Network type 5GC or EPC but with the OpenAPI 'nullable: true' property.

func (*CoreNetworkTypeRm) MarshalJSON

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

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

func (*CoreNetworkTypeRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type DddTrafficDescriptor

type DddTrafficDescriptor struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string   `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber *int32 `json:"portNumber,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	MacAddr *string `json:"macAddr,omitempty"`
}

DddTrafficDescriptor Contains a Traffic Descriptor.

func NewDddTrafficDescriptor

func NewDddTrafficDescriptor() *DddTrafficDescriptor

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

func NewDddTrafficDescriptorWithDefaults

func NewDddTrafficDescriptorWithDefaults() *DddTrafficDescriptor

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

func (*DddTrafficDescriptor) GetIpv4Addr

func (o *DddTrafficDescriptor) GetIpv4Addr() string

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

func (*DddTrafficDescriptor) GetIpv4AddrOk

func (o *DddTrafficDescriptor) GetIpv4AddrOk() (*string, bool)

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

func (*DddTrafficDescriptor) GetIpv6Addr

func (o *DddTrafficDescriptor) GetIpv6Addr() Ipv6Addr

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

func (*DddTrafficDescriptor) GetIpv6AddrOk

func (o *DddTrafficDescriptor) GetIpv6AddrOk() (*Ipv6Addr, bool)

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

func (*DddTrafficDescriptor) GetMacAddr

func (o *DddTrafficDescriptor) GetMacAddr() string

GetMacAddr returns the MacAddr field value if set, zero value otherwise.

func (*DddTrafficDescriptor) GetMacAddrOk

func (o *DddTrafficDescriptor) GetMacAddrOk() (*string, bool)

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

func (*DddTrafficDescriptor) GetPortNumber

func (o *DddTrafficDescriptor) GetPortNumber() int32

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

func (*DddTrafficDescriptor) GetPortNumberOk

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

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

func (*DddTrafficDescriptor) HasIpv4Addr

func (o *DddTrafficDescriptor) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasIpv6Addr

func (o *DddTrafficDescriptor) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasMacAddr

func (o *DddTrafficDescriptor) HasMacAddr() bool

HasMacAddr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasPortNumber

func (o *DddTrafficDescriptor) HasPortNumber() bool

HasPortNumber returns a boolean if a field has been set.

func (DddTrafficDescriptor) MarshalJSON

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

func (*DddTrafficDescriptor) SetIpv4Addr

func (o *DddTrafficDescriptor) SetIpv4Addr(v string)

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

func (*DddTrafficDescriptor) SetIpv6Addr

func (o *DddTrafficDescriptor) SetIpv6Addr(v Ipv6Addr)

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

func (*DddTrafficDescriptor) SetMacAddr

func (o *DddTrafficDescriptor) SetMacAddr(v string)

SetMacAddr gets a reference to the given string and assigns it to the MacAddr field.

func (*DddTrafficDescriptor) SetPortNumber

func (o *DddTrafficDescriptor) SetPortNumber(v int32)

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

func (DddTrafficDescriptor) ToMap

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

type DlDataDeliveryStatus

type DlDataDeliveryStatus struct {
	String *string
}

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

func (*DlDataDeliveryStatus) MarshalJSON

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

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

func (*DlDataDeliveryStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type DlDataDeliveryStatusRm

type DlDataDeliveryStatusRm struct {
	DlDataDeliveryStatus *DlDataDeliveryStatus
	NullValue            *NullValue
}

DlDataDeliveryStatusRm This data type is defined in the same way as the ' DlDataDeliveryStatus ' data type, but with the OpenAPI 'nullable: true' property.

func (*DlDataDeliveryStatusRm) MarshalJSON

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

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

func (*DlDataDeliveryStatusRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type DnaiChangeType

type DnaiChangeType struct {
	String *string
}

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

func (*DnaiChangeType) MarshalJSON

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

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

func (*DnaiChangeType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type DnaiChangeTypeRm

type DnaiChangeTypeRm struct {
	DnaiChangeType *DnaiChangeType
	NullValue      *NullValue
}

DnaiChangeTypeRm It can take the values as specified for DnaiChangeType but with the OpenAPI 'nullable: true' property.

func (*DnaiChangeTypeRm) MarshalJSON

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

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

func (*DnaiChangeTypeRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Dnf

type Dnf struct {
	DnfUnits []DnfUnit `json:"dnfUnits"`
}

Dnf A disjunctive normal form.

func NewDnf

func NewDnf(dnfUnits []DnfUnit) *Dnf

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

func NewDnfWithDefaults

func NewDnfWithDefaults() *Dnf

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

func (*Dnf) GetDnfUnits

func (o *Dnf) GetDnfUnits() []DnfUnit

GetDnfUnits returns the DnfUnits field value

func (*Dnf) GetDnfUnitsOk

func (o *Dnf) GetDnfUnitsOk() ([]DnfUnit, bool)

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

func (Dnf) MarshalJSON

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

func (*Dnf) SetDnfUnits

func (o *Dnf) SetDnfUnits(v []DnfUnit)

SetDnfUnits sets field value

func (Dnf) ToMap

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

type DnfUnit

type DnfUnit struct {
	DnfUnit []Atom `json:"dnfUnit"`
}

DnfUnit During the processing of dnfUnits attribute, all the members in the array shall be interpreted as logically concatenated with logical \"OR\".

func NewDnfUnit

func NewDnfUnit(dnfUnit []Atom) *DnfUnit

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

func NewDnfUnitWithDefaults

func NewDnfUnitWithDefaults() *DnfUnit

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

func (*DnfUnit) GetDnfUnit

func (o *DnfUnit) GetDnfUnit() []Atom

GetDnfUnit returns the DnfUnit field value

func (*DnfUnit) GetDnfUnitOk

func (o *DnfUnit) GetDnfUnitOk() ([]Atom, bool)

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

func (DnfUnit) MarshalJSON

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

func (*DnfUnit) SetDnfUnit

func (o *DnfUnit) SetDnfUnit(v []Atom)

SetDnfUnit sets field value

func (DnfUnit) ToMap

func (o DnfUnit) 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 EasIpReplacementInfo

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

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

func NewEasIpReplacementInfo

func NewEasIpReplacementInfo(source EasServerAddress, target EasServerAddress) *EasIpReplacementInfo

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

func NewEasIpReplacementInfoWithDefaults

func NewEasIpReplacementInfoWithDefaults() *EasIpReplacementInfo

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

func (*EasIpReplacementInfo) GetSource

func (o *EasIpReplacementInfo) GetSource() EasServerAddress

GetSource returns the Source field value

func (*EasIpReplacementInfo) GetSourceOk

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

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

func (*EasIpReplacementInfo) GetTarget

func (o *EasIpReplacementInfo) GetTarget() EasServerAddress

GetTarget returns the Target field value

func (*EasIpReplacementInfo) GetTargetOk

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

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

func (EasIpReplacementInfo) MarshalJSON

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

func (*EasIpReplacementInfo) SetSource

func (o *EasIpReplacementInfo) SetSource(v EasServerAddress)

SetSource sets field value

func (*EasIpReplacementInfo) SetTarget

func (o *EasIpReplacementInfo) SetTarget(v EasServerAddress)

SetTarget sets field value

func (EasIpReplacementInfo) ToMap

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

type EasServerAddress

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

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

func NewEasServerAddress

func NewEasServerAddress(ip IpAddr, port int32) *EasServerAddress

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

func NewEasServerAddressWithDefaults

func NewEasServerAddressWithDefaults() *EasServerAddress

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

func (*EasServerAddress) GetIp

func (o *EasServerAddress) GetIp() IpAddr

GetIp returns the Ip field value

func (*EasServerAddress) GetIpOk

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

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

func (*EasServerAddress) GetPort

func (o *EasServerAddress) GetPort() int32

GetPort returns the Port field value

func (*EasServerAddress) GetPortOk

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

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

func (EasServerAddress) MarshalJSON

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

func (*EasServerAddress) SetIp

func (o *EasServerAddress) SetIp(v IpAddr)

SetIp sets field value

func (*EasServerAddress) SetPort

func (o *EasServerAddress) SetPort(v int32)

SetPort sets field value

func (EasServerAddress) ToMap

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

type Ecgi

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

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

func NewEcgi

func NewEcgi(plmnId PlmnId, eutraCellId string) *Ecgi

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

func NewEcgiWithDefaults

func NewEcgiWithDefaults() *Ecgi

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

func (*Ecgi) GetEutraCellId

func (o *Ecgi) GetEutraCellId() string

GetEutraCellId returns the EutraCellId field value

func (*Ecgi) GetEutraCellIdOk

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

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

func (*Ecgi) GetNid

func (o *Ecgi) GetNid() string

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

func (*Ecgi) GetNidOk

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

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

func (*Ecgi) GetPlmnId

func (o *Ecgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Ecgi) GetPlmnIdOk

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

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

func (*Ecgi) HasNid

func (o *Ecgi) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Ecgi) MarshalJSON

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

func (*Ecgi) SetEutraCellId

func (o *Ecgi) SetEutraCellId(v string)

SetEutraCellId sets field value

func (*Ecgi) SetNid

func (o *Ecgi) SetNid(v string)

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

func (*Ecgi) SetPlmnId

func (o *Ecgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Ecgi) ToMap

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

type EcgiRm

type EcgiRm struct {
	Ecgi      *Ecgi
	NullValue *NullValue
}

EcgiRm This data type is defined in the same way as the 'Ecgi' data type, but with the OpenAPI 'nullable: true' property.

func (*EcgiRm) MarshalJSON

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

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

func (*EcgiRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type EcsServerAddr

type EcsServerAddr struct {
	EcsFqdnList      []string `json:"ecsFqdnList,omitempty"`
	EcsIpAddressList []IpAddr `json:"ecsIpAddressList,omitempty"`
	EcsUriList       []string `json:"ecsUriList,omitempty"`
	EcsProviderId    *string  `json:"ecsProviderId,omitempty"`
}

EcsServerAddr Contains the Edge Configuration Server Address Configuration Information as defined in clause 5.2.3.6.1 of 3GPP TS 23.502.

func NewEcsServerAddr

func NewEcsServerAddr() *EcsServerAddr

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

func NewEcsServerAddrWithDefaults

func NewEcsServerAddrWithDefaults() *EcsServerAddr

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

func (*EcsServerAddr) GetEcsFqdnList

func (o *EcsServerAddr) GetEcsFqdnList() []string

GetEcsFqdnList returns the EcsFqdnList field value if set, zero value otherwise.

func (*EcsServerAddr) GetEcsFqdnListOk

func (o *EcsServerAddr) GetEcsFqdnListOk() ([]string, bool)

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

func (*EcsServerAddr) GetEcsIpAddressList

func (o *EcsServerAddr) GetEcsIpAddressList() []IpAddr

GetEcsIpAddressList returns the EcsIpAddressList field value if set, zero value otherwise.

func (*EcsServerAddr) GetEcsIpAddressListOk

func (o *EcsServerAddr) GetEcsIpAddressListOk() ([]IpAddr, bool)

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

func (*EcsServerAddr) GetEcsProviderId

func (o *EcsServerAddr) GetEcsProviderId() string

GetEcsProviderId returns the EcsProviderId field value if set, zero value otherwise.

func (*EcsServerAddr) GetEcsProviderIdOk

func (o *EcsServerAddr) GetEcsProviderIdOk() (*string, bool)

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

func (*EcsServerAddr) GetEcsUriList

func (o *EcsServerAddr) GetEcsUriList() []string

GetEcsUriList returns the EcsUriList field value if set, zero value otherwise.

func (*EcsServerAddr) GetEcsUriListOk

func (o *EcsServerAddr) GetEcsUriListOk() ([]string, bool)

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

func (*EcsServerAddr) HasEcsFqdnList

func (o *EcsServerAddr) HasEcsFqdnList() bool

HasEcsFqdnList returns a boolean if a field has been set.

func (*EcsServerAddr) HasEcsIpAddressList

func (o *EcsServerAddr) HasEcsIpAddressList() bool

HasEcsIpAddressList returns a boolean if a field has been set.

func (*EcsServerAddr) HasEcsProviderId

func (o *EcsServerAddr) HasEcsProviderId() bool

HasEcsProviderId returns a boolean if a field has been set.

func (*EcsServerAddr) HasEcsUriList

func (o *EcsServerAddr) HasEcsUriList() bool

HasEcsUriList returns a boolean if a field has been set.

func (EcsServerAddr) MarshalJSON

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

func (*EcsServerAddr) SetEcsFqdnList

func (o *EcsServerAddr) SetEcsFqdnList(v []string)

SetEcsFqdnList gets a reference to the given []string and assigns it to the EcsFqdnList field.

func (*EcsServerAddr) SetEcsIpAddressList

func (o *EcsServerAddr) SetEcsIpAddressList(v []IpAddr)

SetEcsIpAddressList gets a reference to the given []IpAddr and assigns it to the EcsIpAddressList field.

func (*EcsServerAddr) SetEcsProviderId

func (o *EcsServerAddr) SetEcsProviderId(v string)

SetEcsProviderId gets a reference to the given string and assigns it to the EcsProviderId field.

func (*EcsServerAddr) SetEcsUriList

func (o *EcsServerAddr) SetEcsUriList(v []string)

SetEcsUriList gets a reference to the given []string and assigns it to the EcsUriList field.

func (EcsServerAddr) ToMap

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

type EcsServerAddrRm

type EcsServerAddrRm struct {
	EcsServerAddr *EcsServerAddr
	NullValue     *NullValue
}

EcsServerAddrRm This data type is defined in the same way as the ' EcsServerAddr ' data type, but with the OpenAPI 'nullable: true' property.

func (*EcsServerAddrRm) MarshalJSON

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

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

func (*EcsServerAddrRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 EutraLocation

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

EutraLocation Contains the E-UTRA user location.

func NewEutraLocation

func NewEutraLocation(tai Tai, ecgi Ecgi) *EutraLocation

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

func NewEutraLocationWithDefaults

func NewEutraLocationWithDefaults() *EutraLocation

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

func (*EutraLocation) GetAgeOfLocationInformation

func (o *EutraLocation) GetAgeOfLocationInformation() int32

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

func (*EutraLocation) GetAgeOfLocationInformationOk

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

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

func (*EutraLocation) GetEcgi

func (o *EutraLocation) GetEcgi() Ecgi

GetEcgi returns the Ecgi field value

func (*EutraLocation) GetEcgiOk

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

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

func (*EutraLocation) GetGeodeticInformation

func (o *EutraLocation) GetGeodeticInformation() string

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

func (*EutraLocation) GetGeodeticInformationOk

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

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

func (*EutraLocation) GetGeographicalInformation

func (o *EutraLocation) GetGeographicalInformation() string

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

func (*EutraLocation) GetGeographicalInformationOk

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

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

func (*EutraLocation) GetGlobalENbId

func (o *EutraLocation) GetGlobalENbId() GlobalRanNodeId

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

func (*EutraLocation) GetGlobalENbIdOk

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

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

func (*EutraLocation) GetGlobalNgenbId

func (o *EutraLocation) GetGlobalNgenbId() GlobalRanNodeId

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

func (*EutraLocation) GetGlobalNgenbIdOk

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

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

func (*EutraLocation) GetIgnoreEcgi

func (o *EutraLocation) GetIgnoreEcgi() bool

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

func (*EutraLocation) GetIgnoreEcgiOk

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

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

func (*EutraLocation) GetIgnoreTai

func (o *EutraLocation) GetIgnoreTai() bool

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

func (*EutraLocation) GetIgnoreTaiOk

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

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

func (*EutraLocation) GetTai

func (o *EutraLocation) GetTai() Tai

GetTai returns the Tai field value

func (*EutraLocation) GetTaiOk

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

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

func (*EutraLocation) GetUeLocationTimestamp

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

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

func (*EutraLocation) GetUeLocationTimestampOk

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

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

func (*EutraLocation) HasAgeOfLocationInformation

func (o *EutraLocation) HasAgeOfLocationInformation() bool

HasAgeOfLocationInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGeodeticInformation

func (o *EutraLocation) HasGeodeticInformation() bool

HasGeodeticInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGeographicalInformation

func (o *EutraLocation) HasGeographicalInformation() bool

HasGeographicalInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGlobalENbId

func (o *EutraLocation) HasGlobalENbId() bool

HasGlobalENbId returns a boolean if a field has been set.

func (*EutraLocation) HasGlobalNgenbId

func (o *EutraLocation) HasGlobalNgenbId() bool

HasGlobalNgenbId returns a boolean if a field has been set.

func (*EutraLocation) HasIgnoreEcgi

func (o *EutraLocation) HasIgnoreEcgi() bool

HasIgnoreEcgi returns a boolean if a field has been set.

func (*EutraLocation) HasIgnoreTai

func (o *EutraLocation) HasIgnoreTai() bool

HasIgnoreTai returns a boolean if a field has been set.

func (*EutraLocation) HasUeLocationTimestamp

func (o *EutraLocation) HasUeLocationTimestamp() bool

HasUeLocationTimestamp returns a boolean if a field has been set.

func (EutraLocation) MarshalJSON

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

func (*EutraLocation) SetAgeOfLocationInformation

func (o *EutraLocation) SetAgeOfLocationInformation(v int32)

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

func (*EutraLocation) SetEcgi

func (o *EutraLocation) SetEcgi(v Ecgi)

SetEcgi sets field value

func (*EutraLocation) SetGeodeticInformation

func (o *EutraLocation) SetGeodeticInformation(v string)

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

func (*EutraLocation) SetGeographicalInformation

func (o *EutraLocation) SetGeographicalInformation(v string)

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

func (*EutraLocation) SetGlobalENbId

func (o *EutraLocation) SetGlobalENbId(v GlobalRanNodeId)

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

func (*EutraLocation) SetGlobalNgenbId

func (o *EutraLocation) SetGlobalNgenbId(v GlobalRanNodeId)

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

func (*EutraLocation) SetIgnoreEcgi

func (o *EutraLocation) SetIgnoreEcgi(v bool)

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

func (*EutraLocation) SetIgnoreTai

func (o *EutraLocation) SetIgnoreTai(v bool)

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

func (*EutraLocation) SetTai

func (o *EutraLocation) SetTai(v Tai)

SetTai sets field value

func (*EutraLocation) SetUeLocationTimestamp

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

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

func (EutraLocation) ToMap

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

type EutraLocationRm

type EutraLocationRm struct {
	EutraLocation *EutraLocation
	NullValue     *NullValue
}

EutraLocationRm This data type is defined in the same way as the 'EutraLocation' data type, but with the OpenAPI 'nullable: true' property.

func (*EutraLocationRm) MarshalJSON

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

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

func (*EutraLocationRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type EventForMdt

type EventForMdt struct {
	String *string
}

EventForMdt The enumeration EventForMdt defines events triggered measurement for logged MDT in the trace. See 3GPP TS 32.422 for further description of the values. It shall comply with the provisions defined in table 5.6.3.11-1

func (*EventForMdt) MarshalJSON

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

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

func (*EventForMdt) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ExtSnssai

type ExtSnssai struct {
	Snssai
	// When present, it shall contain the range(s) of Slice Differentiator values supported for the Slice/Service Type value indicated in the sst attribute of the Snssai data type
	SdRanges []SdRange `json:"sdRanges,omitempty"`
	// When present, it shall be set to true, to indicate that all SD values are supported for the Slice/Service Type value indicated in the sst attribute of the Snssai data type.
	WildcardSd *bool `json:"wildcardSd,omitempty"`
}

ExtSnssai The sdRanges and wildcardSd attributes shall be exclusive from each other. If one of these attributes is present, the sd attribute shall also be present and it shall contain one Slice Differentiator value within the range of SD (if the sdRanges attribute is present) or with any value (if the wildcardSd attribute is present).

func NewExtSnssai

func NewExtSnssai(sst int32) *ExtSnssai

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

func NewExtSnssaiWithDefaults

func NewExtSnssaiWithDefaults() *ExtSnssai

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

func (*ExtSnssai) GetSdRanges

func (o *ExtSnssai) GetSdRanges() []SdRange

GetSdRanges returns the SdRanges field value if set, zero value otherwise.

func (*ExtSnssai) GetSdRangesOk

func (o *ExtSnssai) GetSdRangesOk() ([]SdRange, bool)

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

func (*ExtSnssai) GetWildcardSd

func (o *ExtSnssai) GetWildcardSd() bool

GetWildcardSd returns the WildcardSd field value if set, zero value otherwise.

func (*ExtSnssai) GetWildcardSdOk

func (o *ExtSnssai) GetWildcardSdOk() (*bool, bool)

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

func (*ExtSnssai) HasSdRanges

func (o *ExtSnssai) HasSdRanges() bool

HasSdRanges returns a boolean if a field has been set.

func (*ExtSnssai) HasWildcardSd

func (o *ExtSnssai) HasWildcardSd() bool

HasWildcardSd returns a boolean if a field has been set.

func (ExtSnssai) MarshalJSON

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

func (*ExtSnssai) SetSdRanges

func (o *ExtSnssai) SetSdRanges(v []SdRange)

SetSdRanges gets a reference to the given []SdRange and assigns it to the SdRanges field.

func (*ExtSnssai) SetWildcardSd

func (o *ExtSnssai) SetWildcardSd(v bool)

SetWildcardSd gets a reference to the given bool and assigns it to the WildcardSd field.

func (ExtSnssai) ToMap

func (o ExtSnssai) 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 FqdnPatternMatchingRule

type FqdnPatternMatchingRule struct {
	Interface *interface{}
}

FqdnPatternMatchingRule - a matching rule for a FQDN pattern

func InterfaceAsFqdnPatternMatchingRule

func InterfaceAsFqdnPatternMatchingRule(v *interface{}) FqdnPatternMatchingRule

interface{}AsFqdnPatternMatchingRule is a convenience function that returns interface{} wrapped in FqdnPatternMatchingRule

func (*FqdnPatternMatchingRule) GetActualInstance

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

Get the actual instance

func (FqdnPatternMatchingRule) MarshalJSON

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

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

func (*FqdnPatternMatchingRule) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type FqdnRm

type FqdnRm struct {
	NullValue *NullValue
	String    *string
}

FqdnRm Fully Qualified Domain Name, but it also allows the null value

func (*FqdnRm) MarshalJSON

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

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

func (*FqdnRm) UnmarshalJSON

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

Unmarshal JSON data into any 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 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 GeoServiceArea

type GeoServiceArea struct {
	GeographicAreaList []GeographicArea `json:"geographicAreaList,omitempty"`
	CivicAddressList   []CivicAddress   `json:"civicAddressList,omitempty"`
}

GeoServiceArea List of geographic area or list of civic address info

func NewGeoServiceArea

func NewGeoServiceArea() *GeoServiceArea

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

func NewGeoServiceAreaWithDefaults

func NewGeoServiceAreaWithDefaults() *GeoServiceArea

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

func (*GeoServiceArea) GetCivicAddressList

func (o *GeoServiceArea) GetCivicAddressList() []CivicAddress

GetCivicAddressList returns the CivicAddressList field value if set, zero value otherwise.

func (*GeoServiceArea) GetCivicAddressListOk

func (o *GeoServiceArea) GetCivicAddressListOk() ([]CivicAddress, bool)

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

func (*GeoServiceArea) GetGeographicAreaList

func (o *GeoServiceArea) GetGeographicAreaList() []GeographicArea

GetGeographicAreaList returns the GeographicAreaList field value if set, zero value otherwise.

func (*GeoServiceArea) GetGeographicAreaListOk

func (o *GeoServiceArea) GetGeographicAreaListOk() ([]GeographicArea, bool)

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

func (*GeoServiceArea) HasCivicAddressList

func (o *GeoServiceArea) HasCivicAddressList() bool

HasCivicAddressList returns a boolean if a field has been set.

func (*GeoServiceArea) HasGeographicAreaList

func (o *GeoServiceArea) HasGeographicAreaList() bool

HasGeographicAreaList returns a boolean if a field has been set.

func (GeoServiceArea) MarshalJSON

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

func (*GeoServiceArea) SetCivicAddressList

func (o *GeoServiceArea) SetCivicAddressList(v []CivicAddress)

SetCivicAddressList gets a reference to the given []CivicAddress and assigns it to the CivicAddressList field.

func (*GeoServiceArea) SetGeographicAreaList

func (o *GeoServiceArea) SetGeographicAreaList(v []GeographicArea)

SetGeographicAreaList gets a reference to the given []GeographicArea and assigns it to the GeographicAreaList field.

func (GeoServiceArea) ToMap

func (o GeoServiceArea) ToMap() (map[string]interface{}, 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 GeraLocation

type GeraLocation struct {
	Interface *interface{}
}

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

func InterfaceAsGeraLocation

func InterfaceAsGeraLocation(v *interface{}) GeraLocation

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

func (*GeraLocation) GetActualInstance

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

Get the actual instance

func (GeraLocation) MarshalJSON

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

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

func (*GeraLocation) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type GlobalRanNodeId

type GlobalRanNodeId struct {
	Interface *interface{}
}

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

func InterfaceAsGlobalRanNodeId

func InterfaceAsGlobalRanNodeId(v *interface{}) GlobalRanNodeId

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

func (*GlobalRanNodeId) GetActualInstance

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

Get the actual instance

func (GlobalRanNodeId) MarshalJSON

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

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

func (*GlobalRanNodeId) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type Guami

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

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

func NewGuami

func NewGuami(plmnId PlmnIdNid, amfId string) *Guami

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

func NewGuamiWithDefaults

func NewGuamiWithDefaults() *Guami

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

func (*Guami) GetAmfId

func (o *Guami) GetAmfId() string

GetAmfId returns the AmfId field value

func (*Guami) GetAmfIdOk

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

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

func (*Guami) GetPlmnId

func (o *Guami) GetPlmnId() PlmnIdNid

GetPlmnId returns the PlmnId field value

func (*Guami) GetPlmnIdOk

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

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

func (Guami) MarshalJSON

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

func (*Guami) SetAmfId

func (o *Guami) SetAmfId(v string)

SetAmfId sets field value

func (*Guami) SetPlmnId

func (o *Guami) SetPlmnId(v PlmnIdNid)

SetPlmnId sets field value

func (Guami) ToMap

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

type GuamiRm

type GuamiRm struct {
	Guami     *Guami
	NullValue *NullValue
}

GuamiRm This data type is defined in the same way as the 'Guami' data type, but with the OpenAPI 'nullable: true' property.

func (*GuamiRm) MarshalJSON

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

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

func (*GuamiRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type HalTemplate

type HalTemplate struct {
	// A human-readable string that can be used to identify this template
	Title  *string    `json:"title,omitempty"`
	Method HttpMethod `json:"method"`
	// The media type that should be used for the corresponding request. If the attribute is missing, or contains an unrecognized value, the client should act as if the  contentType is set to \"application/json\".
	ContentType *string `json:"contentType,omitempty"`
	// The properties that should be included in the body of the corresponding request.  If the contentType attribute is set to \"application/json\", then this attribute  describes the attributes of the JSON object of the body.
	Properties []Property `json:"properties,omitempty"`
}

HalTemplate Hypertext Application Language (HAL) template contains the extended 3GPP hypermedia format.

func NewHalTemplate

func NewHalTemplate(method HttpMethod) *HalTemplate

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

func NewHalTemplateWithDefaults

func NewHalTemplateWithDefaults() *HalTemplate

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

func (*HalTemplate) GetContentType

func (o *HalTemplate) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*HalTemplate) GetContentTypeOk

func (o *HalTemplate) GetContentTypeOk() (*string, bool)

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

func (*HalTemplate) GetMethod

func (o *HalTemplate) GetMethod() HttpMethod

GetMethod returns the Method field value

func (*HalTemplate) GetMethodOk

func (o *HalTemplate) GetMethodOk() (*HttpMethod, bool)

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

func (*HalTemplate) GetProperties

func (o *HalTemplate) GetProperties() []Property

GetProperties returns the Properties field value if set, zero value otherwise.

func (*HalTemplate) GetPropertiesOk

func (o *HalTemplate) GetPropertiesOk() ([]Property, bool)

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

func (*HalTemplate) GetTitle

func (o *HalTemplate) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*HalTemplate) GetTitleOk

func (o *HalTemplate) 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 (*HalTemplate) HasContentType

func (o *HalTemplate) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*HalTemplate) HasProperties

func (o *HalTemplate) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*HalTemplate) HasTitle

func (o *HalTemplate) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (HalTemplate) MarshalJSON

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

func (*HalTemplate) SetContentType

func (o *HalTemplate) SetContentType(v string)

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*HalTemplate) SetMethod

func (o *HalTemplate) SetMethod(v HttpMethod)

SetMethod sets field value

func (*HalTemplate) SetProperties

func (o *HalTemplate) SetProperties(v []Property)

SetProperties gets a reference to the given []Property and assigns it to the Properties field.

func (*HalTemplate) SetTitle

func (o *HalTemplate) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (HalTemplate) ToMap

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

type HfcNodeId

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

HfcNodeId REpresents the HFC Node Identifer received over NGAP.

func NewHfcNodeId

func NewHfcNodeId(hfcNId string) *HfcNodeId

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

func NewHfcNodeIdWithDefaults

func NewHfcNodeIdWithDefaults() *HfcNodeId

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

func (*HfcNodeId) GetHfcNId

func (o *HfcNodeId) GetHfcNId() string

GetHfcNId returns the HfcNId field value

func (*HfcNodeId) GetHfcNIdOk

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

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

func (HfcNodeId) MarshalJSON

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

func (*HfcNodeId) SetHfcNId

func (o *HfcNodeId) SetHfcNId(v string)

SetHfcNId sets field value

func (HfcNodeId) ToMap

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

type HfcNodeIdRm

type HfcNodeIdRm struct {
	HfcNodeId *HfcNodeId
	NullValue *NullValue
}

HfcNodeIdRm This data type is defined in the same way as the 'HfcNodeId' data type, but with the OpenAPI 'nullable: true' property.

func (*HfcNodeIdRm) MarshalJSON

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

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

func (*HfcNodeIdRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type HttpMethod

type HttpMethod struct {
	String *string
}

HttpMethod HTTP methodes.

func (*HttpMethod) MarshalJSON

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

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

func (*HttpMethod) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 InterFreqTargetInfo

type InterFreqTargetInfo struct {
	// Integer value indicating the ARFCN applicable for a downlink, uplink or bi-directional (TDD) NR global frequency raster, as definition of \"ARFCN-ValueNR\" IE in clause 6.3.2 of 3GPP TS 38.331.
	DlCarrierFreq int32 `json:"dlCarrierFreq"`
	// When present, this IE shall contain a list of the physical cell identities where the UE is requested to perform measurement logging for the indicated frequency.
	CellIdList []int32 `json:"cellIdList,omitempty"`
}

InterFreqTargetInfo Indicates the Inter Frequency Target information.

func NewInterFreqTargetInfo

func NewInterFreqTargetInfo(dlCarrierFreq int32) *InterFreqTargetInfo

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

func NewInterFreqTargetInfoWithDefaults

func NewInterFreqTargetInfoWithDefaults() *InterFreqTargetInfo

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

func (*InterFreqTargetInfo) GetCellIdList

func (o *InterFreqTargetInfo) GetCellIdList() []int32

GetCellIdList returns the CellIdList field value if set, zero value otherwise.

func (*InterFreqTargetInfo) GetCellIdListOk

func (o *InterFreqTargetInfo) GetCellIdListOk() ([]int32, bool)

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

func (*InterFreqTargetInfo) GetDlCarrierFreq

func (o *InterFreqTargetInfo) GetDlCarrierFreq() int32

GetDlCarrierFreq returns the DlCarrierFreq field value

func (*InterFreqTargetInfo) GetDlCarrierFreqOk

func (o *InterFreqTargetInfo) GetDlCarrierFreqOk() (*int32, bool)

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

func (*InterFreqTargetInfo) HasCellIdList

func (o *InterFreqTargetInfo) HasCellIdList() bool

HasCellIdList returns a boolean if a field has been set.

func (InterFreqTargetInfo) MarshalJSON

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

func (*InterFreqTargetInfo) SetCellIdList

func (o *InterFreqTargetInfo) SetCellIdList(v []int32)

SetCellIdList gets a reference to the given []int32 and assigns it to the CellIdList field.

func (*InterFreqTargetInfo) SetDlCarrierFreq

func (o *InterFreqTargetInfo) SetDlCarrierFreq(v int32)

SetDlCarrierFreq sets field value

func (InterFreqTargetInfo) ToMap

func (o InterFreqTargetInfo) 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 Ipv6AddrRm

type Ipv6AddrRm struct {
}

Ipv6AddrRm String identifying an IPv6 address formatted according to clause 4 of RFC5952 with the OpenAPI 'nullable: true' property. The mixed IPv4 IPv6 notation according to clause 5 of RFC5952 shall not be used.

func NewIpv6AddrRm

func NewIpv6AddrRm() *Ipv6AddrRm

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

func NewIpv6AddrRmWithDefaults

func NewIpv6AddrRmWithDefaults() *Ipv6AddrRm

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

func (Ipv6AddrRm) MarshalJSON

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

func (Ipv6AddrRm) ToMap

func (o Ipv6AddrRm) 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 Ipv6PrefixRm

type Ipv6PrefixRm struct {
}

Ipv6PrefixRm String identifying an IPv6 address prefix formatted according to clause 4 of RFC 5952 with the OpenAPI 'nullable: true' property. IPv6Prefix data type may contain an individual /128 IPv6 address.

func NewIpv6PrefixRm

func NewIpv6PrefixRm() *Ipv6PrefixRm

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

func NewIpv6PrefixRmWithDefaults

func NewIpv6PrefixRmWithDefaults() *Ipv6PrefixRm

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

func (Ipv6PrefixRm) MarshalJSON

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

func (Ipv6PrefixRm) ToMap

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

type JobType

type JobType struct {
	String *string
}

JobType The enumeration JobType defines Job Type in the trace. See 3GPP TS 32.422 for further description of the values. It shall comply with the provisions defined in table 5.6.3.3-1.

func (*JobType) MarshalJSON

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

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

func (*JobType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LcsServiceAuth

type LcsServiceAuth struct {
	String *string
}

LcsServiceAuth Possible values are: - \"LOCATION_ALLOWED_WITH_NOTIFICATION\": Location allowed with notification - \"LOCATION_ALLOWED_WITHOUT_NOTIFICATION\": Location allowed without notification - \"LOCATION_ALLOWED_WITHOUT_RESPONSE\": Location with notification and privacy verification; location allowed if no response - \"LOCATION_RESTRICTED_WITHOUT_RESPONSE\": Location with notification and privacy verification; location restricted if no response - \"NOTIFICATION_ONLY\": Notification only - \"NOTIFICATION_AND_VERIFICATION_ONLY\": Notification and privacy verification only

func (*LcsServiceAuth) MarshalJSON

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

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

func (*LcsServiceAuth) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LineType

type LineType struct {
	String *string
}

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

func (*LineType) MarshalJSON

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

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

func (*LineType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LineTypeRm

type LineTypeRm struct {
	LineType  *LineType
	NullValue *NullValue
}

LineTypeRm This data type is defined in the same way as the 'LineType' data type, but with the OpenAPI 'nullable: true' property.

func (*LineTypeRm) MarshalJSON

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

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

func (*LineTypeRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Link struct {
	// String providing an URI formatted according to RFC 3986.
	Href *string `json:"href,omitempty"`
}

Link It contains the URI of the linked resource.

func NewLink() *Link

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

func NewLinkWithDefaults

func NewLinkWithDefaults() *Link

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

func (*Link) GetHref

func (o *Link) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*Link) GetHrefOk

func (o *Link) GetHrefOk() (*string, bool)

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

func (*Link) HasHref

func (o *Link) HasHref() bool

HasHref returns a boolean if a field has been set.

func (Link) MarshalJSON

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

func (*Link) SetHref

func (o *Link) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (Link) ToMap

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

type LinkRm

type LinkRm struct {
	// String providing an URI formatted according to RFC 3986.
	Href *string `json:"href,omitempty"`
}

LinkRm It contains the URI of the linked resource with the OpenAPI 'nullable: true' property.

func NewLinkRm

func NewLinkRm() *LinkRm

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

func NewLinkRmWithDefaults

func NewLinkRmWithDefaults() *LinkRm

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

func (*LinkRm) GetHref

func (o *LinkRm) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*LinkRm) GetHrefOk

func (o *LinkRm) GetHrefOk() (*string, bool)

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

func (*LinkRm) HasHref

func (o *LinkRm) HasHref() bool

HasHref returns a boolean if a field has been set.

func (LinkRm) MarshalJSON

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

func (*LinkRm) SetHref

func (o *LinkRm) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (LinkRm) ToMap

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

type LinksValueSchema

type LinksValueSchema struct {
	Link        *Link
	ArrayOfLink *[]Link
}

LinksValueSchema - A list of mutually exclusive alternatives of 1 or more links.

func ArrayOfLinkAsLinksValueSchema

func ArrayOfLinkAsLinksValueSchema(v *[]Link) LinksValueSchema

[]LinkAsLinksValueSchema is a convenience function that returns []Link wrapped in LinksValueSchema

func LinkAsLinksValueSchema

func LinkAsLinksValueSchema(v *Link) LinksValueSchema

LinkAsLinksValueSchema is a convenience function that returns Link wrapped in LinksValueSchema

func (*LinksValueSchema) GetActualInstance

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

Get the actual instance

func (LinksValueSchema) MarshalJSON

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

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

func (*LinksValueSchema) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

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 LocationAreaId

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

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

func NewLocationAreaId

func NewLocationAreaId(plmnId PlmnId, lac string) *LocationAreaId

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

func NewLocationAreaIdWithDefaults

func NewLocationAreaIdWithDefaults() *LocationAreaId

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

func (*LocationAreaId) GetLac

func (o *LocationAreaId) GetLac() string

GetLac returns the Lac field value

func (*LocationAreaId) GetLacOk

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

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

func (*LocationAreaId) GetPlmnId

func (o *LocationAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*LocationAreaId) GetPlmnIdOk

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

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

func (LocationAreaId) MarshalJSON

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

func (*LocationAreaId) SetLac

func (o *LocationAreaId) SetLac(v string)

SetLac sets field value

func (*LocationAreaId) SetPlmnId

func (o *LocationAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (LocationAreaId) ToMap

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

type LoggingDurationMdt

type LoggingDurationMdt struct {
	String *string
}

LoggingDurationMdt The enumeration LoggingIntervalMdt defines Logging Interval for MDT in the trace. See 3GPP TS 32.422 for further description of the values. It shall comply with the provisions defined in table 5.6.3.12-1.

func (*LoggingDurationMdt) MarshalJSON

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

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

func (*LoggingDurationMdt) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LoggingDurationNrMdt

type LoggingDurationNrMdt struct {
	String *string
}

LoggingDurationNrMdt The enumeration LoggingDurationMdt defines Logging Duration in NR for MDT in the trace. See 3GPP TS 32.422 for further description of the values. It shall comply with the provisions defined in table 5.6.3.20-1.

func (*LoggingDurationNrMdt) MarshalJSON

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

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

func (*LoggingDurationNrMdt) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LoggingIntervalMdt

type LoggingIntervalMdt struct {
	String *string
}

LoggingIntervalMdt The enumeration LoggingIntervalMdt defines Logging Interval for MDT in the trace. See 3GPP TS 32.422 for further description of the values. It shall comply with the provisions defined in table 5.6.3.12-1.

func (*LoggingIntervalMdt) MarshalJSON

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

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

func (*LoggingIntervalMdt) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LoggingIntervalNrMdt

type LoggingIntervalNrMdt struct {
	String *string
}

LoggingIntervalNrMdt The enumeration LoggingIntervalNrMdt defines Logging Interval in NR for MDT in the trace. See 3GPP TS 32.422 for further description of the values. It shall comply with the provisions defined in table 5.6.3.18-1.

func (*LoggingIntervalNrMdt) MarshalJSON

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

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

func (*LoggingIntervalNrMdt) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LteV2xAuth

type LteV2xAuth struct {
	VehicleUeAuth    *UeAuth `json:"vehicleUeAuth,omitempty"`
	PedestrianUeAuth *UeAuth `json:"pedestrianUeAuth,omitempty"`
}

LteV2xAuth Contains LTE V2X services authorized information.

func NewLteV2xAuth

func NewLteV2xAuth() *LteV2xAuth

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

func NewLteV2xAuthWithDefaults

func NewLteV2xAuthWithDefaults() *LteV2xAuth

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

func (*LteV2xAuth) GetPedestrianUeAuth

func (o *LteV2xAuth) GetPedestrianUeAuth() UeAuth

GetPedestrianUeAuth returns the PedestrianUeAuth field value if set, zero value otherwise.

func (*LteV2xAuth) GetPedestrianUeAuthOk

func (o *LteV2xAuth) GetPedestrianUeAuthOk() (*UeAuth, bool)

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

func (*LteV2xAuth) GetVehicleUeAuth

func (o *LteV2xAuth) GetVehicleUeAuth() UeAuth

GetVehicleUeAuth returns the VehicleUeAuth field value if set, zero value otherwise.

func (*LteV2xAuth) GetVehicleUeAuthOk

func (o *LteV2xAuth) GetVehicleUeAuthOk() (*UeAuth, bool)

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

func (*LteV2xAuth) HasPedestrianUeAuth

func (o *LteV2xAuth) HasPedestrianUeAuth() bool

HasPedestrianUeAuth returns a boolean if a field has been set.

func (*LteV2xAuth) HasVehicleUeAuth

func (o *LteV2xAuth) HasVehicleUeAuth() bool

HasVehicleUeAuth returns a boolean if a field has been set.

func (LteV2xAuth) MarshalJSON

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

func (*LteV2xAuth) SetPedestrianUeAuth

func (o *LteV2xAuth) SetPedestrianUeAuth(v UeAuth)

SetPedestrianUeAuth gets a reference to the given UeAuth and assigns it to the PedestrianUeAuth field.

func (*LteV2xAuth) SetVehicleUeAuth

func (o *LteV2xAuth) SetVehicleUeAuth(v UeAuth)

SetVehicleUeAuth gets a reference to the given UeAuth and assigns it to the VehicleUeAuth field.

func (LteV2xAuth) ToMap

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

type MappedNullable

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

type MatchingOperator

type MatchingOperator struct {
	String *string
}

MatchingOperator the matching operation.

func (*MatchingOperator) MarshalJSON

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

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

func (*MatchingOperator) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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

type MbsfnArea struct {
	// This IE shall contain the MBSFN Area ID.
	MbsfnAreaId *int32 `json:"mbsfnAreaId,omitempty"`
	// When present, this IE shall contain the Carrier Frequency (EARFCN).
	CarrierFrequency *int32 `json:"carrierFrequency,omitempty"`
}

MbsfnArea Contains an MBSFN area information.

func NewMbsfnArea

func NewMbsfnArea() *MbsfnArea

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

func NewMbsfnAreaWithDefaults

func NewMbsfnAreaWithDefaults() *MbsfnArea

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

func (*MbsfnArea) GetCarrierFrequency

func (o *MbsfnArea) GetCarrierFrequency() int32

GetCarrierFrequency returns the CarrierFrequency field value if set, zero value otherwise.

func (*MbsfnArea) GetCarrierFrequencyOk

func (o *MbsfnArea) GetCarrierFrequencyOk() (*int32, bool)

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

func (*MbsfnArea) GetMbsfnAreaId

func (o *MbsfnArea) GetMbsfnAreaId() int32

GetMbsfnAreaId returns the MbsfnAreaId field value if set, zero value otherwise.

func (*MbsfnArea) GetMbsfnAreaIdOk

func (o *MbsfnArea) GetMbsfnAreaIdOk() (*int32, bool)

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

func (*MbsfnArea) HasCarrierFrequency

func (o *MbsfnArea) HasCarrierFrequency() bool

HasCarrierFrequency returns a boolean if a field has been set.

func (*MbsfnArea) HasMbsfnAreaId

func (o *MbsfnArea) HasMbsfnAreaId() bool

HasMbsfnAreaId returns a boolean if a field has been set.

func (MbsfnArea) MarshalJSON

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

func (*MbsfnArea) SetCarrierFrequency

func (o *MbsfnArea) SetCarrierFrequency(v int32)

SetCarrierFrequency gets a reference to the given int32 and assigns it to the CarrierFrequency field.

func (*MbsfnArea) SetMbsfnAreaId

func (o *MbsfnArea) SetMbsfnAreaId(v int32)

SetMbsfnAreaId gets a reference to the given int32 and assigns it to the MbsfnAreaId field.

func (MbsfnArea) ToMap

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

type MdtConfiguration

type MdtConfiguration struct {
	JobType               JobType                `json:"jobType"`
	ReportType            *ReportTypeMdt         `json:"reportType,omitempty"`
	AreaScope             *AreaScope             `json:"areaScope,omitempty"`
	MeasurementLteList    []MeasurementLteForMdt `json:"measurementLteList,omitempty"`
	MeasurementNrList     []MeasurementNrForMdt  `json:"measurementNrList,omitempty"`
	SensorMeasurementList []SensorMeasurement    `json:"sensorMeasurementList,omitempty"`
	ReportingTriggerList  []ReportingTrigger     `json:"reportingTriggerList,omitempty"`
	ReportInterval        *ReportIntervalMdt     `json:"reportInterval,omitempty"`
	ReportIntervalNr      *ReportIntervalNrMdt   `json:"reportIntervalNr,omitempty"`
	ReportAmount          *ReportAmountMdt       `json:"reportAmount,omitempty"`
	// This IE shall be present if the report trigger parameter is configured for A2 event reporting or A2 event triggered periodic reporting and the job type parameter is configured for Immediate MDT or combined Immediate MDT and Trace in LTE. When present, this IE shall indicate the Event Threshold for RSRP, and the value shall be between 0-97.
	EventThresholdRsrp *int32 `json:"eventThresholdRsrp,omitempty"`
	// This IE shall be present if the report trigger parameter is configured for A2 event reporting or A2 event triggered periodic reporting and the job type parameter is configured for Immediate MDT or combined Immediate MDT and Trace in NR. When present, this IE shall indicate the Event Threshold for RSRP, and the value shall be between 0-127.
	EventThresholdRsrpNr *int32 `json:"eventThresholdRsrpNr,omitempty"`
	// This IE shall be present if the report trigger parameter is configured for A2 event reporting or A2 event triggered periodic reporting and the job type parameter is configured for Immediate MDT or combined Immediate MDT and Trace in LTE.When present, this IE shall indicate the Event Threshold for RSRQ, and the value shall be between 0-34.
	EventThresholdRsrq *int32 `json:"eventThresholdRsrq,omitempty"`
	// This IE shall be present if the report trigger parameter is configured for A2 event reporting or A2 event triggered periodic reporting and the job type parameter is configured for Immediate MDT or combined Immediate MDT and Trace in NR.When present, this IE shall indicate the Event Threshold for RSRQ, and the value shall be between 0-127.
	EventThresholdRsrqNr     *int32                     `json:"eventThresholdRsrqNr,omitempty"`
	EventList                []EventForMdt              `json:"eventList,omitempty"`
	LoggingInterval          *LoggingIntervalMdt        `json:"loggingInterval,omitempty"`
	LoggingIntervalNr        *LoggingIntervalNrMdt      `json:"loggingIntervalNr,omitempty"`
	LoggingDuration          *LoggingDurationMdt        `json:"loggingDuration,omitempty"`
	LoggingDurationNr        *LoggingDurationNrMdt      `json:"loggingDurationNr,omitempty"`
	PositioningMethod        *PositioningMethodMdt      `json:"positioningMethod,omitempty"`
	AddPositioningMethodList []PositioningMethodMdt     `json:"addPositioningMethodList,omitempty"`
	CollectionPeriodRmmLte   *CollectionPeriodRmmLteMdt `json:"collectionPeriodRmmLte,omitempty"`
	CollectionPeriodRmmNr    *CollectionPeriodRmmNrMdt  `json:"collectionPeriodRmmNr,omitempty"`
	MeasurementPeriodLte     *MeasurementPeriodLteMdt   `json:"measurementPeriodLte,omitempty"`
	MdtAllowedPlmnIdList     []PlmnId                   `json:"mdtAllowedPlmnIdList,omitempty"`
	MbsfnAreaList            []MbsfnArea                `json:"mbsfnAreaList,omitempty"`
	InterFreqTargetList      []InterFreqTargetInfo      `json:"interFreqTargetList,omitempty"`
}

MdtConfiguration contains contain MDT configuration data.

func NewMdtConfiguration

func NewMdtConfiguration(jobType JobType) *MdtConfiguration

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

func NewMdtConfigurationWithDefaults

func NewMdtConfigurationWithDefaults() *MdtConfiguration

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

func (*MdtConfiguration) GetAddPositioningMethodList

func (o *MdtConfiguration) GetAddPositioningMethodList() []PositioningMethodMdt

GetAddPositioningMethodList returns the AddPositioningMethodList field value if set, zero value otherwise.

func (*MdtConfiguration) GetAddPositioningMethodListOk

func (o *MdtConfiguration) GetAddPositioningMethodListOk() ([]PositioningMethodMdt, bool)

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

func (*MdtConfiguration) GetAreaScope

func (o *MdtConfiguration) GetAreaScope() AreaScope

GetAreaScope returns the AreaScope field value if set, zero value otherwise.

func (*MdtConfiguration) GetAreaScopeOk

func (o *MdtConfiguration) GetAreaScopeOk() (*AreaScope, bool)

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

func (*MdtConfiguration) GetCollectionPeriodRmmLte

func (o *MdtConfiguration) GetCollectionPeriodRmmLte() CollectionPeriodRmmLteMdt

GetCollectionPeriodRmmLte returns the CollectionPeriodRmmLte field value if set, zero value otherwise.

func (*MdtConfiguration) GetCollectionPeriodRmmLteOk

func (o *MdtConfiguration) GetCollectionPeriodRmmLteOk() (*CollectionPeriodRmmLteMdt, bool)

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

func (*MdtConfiguration) GetCollectionPeriodRmmNr

func (o *MdtConfiguration) GetCollectionPeriodRmmNr() CollectionPeriodRmmNrMdt

GetCollectionPeriodRmmNr returns the CollectionPeriodRmmNr field value if set, zero value otherwise.

func (*MdtConfiguration) GetCollectionPeriodRmmNrOk

func (o *MdtConfiguration) GetCollectionPeriodRmmNrOk() (*CollectionPeriodRmmNrMdt, bool)

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

func (*MdtConfiguration) GetEventList

func (o *MdtConfiguration) GetEventList() []EventForMdt

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

func (*MdtConfiguration) GetEventListOk

func (o *MdtConfiguration) GetEventListOk() ([]EventForMdt, 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 (*MdtConfiguration) GetEventThresholdRsrp

func (o *MdtConfiguration) GetEventThresholdRsrp() int32

GetEventThresholdRsrp returns the EventThresholdRsrp field value if set, zero value otherwise.

func (*MdtConfiguration) GetEventThresholdRsrpNr

func (o *MdtConfiguration) GetEventThresholdRsrpNr() int32

GetEventThresholdRsrpNr returns the EventThresholdRsrpNr field value if set, zero value otherwise.

func (*MdtConfiguration) GetEventThresholdRsrpNrOk

func (o *MdtConfiguration) GetEventThresholdRsrpNrOk() (*int32, bool)

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

func (*MdtConfiguration) GetEventThresholdRsrpOk

func (o *MdtConfiguration) GetEventThresholdRsrpOk() (*int32, bool)

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

func (*MdtConfiguration) GetEventThresholdRsrq

func (o *MdtConfiguration) GetEventThresholdRsrq() int32

GetEventThresholdRsrq returns the EventThresholdRsrq field value if set, zero value otherwise.

func (*MdtConfiguration) GetEventThresholdRsrqNr

func (o *MdtConfiguration) GetEventThresholdRsrqNr() int32

GetEventThresholdRsrqNr returns the EventThresholdRsrqNr field value if set, zero value otherwise.

func (*MdtConfiguration) GetEventThresholdRsrqNrOk

func (o *MdtConfiguration) GetEventThresholdRsrqNrOk() (*int32, bool)

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

func (*MdtConfiguration) GetEventThresholdRsrqOk

func (o *MdtConfiguration) GetEventThresholdRsrqOk() (*int32, bool)

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

func (*MdtConfiguration) GetInterFreqTargetList

func (o *MdtConfiguration) GetInterFreqTargetList() []InterFreqTargetInfo

GetInterFreqTargetList returns the InterFreqTargetList field value if set, zero value otherwise.

func (*MdtConfiguration) GetInterFreqTargetListOk

func (o *MdtConfiguration) GetInterFreqTargetListOk() ([]InterFreqTargetInfo, bool)

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

func (*MdtConfiguration) GetJobType

func (o *MdtConfiguration) GetJobType() JobType

GetJobType returns the JobType field value

func (*MdtConfiguration) GetJobTypeOk

func (o *MdtConfiguration) GetJobTypeOk() (*JobType, bool)

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

func (*MdtConfiguration) GetLoggingDuration

func (o *MdtConfiguration) GetLoggingDuration() LoggingDurationMdt

GetLoggingDuration returns the LoggingDuration field value if set, zero value otherwise.

func (*MdtConfiguration) GetLoggingDurationNr

func (o *MdtConfiguration) GetLoggingDurationNr() LoggingDurationNrMdt

GetLoggingDurationNr returns the LoggingDurationNr field value if set, zero value otherwise.

func (*MdtConfiguration) GetLoggingDurationNrOk

func (o *MdtConfiguration) GetLoggingDurationNrOk() (*LoggingDurationNrMdt, bool)

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

func (*MdtConfiguration) GetLoggingDurationOk

func (o *MdtConfiguration) GetLoggingDurationOk() (*LoggingDurationMdt, bool)

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

func (*MdtConfiguration) GetLoggingInterval

func (o *MdtConfiguration) GetLoggingInterval() LoggingIntervalMdt

GetLoggingInterval returns the LoggingInterval field value if set, zero value otherwise.

func (*MdtConfiguration) GetLoggingIntervalNr

func (o *MdtConfiguration) GetLoggingIntervalNr() LoggingIntervalNrMdt

GetLoggingIntervalNr returns the LoggingIntervalNr field value if set, zero value otherwise.

func (*MdtConfiguration) GetLoggingIntervalNrOk

func (o *MdtConfiguration) GetLoggingIntervalNrOk() (*LoggingIntervalNrMdt, bool)

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

func (*MdtConfiguration) GetLoggingIntervalOk

func (o *MdtConfiguration) GetLoggingIntervalOk() (*LoggingIntervalMdt, bool)

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

func (*MdtConfiguration) GetMbsfnAreaList

func (o *MdtConfiguration) GetMbsfnAreaList() []MbsfnArea

GetMbsfnAreaList returns the MbsfnAreaList field value if set, zero value otherwise.

func (*MdtConfiguration) GetMbsfnAreaListOk

func (o *MdtConfiguration) GetMbsfnAreaListOk() ([]MbsfnArea, bool)

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

func (*MdtConfiguration) GetMdtAllowedPlmnIdList

func (o *MdtConfiguration) GetMdtAllowedPlmnIdList() []PlmnId

GetMdtAllowedPlmnIdList returns the MdtAllowedPlmnIdList field value if set, zero value otherwise.

func (*MdtConfiguration) GetMdtAllowedPlmnIdListOk

func (o *MdtConfiguration) GetMdtAllowedPlmnIdListOk() ([]PlmnId, bool)

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

func (*MdtConfiguration) GetMeasurementLteList

func (o *MdtConfiguration) GetMeasurementLteList() []MeasurementLteForMdt

GetMeasurementLteList returns the MeasurementLteList field value if set, zero value otherwise.

func (*MdtConfiguration) GetMeasurementLteListOk

func (o *MdtConfiguration) GetMeasurementLteListOk() ([]MeasurementLteForMdt, bool)

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

func (*MdtConfiguration) GetMeasurementNrList

func (o *MdtConfiguration) GetMeasurementNrList() []MeasurementNrForMdt

GetMeasurementNrList returns the MeasurementNrList field value if set, zero value otherwise.

func (*MdtConfiguration) GetMeasurementNrListOk

func (o *MdtConfiguration) GetMeasurementNrListOk() ([]MeasurementNrForMdt, bool)

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

func (*MdtConfiguration) GetMeasurementPeriodLte

func (o *MdtConfiguration) GetMeasurementPeriodLte() MeasurementPeriodLteMdt

GetMeasurementPeriodLte returns the MeasurementPeriodLte field value if set, zero value otherwise.

func (*MdtConfiguration) GetMeasurementPeriodLteOk

func (o *MdtConfiguration) GetMeasurementPeriodLteOk() (*MeasurementPeriodLteMdt, bool)

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

func (*MdtConfiguration) GetPositioningMethod

func (o *MdtConfiguration) GetPositioningMethod() PositioningMethodMdt

GetPositioningMethod returns the PositioningMethod field value if set, zero value otherwise.

func (*MdtConfiguration) GetPositioningMethodOk

func (o *MdtConfiguration) GetPositioningMethodOk() (*PositioningMethodMdt, bool)

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

func (*MdtConfiguration) GetReportAmount

func (o *MdtConfiguration) GetReportAmount() ReportAmountMdt

GetReportAmount returns the ReportAmount field value if set, zero value otherwise.

func (*MdtConfiguration) GetReportAmountOk

func (o *MdtConfiguration) GetReportAmountOk() (*ReportAmountMdt, bool)

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

func (*MdtConfiguration) GetReportInterval

func (o *MdtConfiguration) GetReportInterval() ReportIntervalMdt

GetReportInterval returns the ReportInterval field value if set, zero value otherwise.

func (*MdtConfiguration) GetReportIntervalNr

func (o *MdtConfiguration) GetReportIntervalNr() ReportIntervalNrMdt

GetReportIntervalNr returns the ReportIntervalNr field value if set, zero value otherwise.

func (*MdtConfiguration) GetReportIntervalNrOk

func (o *MdtConfiguration) GetReportIntervalNrOk() (*ReportIntervalNrMdt, bool)

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

func (*MdtConfiguration) GetReportIntervalOk

func (o *MdtConfiguration) GetReportIntervalOk() (*ReportIntervalMdt, bool)

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

func (*MdtConfiguration) GetReportType

func (o *MdtConfiguration) GetReportType() ReportTypeMdt

GetReportType returns the ReportType field value if set, zero value otherwise.

func (*MdtConfiguration) GetReportTypeOk

func (o *MdtConfiguration) GetReportTypeOk() (*ReportTypeMdt, bool)

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

func (*MdtConfiguration) GetReportingTriggerList

func (o *MdtConfiguration) GetReportingTriggerList() []ReportingTrigger

GetReportingTriggerList returns the ReportingTriggerList field value if set, zero value otherwise.

func (*MdtConfiguration) GetReportingTriggerListOk

func (o *MdtConfiguration) GetReportingTriggerListOk() ([]ReportingTrigger, bool)

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

func (*MdtConfiguration) GetSensorMeasurementList

func (o *MdtConfiguration) GetSensorMeasurementList() []SensorMeasurement

GetSensorMeasurementList returns the SensorMeasurementList field value if set, zero value otherwise.

func (*MdtConfiguration) GetSensorMeasurementListOk

func (o *MdtConfiguration) GetSensorMeasurementListOk() ([]SensorMeasurement, bool)

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

func (*MdtConfiguration) HasAddPositioningMethodList

func (o *MdtConfiguration) HasAddPositioningMethodList() bool

HasAddPositioningMethodList returns a boolean if a field has been set.

func (*MdtConfiguration) HasAreaScope

func (o *MdtConfiguration) HasAreaScope() bool

HasAreaScope returns a boolean if a field has been set.

func (*MdtConfiguration) HasCollectionPeriodRmmLte

func (o *MdtConfiguration) HasCollectionPeriodRmmLte() bool

HasCollectionPeriodRmmLte returns a boolean if a field has been set.

func (*MdtConfiguration) HasCollectionPeriodRmmNr

func (o *MdtConfiguration) HasCollectionPeriodRmmNr() bool

HasCollectionPeriodRmmNr returns a boolean if a field has been set.

func (*MdtConfiguration) HasEventList

func (o *MdtConfiguration) HasEventList() bool

HasEventList returns a boolean if a field has been set.

func (*MdtConfiguration) HasEventThresholdRsrp

func (o *MdtConfiguration) HasEventThresholdRsrp() bool

HasEventThresholdRsrp returns a boolean if a field has been set.

func (*MdtConfiguration) HasEventThresholdRsrpNr

func (o *MdtConfiguration) HasEventThresholdRsrpNr() bool

HasEventThresholdRsrpNr returns a boolean if a field has been set.

func (*MdtConfiguration) HasEventThresholdRsrq

func (o *MdtConfiguration) HasEventThresholdRsrq() bool

HasEventThresholdRsrq returns a boolean if a field has been set.

func (*MdtConfiguration) HasEventThresholdRsrqNr

func (o *MdtConfiguration) HasEventThresholdRsrqNr() bool

HasEventThresholdRsrqNr returns a boolean if a field has been set.

func (*MdtConfiguration) HasInterFreqTargetList

func (o *MdtConfiguration) HasInterFreqTargetList() bool

HasInterFreqTargetList returns a boolean if a field has been set.

func (*MdtConfiguration) HasLoggingDuration

func (o *MdtConfiguration) HasLoggingDuration() bool

HasLoggingDuration returns a boolean if a field has been set.

func (*MdtConfiguration) HasLoggingDurationNr

func (o *MdtConfiguration) HasLoggingDurationNr() bool

HasLoggingDurationNr returns a boolean if a field has been set.

func (*MdtConfiguration) HasLoggingInterval

func (o *MdtConfiguration) HasLoggingInterval() bool

HasLoggingInterval returns a boolean if a field has been set.

func (*MdtConfiguration) HasLoggingIntervalNr

func (o *MdtConfiguration) HasLoggingIntervalNr() bool

HasLoggingIntervalNr returns a boolean if a field has been set.

func (*MdtConfiguration) HasMbsfnAreaList

func (o *MdtConfiguration) HasMbsfnAreaList() bool

HasMbsfnAreaList returns a boolean if a field has been set.

func (*MdtConfiguration) HasMdtAllowedPlmnIdList

func (o *MdtConfiguration) HasMdtAllowedPlmnIdList() bool

HasMdtAllowedPlmnIdList returns a boolean if a field has been set.

func (*MdtConfiguration) HasMeasurementLteList

func (o *MdtConfiguration) HasMeasurementLteList() bool

HasMeasurementLteList returns a boolean if a field has been set.

func (*MdtConfiguration) HasMeasurementNrList

func (o *MdtConfiguration) HasMeasurementNrList() bool

HasMeasurementNrList returns a boolean if a field has been set.

func (*MdtConfiguration) HasMeasurementPeriodLte

func (o *MdtConfiguration) HasMeasurementPeriodLte() bool

HasMeasurementPeriodLte returns a boolean if a field has been set.

func (*MdtConfiguration) HasPositioningMethod

func (o *MdtConfiguration) HasPositioningMethod() bool

HasPositioningMethod returns a boolean if a field has been set.

func (*MdtConfiguration) HasReportAmount

func (o *MdtConfiguration) HasReportAmount() bool

HasReportAmount returns a boolean if a field has been set.

func (*MdtConfiguration) HasReportInterval

func (o *MdtConfiguration) HasReportInterval() bool

HasReportInterval returns a boolean if a field has been set.

func (*MdtConfiguration) HasReportIntervalNr

func (o *MdtConfiguration) HasReportIntervalNr() bool

HasReportIntervalNr returns a boolean if a field has been set.

func (*MdtConfiguration) HasReportType

func (o *MdtConfiguration) HasReportType() bool

HasReportType returns a boolean if a field has been set.

func (*MdtConfiguration) HasReportingTriggerList

func (o *MdtConfiguration) HasReportingTriggerList() bool

HasReportingTriggerList returns a boolean if a field has been set.

func (*MdtConfiguration) HasSensorMeasurementList

func (o *MdtConfiguration) HasSensorMeasurementList() bool

HasSensorMeasurementList returns a boolean if a field has been set.

func (MdtConfiguration) MarshalJSON

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

func (*MdtConfiguration) SetAddPositioningMethodList

func (o *MdtConfiguration) SetAddPositioningMethodList(v []PositioningMethodMdt)

SetAddPositioningMethodList gets a reference to the given []PositioningMethodMdt and assigns it to the AddPositioningMethodList field.

func (*MdtConfiguration) SetAreaScope

func (o *MdtConfiguration) SetAreaScope(v AreaScope)

SetAreaScope gets a reference to the given AreaScope and assigns it to the AreaScope field.

func (*MdtConfiguration) SetCollectionPeriodRmmLte

func (o *MdtConfiguration) SetCollectionPeriodRmmLte(v CollectionPeriodRmmLteMdt)

SetCollectionPeriodRmmLte gets a reference to the given CollectionPeriodRmmLteMdt and assigns it to the CollectionPeriodRmmLte field.

func (*MdtConfiguration) SetCollectionPeriodRmmNr

func (o *MdtConfiguration) SetCollectionPeriodRmmNr(v CollectionPeriodRmmNrMdt)

SetCollectionPeriodRmmNr gets a reference to the given CollectionPeriodRmmNrMdt and assigns it to the CollectionPeriodRmmNr field.

func (*MdtConfiguration) SetEventList

func (o *MdtConfiguration) SetEventList(v []EventForMdt)

SetEventList gets a reference to the given []EventForMdt and assigns it to the EventList field.

func (*MdtConfiguration) SetEventThresholdRsrp

func (o *MdtConfiguration) SetEventThresholdRsrp(v int32)

SetEventThresholdRsrp gets a reference to the given int32 and assigns it to the EventThresholdRsrp field.

func (*MdtConfiguration) SetEventThresholdRsrpNr

func (o *MdtConfiguration) SetEventThresholdRsrpNr(v int32)

SetEventThresholdRsrpNr gets a reference to the given int32 and assigns it to the EventThresholdRsrpNr field.

func (*MdtConfiguration) SetEventThresholdRsrq

func (o *MdtConfiguration) SetEventThresholdRsrq(v int32)

SetEventThresholdRsrq gets a reference to the given int32 and assigns it to the EventThresholdRsrq field.

func (*MdtConfiguration) SetEventThresholdRsrqNr

func (o *MdtConfiguration) SetEventThresholdRsrqNr(v int32)

SetEventThresholdRsrqNr gets a reference to the given int32 and assigns it to the EventThresholdRsrqNr field.

func (*MdtConfiguration) SetInterFreqTargetList

func (o *MdtConfiguration) SetInterFreqTargetList(v []InterFreqTargetInfo)

SetInterFreqTargetList gets a reference to the given []InterFreqTargetInfo and assigns it to the InterFreqTargetList field.

func (*MdtConfiguration) SetJobType

func (o *MdtConfiguration) SetJobType(v JobType)

SetJobType sets field value

func (*MdtConfiguration) SetLoggingDuration

func (o *MdtConfiguration) SetLoggingDuration(v LoggingDurationMdt)

SetLoggingDuration gets a reference to the given LoggingDurationMdt and assigns it to the LoggingDuration field.

func (*MdtConfiguration) SetLoggingDurationNr

func (o *MdtConfiguration) SetLoggingDurationNr(v LoggingDurationNrMdt)

SetLoggingDurationNr gets a reference to the given LoggingDurationNrMdt and assigns it to the LoggingDurationNr field.

func (*MdtConfiguration) SetLoggingInterval

func (o *MdtConfiguration) SetLoggingInterval(v LoggingIntervalMdt)

SetLoggingInterval gets a reference to the given LoggingIntervalMdt and assigns it to the LoggingInterval field.

func (*MdtConfiguration) SetLoggingIntervalNr

func (o *MdtConfiguration) SetLoggingIntervalNr(v LoggingIntervalNrMdt)

SetLoggingIntervalNr gets a reference to the given LoggingIntervalNrMdt and assigns it to the LoggingIntervalNr field.

func (*MdtConfiguration) SetMbsfnAreaList

func (o *MdtConfiguration) SetMbsfnAreaList(v []MbsfnArea)

SetMbsfnAreaList gets a reference to the given []MbsfnArea and assigns it to the MbsfnAreaList field.

func (*MdtConfiguration) SetMdtAllowedPlmnIdList

func (o *MdtConfiguration) SetMdtAllowedPlmnIdList(v []PlmnId)

SetMdtAllowedPlmnIdList gets a reference to the given []PlmnId and assigns it to the MdtAllowedPlmnIdList field.

func (*MdtConfiguration) SetMeasurementLteList

func (o *MdtConfiguration) SetMeasurementLteList(v []MeasurementLteForMdt)

SetMeasurementLteList gets a reference to the given []MeasurementLteForMdt and assigns it to the MeasurementLteList field.

func (*MdtConfiguration) SetMeasurementNrList

func (o *MdtConfiguration) SetMeasurementNrList(v []MeasurementNrForMdt)

SetMeasurementNrList gets a reference to the given []MeasurementNrForMdt and assigns it to the MeasurementNrList field.

func (*MdtConfiguration) SetMeasurementPeriodLte

func (o *MdtConfiguration) SetMeasurementPeriodLte(v MeasurementPeriodLteMdt)

SetMeasurementPeriodLte gets a reference to the given MeasurementPeriodLteMdt and assigns it to the MeasurementPeriodLte field.

func (*MdtConfiguration) SetPositioningMethod

func (o *MdtConfiguration) SetPositioningMethod(v PositioningMethodMdt)

SetPositioningMethod gets a reference to the given PositioningMethodMdt and assigns it to the PositioningMethod field.

func (*MdtConfiguration) SetReportAmount

func (o *MdtConfiguration) SetReportAmount(v ReportAmountMdt)

SetReportAmount gets a reference to the given ReportAmountMdt and assigns it to the ReportAmount field.

func (*MdtConfiguration) SetReportInterval

func (o *MdtConfiguration) SetReportInterval(v ReportIntervalMdt)

SetReportInterval gets a reference to the given ReportIntervalMdt and assigns it to the ReportInterval field.

func (*MdtConfiguration) SetReportIntervalNr

func (o *MdtConfiguration) SetReportIntervalNr(v ReportIntervalNrMdt)

SetReportIntervalNr gets a reference to the given ReportIntervalNrMdt and assigns it to the ReportIntervalNr field.

func (*MdtConfiguration) SetReportType

func (o *MdtConfiguration) SetReportType(v ReportTypeMdt)

SetReportType gets a reference to the given ReportTypeMdt and assigns it to the ReportType field.

func (*MdtConfiguration) SetReportingTriggerList

func (o *MdtConfiguration) SetReportingTriggerList(v []ReportingTrigger)

SetReportingTriggerList gets a reference to the given []ReportingTrigger and assigns it to the ReportingTriggerList field.

func (*MdtConfiguration) SetSensorMeasurementList

func (o *MdtConfiguration) SetSensorMeasurementList(v []SensorMeasurement)

SetSensorMeasurementList gets a reference to the given []SensorMeasurement and assigns it to the SensorMeasurementList field.

func (MdtConfiguration) ToMap

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

type MeasurementLteForMdt

type MeasurementLteForMdt struct {
	String *string
}

MeasurementLteForMdt The enumeration MeasurementLteForMdt defines Measurements used for MDT in LTE in the trace. See 3GPP TS 32.422 for further description of the values. It shall comply with the provisions defined in table 5.6.3.5-1.

func (*MeasurementLteForMdt) MarshalJSON

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

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

func (*MeasurementLteForMdt) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MeasurementNrForMdt

type MeasurementNrForMdt struct {
	String *string
}

MeasurementNrForMdt The enumeration MeasurementNrForMdt defines Measurements used for MDT in NR in the trace. See 3GPP TS 32.422 for further description of the values. It shall comply with the provisions defined in table 5.6.3.6-1.

func (*MeasurementNrForMdt) MarshalJSON

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

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

func (*MeasurementNrForMdt) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MeasurementPeriodLteMdt

type MeasurementPeriodLteMdt struct {
	String *string
}

MeasurementPeriodLteMdt The enumeration MeasurementPeriodLteMdt defines Measurement period LTE for MDT in the trace. See 3GPP TS 32.422 for further description of the values. It shall comply with the provisions defined in table 5.6.3.16-1.

func (*MeasurementPeriodLteMdt) MarshalJSON

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

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

func (*MeasurementPeriodLteMdt) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 MoExpDataCounter

type MoExpDataCounter struct {
	// Unsigned integer identifying the MO Exception Data Counter, as specified in clause 5.31.14.3 of 3GPP TS 23.501.
	Counter int32 `json:"counter"`
	// string with format 'date-time' as defined in OpenAPI.
	TimeStamp *time.Time `json:"timeStamp,omitempty"`
}

MoExpDataCounter Contain the MO Exception Data Counter.

func NewMoExpDataCounter

func NewMoExpDataCounter(counter int32) *MoExpDataCounter

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

func NewMoExpDataCounterWithDefaults

func NewMoExpDataCounterWithDefaults() *MoExpDataCounter

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

func (*MoExpDataCounter) GetCounter

func (o *MoExpDataCounter) GetCounter() int32

GetCounter returns the Counter field value

func (*MoExpDataCounter) GetCounterOk

func (o *MoExpDataCounter) GetCounterOk() (*int32, bool)

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

func (*MoExpDataCounter) GetTimeStamp

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

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

func (*MoExpDataCounter) GetTimeStampOk

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

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

func (*MoExpDataCounter) HasTimeStamp

func (o *MoExpDataCounter) HasTimeStamp() bool

HasTimeStamp returns a boolean if a field has been set.

func (MoExpDataCounter) MarshalJSON

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

func (*MoExpDataCounter) SetCounter

func (o *MoExpDataCounter) SetCounter(v int32)

SetCounter sets field value

func (*MoExpDataCounter) SetTimeStamp

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

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

func (MoExpDataCounter) ToMap

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

type N3gaLocation

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

N3gaLocation Contains the Non-3GPP access user location.

func NewN3gaLocation

func NewN3gaLocation() *N3gaLocation

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

func NewN3gaLocationWithDefaults

func NewN3gaLocationWithDefaults() *N3gaLocation

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

func (*N3gaLocation) GetGci

func (o *N3gaLocation) GetGci() string

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

func (*N3gaLocation) GetGciOk

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

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

func (*N3gaLocation) GetGli

func (o *N3gaLocation) GetGli() string

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

func (*N3gaLocation) GetGliOk

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

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

func (*N3gaLocation) GetHfcNodeId

func (o *N3gaLocation) GetHfcNodeId() HfcNodeId

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

func (*N3gaLocation) GetHfcNodeIdOk

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

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

func (*N3gaLocation) GetN3IwfId

func (o *N3gaLocation) GetN3IwfId() string

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

func (*N3gaLocation) GetN3IwfIdOk

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

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

func (*N3gaLocation) GetN3gppTai

func (o *N3gaLocation) GetN3gppTai() Tai

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

func (*N3gaLocation) GetN3gppTaiOk

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

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

func (*N3gaLocation) GetPortNumber

func (o *N3gaLocation) GetPortNumber() int32

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

func (*N3gaLocation) GetPortNumberOk

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

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

func (*N3gaLocation) GetProtocol

func (o *N3gaLocation) GetProtocol() TransportProtocol

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

func (*N3gaLocation) GetProtocolOk

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

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

func (*N3gaLocation) GetTnapId

func (o *N3gaLocation) GetTnapId() TnapId

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

func (*N3gaLocation) GetTnapIdOk

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

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

func (*N3gaLocation) GetTwapId

func (o *N3gaLocation) GetTwapId() TwapId

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

func (*N3gaLocation) GetTwapIdOk

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

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

func (*N3gaLocation) GetUeIpv4Addr

func (o *N3gaLocation) GetUeIpv4Addr() string

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

func (*N3gaLocation) GetUeIpv4AddrOk

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

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

func (*N3gaLocation) GetUeIpv6Addr

func (o *N3gaLocation) GetUeIpv6Addr() Ipv6Addr

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

func (*N3gaLocation) GetUeIpv6AddrOk

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

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

func (*N3gaLocation) GetW5gbanLineType

func (o *N3gaLocation) GetW5gbanLineType() LineType

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

func (*N3gaLocation) GetW5gbanLineTypeOk

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

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

func (*N3gaLocation) HasGci

func (o *N3gaLocation) HasGci() bool

HasGci returns a boolean if a field has been set.

func (*N3gaLocation) HasGli

func (o *N3gaLocation) HasGli() bool

HasGli returns a boolean if a field has been set.

func (*N3gaLocation) HasHfcNodeId

func (o *N3gaLocation) HasHfcNodeId() bool

HasHfcNodeId returns a boolean if a field has been set.

func (*N3gaLocation) HasN3IwfId

func (o *N3gaLocation) HasN3IwfId() bool

HasN3IwfId returns a boolean if a field has been set.

func (*N3gaLocation) HasN3gppTai

func (o *N3gaLocation) HasN3gppTai() bool

HasN3gppTai returns a boolean if a field has been set.

func (*N3gaLocation) HasPortNumber

func (o *N3gaLocation) HasPortNumber() bool

HasPortNumber returns a boolean if a field has been set.

func (*N3gaLocation) HasProtocol

func (o *N3gaLocation) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*N3gaLocation) HasTnapId

func (o *N3gaLocation) HasTnapId() bool

HasTnapId returns a boolean if a field has been set.

func (*N3gaLocation) HasTwapId

func (o *N3gaLocation) HasTwapId() bool

HasTwapId returns a boolean if a field has been set.

func (*N3gaLocation) HasUeIpv4Addr

func (o *N3gaLocation) HasUeIpv4Addr() bool

HasUeIpv4Addr returns a boolean if a field has been set.

func (*N3gaLocation) HasUeIpv6Addr

func (o *N3gaLocation) HasUeIpv6Addr() bool

HasUeIpv6Addr returns a boolean if a field has been set.

func (*N3gaLocation) HasW5gbanLineType

func (o *N3gaLocation) HasW5gbanLineType() bool

HasW5gbanLineType returns a boolean if a field has been set.

func (N3gaLocation) MarshalJSON

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

func (*N3gaLocation) SetGci

func (o *N3gaLocation) SetGci(v string)

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

func (*N3gaLocation) SetGli

func (o *N3gaLocation) SetGli(v string)

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

func (*N3gaLocation) SetHfcNodeId

func (o *N3gaLocation) SetHfcNodeId(v HfcNodeId)

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

func (*N3gaLocation) SetN3IwfId

func (o *N3gaLocation) SetN3IwfId(v string)

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

func (*N3gaLocation) SetN3gppTai

func (o *N3gaLocation) SetN3gppTai(v Tai)

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

func (*N3gaLocation) SetPortNumber

func (o *N3gaLocation) SetPortNumber(v int32)

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

func (*N3gaLocation) SetProtocol

func (o *N3gaLocation) SetProtocol(v TransportProtocol)

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

func (*N3gaLocation) SetTnapId

func (o *N3gaLocation) SetTnapId(v TnapId)

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

func (*N3gaLocation) SetTwapId

func (o *N3gaLocation) SetTwapId(v TwapId)

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

func (*N3gaLocation) SetUeIpv4Addr

func (o *N3gaLocation) SetUeIpv4Addr(v string)

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

func (*N3gaLocation) SetUeIpv6Addr

func (o *N3gaLocation) SetUeIpv6Addr(v Ipv6Addr)

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

func (*N3gaLocation) SetW5gbanLineType

func (o *N3gaLocation) SetW5gbanLineType(v LineType)

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

func (N3gaLocation) ToMap

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

type NFType

type NFType struct {
	String *string
}

NFType NF types known to NRF

func (*NFType) MarshalJSON

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

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

func (*NFType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Ncgi

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

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

func NewNcgi

func NewNcgi(plmnId PlmnId, nrCellId string) *Ncgi

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

func NewNcgiWithDefaults

func NewNcgiWithDefaults() *Ncgi

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

func (*Ncgi) GetNid

func (o *Ncgi) GetNid() string

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

func (*Ncgi) GetNidOk

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

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

func (*Ncgi) GetNrCellId

func (o *Ncgi) GetNrCellId() string

GetNrCellId returns the NrCellId field value

func (*Ncgi) GetNrCellIdOk

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

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

func (*Ncgi) GetPlmnId

func (o *Ncgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Ncgi) GetPlmnIdOk

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

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

func (*Ncgi) HasNid

func (o *Ncgi) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Ncgi) MarshalJSON

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

func (*Ncgi) SetNid

func (o *Ncgi) SetNid(v string)

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

func (*Ncgi) SetNrCellId

func (o *Ncgi) SetNrCellId(v string)

SetNrCellId sets field value

func (*Ncgi) SetPlmnId

func (o *Ncgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Ncgi) ToMap

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

type NcgiRm

type NcgiRm struct {
	Ncgi      *Ncgi
	NullValue *NullValue
}

NcgiRm This data type is defined in the same way as the 'Ncgi' data type, but with the OpenAPI 'nullable: true' property.

func (*NcgiRm) MarshalJSON

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

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

func (*NcgiRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 NetworkId

type NetworkId struct {
	// 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,omitempty"`
	// 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,omitempty"`
}

NetworkId contains PLMN and Network identity.

func NewNetworkId

func NewNetworkId() *NetworkId

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

func NewNetworkIdWithDefaults

func NewNetworkIdWithDefaults() *NetworkId

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

func (*NetworkId) GetMcc

func (o *NetworkId) GetMcc() string

GetMcc returns the Mcc field value if set, zero value otherwise.

func (*NetworkId) GetMccOk

func (o *NetworkId) GetMccOk() (*string, bool)

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

func (*NetworkId) GetMnc

func (o *NetworkId) GetMnc() string

GetMnc returns the Mnc field value if set, zero value otherwise.

func (*NetworkId) GetMncOk

func (o *NetworkId) GetMncOk() (*string, bool)

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

func (*NetworkId) HasMcc

func (o *NetworkId) HasMcc() bool

HasMcc returns a boolean if a field has been set.

func (*NetworkId) HasMnc

func (o *NetworkId) HasMnc() bool

HasMnc returns a boolean if a field has been set.

func (NetworkId) MarshalJSON

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

func (*NetworkId) SetMcc

func (o *NetworkId) SetMcc(v string)

SetMcc gets a reference to the given string and assigns it to the Mcc field.

func (*NetworkId) SetMnc

func (o *NetworkId) SetMnc(v string)

SetMnc gets a reference to the given string and assigns it to the Mnc field.

func (NetworkId) ToMap

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

type NgApCause

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

NgApCause Represents the NGAP cause.

func NewNgApCause

func NewNgApCause(group int32, value int32) *NgApCause

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

func NewNgApCauseWithDefaults

func NewNgApCauseWithDefaults() *NgApCause

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

func (*NgApCause) GetGroup

func (o *NgApCause) GetGroup() int32

GetGroup returns the Group field value

func (*NgApCause) GetGroupOk

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

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

func (*NgApCause) GetValue

func (o *NgApCause) GetValue() int32

GetValue returns the Value field value

func (*NgApCause) GetValueOk

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

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

func (NgApCause) MarshalJSON

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

func (*NgApCause) SetGroup

func (o *NgApCause) SetGroup(v int32)

SetGroup sets field value

func (*NgApCause) SetValue

func (o *NgApCause) SetValue(v int32)

SetValue sets field value

func (NgApCause) ToMap

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

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 NotificationControl

type NotificationControl struct {
	String *string
}

NotificationControl The enumeration NotificationControl indicates whether notifications are requested from the RAN when the GFBR can no longer (or again) be fulfilled for a QoS Flow during the lifetime of the QoS Flow (see clause 5.7.2.4 of 3GPP TS 23.501). It shall comply with the provisions defined in table 5.5.3.5-1.

func (*NotificationControl) MarshalJSON

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

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

func (*NotificationControl) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NotificationControlRm

type NotificationControlRm struct {
	NotificationControl *NotificationControl
	NullValue           *NullValue
}

NotificationControlRm This enumeration is defined in the same way as the 'NotificationControl' enumeration, but with the OpenAPI 'nullable: true' property.

func (*NotificationControlRm) MarshalJSON

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

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

func (*NotificationControlRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NotificationFlag

type NotificationFlag struct {
	String *string
}

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

func (*NotificationFlag) MarshalJSON

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

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

func (*NotificationFlag) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NotifyItem

type NotifyItem struct {
	// String providing an URI formatted according to RFC 3986.
	ResourceId string       `json:"resourceId"`
	Changes    []ChangeItem `json:"changes"`
}

NotifyItem Indicates changes on a resource.

func NewNotifyItem

func NewNotifyItem(resourceId string, changes []ChangeItem) *NotifyItem

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

func NewNotifyItemWithDefaults

func NewNotifyItemWithDefaults() *NotifyItem

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

func (*NotifyItem) GetChanges

func (o *NotifyItem) GetChanges() []ChangeItem

GetChanges returns the Changes field value

func (*NotifyItem) GetChangesOk

func (o *NotifyItem) GetChangesOk() ([]ChangeItem, bool)

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

func (*NotifyItem) GetResourceId

func (o *NotifyItem) GetResourceId() string

GetResourceId returns the ResourceId field value

func (*NotifyItem) GetResourceIdOk

func (o *NotifyItem) GetResourceIdOk() (*string, bool)

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

func (NotifyItem) MarshalJSON

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

func (*NotifyItem) SetChanges

func (o *NotifyItem) SetChanges(v []ChangeItem)

SetChanges sets field value

func (*NotifyItem) SetResourceId

func (o *NotifyItem) SetResourceId(v string)

SetResourceId sets field value

func (NotifyItem) ToMap

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

type NrLocation

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

NrLocation Contains the NR user location.

func NewNrLocation

func NewNrLocation(tai Tai, ncgi Ncgi) *NrLocation

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

func NewNrLocationWithDefaults

func NewNrLocationWithDefaults() *NrLocation

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

func (*NrLocation) GetAgeOfLocationInformation

func (o *NrLocation) GetAgeOfLocationInformation() int32

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

func (*NrLocation) GetAgeOfLocationInformationOk

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

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

func (*NrLocation) GetGeodeticInformation

func (o *NrLocation) GetGeodeticInformation() string

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

func (*NrLocation) GetGeodeticInformationOk

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

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

func (*NrLocation) GetGeographicalInformation

func (o *NrLocation) GetGeographicalInformation() string

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

func (*NrLocation) GetGeographicalInformationOk

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

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

func (*NrLocation) GetGlobalGnbId

func (o *NrLocation) GetGlobalGnbId() GlobalRanNodeId

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

func (*NrLocation) GetGlobalGnbIdOk

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

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

func (*NrLocation) GetIgnoreNcgi

func (o *NrLocation) GetIgnoreNcgi() bool

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

func (*NrLocation) GetIgnoreNcgiOk

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

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

func (*NrLocation) GetNcgi

func (o *NrLocation) GetNcgi() Ncgi

GetNcgi returns the Ncgi field value

func (*NrLocation) GetNcgiOk

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

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

func (*NrLocation) GetTai

func (o *NrLocation) GetTai() Tai

GetTai returns the Tai field value

func (*NrLocation) GetTaiOk

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

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

func (*NrLocation) GetUeLocationTimestamp

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

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

func (*NrLocation) GetUeLocationTimestampOk

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

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

func (*NrLocation) HasAgeOfLocationInformation

func (o *NrLocation) HasAgeOfLocationInformation() bool

HasAgeOfLocationInformation returns a boolean if a field has been set.

func (*NrLocation) HasGeodeticInformation

func (o *NrLocation) HasGeodeticInformation() bool

HasGeodeticInformation returns a boolean if a field has been set.

func (*NrLocation) HasGeographicalInformation

func (o *NrLocation) HasGeographicalInformation() bool

HasGeographicalInformation returns a boolean if a field has been set.

func (*NrLocation) HasGlobalGnbId

func (o *NrLocation) HasGlobalGnbId() bool

HasGlobalGnbId returns a boolean if a field has been set.

func (*NrLocation) HasIgnoreNcgi

func (o *NrLocation) HasIgnoreNcgi() bool

HasIgnoreNcgi returns a boolean if a field has been set.

func (*NrLocation) HasUeLocationTimestamp

func (o *NrLocation) HasUeLocationTimestamp() bool

HasUeLocationTimestamp returns a boolean if a field has been set.

func (NrLocation) MarshalJSON

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

func (*NrLocation) SetAgeOfLocationInformation

func (o *NrLocation) SetAgeOfLocationInformation(v int32)

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

func (*NrLocation) SetGeodeticInformation

func (o *NrLocation) SetGeodeticInformation(v string)

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

func (*NrLocation) SetGeographicalInformation

func (o *NrLocation) SetGeographicalInformation(v string)

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

func (*NrLocation) SetGlobalGnbId

func (o *NrLocation) SetGlobalGnbId(v GlobalRanNodeId)

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

func (*NrLocation) SetIgnoreNcgi

func (o *NrLocation) SetIgnoreNcgi(v bool)

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

func (*NrLocation) SetNcgi

func (o *NrLocation) SetNcgi(v Ncgi)

SetNcgi sets field value

func (*NrLocation) SetTai

func (o *NrLocation) SetTai(v Tai)

SetTai sets field value

func (*NrLocation) SetUeLocationTimestamp

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

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

func (NrLocation) ToMap

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

type NrLocationRm

type NrLocationRm struct {
	NrLocation *NrLocation
	NullValue  *NullValue
}

NrLocationRm This data type is defined in the same way as the 'NrLocation' data type, but with the OpenAPI 'nullable: true' property.\"

func (*NrLocationRm) MarshalJSON

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

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

func (*NrLocationRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type NrV2xAuth

type NrV2xAuth struct {
	VehicleUeAuth    *UeAuth `json:"vehicleUeAuth,omitempty"`
	PedestrianUeAuth *UeAuth `json:"pedestrianUeAuth,omitempty"`
}

NrV2xAuth Contains NR V2X services authorized information.

func NewNrV2xAuth

func NewNrV2xAuth() *NrV2xAuth

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

func NewNrV2xAuthWithDefaults

func NewNrV2xAuthWithDefaults() *NrV2xAuth

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

func (*NrV2xAuth) GetPedestrianUeAuth

func (o *NrV2xAuth) GetPedestrianUeAuth() UeAuth

GetPedestrianUeAuth returns the PedestrianUeAuth field value if set, zero value otherwise.

func (*NrV2xAuth) GetPedestrianUeAuthOk

func (o *NrV2xAuth) GetPedestrianUeAuthOk() (*UeAuth, bool)

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

func (*NrV2xAuth) GetVehicleUeAuth

func (o *NrV2xAuth) GetVehicleUeAuth() UeAuth

GetVehicleUeAuth returns the VehicleUeAuth field value if set, zero value otherwise.

func (*NrV2xAuth) GetVehicleUeAuthOk

func (o *NrV2xAuth) GetVehicleUeAuthOk() (*UeAuth, bool)

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

func (*NrV2xAuth) HasPedestrianUeAuth

func (o *NrV2xAuth) HasPedestrianUeAuth() bool

HasPedestrianUeAuth returns a boolean if a field has been set.

func (*NrV2xAuth) HasVehicleUeAuth

func (o *NrV2xAuth) HasVehicleUeAuth() bool

HasVehicleUeAuth returns a boolean if a field has been set.

func (NrV2xAuth) MarshalJSON

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

func (*NrV2xAuth) SetPedestrianUeAuth

func (o *NrV2xAuth) SetPedestrianUeAuth(v UeAuth)

SetPedestrianUeAuth gets a reference to the given UeAuth and assigns it to the PedestrianUeAuth field.

func (*NrV2xAuth) SetVehicleUeAuth

func (o *NrV2xAuth) SetVehicleUeAuth(v UeAuth)

SetVehicleUeAuth gets a reference to the given UeAuth and assigns it to the VehicleUeAuth field.

func (NrV2xAuth) ToMap

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

type NssaaStatus

type NssaaStatus struct {
	Snssai Snssai     `json:"snssai"`
	Status AuthStatus `json:"status"`
}

NssaaStatus contains the Subscribed S-NSSAI subject to NSSAA procedure and the status.

func NewNssaaStatus

func NewNssaaStatus(snssai Snssai, status AuthStatus) *NssaaStatus

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

func NewNssaaStatusWithDefaults

func NewNssaaStatusWithDefaults() *NssaaStatus

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

func (*NssaaStatus) GetSnssai

func (o *NssaaStatus) GetSnssai() Snssai

GetSnssai returns the Snssai field value

func (*NssaaStatus) GetSnssaiOk

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

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

func (*NssaaStatus) GetStatus

func (o *NssaaStatus) GetStatus() AuthStatus

GetStatus returns the Status field value

func (*NssaaStatus) GetStatusOk

func (o *NssaaStatus) GetStatusOk() (*AuthStatus, bool)

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

func (NssaaStatus) MarshalJSON

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

func (*NssaaStatus) SetSnssai

func (o *NssaaStatus) SetSnssai(v Snssai)

SetSnssai sets field value

func (*NssaaStatus) SetStatus

func (o *NssaaStatus) SetStatus(v AuthStatus)

SetStatus sets field value

func (NssaaStatus) ToMap

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

type NssaaStatusRm

type NssaaStatusRm struct {
	NssaaStatus *NssaaStatus
	NullValue   *NullValue
}

NssaaStatusRm This data type is defined in the same way as the 'NssaaStatus' data type, but with the OpenAPI 'nullable: true' property.

func (*NssaaStatusRm) MarshalJSON

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

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

func (*NssaaStatusRm) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 NullableAccessTokenErr

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

func NewNullableAccessTokenErr

func NewNullableAccessTokenErr(val *AccessTokenErr) *NullableAccessTokenErr

func (NullableAccessTokenErr) Get

func (NullableAccessTokenErr) IsSet

func (v NullableAccessTokenErr) IsSet() bool

func (NullableAccessTokenErr) MarshalJSON

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

func (*NullableAccessTokenErr) Set

func (*NullableAccessTokenErr) UnmarshalJSON

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

func (*NullableAccessTokenErr) Unset

func (v *NullableAccessTokenErr) Unset()

type NullableAccessTokenReq

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

func NewNullableAccessTokenReq

func NewNullableAccessTokenReq(val *AccessTokenReq) *NullableAccessTokenReq

func (NullableAccessTokenReq) Get

func (NullableAccessTokenReq) IsSet

func (v NullableAccessTokenReq) IsSet() bool

func (NullableAccessTokenReq) MarshalJSON

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

func (*NullableAccessTokenReq) Set

func (*NullableAccessTokenReq) UnmarshalJSON

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

func (*NullableAccessTokenReq) Unset

func (v *NullableAccessTokenReq) Unset()

type NullableAccessType

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

func NewNullableAccessType

func NewNullableAccessType(val *AccessType) *NullableAccessType

func (NullableAccessType) Get

func (v NullableAccessType) Get() *AccessType

func (NullableAccessType) IsSet

func (v NullableAccessType) IsSet() bool

func (NullableAccessType) MarshalJSON

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

func (*NullableAccessType) Set

func (v *NullableAccessType) Set(val *AccessType)

func (*NullableAccessType) UnmarshalJSON

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

func (*NullableAccessType) Unset

func (v *NullableAccessType) Unset()

type NullableAccessTypeRm

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

func NewNullableAccessTypeRm

func NewNullableAccessTypeRm(val *AccessTypeRm) *NullableAccessTypeRm

func (NullableAccessTypeRm) Get

func (NullableAccessTypeRm) IsSet

func (v NullableAccessTypeRm) IsSet() bool

func (NullableAccessTypeRm) MarshalJSON

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

func (*NullableAccessTypeRm) Set

func (v *NullableAccessTypeRm) Set(val *AccessTypeRm)

func (*NullableAccessTypeRm) UnmarshalJSON

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

func (*NullableAccessTypeRm) Unset

func (v *NullableAccessTypeRm) Unset()

type NullableAcsInfo

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

func NewNullableAcsInfo

func NewNullableAcsInfo(val *AcsInfo) *NullableAcsInfo

func (NullableAcsInfo) Get

func (v NullableAcsInfo) Get() *AcsInfo

func (NullableAcsInfo) IsSet

func (v NullableAcsInfo) IsSet() bool

func (NullableAcsInfo) MarshalJSON

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

func (*NullableAcsInfo) Set

func (v *NullableAcsInfo) Set(val *AcsInfo)

func (*NullableAcsInfo) UnmarshalJSON

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

func (*NullableAcsInfo) Unset

func (v *NullableAcsInfo) Unset()

type NullableAcsInfoRm

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

func NewNullableAcsInfoRm

func NewNullableAcsInfoRm(val *AcsInfoRm) *NullableAcsInfoRm

func (NullableAcsInfoRm) Get

func (v NullableAcsInfoRm) Get() *AcsInfoRm

func (NullableAcsInfoRm) IsSet

func (v NullableAcsInfoRm) IsSet() bool

func (NullableAcsInfoRm) MarshalJSON

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

func (*NullableAcsInfoRm) Set

func (v *NullableAcsInfoRm) Set(val *AcsInfoRm)

func (*NullableAcsInfoRm) UnmarshalJSON

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

func (*NullableAcsInfoRm) Unset

func (v *NullableAcsInfoRm) Unset()

type NullableAdditionalQosFlowInfo

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

func (NullableAdditionalQosFlowInfo) Get

func (NullableAdditionalQosFlowInfo) IsSet

func (NullableAdditionalQosFlowInfo) MarshalJSON

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

func (*NullableAdditionalQosFlowInfo) Set

func (*NullableAdditionalQosFlowInfo) UnmarshalJSON

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

func (*NullableAdditionalQosFlowInfo) Unset

func (v *NullableAdditionalQosFlowInfo) Unset()

type NullableAdditionalQosFlowInfoAnyOf

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

func (NullableAdditionalQosFlowInfoAnyOf) Get

func (NullableAdditionalQosFlowInfoAnyOf) IsSet

func (NullableAdditionalQosFlowInfoAnyOf) MarshalJSON

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

func (*NullableAdditionalQosFlowInfoAnyOf) Set

func (*NullableAdditionalQosFlowInfoAnyOf) UnmarshalJSON

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

func (*NullableAdditionalQosFlowInfoAnyOf) Unset

type NullableAmbr

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

func NewNullableAmbr

func NewNullableAmbr(val *Ambr) *NullableAmbr

func (NullableAmbr) Get

func (v NullableAmbr) Get() *Ambr

func (NullableAmbr) IsSet

func (v NullableAmbr) IsSet() bool

func (NullableAmbr) MarshalJSON

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

func (*NullableAmbr) Set

func (v *NullableAmbr) Set(val *Ambr)

func (*NullableAmbr) UnmarshalJSON

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

func (*NullableAmbr) Unset

func (v *NullableAmbr) Unset()

type NullableAmbrRm

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

func NewNullableAmbrRm

func NewNullableAmbrRm(val *AmbrRm) *NullableAmbrRm

func (NullableAmbrRm) Get

func (v NullableAmbrRm) Get() *AmbrRm

func (NullableAmbrRm) IsSet

func (v NullableAmbrRm) IsSet() bool

func (NullableAmbrRm) MarshalJSON

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

func (*NullableAmbrRm) Set

func (v *NullableAmbrRm) Set(val *AmbrRm)

func (*NullableAmbrRm) UnmarshalJSON

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

func (*NullableAmbrRm) Unset

func (v *NullableAmbrRm) Unset()

type NullableApnRateStatus

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

func NewNullableApnRateStatus

func NewNullableApnRateStatus(val *ApnRateStatus) *NullableApnRateStatus

func (NullableApnRateStatus) Get

func (NullableApnRateStatus) IsSet

func (v NullableApnRateStatus) IsSet() bool

func (NullableApnRateStatus) MarshalJSON

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

func (*NullableApnRateStatus) Set

func (v *NullableApnRateStatus) Set(val *ApnRateStatus)

func (*NullableApnRateStatus) UnmarshalJSON

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

func (*NullableApnRateStatus) Unset

func (v *NullableApnRateStatus) Unset()

type NullableArea

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

func NewNullableArea

func NewNullableArea(val *Area) *NullableArea

func (NullableArea) Get

func (v NullableArea) Get() *Area

func (NullableArea) IsSet

func (v NullableArea) IsSet() bool

func (NullableArea) MarshalJSON

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

func (*NullableArea) Set

func (v *NullableArea) Set(val *Area)

func (*NullableArea) UnmarshalJSON

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

func (*NullableArea) Unset

func (v *NullableArea) Unset()

type NullableAreaScope

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

func NewNullableAreaScope

func NewNullableAreaScope(val *AreaScope) *NullableAreaScope

func (NullableAreaScope) Get

func (v NullableAreaScope) Get() *AreaScope

func (NullableAreaScope) IsSet

func (v NullableAreaScope) IsSet() bool

func (NullableAreaScope) MarshalJSON

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

func (*NullableAreaScope) Set

func (v *NullableAreaScope) Set(val *AreaScope)

func (*NullableAreaScope) UnmarshalJSON

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

func (*NullableAreaScope) Unset

func (v *NullableAreaScope) 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 NullableArpRm

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

func NewNullableArpRm

func NewNullableArpRm(val *ArpRm) *NullableArpRm

func (NullableArpRm) Get

func (v NullableArpRm) Get() *ArpRm

func (NullableArpRm) IsSet

func (v NullableArpRm) IsSet() bool

func (NullableArpRm) MarshalJSON

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

func (*NullableArpRm) Set

func (v *NullableArpRm) Set(val *ArpRm)

func (*NullableArpRm) UnmarshalJSON

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

func (*NullableArpRm) Unset

func (v *NullableArpRm) Unset()

type NullableAtom

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

func NewNullableAtom

func NewNullableAtom(val *Atom) *NullableAtom

func (NullableAtom) Get

func (v NullableAtom) Get() *Atom

func (NullableAtom) IsSet

func (v NullableAtom) IsSet() bool

func (NullableAtom) MarshalJSON

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

func (*NullableAtom) Set

func (v *NullableAtom) Set(val *Atom)

func (*NullableAtom) UnmarshalJSON

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

func (*NullableAtom) Unset

func (v *NullableAtom) Unset()

type NullableAtsssCapability

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

func NewNullableAtsssCapability

func NewNullableAtsssCapability(val *AtsssCapability) *NullableAtsssCapability

func (NullableAtsssCapability) Get

func (NullableAtsssCapability) IsSet

func (v NullableAtsssCapability) IsSet() bool

func (NullableAtsssCapability) MarshalJSON

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

func (*NullableAtsssCapability) Set

func (*NullableAtsssCapability) UnmarshalJSON

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

func (*NullableAtsssCapability) Unset

func (v *NullableAtsssCapability) Unset()

type NullableAuthStatus

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

func NewNullableAuthStatus

func NewNullableAuthStatus(val *AuthStatus) *NullableAuthStatus

func (NullableAuthStatus) Get

func (v NullableAuthStatus) Get() *AuthStatus

func (NullableAuthStatus) IsSet

func (v NullableAuthStatus) IsSet() bool

func (NullableAuthStatus) MarshalJSON

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

func (*NullableAuthStatus) Set

func (v *NullableAuthStatus) Set(val *AuthStatus)

func (*NullableAuthStatus) UnmarshalJSON

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

func (*NullableAuthStatus) Unset

func (v *NullableAuthStatus) Unset()

type NullableBackupAmfInfo

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

func NewNullableBackupAmfInfo

func NewNullableBackupAmfInfo(val *BackupAmfInfo) *NullableBackupAmfInfo

func (NullableBackupAmfInfo) Get

func (NullableBackupAmfInfo) IsSet

func (v NullableBackupAmfInfo) IsSet() bool

func (NullableBackupAmfInfo) MarshalJSON

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

func (*NullableBackupAmfInfo) Set

func (v *NullableBackupAmfInfo) Set(val *BackupAmfInfo)

func (*NullableBackupAmfInfo) UnmarshalJSON

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

func (*NullableBackupAmfInfo) Unset

func (v *NullableBackupAmfInfo) Unset()

type NullableBatteryIndication

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

func NewNullableBatteryIndication

func NewNullableBatteryIndication(val *BatteryIndication) *NullableBatteryIndication

func (NullableBatteryIndication) Get

func (NullableBatteryIndication) IsSet

func (v NullableBatteryIndication) IsSet() bool

func (NullableBatteryIndication) MarshalJSON

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

func (*NullableBatteryIndication) Set

func (*NullableBatteryIndication) UnmarshalJSON

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

func (*NullableBatteryIndication) Unset

func (v *NullableBatteryIndication) Unset()

type NullableBatteryIndicationRm

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

func NewNullableBatteryIndicationRm

func NewNullableBatteryIndicationRm(val *BatteryIndicationRm) *NullableBatteryIndicationRm

func (NullableBatteryIndicationRm) Get

func (NullableBatteryIndicationRm) IsSet

func (NullableBatteryIndicationRm) MarshalJSON

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

func (*NullableBatteryIndicationRm) Set

func (*NullableBatteryIndicationRm) UnmarshalJSON

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

func (*NullableBatteryIndicationRm) Unset

func (v *NullableBatteryIndicationRm) 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 NullableCellGlobalId

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

func NewNullableCellGlobalId

func NewNullableCellGlobalId(val *CellGlobalId) *NullableCellGlobalId

func (NullableCellGlobalId) Get

func (NullableCellGlobalId) IsSet

func (v NullableCellGlobalId) IsSet() bool

func (NullableCellGlobalId) MarshalJSON

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

func (*NullableCellGlobalId) Set

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

func (*NullableCellGlobalId) UnmarshalJSON

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

func (*NullableCellGlobalId) Unset

func (v *NullableCellGlobalId) Unset()

type NullableChangeItem

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

func NewNullableChangeItem

func NewNullableChangeItem(val *ChangeItem) *NullableChangeItem

func (NullableChangeItem) Get

func (v NullableChangeItem) Get() *ChangeItem

func (NullableChangeItem) IsSet

func (v NullableChangeItem) IsSet() bool

func (NullableChangeItem) MarshalJSON

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

func (*NullableChangeItem) Set

func (v *NullableChangeItem) Set(val *ChangeItem)

func (*NullableChangeItem) UnmarshalJSON

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

func (*NullableChangeItem) Unset

func (v *NullableChangeItem) Unset()

type NullableChangeType

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

func NewNullableChangeType

func NewNullableChangeType(val *ChangeType) *NullableChangeType

func (NullableChangeType) Get

func (v NullableChangeType) Get() *ChangeType

func (NullableChangeType) IsSet

func (v NullableChangeType) IsSet() bool

func (NullableChangeType) MarshalJSON

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

func (*NullableChangeType) Set

func (v *NullableChangeType) Set(val *ChangeType)

func (*NullableChangeType) UnmarshalJSON

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

func (*NullableChangeType) Unset

func (v *NullableChangeType) 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 NullableCnf

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

func NewNullableCnf

func NewNullableCnf(val *Cnf) *NullableCnf

func (NullableCnf) Get

func (v NullableCnf) Get() *Cnf

func (NullableCnf) IsSet

func (v NullableCnf) IsSet() bool

func (NullableCnf) MarshalJSON

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

func (*NullableCnf) Set

func (v *NullableCnf) Set(val *Cnf)

func (*NullableCnf) UnmarshalJSON

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

func (*NullableCnf) Unset

func (v *NullableCnf) Unset()

type NullableCnfUnit

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

func NewNullableCnfUnit

func NewNullableCnfUnit(val *CnfUnit) *NullableCnfUnit

func (NullableCnfUnit) Get

func (v NullableCnfUnit) Get() *CnfUnit

func (NullableCnfUnit) IsSet

func (v NullableCnfUnit) IsSet() bool

func (NullableCnfUnit) MarshalJSON

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

func (*NullableCnfUnit) Set

func (v *NullableCnfUnit) Set(val *CnfUnit)

func (*NullableCnfUnit) UnmarshalJSON

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

func (*NullableCnfUnit) Unset

func (v *NullableCnfUnit) Unset()

type NullableCollectionPeriodRmmLteMdt

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

func (NullableCollectionPeriodRmmLteMdt) Get

func (NullableCollectionPeriodRmmLteMdt) IsSet

func (NullableCollectionPeriodRmmLteMdt) MarshalJSON

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

func (*NullableCollectionPeriodRmmLteMdt) Set

func (*NullableCollectionPeriodRmmLteMdt) UnmarshalJSON

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

func (*NullableCollectionPeriodRmmLteMdt) Unset

type NullableCollectionPeriodRmmNrMdt

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

func (NullableCollectionPeriodRmmNrMdt) Get

func (NullableCollectionPeriodRmmNrMdt) IsSet

func (NullableCollectionPeriodRmmNrMdt) MarshalJSON

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

func (*NullableCollectionPeriodRmmNrMdt) Set

func (*NullableCollectionPeriodRmmNrMdt) UnmarshalJSON

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

func (*NullableCollectionPeriodRmmNrMdt) Unset

type NullableComplexQuery

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

func NewNullableComplexQuery

func NewNullableComplexQuery(val *ComplexQuery) *NullableComplexQuery

func (NullableComplexQuery) Get

func (NullableComplexQuery) IsSet

func (v NullableComplexQuery) IsSet() bool

func (NullableComplexQuery) MarshalJSON

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

func (*NullableComplexQuery) Set

func (v *NullableComplexQuery) Set(val *ComplexQuery)

func (*NullableComplexQuery) UnmarshalJSON

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

func (*NullableComplexQuery) Unset

func (v *NullableComplexQuery) Unset()

type NullableCoreNetworkType

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

func NewNullableCoreNetworkType

func NewNullableCoreNetworkType(val *CoreNetworkType) *NullableCoreNetworkType

func (NullableCoreNetworkType) Get

func (NullableCoreNetworkType) IsSet

func (v NullableCoreNetworkType) IsSet() bool

func (NullableCoreNetworkType) MarshalJSON

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

func (*NullableCoreNetworkType) Set

func (*NullableCoreNetworkType) UnmarshalJSON

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

func (*NullableCoreNetworkType) Unset

func (v *NullableCoreNetworkType) Unset()

type NullableCoreNetworkTypeRm

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

func NewNullableCoreNetworkTypeRm

func NewNullableCoreNetworkTypeRm(val *CoreNetworkTypeRm) *NullableCoreNetworkTypeRm

func (NullableCoreNetworkTypeRm) Get

func (NullableCoreNetworkTypeRm) IsSet

func (v NullableCoreNetworkTypeRm) IsSet() bool

func (NullableCoreNetworkTypeRm) MarshalJSON

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

func (*NullableCoreNetworkTypeRm) Set

func (*NullableCoreNetworkTypeRm) UnmarshalJSON

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

func (*NullableCoreNetworkTypeRm) Unset

func (v *NullableCoreNetworkTypeRm) Unset()

type NullableDddTrafficDescriptor

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

func NewNullableDddTrafficDescriptor

func NewNullableDddTrafficDescriptor(val *DddTrafficDescriptor) *NullableDddTrafficDescriptor

func (NullableDddTrafficDescriptor) Get

func (NullableDddTrafficDescriptor) IsSet

func (NullableDddTrafficDescriptor) MarshalJSON

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

func (*NullableDddTrafficDescriptor) Set

func (*NullableDddTrafficDescriptor) UnmarshalJSON

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

func (*NullableDddTrafficDescriptor) Unset

func (v *NullableDddTrafficDescriptor) Unset()

type NullableDlDataDeliveryStatus

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

func NewNullableDlDataDeliveryStatus

func NewNullableDlDataDeliveryStatus(val *DlDataDeliveryStatus) *NullableDlDataDeliveryStatus

func (NullableDlDataDeliveryStatus) Get

func (NullableDlDataDeliveryStatus) IsSet

func (NullableDlDataDeliveryStatus) MarshalJSON

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

func (*NullableDlDataDeliveryStatus) Set

func (*NullableDlDataDeliveryStatus) UnmarshalJSON

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

func (*NullableDlDataDeliveryStatus) Unset

func (v *NullableDlDataDeliveryStatus) Unset()

type NullableDlDataDeliveryStatusRm

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

func (NullableDlDataDeliveryStatusRm) Get

func (NullableDlDataDeliveryStatusRm) IsSet

func (NullableDlDataDeliveryStatusRm) MarshalJSON

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

func (*NullableDlDataDeliveryStatusRm) Set

func (*NullableDlDataDeliveryStatusRm) UnmarshalJSON

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

func (*NullableDlDataDeliveryStatusRm) Unset

func (v *NullableDlDataDeliveryStatusRm) Unset()

type NullableDnaiChangeType

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

func NewNullableDnaiChangeType

func NewNullableDnaiChangeType(val *DnaiChangeType) *NullableDnaiChangeType

func (NullableDnaiChangeType) Get

func (NullableDnaiChangeType) IsSet

func (v NullableDnaiChangeType) IsSet() bool

func (NullableDnaiChangeType) MarshalJSON

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

func (*NullableDnaiChangeType) Set

func (*NullableDnaiChangeType) UnmarshalJSON

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

func (*NullableDnaiChangeType) Unset

func (v *NullableDnaiChangeType) Unset()

type NullableDnaiChangeTypeRm

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

func NewNullableDnaiChangeTypeRm

func NewNullableDnaiChangeTypeRm(val *DnaiChangeTypeRm) *NullableDnaiChangeTypeRm

func (NullableDnaiChangeTypeRm) Get

func (NullableDnaiChangeTypeRm) IsSet

func (v NullableDnaiChangeTypeRm) IsSet() bool

func (NullableDnaiChangeTypeRm) MarshalJSON

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

func (*NullableDnaiChangeTypeRm) Set

func (*NullableDnaiChangeTypeRm) UnmarshalJSON

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

func (*NullableDnaiChangeTypeRm) Unset

func (v *NullableDnaiChangeTypeRm) Unset()

type NullableDnf

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

func NewNullableDnf

func NewNullableDnf(val *Dnf) *NullableDnf

func (NullableDnf) Get

func (v NullableDnf) Get() *Dnf

func (NullableDnf) IsSet

func (v NullableDnf) IsSet() bool

func (NullableDnf) MarshalJSON

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

func (*NullableDnf) Set

func (v *NullableDnf) Set(val *Dnf)

func (*NullableDnf) UnmarshalJSON

func (v *NullableDnf) UnmarshalJSON(src []byte) error

func (*NullableDnf) Unset

func (v *NullableDnf) Unset()

type NullableDnfUnit

type NullableDnfUnit struct {
	// contains filtered or unexported fields
}

func NewNullableDnfUnit

func NewNullableDnfUnit(val *DnfUnit) *NullableDnfUnit

func (NullableDnfUnit) Get

func (v NullableDnfUnit) Get() *DnfUnit

func (NullableDnfUnit) IsSet

func (v NullableDnfUnit) IsSet() bool

func (NullableDnfUnit) MarshalJSON

func (v NullableDnfUnit) MarshalJSON() ([]byte, error)

func (*NullableDnfUnit) Set

func (v *NullableDnfUnit) Set(val *DnfUnit)

func (*NullableDnfUnit) UnmarshalJSON

func (v *NullableDnfUnit) UnmarshalJSON(src []byte) error

func (*NullableDnfUnit) Unset

func (v *NullableDnfUnit) 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 NullableEasIpReplacementInfo

type NullableEasIpReplacementInfo struct {
	// contains filtered or unexported fields
}

func NewNullableEasIpReplacementInfo

func NewNullableEasIpReplacementInfo(val *EasIpReplacementInfo) *NullableEasIpReplacementInfo

func (NullableEasIpReplacementInfo) Get

func (NullableEasIpReplacementInfo) IsSet

func (NullableEasIpReplacementInfo) MarshalJSON

func (v NullableEasIpReplacementInfo) MarshalJSON() ([]byte, error)

func (*NullableEasIpReplacementInfo) Set

func (*NullableEasIpReplacementInfo) UnmarshalJSON

func (v *NullableEasIpReplacementInfo) UnmarshalJSON(src []byte) error

func (*NullableEasIpReplacementInfo) Unset

func (v *NullableEasIpReplacementInfo) Unset()

type NullableEasServerAddress

type NullableEasServerAddress struct {
	// contains filtered or unexported fields
}

func NewNullableEasServerAddress

func NewNullableEasServerAddress(val *EasServerAddress) *NullableEasServerAddress

func (NullableEasServerAddress) Get

func (NullableEasServerAddress) IsSet

func (v NullableEasServerAddress) IsSet() bool

func (NullableEasServerAddress) MarshalJSON

func (v NullableEasServerAddress) MarshalJSON() ([]byte, error)

func (*NullableEasServerAddress) Set

func (*NullableEasServerAddress) UnmarshalJSON

func (v *NullableEasServerAddress) UnmarshalJSON(src []byte) error

func (*NullableEasServerAddress) Unset

func (v *NullableEasServerAddress) Unset()

type NullableEcgi

type NullableEcgi struct {
	// contains filtered or unexported fields
}

func NewNullableEcgi

func NewNullableEcgi(val *Ecgi) *NullableEcgi

func (NullableEcgi) Get

func (v NullableEcgi) Get() *Ecgi

func (NullableEcgi) IsSet

func (v NullableEcgi) IsSet() bool

func (NullableEcgi) MarshalJSON

func (v NullableEcgi) MarshalJSON() ([]byte, error)

func (*NullableEcgi) Set

func (v *NullableEcgi) Set(val *Ecgi)

func (*NullableEcgi) UnmarshalJSON

func (v *NullableEcgi) UnmarshalJSON(src []byte) error

func (*NullableEcgi) Unset

func (v *NullableEcgi) Unset()

type NullableEcgiRm

type NullableEcgiRm struct {
	// contains filtered or unexported fields
}

func NewNullableEcgiRm

func NewNullableEcgiRm(val *EcgiRm) *NullableEcgiRm

func (NullableEcgiRm) Get

func (v NullableEcgiRm) Get() *EcgiRm

func (NullableEcgiRm) IsSet

func (v NullableEcgiRm) IsSet() bool

func (NullableEcgiRm) MarshalJSON

func (v NullableEcgiRm) MarshalJSON() ([]byte, error)

func (*NullableEcgiRm) Set

func (v *NullableEcgiRm) Set(val *EcgiRm)

func (*NullableEcgiRm) UnmarshalJSON

func (v *NullableEcgiRm) UnmarshalJSON(src []byte) error

func (*NullableEcgiRm) Unset

func (v *NullableEcgiRm) Unset()

type NullableEcsServerAddr

type NullableEcsServerAddr struct {
	// contains filtered or unexported fields
}

func NewNullableEcsServerAddr

func NewNullableEcsServerAddr(val *EcsServerAddr) *NullableEcsServerAddr

func (NullableEcsServerAddr) Get

func (NullableEcsServerAddr) IsSet

func (v NullableEcsServerAddr) IsSet() bool

func (NullableEcsServerAddr) MarshalJSON

func (v NullableEcsServerAddr) MarshalJSON() ([]byte, error)

func (*NullableEcsServerAddr) Set

func (v *NullableEcsServerAddr) Set(val *EcsServerAddr)

func (*NullableEcsServerAddr) UnmarshalJSON

func (v *NullableEcsServerAddr) UnmarshalJSON(src []byte) error

func (*NullableEcsServerAddr) Unset

func (v *NullableEcsServerAddr) Unset()

type NullableEcsServerAddrRm

type NullableEcsServerAddrRm struct {
	// contains filtered or unexported fields
}

func NewNullableEcsServerAddrRm

func NewNullableEcsServerAddrRm(val *EcsServerAddrRm) *NullableEcsServerAddrRm

func (NullableEcsServerAddrRm) Get

func (NullableEcsServerAddrRm) IsSet

func (v NullableEcsServerAddrRm) IsSet() bool

func (NullableEcsServerAddrRm) MarshalJSON

func (v NullableEcsServerAddrRm) MarshalJSON() ([]byte, error)

func (*NullableEcsServerAddrRm) Set

func (*NullableEcsServerAddrRm) UnmarshalJSON

func (v *NullableEcsServerAddrRm) UnmarshalJSON(src []byte) error

func (*NullableEcsServerAddrRm) Unset

func (v *NullableEcsServerAddrRm) 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 NullableEutraLocation

type NullableEutraLocation struct {
	// contains filtered or unexported fields
}

func NewNullableEutraLocation

func NewNullableEutraLocation(val *EutraLocation) *NullableEutraLocation

func (NullableEutraLocation) Get

func (NullableEutraLocation) IsSet

func (v NullableEutraLocation) IsSet() bool

func (NullableEutraLocation) MarshalJSON

func (v NullableEutraLocation) MarshalJSON() ([]byte, error)

func (*NullableEutraLocation) Set

func (v *NullableEutraLocation) Set(val *EutraLocation)

func (*NullableEutraLocation) UnmarshalJSON

func (v *NullableEutraLocation) UnmarshalJSON(src []byte) error

func (*NullableEutraLocation) Unset

func (v *NullableEutraLocation) Unset()

type NullableEutraLocationRm

type NullableEutraLocationRm struct {
	// contains filtered or unexported fields
}

func NewNullableEutraLocationRm

func NewNullableEutraLocationRm(val *EutraLocationRm) *NullableEutraLocationRm

func (NullableEutraLocationRm) Get

func (NullableEutraLocationRm) IsSet

func (v NullableEutraLocationRm) IsSet() bool

func (NullableEutraLocationRm) MarshalJSON

func (v NullableEutraLocationRm) MarshalJSON() ([]byte, error)

func (*NullableEutraLocationRm) Set

func (*NullableEutraLocationRm) UnmarshalJSON

func (v *NullableEutraLocationRm) UnmarshalJSON(src []byte) error

func (*NullableEutraLocationRm) Unset

func (v *NullableEutraLocationRm) Unset()

type NullableEventForMdt

type NullableEventForMdt struct {
	// contains filtered or unexported fields
}

func NewNullableEventForMdt

func NewNullableEventForMdt(val *EventForMdt) *NullableEventForMdt

func (NullableEventForMdt) Get

func (NullableEventForMdt) IsSet

func (v NullableEventForMdt) IsSet() bool

func (NullableEventForMdt) MarshalJSON

func (v NullableEventForMdt) MarshalJSON() ([]byte, error)

func (*NullableEventForMdt) Set

func (v *NullableEventForMdt) Set(val *EventForMdt)

func (*NullableEventForMdt) UnmarshalJSON

func (v *NullableEventForMdt) UnmarshalJSON(src []byte) error

func (*NullableEventForMdt) Unset

func (v *NullableEventForMdt) Unset()

type NullableExtSnssai

type NullableExtSnssai struct {
	// contains filtered or unexported fields
}

func NewNullableExtSnssai

func NewNullableExtSnssai(val *ExtSnssai) *NullableExtSnssai

func (NullableExtSnssai) Get

func (v NullableExtSnssai) Get() *ExtSnssai

func (NullableExtSnssai) IsSet

func (v NullableExtSnssai) IsSet() bool

func (NullableExtSnssai) MarshalJSON

func (v NullableExtSnssai) MarshalJSON() ([]byte, error)

func (*NullableExtSnssai) Set

func (v *NullableExtSnssai) Set(val *ExtSnssai)

func (*NullableExtSnssai) UnmarshalJSON

func (v *NullableExtSnssai) UnmarshalJSON(src []byte) error

func (*NullableExtSnssai) Unset

func (v *NullableExtSnssai) 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 NullableFqdnPatternMatchingRule

type NullableFqdnPatternMatchingRule struct {
	// contains filtered or unexported fields
}

func (NullableFqdnPatternMatchingRule) Get

func (NullableFqdnPatternMatchingRule) IsSet

func (NullableFqdnPatternMatchingRule) MarshalJSON

func (v NullableFqdnPatternMatchingRule) MarshalJSON() ([]byte, error)

func (*NullableFqdnPatternMatchingRule) Set

func (*NullableFqdnPatternMatchingRule) UnmarshalJSON

func (v *NullableFqdnPatternMatchingRule) UnmarshalJSON(src []byte) error

func (*NullableFqdnPatternMatchingRule) Unset

type NullableFqdnRm

type NullableFqdnRm struct {
	// contains filtered or unexported fields
}

func NewNullableFqdnRm

func NewNullableFqdnRm(val *FqdnRm) *NullableFqdnRm

func (NullableFqdnRm) Get

func (v NullableFqdnRm) Get() *FqdnRm

func (NullableFqdnRm) IsSet

func (v NullableFqdnRm) IsSet() bool

func (NullableFqdnRm) MarshalJSON

func (v NullableFqdnRm) MarshalJSON() ([]byte, error)

func (*NullableFqdnRm) Set

func (v *NullableFqdnRm) Set(val *FqdnRm)

func (*NullableFqdnRm) UnmarshalJSON

func (v *NullableFqdnRm) UnmarshalJSON(src []byte) error

func (*NullableFqdnRm) Unset

func (v *NullableFqdnRm) 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 NullableGeoServiceArea

type NullableGeoServiceArea struct {
	// contains filtered or unexported fields
}

func NewNullableGeoServiceArea

func NewNullableGeoServiceArea(val *GeoServiceArea) *NullableGeoServiceArea

func (NullableGeoServiceArea) Get

func (NullableGeoServiceArea) IsSet

func (v NullableGeoServiceArea) IsSet() bool

func (NullableGeoServiceArea) MarshalJSON

func (v NullableGeoServiceArea) MarshalJSON() ([]byte, error)

func (*NullableGeoServiceArea) Set

func (*NullableGeoServiceArea) UnmarshalJSON

func (v *NullableGeoServiceArea) UnmarshalJSON(src []byte) error

func (*NullableGeoServiceArea) Unset

func (v *NullableGeoServiceArea) 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 NullableGeraLocation

type NullableGeraLocation struct {
	// contains filtered or unexported fields
}

func NewNullableGeraLocation

func NewNullableGeraLocation(val *GeraLocation) *NullableGeraLocation

func (NullableGeraLocation) Get

func (NullableGeraLocation) IsSet

func (v NullableGeraLocation) IsSet() bool

func (NullableGeraLocation) MarshalJSON

func (v NullableGeraLocation) MarshalJSON() ([]byte, error)

func (*NullableGeraLocation) Set

func (v *NullableGeraLocation) Set(val *GeraLocation)

func (*NullableGeraLocation) UnmarshalJSON

func (v *NullableGeraLocation) UnmarshalJSON(src []byte) error

func (*NullableGeraLocation) Unset

func (v *NullableGeraLocation) Unset()

type NullableGlobalRanNodeId

type NullableGlobalRanNodeId struct {
	// contains filtered or unexported fields
}

func NewNullableGlobalRanNodeId

func NewNullableGlobalRanNodeId(val *GlobalRanNodeId) *NullableGlobalRanNodeId

func (NullableGlobalRanNodeId) Get

func (NullableGlobalRanNodeId) IsSet

func (v NullableGlobalRanNodeId) IsSet() bool

func (NullableGlobalRanNodeId) MarshalJSON

func (v NullableGlobalRanNodeId) MarshalJSON() ([]byte, error)

func (*NullableGlobalRanNodeId) Set

func (*NullableGlobalRanNodeId) UnmarshalJSON

func (v *NullableGlobalRanNodeId) UnmarshalJSON(src []byte) error

func (*NullableGlobalRanNodeId) Unset

func (v *NullableGlobalRanNodeId) Unset()

type NullableGuami

type NullableGuami struct {
	// contains filtered or unexported fields
}

func NewNullableGuami

func NewNullableGuami(val *Guami) *NullableGuami

func (NullableGuami) Get

func (v NullableGuami) Get() *Guami

func (NullableGuami) IsSet

func (v NullableGuami) IsSet() bool

func (NullableGuami) MarshalJSON

func (v NullableGuami) MarshalJSON() ([]byte, error)

func (*NullableGuami) Set

func (v *NullableGuami) Set(val *Guami)

func (*NullableGuami) UnmarshalJSON

func (v *NullableGuami) UnmarshalJSON(src []byte) error

func (*NullableGuami) Unset

func (v *NullableGuami) Unset()

type NullableGuamiRm

type NullableGuamiRm struct {
	// contains filtered or unexported fields
}

func NewNullableGuamiRm

func NewNullableGuamiRm(val *GuamiRm) *NullableGuamiRm

func (NullableGuamiRm) Get

func (v NullableGuamiRm) Get() *GuamiRm

func (NullableGuamiRm) IsSet

func (v NullableGuamiRm) IsSet() bool

func (NullableGuamiRm) MarshalJSON

func (v NullableGuamiRm) MarshalJSON() ([]byte, error)

func (*NullableGuamiRm) Set

func (v *NullableGuamiRm) Set(val *GuamiRm)

func (*NullableGuamiRm) UnmarshalJSON

func (v *NullableGuamiRm) UnmarshalJSON(src []byte) error

func (*NullableGuamiRm) Unset

func (v *NullableGuamiRm) Unset()

type NullableHalTemplate

type NullableHalTemplate struct {
	// contains filtered or unexported fields
}

func NewNullableHalTemplate

func NewNullableHalTemplate(val *HalTemplate) *NullableHalTemplate

func (NullableHalTemplate) Get

func (NullableHalTemplate) IsSet

func (v NullableHalTemplate) IsSet() bool

func (NullableHalTemplate) MarshalJSON

func (v NullableHalTemplate) MarshalJSON() ([]byte, error)

func (*NullableHalTemplate) Set

func (v *NullableHalTemplate) Set(val *HalTemplate)

func (*NullableHalTemplate) UnmarshalJSON

func (v *NullableHalTemplate) UnmarshalJSON(src []byte) error

func (*NullableHalTemplate) Unset

func (v *NullableHalTemplate) Unset()

type NullableHfcNodeId

type NullableHfcNodeId struct {
	// contains filtered or unexported fields
}

func NewNullableHfcNodeId

func NewNullableHfcNodeId(val *HfcNodeId) *NullableHfcNodeId

func (NullableHfcNodeId) Get

func (v NullableHfcNodeId) Get() *HfcNodeId

func (NullableHfcNodeId) IsSet

func (v NullableHfcNodeId) IsSet() bool

func (NullableHfcNodeId) MarshalJSON

func (v NullableHfcNodeId) MarshalJSON() ([]byte, error)

func (*NullableHfcNodeId) Set

func (v *NullableHfcNodeId) Set(val *HfcNodeId)

func (*NullableHfcNodeId) UnmarshalJSON

func (v *NullableHfcNodeId) UnmarshalJSON(src []byte) error

func (*NullableHfcNodeId) Unset

func (v *NullableHfcNodeId) Unset()

type NullableHfcNodeIdRm

type NullableHfcNodeIdRm struct {
	// contains filtered or unexported fields
}

func NewNullableHfcNodeIdRm

func NewNullableHfcNodeIdRm(val *HfcNodeIdRm) *NullableHfcNodeIdRm

func (NullableHfcNodeIdRm) Get

func (NullableHfcNodeIdRm) IsSet

func (v NullableHfcNodeIdRm) IsSet() bool

func (NullableHfcNodeIdRm) MarshalJSON

func (v NullableHfcNodeIdRm) MarshalJSON() ([]byte, error)

func (*NullableHfcNodeIdRm) Set

func (v *NullableHfcNodeIdRm) Set(val *HfcNodeIdRm)

func (*NullableHfcNodeIdRm) UnmarshalJSON

func (v *NullableHfcNodeIdRm) UnmarshalJSON(src []byte) error

func (*NullableHfcNodeIdRm) Unset

func (v *NullableHfcNodeIdRm) Unset()

type NullableHttpMethod

type NullableHttpMethod struct {
	// contains filtered or unexported fields
}

func NewNullableHttpMethod

func NewNullableHttpMethod(val *HttpMethod) *NullableHttpMethod

func (NullableHttpMethod) Get

func (v NullableHttpMethod) Get() *HttpMethod

func (NullableHttpMethod) IsSet

func (v NullableHttpMethod) IsSet() bool

func (NullableHttpMethod) MarshalJSON

func (v NullableHttpMethod) MarshalJSON() ([]byte, error)

func (*NullableHttpMethod) Set

func (v *NullableHttpMethod) Set(val *HttpMethod)

func (*NullableHttpMethod) UnmarshalJSON

func (v *NullableHttpMethod) UnmarshalJSON(src []byte) error

func (*NullableHttpMethod) Unset

func (v *NullableHttpMethod) 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 NullableInterFreqTargetInfo

type NullableInterFreqTargetInfo struct {
	// contains filtered or unexported fields
}

func NewNullableInterFreqTargetInfo

func NewNullableInterFreqTargetInfo(val *InterFreqTargetInfo) *NullableInterFreqTargetInfo

func (NullableInterFreqTargetInfo) Get

func (NullableInterFreqTargetInfo) IsSet

func (NullableInterFreqTargetInfo) MarshalJSON

func (v NullableInterFreqTargetInfo) MarshalJSON() ([]byte, error)

func (*NullableInterFreqTargetInfo) Set

func (*NullableInterFreqTargetInfo) UnmarshalJSON

func (v *NullableInterFreqTargetInfo) UnmarshalJSON(src []byte) error

func (*NullableInterFreqTargetInfo) Unset

func (v *NullableInterFreqTargetInfo) 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 NullableIpv6AddrRm

type NullableIpv6AddrRm struct {
	// contains filtered or unexported fields
}

func NewNullableIpv6AddrRm

func NewNullableIpv6AddrRm(val *Ipv6AddrRm) *NullableIpv6AddrRm

func (NullableIpv6AddrRm) Get

func (v NullableIpv6AddrRm) Get() *Ipv6AddrRm

func (NullableIpv6AddrRm) IsSet

func (v NullableIpv6AddrRm) IsSet() bool

func (NullableIpv6AddrRm) MarshalJSON

func (v NullableIpv6AddrRm) MarshalJSON() ([]byte, error)

func (*NullableIpv6AddrRm) Set

func (v *NullableIpv6AddrRm) Set(val *Ipv6AddrRm)

func (*NullableIpv6AddrRm) UnmarshalJSON

func (v *NullableIpv6AddrRm) UnmarshalJSON(src []byte) error

func (*NullableIpv6AddrRm) Unset

func (v *NullableIpv6AddrRm) 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 NullableIpv6PrefixRm

type NullableIpv6PrefixRm struct {
	// contains filtered or unexported fields
}

func NewNullableIpv6PrefixRm

func NewNullableIpv6PrefixRm(val *Ipv6PrefixRm) *NullableIpv6PrefixRm

func (NullableIpv6PrefixRm) Get

func (NullableIpv6PrefixRm) IsSet

func (v NullableIpv6PrefixRm) IsSet() bool

func (NullableIpv6PrefixRm) MarshalJSON

func (v NullableIpv6PrefixRm) MarshalJSON() ([]byte, error)

func (*NullableIpv6PrefixRm) Set

func (v *NullableIpv6PrefixRm) Set(val *Ipv6PrefixRm)

func (*NullableIpv6PrefixRm) UnmarshalJSON

func (v *NullableIpv6PrefixRm) UnmarshalJSON(src []byte) error

func (*NullableIpv6PrefixRm) Unset

func (v *NullableIpv6PrefixRm) Unset()

type NullableJobType

type NullableJobType struct {
	// contains filtered or unexported fields
}

func NewNullableJobType

func NewNullableJobType(val *JobType) *NullableJobType

func (NullableJobType) Get

func (v NullableJobType) Get() *JobType

func (NullableJobType) IsSet

func (v NullableJobType) IsSet() bool

func (NullableJobType) MarshalJSON

func (v NullableJobType) MarshalJSON() ([]byte, error)

func (*NullableJobType) Set

func (v *NullableJobType) Set(val *JobType)

func (*NullableJobType) UnmarshalJSON

func (v *NullableJobType) UnmarshalJSON(src []byte) error

func (*NullableJobType) Unset

func (v *NullableJobType) Unset()

type NullableLcsServiceAuth

type NullableLcsServiceAuth struct {
	// contains filtered or unexported fields
}

func NewNullableLcsServiceAuth

func NewNullableLcsServiceAuth(val *LcsServiceAuth) *NullableLcsServiceAuth

func (NullableLcsServiceAuth) Get

func (NullableLcsServiceAuth) IsSet

func (v NullableLcsServiceAuth) IsSet() bool

func (NullableLcsServiceAuth) MarshalJSON

func (v NullableLcsServiceAuth) MarshalJSON() ([]byte, error)

func (*NullableLcsServiceAuth) Set

func (*NullableLcsServiceAuth) UnmarshalJSON

func (v *NullableLcsServiceAuth) UnmarshalJSON(src []byte) error

func (*NullableLcsServiceAuth) Unset

func (v *NullableLcsServiceAuth) Unset()

type NullableLineType

type NullableLineType struct {
	// contains filtered or unexported fields
}

func NewNullableLineType

func NewNullableLineType(val *LineType) *NullableLineType

func (NullableLineType) Get

func (v NullableLineType) Get() *LineType

func (NullableLineType) IsSet

func (v NullableLineType) IsSet() bool

func (NullableLineType) MarshalJSON

func (v NullableLineType) MarshalJSON() ([]byte, error)

func (*NullableLineType) Set

func (v *NullableLineType) Set(val *LineType)

func (*NullableLineType) UnmarshalJSON

func (v *NullableLineType) UnmarshalJSON(src []byte) error

func (*NullableLineType) Unset

func (v *NullableLineType) Unset()

type NullableLineTypeRm

type NullableLineTypeRm struct {
	// contains filtered or unexported fields
}

func NewNullableLineTypeRm

func NewNullableLineTypeRm(val *LineTypeRm) *NullableLineTypeRm

func (NullableLineTypeRm) Get

func (v NullableLineTypeRm) Get() *LineTypeRm

func (NullableLineTypeRm) IsSet

func (v NullableLineTypeRm) IsSet() bool

func (NullableLineTypeRm) MarshalJSON

func (v NullableLineTypeRm) MarshalJSON() ([]byte, error)

func (*NullableLineTypeRm) Set

func (v *NullableLineTypeRm) Set(val *LineTypeRm)

func (*NullableLineTypeRm) UnmarshalJSON

func (v *NullableLineTypeRm) UnmarshalJSON(src []byte) error

func (*NullableLineTypeRm) Unset

func (v *NullableLineTypeRm) Unset()
type NullableLink struct {
	// contains filtered or unexported fields
}
func NewNullableLink(val *Link) *NullableLink

func (NullableLink) Get

func (v NullableLink) Get() *Link

func (NullableLink) IsSet

func (v NullableLink) IsSet() bool

func (NullableLink) MarshalJSON

func (v NullableLink) MarshalJSON() ([]byte, error)

func (*NullableLink) Set

func (v *NullableLink) Set(val *Link)

func (*NullableLink) UnmarshalJSON

func (v *NullableLink) UnmarshalJSON(src []byte) error

func (*NullableLink) Unset

func (v *NullableLink) Unset()

type NullableLinkRm

type NullableLinkRm struct {
	// contains filtered or unexported fields
}

func NewNullableLinkRm

func NewNullableLinkRm(val *LinkRm) *NullableLinkRm

func (NullableLinkRm) Get

func (v NullableLinkRm) Get() *LinkRm

func (NullableLinkRm) IsSet

func (v NullableLinkRm) IsSet() bool

func (NullableLinkRm) MarshalJSON

func (v NullableLinkRm) MarshalJSON() ([]byte, error)

func (*NullableLinkRm) Set

func (v *NullableLinkRm) Set(val *LinkRm)

func (*NullableLinkRm) UnmarshalJSON

func (v *NullableLinkRm) UnmarshalJSON(src []byte) error

func (*NullableLinkRm) Unset

func (v *NullableLinkRm) Unset()

type NullableLinksValueSchema

type NullableLinksValueSchema struct {
	// contains filtered or unexported fields
}

func NewNullableLinksValueSchema

func NewNullableLinksValueSchema(val *LinksValueSchema) *NullableLinksValueSchema

func (NullableLinksValueSchema) Get

func (NullableLinksValueSchema) IsSet

func (v NullableLinksValueSchema) IsSet() bool

func (NullableLinksValueSchema) MarshalJSON

func (v NullableLinksValueSchema) MarshalJSON() ([]byte, error)

func (*NullableLinksValueSchema) Set

func (*NullableLinksValueSchema) UnmarshalJSON

func (v *NullableLinksValueSchema) UnmarshalJSON(src []byte) error

func (*NullableLinksValueSchema) Unset

func (v *NullableLinksValueSchema) 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 NullableLocationAreaId

type NullableLocationAreaId struct {
	// contains filtered or unexported fields
}

func NewNullableLocationAreaId

func NewNullableLocationAreaId(val *LocationAreaId) *NullableLocationAreaId

func (NullableLocationAreaId) Get

func (NullableLocationAreaId) IsSet

func (v NullableLocationAreaId) IsSet() bool

func (NullableLocationAreaId) MarshalJSON

func (v NullableLocationAreaId) MarshalJSON() ([]byte, error)

func (*NullableLocationAreaId) Set

func (*NullableLocationAreaId) UnmarshalJSON

func (v *NullableLocationAreaId) UnmarshalJSON(src []byte) error

func (*NullableLocationAreaId) Unset

func (v *NullableLocationAreaId) Unset()

type NullableLoggingDurationMdt

type NullableLoggingDurationMdt struct {
	// contains filtered or unexported fields
}

func NewNullableLoggingDurationMdt

func NewNullableLoggingDurationMdt(val *LoggingDurationMdt) *NullableLoggingDurationMdt

func (NullableLoggingDurationMdt) Get

func (NullableLoggingDurationMdt) IsSet

func (v NullableLoggingDurationMdt) IsSet() bool

func (NullableLoggingDurationMdt) MarshalJSON

func (v NullableLoggingDurationMdt) MarshalJSON() ([]byte, error)

func (*NullableLoggingDurationMdt) Set

func (*NullableLoggingDurationMdt) UnmarshalJSON

func (v *NullableLoggingDurationMdt) UnmarshalJSON(src []byte) error

func (*NullableLoggingDurationMdt) Unset

func (v *NullableLoggingDurationMdt) Unset()

type NullableLoggingDurationNrMdt

type NullableLoggingDurationNrMdt struct {
	// contains filtered or unexported fields
}

func NewNullableLoggingDurationNrMdt

func NewNullableLoggingDurationNrMdt(val *LoggingDurationNrMdt) *NullableLoggingDurationNrMdt

func (NullableLoggingDurationNrMdt) Get

func (NullableLoggingDurationNrMdt) IsSet

func (NullableLoggingDurationNrMdt) MarshalJSON

func (v NullableLoggingDurationNrMdt) MarshalJSON() ([]byte, error)

func (*NullableLoggingDurationNrMdt) Set

func (*NullableLoggingDurationNrMdt) UnmarshalJSON

func (v *NullableLoggingDurationNrMdt) UnmarshalJSON(src []byte) error

func (*NullableLoggingDurationNrMdt) Unset

func (v *NullableLoggingDurationNrMdt) Unset()

type NullableLoggingIntervalMdt

type NullableLoggingIntervalMdt struct {
	// contains filtered or unexported fields
}

func NewNullableLoggingIntervalMdt

func NewNullableLoggingIntervalMdt(val *LoggingIntervalMdt) *NullableLoggingIntervalMdt

func (NullableLoggingIntervalMdt) Get

func (NullableLoggingIntervalMdt) IsSet

func (v NullableLoggingIntervalMdt) IsSet() bool

func (NullableLoggingIntervalMdt) MarshalJSON

func (v NullableLoggingIntervalMdt) MarshalJSON() ([]byte, error)

func (*NullableLoggingIntervalMdt) Set

func (*NullableLoggingIntervalMdt) UnmarshalJSON

func (v *NullableLoggingIntervalMdt) UnmarshalJSON(src []byte) error

func (*NullableLoggingIntervalMdt) Unset

func (v *NullableLoggingIntervalMdt) Unset()

type NullableLoggingIntervalNrMdt

type NullableLoggingIntervalNrMdt struct {
	// contains filtered or unexported fields
}

func NewNullableLoggingIntervalNrMdt

func NewNullableLoggingIntervalNrMdt(val *LoggingIntervalNrMdt) *NullableLoggingIntervalNrMdt

func (NullableLoggingIntervalNrMdt) Get

func (NullableLoggingIntervalNrMdt) IsSet

func (NullableLoggingIntervalNrMdt) MarshalJSON

func (v NullableLoggingIntervalNrMdt) MarshalJSON() ([]byte, error)

func (*NullableLoggingIntervalNrMdt) Set

func (*NullableLoggingIntervalNrMdt) UnmarshalJSON

func (v *NullableLoggingIntervalNrMdt) UnmarshalJSON(src []byte) error

func (*NullableLoggingIntervalNrMdt) Unset

func (v *NullableLoggingIntervalNrMdt) Unset()

type NullableLteV2xAuth

type NullableLteV2xAuth struct {
	// contains filtered or unexported fields
}

func NewNullableLteV2xAuth

func NewNullableLteV2xAuth(val *LteV2xAuth) *NullableLteV2xAuth

func (NullableLteV2xAuth) Get

func (v NullableLteV2xAuth) Get() *LteV2xAuth

func (NullableLteV2xAuth) IsSet

func (v NullableLteV2xAuth) IsSet() bool

func (NullableLteV2xAuth) MarshalJSON

func (v NullableLteV2xAuth) MarshalJSON() ([]byte, error)

func (*NullableLteV2xAuth) Set

func (v *NullableLteV2xAuth) Set(val *LteV2xAuth)

func (*NullableLteV2xAuth) UnmarshalJSON

func (v *NullableLteV2xAuth) UnmarshalJSON(src []byte) error

func (*NullableLteV2xAuth) Unset

func (v *NullableLteV2xAuth) Unset()

type NullableMatchingOperator

type NullableMatchingOperator struct {
	// contains filtered or unexported fields
}

func NewNullableMatchingOperator

func NewNullableMatchingOperator(val *MatchingOperator) *NullableMatchingOperator

func (NullableMatchingOperator) Get

func (NullableMatchingOperator) IsSet

func (v NullableMatchingOperator) IsSet() bool

func (NullableMatchingOperator) MarshalJSON

func (v NullableMatchingOperator) MarshalJSON() ([]byte, error)

func (*NullableMatchingOperator) Set

func (*NullableMatchingOperator) UnmarshalJSON

func (v *NullableMatchingOperator) UnmarshalJSON(src []byte) error

func (*NullableMatchingOperator) Unset

func (v *NullableMatchingOperator) 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 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 NullableMbsfnArea

type NullableMbsfnArea struct {
	// contains filtered or unexported fields
}

func NewNullableMbsfnArea

func NewNullableMbsfnArea(val *MbsfnArea) *NullableMbsfnArea

func (NullableMbsfnArea) Get

func (v NullableMbsfnArea) Get() *MbsfnArea

func (NullableMbsfnArea) IsSet

func (v NullableMbsfnArea) IsSet() bool

func (NullableMbsfnArea) MarshalJSON

func (v NullableMbsfnArea) MarshalJSON() ([]byte, error)

func (*NullableMbsfnArea) Set

func (v *NullableMbsfnArea) Set(val *MbsfnArea)

func (*NullableMbsfnArea) UnmarshalJSON

func (v *NullableMbsfnArea) UnmarshalJSON(src []byte) error

func (*NullableMbsfnArea) Unset

func (v *NullableMbsfnArea) Unset()

type NullableMdtConfiguration

type NullableMdtConfiguration struct {
	// contains filtered or unexported fields
}

func NewNullableMdtConfiguration

func NewNullableMdtConfiguration(val *MdtConfiguration) *NullableMdtConfiguration

func (NullableMdtConfiguration) Get

func (NullableMdtConfiguration) IsSet

func (v NullableMdtConfiguration) IsSet() bool

func (NullableMdtConfiguration) MarshalJSON

func (v NullableMdtConfiguration) MarshalJSON() ([]byte, error)

func (*NullableMdtConfiguration) Set

func (*NullableMdtConfiguration) UnmarshalJSON

func (v *NullableMdtConfiguration) UnmarshalJSON(src []byte) error

func (*NullableMdtConfiguration) Unset

func (v *NullableMdtConfiguration) Unset()

type NullableMeasurementLteForMdt

type NullableMeasurementLteForMdt struct {
	// contains filtered or unexported fields
}

func NewNullableMeasurementLteForMdt

func NewNullableMeasurementLteForMdt(val *MeasurementLteForMdt) *NullableMeasurementLteForMdt

func (NullableMeasurementLteForMdt) Get

func (NullableMeasurementLteForMdt) IsSet

func (NullableMeasurementLteForMdt) MarshalJSON

func (v NullableMeasurementLteForMdt) MarshalJSON() ([]byte, error)

func (*NullableMeasurementLteForMdt) Set

func (*NullableMeasurementLteForMdt) UnmarshalJSON

func (v *NullableMeasurementLteForMdt) UnmarshalJSON(src []byte) error

func (*NullableMeasurementLteForMdt) Unset

func (v *NullableMeasurementLteForMdt) Unset()

type NullableMeasurementNrForMdt

type NullableMeasurementNrForMdt struct {
	// contains filtered or unexported fields
}

func NewNullableMeasurementNrForMdt

func NewNullableMeasurementNrForMdt(val *MeasurementNrForMdt) *NullableMeasurementNrForMdt

func (NullableMeasurementNrForMdt) Get

func (NullableMeasurementNrForMdt) IsSet

func (NullableMeasurementNrForMdt) MarshalJSON

func (v NullableMeasurementNrForMdt) MarshalJSON() ([]byte, error)

func (*NullableMeasurementNrForMdt) Set

func (*NullableMeasurementNrForMdt) UnmarshalJSON

func (v *NullableMeasurementNrForMdt) UnmarshalJSON(src []byte) error

func (*NullableMeasurementNrForMdt) Unset

func (v *NullableMeasurementNrForMdt) Unset()

type NullableMeasurementPeriodLteMdt

type NullableMeasurementPeriodLteMdt struct {
	// contains filtered or unexported fields
}

func (NullableMeasurementPeriodLteMdt) Get

func (NullableMeasurementPeriodLteMdt) IsSet

func (NullableMeasurementPeriodLteMdt) MarshalJSON

func (v NullableMeasurementPeriodLteMdt) MarshalJSON() ([]byte, error)

func (*NullableMeasurementPeriodLteMdt) Set

func (*NullableMeasurementPeriodLteMdt) UnmarshalJSON

func (v *NullableMeasurementPeriodLteMdt) UnmarshalJSON(src []byte) error

func (*NullableMeasurementPeriodLteMdt) 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 NullableMoExpDataCounter

type NullableMoExpDataCounter struct {
	// contains filtered or unexported fields
}

func NewNullableMoExpDataCounter

func NewNullableMoExpDataCounter(val *MoExpDataCounter) *NullableMoExpDataCounter

func (NullableMoExpDataCounter) Get

func (NullableMoExpDataCounter) IsSet

func (v NullableMoExpDataCounter) IsSet() bool

func (NullableMoExpDataCounter) MarshalJSON

func (v NullableMoExpDataCounter) MarshalJSON() ([]byte, error)

func (*NullableMoExpDataCounter) Set

func (*NullableMoExpDataCounter) UnmarshalJSON

func (v *NullableMoExpDataCounter) UnmarshalJSON(src []byte) error

func (*NullableMoExpDataCounter) Unset

func (v *NullableMoExpDataCounter) Unset()

type NullableN3gaLocation

type NullableN3gaLocation struct {
	// contains filtered or unexported fields
}

func NewNullableN3gaLocation

func NewNullableN3gaLocation(val *N3gaLocation) *NullableN3gaLocation

func (NullableN3gaLocation) Get

func (NullableN3gaLocation) IsSet

func (v NullableN3gaLocation) IsSet() bool

func (NullableN3gaLocation) MarshalJSON

func (v NullableN3gaLocation) MarshalJSON() ([]byte, error)

func (*NullableN3gaLocation) Set

func (v *NullableN3gaLocation) Set(val *N3gaLocation)

func (*NullableN3gaLocation) UnmarshalJSON

func (v *NullableN3gaLocation) UnmarshalJSON(src []byte) error

func (*NullableN3gaLocation) Unset

func (v *NullableN3gaLocation) Unset()

type NullableNFType

type NullableNFType struct {
	// contains filtered or unexported fields
}

func NewNullableNFType

func NewNullableNFType(val *NFType) *NullableNFType

func (NullableNFType) Get

func (v NullableNFType) Get() *NFType

func (NullableNFType) IsSet

func (v NullableNFType) IsSet() bool

func (NullableNFType) MarshalJSON

func (v NullableNFType) MarshalJSON() ([]byte, error)

func (*NullableNFType) Set

func (v *NullableNFType) Set(val *NFType)

func (*NullableNFType) UnmarshalJSON

func (v *NullableNFType) UnmarshalJSON(src []byte) error

func (*NullableNFType) Unset

func (v *NullableNFType) Unset()

type NullableNcgi

type NullableNcgi struct {
	// contains filtered or unexported fields
}

func NewNullableNcgi

func NewNullableNcgi(val *Ncgi) *NullableNcgi

func (NullableNcgi) Get

func (v NullableNcgi) Get() *Ncgi

func (NullableNcgi) IsSet

func (v NullableNcgi) IsSet() bool

func (NullableNcgi) MarshalJSON

func (v NullableNcgi) MarshalJSON() ([]byte, error)

func (*NullableNcgi) Set

func (v *NullableNcgi) Set(val *Ncgi)

func (*NullableNcgi) UnmarshalJSON

func (v *NullableNcgi) UnmarshalJSON(src []byte) error

func (*NullableNcgi) Unset

func (v *NullableNcgi) Unset()

type NullableNcgiRm

type NullableNcgiRm struct {
	// contains filtered or unexported fields
}

func NewNullableNcgiRm

func NewNullableNcgiRm(val *NcgiRm) *NullableNcgiRm

func (NullableNcgiRm) Get

func (v NullableNcgiRm) Get() *NcgiRm

func (NullableNcgiRm) IsSet

func (v NullableNcgiRm) IsSet() bool

func (NullableNcgiRm) MarshalJSON

func (v NullableNcgiRm) MarshalJSON() ([]byte, error)

func (*NullableNcgiRm) Set

func (v *NullableNcgiRm) Set(val *NcgiRm)

func (*NullableNcgiRm) UnmarshalJSON

func (v *NullableNcgiRm) UnmarshalJSON(src []byte) error

func (*NullableNcgiRm) Unset

func (v *NullableNcgiRm) 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 NullableNetworkId

type NullableNetworkId struct {
	// contains filtered or unexported fields
}

func NewNullableNetworkId

func NewNullableNetworkId(val *NetworkId) *NullableNetworkId

func (NullableNetworkId) Get

func (v NullableNetworkId) Get() *NetworkId

func (NullableNetworkId) IsSet

func (v NullableNetworkId) IsSet() bool

func (NullableNetworkId) MarshalJSON

func (v NullableNetworkId) MarshalJSON() ([]byte, error)

func (*NullableNetworkId) Set

func (v *NullableNetworkId) Set(val *NetworkId)

func (*NullableNetworkId) UnmarshalJSON

func (v *NullableNetworkId) UnmarshalJSON(src []byte) error

func (*NullableNetworkId) Unset

func (v *NullableNetworkId) Unset()

type NullableNgApCause

type NullableNgApCause struct {
	// contains filtered or unexported fields
}

func NewNullableNgApCause

func NewNullableNgApCause(val *NgApCause) *NullableNgApCause

func (NullableNgApCause) Get

func (v NullableNgApCause) Get() *NgApCause

func (NullableNgApCause) IsSet

func (v NullableNgApCause) IsSet() bool

func (NullableNgApCause) MarshalJSON

func (v NullableNgApCause) MarshalJSON() ([]byte, error)

func (*NullableNgApCause) Set

func (v *NullableNgApCause) Set(val *NgApCause)

func (*NullableNgApCause) UnmarshalJSON

func (v *NullableNgApCause) UnmarshalJSON(src []byte) error

func (*NullableNgApCause) Unset

func (v *NullableNgApCause) Unset()

type 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 NullableNotificationControl

type NullableNotificationControl struct {
	// contains filtered or unexported fields
}

func NewNullableNotificationControl

func NewNullableNotificationControl(val *NotificationControl) *NullableNotificationControl

func (NullableNotificationControl) Get

func (NullableNotificationControl) IsSet

func (NullableNotificationControl) MarshalJSON

func (v NullableNotificationControl) MarshalJSON() ([]byte, error)

func (*NullableNotificationControl) Set

func (*NullableNotificationControl) UnmarshalJSON

func (v *NullableNotificationControl) UnmarshalJSON(src []byte) error

func (*NullableNotificationControl) Unset

func (v *NullableNotificationControl) Unset()

type NullableNotificationControlRm

type NullableNotificationControlRm struct {
	// contains filtered or unexported fields
}

func (NullableNotificationControlRm) Get

func (NullableNotificationControlRm) IsSet

func (NullableNotificationControlRm) MarshalJSON

func (v NullableNotificationControlRm) MarshalJSON() ([]byte, error)

func (*NullableNotificationControlRm) Set

func (*NullableNotificationControlRm) UnmarshalJSON

func (v *NullableNotificationControlRm) UnmarshalJSON(src []byte) error

func (*NullableNotificationControlRm) Unset

func (v *NullableNotificationControlRm) Unset()

type NullableNotificationFlag

type NullableNotificationFlag struct {
	// contains filtered or unexported fields
}

func NewNullableNotificationFlag

func NewNullableNotificationFlag(val *NotificationFlag) *NullableNotificationFlag

func (NullableNotificationFlag) Get

func (NullableNotificationFlag) IsSet

func (v NullableNotificationFlag) IsSet() bool

func (NullableNotificationFlag) MarshalJSON

func (v NullableNotificationFlag) MarshalJSON() ([]byte, error)

func (*NullableNotificationFlag) Set

func (*NullableNotificationFlag) UnmarshalJSON

func (v *NullableNotificationFlag) UnmarshalJSON(src []byte) error

func (*NullableNotificationFlag) Unset

func (v *NullableNotificationFlag) Unset()

type NullableNotifyItem

type NullableNotifyItem struct {
	// contains filtered or unexported fields
}

func NewNullableNotifyItem

func NewNullableNotifyItem(val *NotifyItem) *NullableNotifyItem

func (NullableNotifyItem) Get

func (v NullableNotifyItem) Get() *NotifyItem

func (NullableNotifyItem) IsSet

func (v NullableNotifyItem) IsSet() bool

func (NullableNotifyItem) MarshalJSON

func (v NullableNotifyItem) MarshalJSON() ([]byte, error)

func (*NullableNotifyItem) Set

func (v *NullableNotifyItem) Set(val *NotifyItem)

func (*NullableNotifyItem) UnmarshalJSON

func (v *NullableNotifyItem) UnmarshalJSON(src []byte) error

func (*NullableNotifyItem) Unset

func (v *NullableNotifyItem) Unset()

type NullableNrLocation

type NullableNrLocation struct {
	// contains filtered or unexported fields
}

func NewNullableNrLocation

func NewNullableNrLocation(val *NrLocation) *NullableNrLocation

func (NullableNrLocation) Get

func (v NullableNrLocation) Get() *NrLocation

func (NullableNrLocation) IsSet

func (v NullableNrLocation) IsSet() bool

func (NullableNrLocation) MarshalJSON

func (v NullableNrLocation) MarshalJSON() ([]byte, error)

func (*NullableNrLocation) Set

func (v *NullableNrLocation) Set(val *NrLocation)

func (*NullableNrLocation) UnmarshalJSON

func (v *NullableNrLocation) UnmarshalJSON(src []byte) error

func (*NullableNrLocation) Unset

func (v *NullableNrLocation) Unset()

type NullableNrLocationRm

type NullableNrLocationRm struct {
	// contains filtered or unexported fields
}

func NewNullableNrLocationRm

func NewNullableNrLocationRm(val *NrLocationRm) *NullableNrLocationRm

func (NullableNrLocationRm) Get

func (NullableNrLocationRm) IsSet

func (v NullableNrLocationRm) IsSet() bool

func (NullableNrLocationRm) MarshalJSON

func (v NullableNrLocationRm) MarshalJSON() ([]byte, error)

func (*NullableNrLocationRm) Set

func (v *NullableNrLocationRm) Set(val *NrLocationRm)

func (*NullableNrLocationRm) UnmarshalJSON

func (v *NullableNrLocationRm) UnmarshalJSON(src []byte) error

func (*NullableNrLocationRm) Unset

func (v *NullableNrLocationRm) Unset()

type NullableNrV2xAuth

type NullableNrV2xAuth struct {
	// contains filtered or unexported fields
}

func NewNullableNrV2xAuth

func NewNullableNrV2xAuth(val *NrV2xAuth) *NullableNrV2xAuth

func (NullableNrV2xAuth) Get

func (v NullableNrV2xAuth) Get() *NrV2xAuth

func (NullableNrV2xAuth) IsSet

func (v NullableNrV2xAuth) IsSet() bool

func (NullableNrV2xAuth) MarshalJSON

func (v NullableNrV2xAuth) MarshalJSON() ([]byte, error)

func (*NullableNrV2xAuth) Set

func (v *NullableNrV2xAuth) Set(val *NrV2xAuth)

func (*NullableNrV2xAuth) UnmarshalJSON

func (v *NullableNrV2xAuth) UnmarshalJSON(src []byte) error

func (*NullableNrV2xAuth) Unset

func (v *NullableNrV2xAuth) Unset()

type NullableNssaaStatus

type NullableNssaaStatus struct {
	// contains filtered or unexported fields
}

func NewNullableNssaaStatus

func NewNullableNssaaStatus(val *NssaaStatus) *NullableNssaaStatus

func (NullableNssaaStatus) Get

func (NullableNssaaStatus) IsSet

func (v NullableNssaaStatus) IsSet() bool

func (NullableNssaaStatus) MarshalJSON

func (v NullableNssaaStatus) MarshalJSON() ([]byte, error)

func (*NullableNssaaStatus) Set

func (v *NullableNssaaStatus) Set(val *NssaaStatus)

func (*NullableNssaaStatus) UnmarshalJSON

func (v *NullableNssaaStatus) UnmarshalJSON(src []byte) error

func (*NullableNssaaStatus) Unset

func (v *NullableNssaaStatus) Unset()

type NullableNssaaStatusRm

type NullableNssaaStatusRm struct {
	// contains filtered or unexported fields
}

func NewNullableNssaaStatusRm

func NewNullableNssaaStatusRm(val *NssaaStatusRm) *NullableNssaaStatusRm

func (NullableNssaaStatusRm) Get

func (NullableNssaaStatusRm) IsSet

func (v NullableNssaaStatusRm) IsSet() bool

func (NullableNssaaStatusRm) MarshalJSON

func (v NullableNssaaStatusRm) MarshalJSON() ([]byte, error)

func (*NullableNssaaStatusRm) Set

func (v *NullableNssaaStatusRm) Set(val *NssaaStatusRm)

func (*NullableNssaaStatusRm) UnmarshalJSON

func (v *NullableNssaaStatusRm) UnmarshalJSON(src []byte) error

func (*NullableNssaaStatusRm) Unset

func (v *NullableNssaaStatusRm) 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 NullableOdbData

type NullableOdbData struct {
	// contains filtered or unexported fields
}

func NewNullableOdbData

func NewNullableOdbData(val *OdbData) *NullableOdbData

func (NullableOdbData) Get

func (v NullableOdbData) Get() *OdbData

func (NullableOdbData) IsSet

func (v NullableOdbData) IsSet() bool

func (NullableOdbData) MarshalJSON

func (v NullableOdbData) MarshalJSON() ([]byte, error)

func (*NullableOdbData) Set

func (v *NullableOdbData) Set(val *OdbData)

func (*NullableOdbData) UnmarshalJSON

func (v *NullableOdbData) UnmarshalJSON(src []byte) error

func (*NullableOdbData) Unset

func (v *NullableOdbData) Unset()

type NullableOdbPacketServices

type NullableOdbPacketServices struct {
	// contains filtered or unexported fields
}

func NewNullableOdbPacketServices

func NewNullableOdbPacketServices(val *OdbPacketServices) *NullableOdbPacketServices

func (NullableOdbPacketServices) Get

func (NullableOdbPacketServices) IsSet

func (v NullableOdbPacketServices) IsSet() bool

func (NullableOdbPacketServices) MarshalJSON

func (v NullableOdbPacketServices) MarshalJSON() ([]byte, error)

func (*NullableOdbPacketServices) Set

func (*NullableOdbPacketServices) UnmarshalJSON

func (v *NullableOdbPacketServices) UnmarshalJSON(src []byte) error

func (*NullableOdbPacketServices) Unset

func (v *NullableOdbPacketServices) Unset()

type NullableOdbPacketServicesAnyOf

type NullableOdbPacketServicesAnyOf struct {
	// contains filtered or unexported fields
}

func (NullableOdbPacketServicesAnyOf) Get

func (NullableOdbPacketServicesAnyOf) IsSet

func (NullableOdbPacketServicesAnyOf) MarshalJSON

func (v NullableOdbPacketServicesAnyOf) MarshalJSON() ([]byte, error)

func (*NullableOdbPacketServicesAnyOf) Set

func (*NullableOdbPacketServicesAnyOf) UnmarshalJSON

func (v *NullableOdbPacketServicesAnyOf) UnmarshalJSON(src []byte) error

func (*NullableOdbPacketServicesAnyOf) Unset

func (v *NullableOdbPacketServicesAnyOf) Unset()

type NullablePartitioningCriteria

type NullablePartitioningCriteria struct {
	// contains filtered or unexported fields
}

func NewNullablePartitioningCriteria

func NewNullablePartitioningCriteria(val *PartitioningCriteria) *NullablePartitioningCriteria

func (NullablePartitioningCriteria) Get

func (NullablePartitioningCriteria) IsSet

func (NullablePartitioningCriteria) MarshalJSON

func (v NullablePartitioningCriteria) MarshalJSON() ([]byte, error)

func (*NullablePartitioningCriteria) Set

func (*NullablePartitioningCriteria) UnmarshalJSON

func (v *NullablePartitioningCriteria) UnmarshalJSON(src []byte) error

func (*NullablePartitioningCriteria) Unset

func (v *NullablePartitioningCriteria) Unset()

type NullablePartitioningCriteriaRm

type NullablePartitioningCriteriaRm struct {
	// contains filtered or unexported fields
}

func (NullablePartitioningCriteriaRm) Get

func (NullablePartitioningCriteriaRm) IsSet

func (NullablePartitioningCriteriaRm) MarshalJSON

func (v NullablePartitioningCriteriaRm) MarshalJSON() ([]byte, error)

func (*NullablePartitioningCriteriaRm) Set

func (*NullablePartitioningCriteriaRm) UnmarshalJSON

func (v *NullablePartitioningCriteriaRm) UnmarshalJSON(src []byte) error

func (*NullablePartitioningCriteriaRm) Unset

func (v *NullablePartitioningCriteriaRm) Unset()

type NullablePatchItem

type NullablePatchItem struct {
	// contains filtered or unexported fields
}

func NewNullablePatchItem

func NewNullablePatchItem(val *PatchItem) *NullablePatchItem

func (NullablePatchItem) Get

func (v NullablePatchItem) Get() *PatchItem

func (NullablePatchItem) IsSet

func (v NullablePatchItem) IsSet() bool

func (NullablePatchItem) MarshalJSON

func (v NullablePatchItem) MarshalJSON() ([]byte, error)

func (*NullablePatchItem) Set

func (v *NullablePatchItem) Set(val *PatchItem)

func (*NullablePatchItem) UnmarshalJSON

func (v *NullablePatchItem) UnmarshalJSON(src []byte) error

func (*NullablePatchItem) Unset

func (v *NullablePatchItem) Unset()

type NullablePatchOperation

type NullablePatchOperation struct {
	// contains filtered or unexported fields
}

func NewNullablePatchOperation

func NewNullablePatchOperation(val *PatchOperation) *NullablePatchOperation

func (NullablePatchOperation) Get

func (NullablePatchOperation) IsSet

func (v NullablePatchOperation) IsSet() bool

func (NullablePatchOperation) MarshalJSON

func (v NullablePatchOperation) MarshalJSON() ([]byte, error)

func (*NullablePatchOperation) Set

func (*NullablePatchOperation) UnmarshalJSON

func (v *NullablePatchOperation) UnmarshalJSON(src []byte) error

func (*NullablePatchOperation) Unset

func (v *NullablePatchOperation) Unset()

type NullablePatchResult

type NullablePatchResult struct {
	// contains filtered or unexported fields
}

func NewNullablePatchResult

func NewNullablePatchResult(val *PatchResult) *NullablePatchResult

func (NullablePatchResult) Get

func (NullablePatchResult) IsSet

func (v NullablePatchResult) IsSet() bool

func (NullablePatchResult) MarshalJSON

func (v NullablePatchResult) MarshalJSON() ([]byte, error)

func (*NullablePatchResult) Set

func (v *NullablePatchResult) Set(val *PatchResult)

func (*NullablePatchResult) UnmarshalJSON

func (v *NullablePatchResult) UnmarshalJSON(src []byte) error

func (*NullablePatchResult) Unset

func (v *NullablePatchResult) Unset()

type NullablePc5FlowBitRates

type NullablePc5FlowBitRates struct {
	// contains filtered or unexported fields
}

func NewNullablePc5FlowBitRates

func NewNullablePc5FlowBitRates(val *Pc5FlowBitRates) *NullablePc5FlowBitRates

func (NullablePc5FlowBitRates) Get

func (NullablePc5FlowBitRates) IsSet

func (v NullablePc5FlowBitRates) IsSet() bool

func (NullablePc5FlowBitRates) MarshalJSON

func (v NullablePc5FlowBitRates) MarshalJSON() ([]byte, error)

func (*NullablePc5FlowBitRates) Set

func (*NullablePc5FlowBitRates) UnmarshalJSON

func (v *NullablePc5FlowBitRates) UnmarshalJSON(src []byte) error

func (*NullablePc5FlowBitRates) Unset

func (v *NullablePc5FlowBitRates) Unset()

type NullablePc5QoSPara

type NullablePc5QoSPara struct {
	// contains filtered or unexported fields
}

func NewNullablePc5QoSPara

func NewNullablePc5QoSPara(val *Pc5QoSPara) *NullablePc5QoSPara

func (NullablePc5QoSPara) Get

func (v NullablePc5QoSPara) Get() *Pc5QoSPara

func (NullablePc5QoSPara) IsSet

func (v NullablePc5QoSPara) IsSet() bool

func (NullablePc5QoSPara) MarshalJSON

func (v NullablePc5QoSPara) MarshalJSON() ([]byte, error)

func (*NullablePc5QoSPara) Set

func (v *NullablePc5QoSPara) Set(val *Pc5QoSPara)

func (*NullablePc5QoSPara) UnmarshalJSON

func (v *NullablePc5QoSPara) UnmarshalJSON(src []byte) error

func (*NullablePc5QoSPara) Unset

func (v *NullablePc5QoSPara) Unset()

type NullablePc5QosFlowItem

type NullablePc5QosFlowItem struct {
	// contains filtered or unexported fields
}

func NewNullablePc5QosFlowItem

func NewNullablePc5QosFlowItem(val *Pc5QosFlowItem) *NullablePc5QosFlowItem

func (NullablePc5QosFlowItem) Get

func (NullablePc5QosFlowItem) IsSet

func (v NullablePc5QosFlowItem) IsSet() bool

func (NullablePc5QosFlowItem) MarshalJSON

func (v NullablePc5QosFlowItem) MarshalJSON() ([]byte, error)

func (*NullablePc5QosFlowItem) Set

func (*NullablePc5QosFlowItem) UnmarshalJSON

func (v *NullablePc5QosFlowItem) UnmarshalJSON(src []byte) error

func (*NullablePc5QosFlowItem) Unset

func (v *NullablePc5QosFlowItem) Unset()

type NullablePcfUeCallbackInfo

type NullablePcfUeCallbackInfo struct {
	// contains filtered or unexported fields
}

func NewNullablePcfUeCallbackInfo

func NewNullablePcfUeCallbackInfo(val *PcfUeCallbackInfo) *NullablePcfUeCallbackInfo

func (NullablePcfUeCallbackInfo) Get

func (NullablePcfUeCallbackInfo) IsSet

func (v NullablePcfUeCallbackInfo) IsSet() bool

func (NullablePcfUeCallbackInfo) MarshalJSON

func (v NullablePcfUeCallbackInfo) MarshalJSON() ([]byte, error)

func (*NullablePcfUeCallbackInfo) Set

func (*NullablePcfUeCallbackInfo) UnmarshalJSON

func (v *NullablePcfUeCallbackInfo) UnmarshalJSON(src []byte) error

func (*NullablePcfUeCallbackInfo) Unset

func (v *NullablePcfUeCallbackInfo) Unset()

type NullablePduSessionInfo

type NullablePduSessionInfo struct {
	// contains filtered or unexported fields
}

func NewNullablePduSessionInfo

func NewNullablePduSessionInfo(val *PduSessionInfo) *NullablePduSessionInfo

func (NullablePduSessionInfo) Get

func (NullablePduSessionInfo) IsSet

func (v NullablePduSessionInfo) IsSet() bool

func (NullablePduSessionInfo) MarshalJSON

func (v NullablePduSessionInfo) MarshalJSON() ([]byte, error)

func (*NullablePduSessionInfo) Set

func (*NullablePduSessionInfo) UnmarshalJSON

func (v *NullablePduSessionInfo) UnmarshalJSON(src []byte) error

func (*NullablePduSessionInfo) Unset

func (v *NullablePduSessionInfo) Unset()

type NullablePduSessionType

type NullablePduSessionType struct {
	// contains filtered or unexported fields
}

func NewNullablePduSessionType

func NewNullablePduSessionType(val *PduSessionType) *NullablePduSessionType

func (NullablePduSessionType) Get

func (NullablePduSessionType) IsSet

func (v NullablePduSessionType) IsSet() bool

func (NullablePduSessionType) MarshalJSON

func (v NullablePduSessionType) MarshalJSON() ([]byte, error)

func (*NullablePduSessionType) Set

func (*NullablePduSessionType) UnmarshalJSON

func (v *NullablePduSessionType) UnmarshalJSON(src []byte) error

func (*NullablePduSessionType) Unset

func (v *NullablePduSessionType) Unset()

type NullablePduSessionTypeRm

type NullablePduSessionTypeRm struct {
	// contains filtered or unexported fields
}

func NewNullablePduSessionTypeRm

func NewNullablePduSessionTypeRm(val *PduSessionTypeRm) *NullablePduSessionTypeRm

func (NullablePduSessionTypeRm) Get

func (NullablePduSessionTypeRm) IsSet

func (v NullablePduSessionTypeRm) IsSet() bool

func (NullablePduSessionTypeRm) MarshalJSON

func (v NullablePduSessionTypeRm) MarshalJSON() ([]byte, error)

func (*NullablePduSessionTypeRm) Set

func (*NullablePduSessionTypeRm) UnmarshalJSON

func (v *NullablePduSessionTypeRm) UnmarshalJSON(src []byte) error

func (*NullablePduSessionTypeRm) Unset

func (v *NullablePduSessionTypeRm) 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 NullablePlmnId1

type NullablePlmnId1 struct {
	// contains filtered or unexported fields
}

func NewNullablePlmnId1

func NewNullablePlmnId1(val *PlmnId1) *NullablePlmnId1

func (NullablePlmnId1) Get

func (v NullablePlmnId1) Get() *PlmnId1

func (NullablePlmnId1) IsSet

func (v NullablePlmnId1) IsSet() bool

func (NullablePlmnId1) MarshalJSON

func (v NullablePlmnId1) MarshalJSON() ([]byte, error)

func (*NullablePlmnId1) Set

func (v *NullablePlmnId1) Set(val *PlmnId1)

func (*NullablePlmnId1) UnmarshalJSON

func (v *NullablePlmnId1) UnmarshalJSON(src []byte) error

func (*NullablePlmnId1) Unset

func (v *NullablePlmnId1) 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 NullablePlmnIdNid1

type NullablePlmnIdNid1 struct {
	// contains filtered or unexported fields
}

func NewNullablePlmnIdNid1

func NewNullablePlmnIdNid1(val *PlmnIdNid1) *NullablePlmnIdNid1

func (NullablePlmnIdNid1) Get

func (v NullablePlmnIdNid1) Get() *PlmnIdNid1

func (NullablePlmnIdNid1) IsSet

func (v NullablePlmnIdNid1) IsSet() bool

func (NullablePlmnIdNid1) MarshalJSON

func (v NullablePlmnIdNid1) MarshalJSON() ([]byte, error)

func (*NullablePlmnIdNid1) Set

func (v *NullablePlmnIdNid1) Set(val *PlmnIdNid1)

func (*NullablePlmnIdNid1) UnmarshalJSON

func (v *NullablePlmnIdNid1) UnmarshalJSON(src []byte) error

func (*NullablePlmnIdNid1) Unset

func (v *NullablePlmnIdNid1) Unset()

type NullablePlmnIdNidRm

type NullablePlmnIdNidRm struct {
	// contains filtered or unexported fields
}

func NewNullablePlmnIdNidRm

func NewNullablePlmnIdNidRm(val *PlmnIdNidRm) *NullablePlmnIdNidRm

func (NullablePlmnIdNidRm) Get

func (NullablePlmnIdNidRm) IsSet

func (v NullablePlmnIdNidRm) IsSet() bool

func (NullablePlmnIdNidRm) MarshalJSON

func (v NullablePlmnIdNidRm) MarshalJSON() ([]byte, error)

func (*NullablePlmnIdNidRm) Set

func (v *NullablePlmnIdNidRm) Set(val *PlmnIdNidRm)

func (*NullablePlmnIdNidRm) UnmarshalJSON

func (v *NullablePlmnIdNidRm) UnmarshalJSON(src []byte) error

func (*NullablePlmnIdNidRm) Unset

func (v *NullablePlmnIdNidRm) Unset()

type NullablePlmnIdRm

type NullablePlmnIdRm struct {
	// contains filtered or unexported fields
}

func NewNullablePlmnIdRm

func NewNullablePlmnIdRm(val *PlmnIdRm) *NullablePlmnIdRm

func (NullablePlmnIdRm) Get

func (v NullablePlmnIdRm) Get() *PlmnIdRm

func (NullablePlmnIdRm) IsSet

func (v NullablePlmnIdRm) IsSet() bool

func (NullablePlmnIdRm) MarshalJSON

func (v NullablePlmnIdRm) MarshalJSON() ([]byte, error)

func (*NullablePlmnIdRm) Set

func (v *NullablePlmnIdRm) Set(val *PlmnIdRm)

func (*NullablePlmnIdRm) UnmarshalJSON

func (v *NullablePlmnIdRm) UnmarshalJSON(src []byte) error

func (*NullablePlmnIdRm) Unset

func (v *NullablePlmnIdRm) 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 NullablePositioningMethodMdt

type NullablePositioningMethodMdt struct {
	// contains filtered or unexported fields
}

func NewNullablePositioningMethodMdt

func NewNullablePositioningMethodMdt(val *PositioningMethodMdt) *NullablePositioningMethodMdt

func (NullablePositioningMethodMdt) Get

func (NullablePositioningMethodMdt) IsSet

func (NullablePositioningMethodMdt) MarshalJSON

func (v NullablePositioningMethodMdt) MarshalJSON() ([]byte, error)

func (*NullablePositioningMethodMdt) Set

func (*NullablePositioningMethodMdt) UnmarshalJSON

func (v *NullablePositioningMethodMdt) UnmarshalJSON(src []byte) error

func (*NullablePositioningMethodMdt) Unset

func (v *NullablePositioningMethodMdt) Unset()

type NullablePreemptionCapability

type NullablePreemptionCapability struct {
	// contains filtered or unexported fields
}

func NewNullablePreemptionCapability

func NewNullablePreemptionCapability(val *PreemptionCapability) *NullablePreemptionCapability

func (NullablePreemptionCapability) Get

func (NullablePreemptionCapability) IsSet

func (NullablePreemptionCapability) MarshalJSON

func (v NullablePreemptionCapability) MarshalJSON() ([]byte, error)

func (*NullablePreemptionCapability) Set

func (*NullablePreemptionCapability) UnmarshalJSON

func (v *NullablePreemptionCapability) UnmarshalJSON(src []byte) error

func (*NullablePreemptionCapability) Unset

func (v *NullablePreemptionCapability) Unset()

type NullablePreemptionCapabilityRm

type NullablePreemptionCapabilityRm struct {
	// contains filtered or unexported fields
}

func (NullablePreemptionCapabilityRm) Get

func (NullablePreemptionCapabilityRm) IsSet

func (NullablePreemptionCapabilityRm) MarshalJSON

func (v NullablePreemptionCapabilityRm) MarshalJSON() ([]byte, error)

func (*NullablePreemptionCapabilityRm) Set

func (*NullablePreemptionCapabilityRm) UnmarshalJSON

func (v *NullablePreemptionCapabilityRm) UnmarshalJSON(src []byte) error

func (*NullablePreemptionCapabilityRm) Unset

func (v *NullablePreemptionCapabilityRm) Unset()

type NullablePreemptionVulnerability

type NullablePreemptionVulnerability struct {
	// contains filtered or unexported fields
}

func (NullablePreemptionVulnerability) Get

func (NullablePreemptionVulnerability) IsSet

func (NullablePreemptionVulnerability) MarshalJSON

func (v NullablePreemptionVulnerability) MarshalJSON() ([]byte, error)

func (*NullablePreemptionVulnerability) Set

func (*NullablePreemptionVulnerability) UnmarshalJSON

func (v *NullablePreemptionVulnerability) UnmarshalJSON(src []byte) error

func (*NullablePreemptionVulnerability) Unset

type NullablePreemptionVulnerabilityRm

type NullablePreemptionVulnerabilityRm struct {
	// contains filtered or unexported fields
}

func (NullablePreemptionVulnerabilityRm) Get

func (NullablePreemptionVulnerabilityRm) IsSet

func (NullablePreemptionVulnerabilityRm) MarshalJSON

func (v NullablePreemptionVulnerabilityRm) MarshalJSON() ([]byte, error)

func (*NullablePreemptionVulnerabilityRm) Set

func (*NullablePreemptionVulnerabilityRm) UnmarshalJSON

func (v *NullablePreemptionVulnerabilityRm) UnmarshalJSON(src []byte) error

func (*NullablePreemptionVulnerabilityRm) Unset

type NullablePresenceInfo

type NullablePresenceInfo struct {
	// contains filtered or unexported fields
}

func NewNullablePresenceInfo

func NewNullablePresenceInfo(val *PresenceInfo) *NullablePresenceInfo

func (NullablePresenceInfo) Get

func (NullablePresenceInfo) IsSet

func (v NullablePresenceInfo) IsSet() bool

func (NullablePresenceInfo) MarshalJSON

func (v NullablePresenceInfo) MarshalJSON() ([]byte, error)

func (*NullablePresenceInfo) Set

func (v *NullablePresenceInfo) Set(val *PresenceInfo)

func (*NullablePresenceInfo) UnmarshalJSON

func (v *NullablePresenceInfo) UnmarshalJSON(src []byte) error

func (*NullablePresenceInfo) Unset

func (v *NullablePresenceInfo) Unset()

type NullablePresenceInfoRm

type NullablePresenceInfoRm struct {
	// contains filtered or unexported fields
}

func NewNullablePresenceInfoRm

func NewNullablePresenceInfoRm(val *PresenceInfoRm) *NullablePresenceInfoRm

func (NullablePresenceInfoRm) Get

func (NullablePresenceInfoRm) IsSet

func (v NullablePresenceInfoRm) IsSet() bool

func (NullablePresenceInfoRm) MarshalJSON

func (v NullablePresenceInfoRm) MarshalJSON() ([]byte, error)

func (*NullablePresenceInfoRm) Set

func (*NullablePresenceInfoRm) UnmarshalJSON

func (v *NullablePresenceInfoRm) UnmarshalJSON(src []byte) error

func (*NullablePresenceInfoRm) Unset

func (v *NullablePresenceInfoRm) Unset()

type NullablePresenceState

type NullablePresenceState struct {
	// contains filtered or unexported fields
}

func NewNullablePresenceState

func NewNullablePresenceState(val *PresenceState) *NullablePresenceState

func (NullablePresenceState) Get

func (NullablePresenceState) IsSet

func (v NullablePresenceState) IsSet() bool

func (NullablePresenceState) MarshalJSON

func (v NullablePresenceState) MarshalJSON() ([]byte, error)

func (*NullablePresenceState) Set

func (v *NullablePresenceState) Set(val *PresenceState)

func (*NullablePresenceState) UnmarshalJSON

func (v *NullablePresenceState) UnmarshalJSON(src []byte) error

func (*NullablePresenceState) Unset

func (v *NullablePresenceState) Unset()

type NullableProblemDetails

type NullableProblemDetails struct {
	// contains filtered or unexported fields
}

func NewNullableProblemDetails

func NewNullableProblemDetails(val *ProblemDetails) *NullableProblemDetails

func (NullableProblemDetails) Get

func (NullableProblemDetails) IsSet

func (v NullableProblemDetails) IsSet() bool

func (NullableProblemDetails) MarshalJSON

func (v NullableProblemDetails) MarshalJSON() ([]byte, error)

func (*NullableProblemDetails) Set

func (*NullableProblemDetails) UnmarshalJSON

func (v *NullableProblemDetails) UnmarshalJSON(src []byte) error

func (*NullableProblemDetails) Unset

func (v *NullableProblemDetails) Unset()

type NullableProperty

type NullableProperty struct {
	// contains filtered or unexported fields
}

func NewNullableProperty

func NewNullableProperty(val *Property) *NullableProperty

func (NullableProperty) Get

func (v NullableProperty) Get() *Property

func (NullableProperty) IsSet

func (v NullableProperty) IsSet() bool

func (NullableProperty) MarshalJSON

func (v NullableProperty) MarshalJSON() ([]byte, error)

func (*NullableProperty) Set

func (v *NullableProperty) Set(val *Property)

func (*NullableProperty) UnmarshalJSON

func (v *NullableProperty) UnmarshalJSON(src []byte) error

func (*NullableProperty) Unset

func (v *NullableProperty) Unset()

type NullableProseServiceAuth

type NullableProseServiceAuth struct {
	// contains filtered or unexported fields
}

func NewNullableProseServiceAuth

func NewNullableProseServiceAuth(val *ProseServiceAuth) *NullableProseServiceAuth

func (NullableProseServiceAuth) Get

func (NullableProseServiceAuth) IsSet

func (v NullableProseServiceAuth) IsSet() bool

func (NullableProseServiceAuth) MarshalJSON

func (v NullableProseServiceAuth) MarshalJSON() ([]byte, error)

func (*NullableProseServiceAuth) Set

func (*NullableProseServiceAuth) UnmarshalJSON

func (v *NullableProseServiceAuth) UnmarshalJSON(src []byte) error

func (*NullableProseServiceAuth) Unset

func (v *NullableProseServiceAuth) Unset()

type NullableQosFlowUsageReport

type NullableQosFlowUsageReport struct {
	// contains filtered or unexported fields
}

func NewNullableQosFlowUsageReport

func NewNullableQosFlowUsageReport(val *QosFlowUsageReport) *NullableQosFlowUsageReport

func (NullableQosFlowUsageReport) Get

func (NullableQosFlowUsageReport) IsSet

func (v NullableQosFlowUsageReport) IsSet() bool

func (NullableQosFlowUsageReport) MarshalJSON

func (v NullableQosFlowUsageReport) MarshalJSON() ([]byte, error)

func (*NullableQosFlowUsageReport) Set

func (*NullableQosFlowUsageReport) UnmarshalJSON

func (v *NullableQosFlowUsageReport) UnmarshalJSON(src []byte) error

func (*NullableQosFlowUsageReport) Unset

func (v *NullableQosFlowUsageReport) Unset()

type 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 NullableQosResourceTypeRm

type NullableQosResourceTypeRm struct {
	// contains filtered or unexported fields
}

func NewNullableQosResourceTypeRm

func NewNullableQosResourceTypeRm(val *QosResourceTypeRm) *NullableQosResourceTypeRm

func (NullableQosResourceTypeRm) Get

func (NullableQosResourceTypeRm) IsSet

func (v NullableQosResourceTypeRm) IsSet() bool

func (NullableQosResourceTypeRm) MarshalJSON

func (v NullableQosResourceTypeRm) MarshalJSON() ([]byte, error)

func (*NullableQosResourceTypeRm) Set

func (*NullableQosResourceTypeRm) UnmarshalJSON

func (v *NullableQosResourceTypeRm) UnmarshalJSON(src []byte) error

func (*NullableQosResourceTypeRm) Unset

func (v *NullableQosResourceTypeRm) Unset()

type NullableRatType

type NullableRatType struct {
	// contains filtered or unexported fields
}

func NewNullableRatType

func NewNullableRatType(val *RatType) *NullableRatType

func (NullableRatType) Get

func (v NullableRatType) Get() *RatType

func (NullableRatType) IsSet

func (v NullableRatType) IsSet() bool

func (NullableRatType) MarshalJSON

func (v NullableRatType) MarshalJSON() ([]byte, error)

func (*NullableRatType) Set

func (v *NullableRatType) Set(val *RatType)

func (*NullableRatType) UnmarshalJSON

func (v *NullableRatType) UnmarshalJSON(src []byte) error

func (*NullableRatType) Unset

func (v *NullableRatType) Unset()

type NullableRatTypeRm

type NullableRatTypeRm struct {
	// contains filtered or unexported fields
}

func NewNullableRatTypeRm

func NewNullableRatTypeRm(val *RatTypeRm) *NullableRatTypeRm

func (NullableRatTypeRm) Get

func (v NullableRatTypeRm) Get() *RatTypeRm

func (NullableRatTypeRm) IsSet

func (v NullableRatTypeRm) IsSet() bool

func (NullableRatTypeRm) MarshalJSON

func (v NullableRatTypeRm) MarshalJSON() ([]byte, error)

func (*NullableRatTypeRm) Set

func (v *NullableRatTypeRm) Set(val *RatTypeRm)

func (*NullableRatTypeRm) UnmarshalJSON

func (v *NullableRatTypeRm) UnmarshalJSON(src []byte) error

func (*NullableRatTypeRm) Unset

func (v *NullableRatTypeRm) 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 NullableRefToBinaryDataRm

type NullableRefToBinaryDataRm struct {
	// contains filtered or unexported fields
}

func NewNullableRefToBinaryDataRm

func NewNullableRefToBinaryDataRm(val *RefToBinaryDataRm) *NullableRefToBinaryDataRm

func (NullableRefToBinaryDataRm) Get

func (NullableRefToBinaryDataRm) IsSet

func (v NullableRefToBinaryDataRm) IsSet() bool

func (NullableRefToBinaryDataRm) MarshalJSON

func (v NullableRefToBinaryDataRm) MarshalJSON() ([]byte, error)

func (*NullableRefToBinaryDataRm) Set

func (*NullableRefToBinaryDataRm) UnmarshalJSON

func (v *NullableRefToBinaryDataRm) UnmarshalJSON(src []byte) error

func (*NullableRefToBinaryDataRm) Unset

func (v *NullableRefToBinaryDataRm) Unset()

type NullableReflectiveQoSAttribute

type NullableReflectiveQoSAttribute struct {
	// contains filtered or unexported fields
}

func (NullableReflectiveQoSAttribute) Get

func (NullableReflectiveQoSAttribute) IsSet

func (NullableReflectiveQoSAttribute) MarshalJSON

func (v NullableReflectiveQoSAttribute) MarshalJSON() ([]byte, error)

func (*NullableReflectiveQoSAttribute) Set

func (*NullableReflectiveQoSAttribute) UnmarshalJSON

func (v *NullableReflectiveQoSAttribute) UnmarshalJSON(src []byte) error

func (*NullableReflectiveQoSAttribute) Unset

func (v *NullableReflectiveQoSAttribute) Unset()

type NullableReflectiveQoSAttributeRm

type NullableReflectiveQoSAttributeRm struct {
	// contains filtered or unexported fields
}

func (NullableReflectiveQoSAttributeRm) Get

func (NullableReflectiveQoSAttributeRm) IsSet

func (NullableReflectiveQoSAttributeRm) MarshalJSON

func (v NullableReflectiveQoSAttributeRm) MarshalJSON() ([]byte, error)

func (*NullableReflectiveQoSAttributeRm) Set

func (*NullableReflectiveQoSAttributeRm) UnmarshalJSON

func (v *NullableReflectiveQoSAttributeRm) UnmarshalJSON(src []byte) error

func (*NullableReflectiveQoSAttributeRm) 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 NullableReportAmountMdt

type NullableReportAmountMdt struct {
	// contains filtered or unexported fields
}

func NewNullableReportAmountMdt

func NewNullableReportAmountMdt(val *ReportAmountMdt) *NullableReportAmountMdt

func (NullableReportAmountMdt) Get

func (NullableReportAmountMdt) IsSet

func (v NullableReportAmountMdt) IsSet() bool

func (NullableReportAmountMdt) MarshalJSON

func (v NullableReportAmountMdt) MarshalJSON() ([]byte, error)

func (*NullableReportAmountMdt) Set

func (*NullableReportAmountMdt) UnmarshalJSON

func (v *NullableReportAmountMdt) UnmarshalJSON(src []byte) error

func (*NullableReportAmountMdt) Unset

func (v *NullableReportAmountMdt) Unset()

type NullableReportIntervalMdt

type NullableReportIntervalMdt struct {
	// contains filtered or unexported fields
}

func NewNullableReportIntervalMdt

func NewNullableReportIntervalMdt(val *ReportIntervalMdt) *NullableReportIntervalMdt

func (NullableReportIntervalMdt) Get

func (NullableReportIntervalMdt) IsSet

func (v NullableReportIntervalMdt) IsSet() bool

func (NullableReportIntervalMdt) MarshalJSON

func (v NullableReportIntervalMdt) MarshalJSON() ([]byte, error)

func (*NullableReportIntervalMdt) Set

func (*NullableReportIntervalMdt) UnmarshalJSON

func (v *NullableReportIntervalMdt) UnmarshalJSON(src []byte) error

func (*NullableReportIntervalMdt) Unset

func (v *NullableReportIntervalMdt) Unset()

type NullableReportIntervalNrMdt

type NullableReportIntervalNrMdt struct {
	// contains filtered or unexported fields
}

func NewNullableReportIntervalNrMdt

func NewNullableReportIntervalNrMdt(val *ReportIntervalNrMdt) *NullableReportIntervalNrMdt

func (NullableReportIntervalNrMdt) Get

func (NullableReportIntervalNrMdt) IsSet

func (NullableReportIntervalNrMdt) MarshalJSON

func (v NullableReportIntervalNrMdt) MarshalJSON() ([]byte, error)

func (*NullableReportIntervalNrMdt) Set

func (*NullableReportIntervalNrMdt) UnmarshalJSON

func (v *NullableReportIntervalNrMdt) UnmarshalJSON(src []byte) error

func (*NullableReportIntervalNrMdt) Unset

func (v *NullableReportIntervalNrMdt) Unset()

type NullableReportItem

type NullableReportItem struct {
	// contains filtered or unexported fields
}

func NewNullableReportItem

func NewNullableReportItem(val *ReportItem) *NullableReportItem

func (NullableReportItem) Get

func (v NullableReportItem) Get() *ReportItem

func (NullableReportItem) IsSet

func (v NullableReportItem) IsSet() bool

func (NullableReportItem) MarshalJSON

func (v NullableReportItem) MarshalJSON() ([]byte, error)

func (*NullableReportItem) Set

func (v *NullableReportItem) Set(val *ReportItem)

func (*NullableReportItem) UnmarshalJSON

func (v *NullableReportItem) UnmarshalJSON(src []byte) error

func (*NullableReportItem) Unset

func (v *NullableReportItem) Unset()

type NullableReportTypeMdt

type NullableReportTypeMdt struct {
	// contains filtered or unexported fields
}

func NewNullableReportTypeMdt

func NewNullableReportTypeMdt(val *ReportTypeMdt) *NullableReportTypeMdt

func (NullableReportTypeMdt) Get

func (NullableReportTypeMdt) IsSet

func (v NullableReportTypeMdt) IsSet() bool

func (NullableReportTypeMdt) MarshalJSON

func (v NullableReportTypeMdt) MarshalJSON() ([]byte, error)

func (*NullableReportTypeMdt) Set

func (v *NullableReportTypeMdt) Set(val *ReportTypeMdt)

func (*NullableReportTypeMdt) UnmarshalJSON

func (v *NullableReportTypeMdt) UnmarshalJSON(src []byte) error

func (*NullableReportTypeMdt) Unset

func (v *NullableReportTypeMdt) Unset()

type NullableReportingTrigger

type NullableReportingTrigger struct {
	// contains filtered or unexported fields
}

func NewNullableReportingTrigger

func NewNullableReportingTrigger(val *ReportingTrigger) *NullableReportingTrigger

func (NullableReportingTrigger) Get

func (NullableReportingTrigger) IsSet

func (v NullableReportingTrigger) IsSet() bool

func (NullableReportingTrigger) MarshalJSON

func (v NullableReportingTrigger) MarshalJSON() ([]byte, error)

func (*NullableReportingTrigger) Set

func (*NullableReportingTrigger) UnmarshalJSON

func (v *NullableReportingTrigger) UnmarshalJSON(src []byte) error

func (*NullableReportingTrigger) Unset

func (v *NullableReportingTrigger) 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 NullableRestrictionType

type NullableRestrictionType struct {
	// contains filtered or unexported fields
}

func NewNullableRestrictionType

func NewNullableRestrictionType(val *RestrictionType) *NullableRestrictionType

func (NullableRestrictionType) Get

func (NullableRestrictionType) IsSet

func (v NullableRestrictionType) IsSet() bool

func (NullableRestrictionType) MarshalJSON

func (v NullableRestrictionType) MarshalJSON() ([]byte, error)

func (*NullableRestrictionType) Set

func (*NullableRestrictionType) UnmarshalJSON

func (v *NullableRestrictionType) UnmarshalJSON(src []byte) error

func (*NullableRestrictionType) Unset

func (v *NullableRestrictionType) Unset()

type NullableRestrictionTypeRm

type NullableRestrictionTypeRm struct {
	// contains filtered or unexported fields
}

func NewNullableRestrictionTypeRm

func NewNullableRestrictionTypeRm(val *RestrictionTypeRm) *NullableRestrictionTypeRm

func (NullableRestrictionTypeRm) Get

func (NullableRestrictionTypeRm) IsSet

func (v NullableRestrictionTypeRm) IsSet() bool

func (NullableRestrictionTypeRm) MarshalJSON

func (v NullableRestrictionTypeRm) MarshalJSON() ([]byte, error)

func (*NullableRestrictionTypeRm) Set

func (*NullableRestrictionTypeRm) UnmarshalJSON

func (v *NullableRestrictionTypeRm) UnmarshalJSON(src []byte) error

func (*NullableRestrictionTypeRm) Unset

func (v *NullableRestrictionTypeRm) Unset()

type NullableRgWirelineCharacteristicsRm

type NullableRgWirelineCharacteristicsRm struct {
	// contains filtered or unexported fields
}

func (NullableRgWirelineCharacteristicsRm) Get

func (NullableRgWirelineCharacteristicsRm) IsSet

func (NullableRgWirelineCharacteristicsRm) MarshalJSON

func (v NullableRgWirelineCharacteristicsRm) MarshalJSON() ([]byte, error)

func (*NullableRgWirelineCharacteristicsRm) Set

func (*NullableRgWirelineCharacteristicsRm) UnmarshalJSON

func (v *NullableRgWirelineCharacteristicsRm) UnmarshalJSON(src []byte) error

func (*NullableRgWirelineCharacteristicsRm) Unset

type NullableRoamingOdb

type NullableRoamingOdb struct {
	// contains filtered or unexported fields
}

func NewNullableRoamingOdb

func NewNullableRoamingOdb(val *RoamingOdb) *NullableRoamingOdb

func (NullableRoamingOdb) Get

func (v NullableRoamingOdb) Get() *RoamingOdb

func (NullableRoamingOdb) IsSet

func (v NullableRoamingOdb) IsSet() bool

func (NullableRoamingOdb) MarshalJSON

func (v NullableRoamingOdb) MarshalJSON() ([]byte, error)

func (*NullableRoamingOdb) Set

func (v *NullableRoamingOdb) Set(val *RoamingOdb)

func (*NullableRoamingOdb) UnmarshalJSON

func (v *NullableRoamingOdb) UnmarshalJSON(src []byte) error

func (*NullableRoamingOdb) Unset

func (v *NullableRoamingOdb) Unset()

type NullableRoamingRestrictions

type NullableRoamingRestrictions struct {
	// contains filtered or unexported fields
}

func NewNullableRoamingRestrictions

func NewNullableRoamingRestrictions(val *RoamingRestrictions) *NullableRoamingRestrictions

func (NullableRoamingRestrictions) Get

func (NullableRoamingRestrictions) IsSet

func (NullableRoamingRestrictions) MarshalJSON

func (v NullableRoamingRestrictions) MarshalJSON() ([]byte, error)

func (*NullableRoamingRestrictions) Set

func (*NullableRoamingRestrictions) UnmarshalJSON

func (v *NullableRoamingRestrictions) UnmarshalJSON(src []byte) error

func (*NullableRoamingRestrictions) Unset

func (v *NullableRoamingRestrictions) Unset()

type NullableRouteInformation

type NullableRouteInformation struct {
	// contains filtered or unexported fields
}

func NewNullableRouteInformation

func NewNullableRouteInformation(val *RouteInformation) *NullableRouteInformation

func (NullableRouteInformation) Get

func (NullableRouteInformation) IsSet

func (v NullableRouteInformation) IsSet() bool

func (NullableRouteInformation) MarshalJSON

func (v NullableRouteInformation) MarshalJSON() ([]byte, error)

func (*NullableRouteInformation) Set

func (*NullableRouteInformation) UnmarshalJSON

func (v *NullableRouteInformation) UnmarshalJSON(src []byte) error

func (*NullableRouteInformation) Unset

func (v *NullableRouteInformation) Unset()

type NullableRouteToLocation

type NullableRouteToLocation struct {
	// contains filtered or unexported fields
}

func NewNullableRouteToLocation

func NewNullableRouteToLocation(val *RouteToLocation) *NullableRouteToLocation

func (NullableRouteToLocation) Get

func (NullableRouteToLocation) IsSet

func (v NullableRouteToLocation) IsSet() bool

func (NullableRouteToLocation) MarshalJSON

func (v NullableRouteToLocation) MarshalJSON() ([]byte, error)

func (*NullableRouteToLocation) Set

func (*NullableRouteToLocation) UnmarshalJSON

func (v *NullableRouteToLocation) UnmarshalJSON(src []byte) error

func (*NullableRouteToLocation) Unset

func (v *NullableRouteToLocation) Unset()

type NullableRoutingAreaId

type NullableRoutingAreaId struct {
	// contains filtered or unexported fields
}

func NewNullableRoutingAreaId

func NewNullableRoutingAreaId(val *RoutingAreaId) *NullableRoutingAreaId

func (NullableRoutingAreaId) Get

func (NullableRoutingAreaId) IsSet

func (v NullableRoutingAreaId) IsSet() bool

func (NullableRoutingAreaId) MarshalJSON

func (v NullableRoutingAreaId) MarshalJSON() ([]byte, error)

func (*NullableRoutingAreaId) Set

func (v *NullableRoutingAreaId) Set(val *RoutingAreaId)

func (*NullableRoutingAreaId) UnmarshalJSON

func (v *NullableRoutingAreaId) UnmarshalJSON(src []byte) error

func (*NullableRoutingAreaId) Unset

func (v *NullableRoutingAreaId) Unset()

type NullableSACEventStatus

type NullableSACEventStatus struct {
	// contains filtered or unexported fields
}

func NewNullableSACEventStatus

func NewNullableSACEventStatus(val *SACEventStatus) *NullableSACEventStatus

func (NullableSACEventStatus) Get

func (NullableSACEventStatus) IsSet

func (v NullableSACEventStatus) IsSet() bool

func (NullableSACEventStatus) MarshalJSON

func (v NullableSACEventStatus) MarshalJSON() ([]byte, error)

func (*NullableSACEventStatus) Set

func (*NullableSACEventStatus) UnmarshalJSON

func (v *NullableSACEventStatus) UnmarshalJSON(src []byte) error

func (*NullableSACEventStatus) Unset

func (v *NullableSACEventStatus) Unset()

type NullableSACInfo

type NullableSACInfo struct {
	// contains filtered or unexported fields
}

func NewNullableSACInfo

func NewNullableSACInfo(val *SACInfo) *NullableSACInfo

func (NullableSACInfo) Get

func (v NullableSACInfo) Get() *SACInfo

func (NullableSACInfo) IsSet

func (v NullableSACInfo) IsSet() bool

func (NullableSACInfo) MarshalJSON