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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 ¶

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

func (*NullableSACInfo) Set ¶

func (v *NullableSACInfo) Set(val *SACInfo)

func (*NullableSACInfo) UnmarshalJSON ¶

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

func (*NullableSACInfo) Unset ¶

func (v *NullableSACInfo) Unset()

type NullableSatelliteBackhaulCategory ¶

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

func (NullableSatelliteBackhaulCategory) Get ¶

func (NullableSatelliteBackhaulCategory) IsSet ¶

func (NullableSatelliteBackhaulCategory) MarshalJSON ¶

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

func (*NullableSatelliteBackhaulCategory) Set ¶

func (*NullableSatelliteBackhaulCategory) UnmarshalJSON ¶

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

func (*NullableSatelliteBackhaulCategory) Unset ¶

type NullableSatelliteBackhaulCategoryRm ¶

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

func (NullableSatelliteBackhaulCategoryRm) Get ¶

func (NullableSatelliteBackhaulCategoryRm) IsSet ¶

func (NullableSatelliteBackhaulCategoryRm) MarshalJSON ¶

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

func (*NullableSatelliteBackhaulCategoryRm) Set ¶

func (*NullableSatelliteBackhaulCategoryRm) UnmarshalJSON ¶

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

func (*NullableSatelliteBackhaulCategoryRm) Unset ¶

type NullableScheduledCommunicationTime ¶

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

func (NullableScheduledCommunicationTime) Get ¶

func (NullableScheduledCommunicationTime) IsSet ¶

func (NullableScheduledCommunicationTime) MarshalJSON ¶

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

func (*NullableScheduledCommunicationTime) Set ¶

func (*NullableScheduledCommunicationTime) UnmarshalJSON ¶

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

func (*NullableScheduledCommunicationTime) Unset ¶

type NullableScheduledCommunicationTimeRm ¶

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

func (NullableScheduledCommunicationTimeRm) Get ¶

func (NullableScheduledCommunicationTimeRm) IsSet ¶

func (NullableScheduledCommunicationTimeRm) MarshalJSON ¶

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

func (*NullableScheduledCommunicationTimeRm) Set ¶

func (*NullableScheduledCommunicationTimeRm) UnmarshalJSON ¶

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

func (*NullableScheduledCommunicationTimeRm) Unset ¶

type NullableScheduledCommunicationType ¶

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

func (NullableScheduledCommunicationType) Get ¶

func (NullableScheduledCommunicationType) IsSet ¶

func (NullableScheduledCommunicationType) MarshalJSON ¶

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

func (*NullableScheduledCommunicationType) Set ¶

func (*NullableScheduledCommunicationType) UnmarshalJSON ¶

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

func (*NullableScheduledCommunicationType) Unset ¶

type NullableScheduledCommunicationTypeRm ¶

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

func (NullableScheduledCommunicationTypeRm) Get ¶

func (NullableScheduledCommunicationTypeRm) IsSet ¶

func (NullableScheduledCommunicationTypeRm) MarshalJSON ¶

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

func (*NullableScheduledCommunicationTypeRm) Set ¶

func (*NullableScheduledCommunicationTypeRm) UnmarshalJSON ¶

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

func (*NullableScheduledCommunicationTypeRm) Unset ¶

type NullableSdRange ¶

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

func NewNullableSdRange ¶

func NewNullableSdRange(val *SdRange) *NullableSdRange

func (NullableSdRange) Get ¶

func (v NullableSdRange) Get() *SdRange

func (NullableSdRange) IsSet ¶

func (v NullableSdRange) IsSet() bool

func (NullableSdRange) MarshalJSON ¶

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

func (*NullableSdRange) Set ¶

func (v *NullableSdRange) Set(val *SdRange)

func (*NullableSdRange) UnmarshalJSON ¶

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

func (*NullableSdRange) Unset ¶

func (v *NullableSdRange) Unset()

type NullableSecondaryRatUsageInfo ¶

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

func (NullableSecondaryRatUsageInfo) Get ¶

func (NullableSecondaryRatUsageInfo) IsSet ¶

func (NullableSecondaryRatUsageInfo) MarshalJSON ¶

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

func (*NullableSecondaryRatUsageInfo) Set ¶

func (*NullableSecondaryRatUsageInfo) UnmarshalJSON ¶

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

func (*NullableSecondaryRatUsageInfo) Unset ¶

func (v *NullableSecondaryRatUsageInfo) Unset()

type NullableSecondaryRatUsageReport ¶

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

func (NullableSecondaryRatUsageReport) Get ¶

func (NullableSecondaryRatUsageReport) IsSet ¶

func (NullableSecondaryRatUsageReport) MarshalJSON ¶

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

func (*NullableSecondaryRatUsageReport) Set ¶

func (*NullableSecondaryRatUsageReport) UnmarshalJSON ¶

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

func (*NullableSecondaryRatUsageReport) Unset ¶

type NullableSelfLink struct {
	// contains filtered or unexported fields
}
func NewNullableSelfLink(val *SelfLink) *NullableSelfLink

func (NullableSelfLink) Get ¶

func (v NullableSelfLink) Get() *SelfLink

func (NullableSelfLink) IsSet ¶

func (v NullableSelfLink) IsSet() bool

func (NullableSelfLink) MarshalJSON ¶

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

func (*NullableSelfLink) Set ¶

func (v *NullableSelfLink) Set(val *SelfLink)

func (*NullableSelfLink) UnmarshalJSON ¶

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

func (*NullableSelfLink) Unset ¶

func (v *NullableSelfLink) Unset()

type NullableSensorMeasurement ¶

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

func NewNullableSensorMeasurement ¶

func NewNullableSensorMeasurement(val *SensorMeasurement) *NullableSensorMeasurement

func (NullableSensorMeasurement) Get ¶

func (NullableSensorMeasurement) IsSet ¶

func (v NullableSensorMeasurement) IsSet() bool

func (NullableSensorMeasurement) MarshalJSON ¶

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

func (*NullableSensorMeasurement) Set ¶

func (*NullableSensorMeasurement) UnmarshalJSON ¶

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

func (*NullableSensorMeasurement) Unset ¶

func (v *NullableSensorMeasurement) Unset()

type NullableServerAddressingInfo ¶

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

func (NullableServerAddressingInfo) Get ¶

func (NullableServerAddressingInfo) IsSet ¶

func (NullableServerAddressingInfo) MarshalJSON ¶

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

func (*NullableServerAddressingInfo) Set ¶

func (*NullableServerAddressingInfo) UnmarshalJSON ¶

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

func (*NullableServerAddressingInfo) Unset ¶

func (v *NullableServerAddressingInfo) Unset()

type NullableServiceAreaId ¶

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

func NewNullableServiceAreaId ¶

func NewNullableServiceAreaId(val *ServiceAreaId) *NullableServiceAreaId

func (NullableServiceAreaId) Get ¶

func (NullableServiceAreaId) IsSet ¶

func (v NullableServiceAreaId) IsSet() bool

func (NullableServiceAreaId) MarshalJSON ¶

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

func (*NullableServiceAreaId) Set ¶

func (v *NullableServiceAreaId) Set(val *ServiceAreaId)

func (*NullableServiceAreaId) UnmarshalJSON ¶

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

func (*NullableServiceAreaId) Unset ¶

func (v *NullableServiceAreaId) Unset()

type NullableServiceAreaRestriction ¶

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

func (NullableServiceAreaRestriction) Get ¶

func (NullableServiceAreaRestriction) IsSet ¶

func (NullableServiceAreaRestriction) MarshalJSON ¶

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

func (*NullableServiceAreaRestriction) Set ¶

func (*NullableServiceAreaRestriction) UnmarshalJSON ¶

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

func (*NullableServiceAreaRestriction) Unset ¶

func (v *NullableServiceAreaRestriction) Unset()

type NullableSliceMbr ¶

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

func NewNullableSliceMbr ¶

func NewNullableSliceMbr(val *SliceMbr) *NullableSliceMbr

func (NullableSliceMbr) Get ¶

func (v NullableSliceMbr) Get() *SliceMbr

func (NullableSliceMbr) IsSet ¶

func (v NullableSliceMbr) IsSet() bool

func (NullableSliceMbr) MarshalJSON ¶

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

func (*NullableSliceMbr) Set ¶

func (v *NullableSliceMbr) Set(val *SliceMbr)

func (*NullableSliceMbr) UnmarshalJSON ¶

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

func (*NullableSliceMbr) Unset ¶

func (v *NullableSliceMbr) Unset()

type NullableSliceMbrRm ¶

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

func NewNullableSliceMbrRm ¶

func NewNullableSliceMbrRm(val *SliceMbrRm) *NullableSliceMbrRm

func (NullableSliceMbrRm) Get ¶

func (v NullableSliceMbrRm) Get() *SliceMbrRm

func (NullableSliceMbrRm) IsSet ¶

func (v NullableSliceMbrRm) IsSet() bool

func (NullableSliceMbrRm) MarshalJSON ¶

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

func (*NullableSliceMbrRm) Set ¶

func (v *NullableSliceMbrRm) Set(val *SliceMbrRm)

func (*NullableSliceMbrRm) UnmarshalJSON ¶

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

func (*NullableSliceMbrRm) Unset ¶

func (v *NullableSliceMbrRm) Unset()

type NullableSmallDataRateStatus ¶

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

func (NullableSmallDataRateStatus) Get ¶

func (NullableSmallDataRateStatus) IsSet ¶

func (NullableSmallDataRateStatus) MarshalJSON ¶

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

func (*NullableSmallDataRateStatus) Set ¶

func (*NullableSmallDataRateStatus) UnmarshalJSON ¶

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

func (*NullableSmallDataRateStatus) Unset ¶

func (v *NullableSmallDataRateStatus) Unset()

type NullableSnssai ¶

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

func NewNullableSnssai ¶

func NewNullableSnssai(val *Snssai) *NullableSnssai

func (NullableSnssai) Get ¶

func (v NullableSnssai) Get() *Snssai

func (NullableSnssai) IsSet ¶

func (v NullableSnssai) IsSet() bool

func (NullableSnssai) MarshalJSON ¶

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

func (*NullableSnssai) Set ¶

func (v *NullableSnssai) Set(val *Snssai)

func (*NullableSnssai) UnmarshalJSON ¶

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

func (*NullableSnssai) Unset ¶

func (v *NullableSnssai) Unset()

type NullableSnssaiExtension ¶

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

func NewNullableSnssaiExtension ¶

func NewNullableSnssaiExtension(val *SnssaiExtension) *NullableSnssaiExtension

func (NullableSnssaiExtension) Get ¶

func (NullableSnssaiExtension) IsSet ¶

func (v NullableSnssaiExtension) IsSet() bool

func (NullableSnssaiExtension) MarshalJSON ¶

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

func (*NullableSnssaiExtension) Set ¶

func (*NullableSnssaiExtension) UnmarshalJSON ¶

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

func (*NullableSnssaiExtension) Unset ¶

func (v *NullableSnssaiExtension) Unset()

type NullableSpatialValidityCond ¶

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

func (NullableSpatialValidityCond) Get ¶

func (NullableSpatialValidityCond) IsSet ¶

func (NullableSpatialValidityCond) MarshalJSON ¶

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

func (*NullableSpatialValidityCond) Set ¶

func (*NullableSpatialValidityCond) UnmarshalJSON ¶

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

func (*NullableSpatialValidityCond) Unset ¶

func (v *NullableSpatialValidityCond) Unset()

type NullableSpatialValidityCondRm ¶

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

func (NullableSpatialValidityCondRm) Get ¶

func (NullableSpatialValidityCondRm) IsSet ¶

func (NullableSpatialValidityCondRm) MarshalJSON ¶

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

func (*NullableSpatialValidityCondRm) Set ¶

func (*NullableSpatialValidityCondRm) UnmarshalJSON ¶

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

func (*NullableSpatialValidityCondRm) Unset ¶

func (v *NullableSpatialValidityCondRm) Unset()

type NullableSscMode ¶

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

func NewNullableSscMode ¶

func NewNullableSscMode(val *SscMode) *NullableSscMode

func (NullableSscMode) Get ¶

func (v NullableSscMode) Get() *SscMode

func (NullableSscMode) IsSet ¶

func (v NullableSscMode) IsSet() bool

func (NullableSscMode) MarshalJSON ¶

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

func (*NullableSscMode) Set ¶

func (v *NullableSscMode) Set(val *SscMode)

func (*NullableSscMode) UnmarshalJSON ¶

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

func (*NullableSscMode) Unset ¶

func (v *NullableSscMode) Unset()

type NullableSscModeRm ¶

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

func NewNullableSscModeRm ¶

func NewNullableSscModeRm(val *SscModeRm) *NullableSscModeRm

func (NullableSscModeRm) Get ¶

func (v NullableSscModeRm) Get() *SscModeRm

func (NullableSscModeRm) IsSet ¶

func (v NullableSscModeRm) IsSet() bool

func (NullableSscModeRm) MarshalJSON ¶

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

func (*NullableSscModeRm) Set ¶

func (v *NullableSscModeRm) Set(val *SscModeRm)

func (*NullableSscModeRm) UnmarshalJSON ¶

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

func (*NullableSscModeRm) Unset ¶

func (v *NullableSscModeRm) Unset()

type NullableSsm ¶

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

func NewNullableSsm ¶

func NewNullableSsm(val *Ssm) *NullableSsm

func (NullableSsm) Get ¶

func (v NullableSsm) Get() *Ssm

func (NullableSsm) IsSet ¶

func (v NullableSsm) IsSet() bool

func (NullableSsm) MarshalJSON ¶

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

func (*NullableSsm) Set ¶

func (v *NullableSsm) Set(val *Ssm)

func (*NullableSsm) UnmarshalJSON ¶

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

func (*NullableSsm) Unset ¶

func (v *NullableSsm) Unset()

type NullableStationaryIndication ¶

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

func (NullableStationaryIndication) Get ¶

func (NullableStationaryIndication) IsSet ¶

func (NullableStationaryIndication) MarshalJSON ¶

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

func (*NullableStationaryIndication) Set ¶

func (*NullableStationaryIndication) UnmarshalJSON ¶

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

func (*NullableStationaryIndication) Unset ¶

func (v *NullableStationaryIndication) Unset()

type NullableStationaryIndicationRm ¶

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

func (NullableStationaryIndicationRm) Get ¶

func (NullableStationaryIndicationRm) IsSet ¶

func (NullableStationaryIndicationRm) MarshalJSON ¶

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

func (*NullableStationaryIndicationRm) Set ¶

func (*NullableStationaryIndicationRm) UnmarshalJSON ¶

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

func (*NullableStationaryIndicationRm) Unset ¶

func (v *NullableStationaryIndicationRm) Unset()

type NullableString ¶

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

func NewNullableString ¶

func NewNullableString(val *string) *NullableString

func (NullableString) Get ¶

func (v NullableString) Get() *string

func (NullableString) IsSet ¶

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON ¶

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

func (*NullableString) Set ¶

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON ¶

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

func (*NullableString) Unset ¶

func (v *NullableString) Unset()

type NullableStringMatchingCondition ¶

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

func (NullableStringMatchingCondition) Get ¶

func (NullableStringMatchingCondition) IsSet ¶

func (NullableStringMatchingCondition) MarshalJSON ¶

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

func (*NullableStringMatchingCondition) Set ¶

func (*NullableStringMatchingCondition) UnmarshalJSON ¶

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

func (*NullableStringMatchingCondition) Unset ¶

type NullableStringMatchingRule ¶

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

func NewNullableStringMatchingRule ¶

func NewNullableStringMatchingRule(val *StringMatchingRule) *NullableStringMatchingRule

func (NullableStringMatchingRule) Get ¶

func (NullableStringMatchingRule) IsSet ¶

func (v NullableStringMatchingRule) IsSet() bool

func (NullableStringMatchingRule) MarshalJSON ¶

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

func (*NullableStringMatchingRule) Set ¶

func (*NullableStringMatchingRule) UnmarshalJSON ¶

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

func (*NullableStringMatchingRule) Unset ¶

func (v *NullableStringMatchingRule) Unset()

type NullableSubscribedDefaultQos ¶

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

func (NullableSubscribedDefaultQos) Get ¶

func (NullableSubscribedDefaultQos) IsSet ¶

func (NullableSubscribedDefaultQos) MarshalJSON ¶

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

func (*NullableSubscribedDefaultQos) Set ¶

func (*NullableSubscribedDefaultQos) UnmarshalJSON ¶

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

func (*NullableSubscribedDefaultQos) Unset ¶

func (v *NullableSubscribedDefaultQos) Unset()

type NullableSupportedGADShapes ¶

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

func NewNullableSupportedGADShapes ¶

func NewNullableSupportedGADShapes(val *SupportedGADShapes) *NullableSupportedGADShapes

func (NullableSupportedGADShapes) Get ¶

func (NullableSupportedGADShapes) IsSet ¶

func (v NullableSupportedGADShapes) IsSet() bool

func (NullableSupportedGADShapes) MarshalJSON ¶

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

func (*NullableSupportedGADShapes) Set ¶

func (*NullableSupportedGADShapes) UnmarshalJSON ¶

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

func (*NullableSupportedGADShapes) Unset ¶

func (v *NullableSupportedGADShapes) Unset()

type NullableTacInfo ¶

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

func NewNullableTacInfo ¶

func NewNullableTacInfo(val *TacInfo) *NullableTacInfo

func (NullableTacInfo) Get ¶

func (v NullableTacInfo) Get() *TacInfo

func (NullableTacInfo) IsSet ¶

func (v NullableTacInfo) IsSet() bool

func (NullableTacInfo) MarshalJSON ¶

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

func (*NullableTacInfo) Set ¶

func (v *NullableTacInfo) Set(val *TacInfo)

func (*NullableTacInfo) UnmarshalJSON ¶

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

func (*NullableTacInfo) Unset ¶

func (v *NullableTacInfo) Unset()

type NullableTai ¶

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

func NewNullableTai ¶

func NewNullableTai(val *Tai) *NullableTai

func (NullableTai) Get ¶

func (v NullableTai) Get() *Tai

func (NullableTai) IsSet ¶

func (v NullableTai) IsSet() bool

func (NullableTai) MarshalJSON ¶

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

func (*NullableTai) Set ¶

func (v *NullableTai) Set(val *Tai)

func (*NullableTai) UnmarshalJSON ¶

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

func (*NullableTai) Unset ¶

func (v *NullableTai) Unset()

type NullableTaiRm ¶

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

func NewNullableTaiRm ¶

func NewNullableTaiRm(val *TaiRm) *NullableTaiRm

func (NullableTaiRm) Get ¶

func (v NullableTaiRm) Get() *TaiRm

func (NullableTaiRm) IsSet ¶

func (v NullableTaiRm) IsSet() bool

func (NullableTaiRm) MarshalJSON ¶

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

func (*NullableTaiRm) Set ¶

func (v *NullableTaiRm) Set(val *TaiRm)

func (*NullableTaiRm) UnmarshalJSON ¶

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

func (*NullableTaiRm) Unset ¶

func (v *NullableTaiRm) Unset()

type NullableTime ¶

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

func NewNullableTime ¶

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get ¶

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet ¶

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON ¶

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

func (*NullableTime) Set ¶

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON ¶

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

func (*NullableTime) Unset ¶

func (v *NullableTime) Unset()

type NullableTmgi ¶

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

func NewNullableTmgi ¶

func NewNullableTmgi(val *Tmgi) *NullableTmgi

func (NullableTmgi) Get ¶

func (v NullableTmgi) Get() *Tmgi

func (NullableTmgi) IsSet ¶

func (v NullableTmgi) IsSet() bool

func (NullableTmgi) MarshalJSON ¶

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

func (*NullableTmgi) Set ¶

func (v *NullableTmgi) Set(val *Tmgi)

func (*NullableTmgi) UnmarshalJSON ¶

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

func (*NullableTmgi) Unset ¶

func (v *NullableTmgi) Unset()

type NullableTnapId ¶

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

func NewNullableTnapId ¶

func NewNullableTnapId(val *TnapId) *NullableTnapId

func (NullableTnapId) Get ¶

func (v NullableTnapId) Get() *TnapId

func (NullableTnapId) IsSet ¶

func (v NullableTnapId) IsSet() bool

func (NullableTnapId) MarshalJSON ¶

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

func (*NullableTnapId) Set ¶

func (v *NullableTnapId) Set(val *TnapId)

func (*NullableTnapId) UnmarshalJSON ¶

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

func (*NullableTnapId) Unset ¶

func (v *NullableTnapId) Unset()

type NullableTnapIdRm ¶

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

func NewNullableTnapIdRm ¶

func NewNullableTnapIdRm(val *TnapIdRm) *NullableTnapIdRm

func (NullableTnapIdRm) Get ¶

func (v NullableTnapIdRm) Get() *TnapIdRm

func (NullableTnapIdRm) IsSet ¶

func (v NullableTnapIdRm) IsSet() bool

func (NullableTnapIdRm) MarshalJSON ¶

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

func (*NullableTnapIdRm) Set ¶

func (v *NullableTnapIdRm) Set(val *TnapIdRm)

func (*NullableTnapIdRm) UnmarshalJSON ¶

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

func (*NullableTnapIdRm) Unset ¶

func (v *NullableTnapIdRm) Unset()

type NullableTraceData ¶

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

func NewNullableTraceData ¶

func NewNullableTraceData(val *TraceData) *NullableTraceData

func (NullableTraceData) Get ¶

func (v NullableTraceData) Get() *TraceData

func (NullableTraceData) IsSet ¶

func (v NullableTraceData) IsSet() bool

func (NullableTraceData) MarshalJSON ¶

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

func (*NullableTraceData) Set ¶

func (v *NullableTraceData) Set(val *TraceData)

func (*NullableTraceData) UnmarshalJSON ¶

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

func (*NullableTraceData) Unset ¶

func (v *NullableTraceData) Unset()

type NullableTraceDepth ¶

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

func NewNullableTraceDepth ¶

func NewNullableTraceDepth(val *TraceDepth) *NullableTraceDepth

func (NullableTraceDepth) Get ¶

func (v NullableTraceDepth) Get() *TraceDepth

func (NullableTraceDepth) IsSet ¶

func (v NullableTraceDepth) IsSet() bool

func (NullableTraceDepth) MarshalJSON ¶

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

func (*NullableTraceDepth) Set ¶

func (v *NullableTraceDepth) Set(val *TraceDepth)

func (*NullableTraceDepth) UnmarshalJSON ¶

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

func (*NullableTraceDepth) Unset ¶

func (v *NullableTraceDepth) Unset()

type NullableTraceDepthRm ¶

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

func NewNullableTraceDepthRm ¶

func NewNullableTraceDepthRm(val *TraceDepthRm) *NullableTraceDepthRm

func (NullableTraceDepthRm) Get ¶

func (NullableTraceDepthRm) IsSet ¶

func (v NullableTraceDepthRm) IsSet() bool

func (NullableTraceDepthRm) MarshalJSON ¶

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

func (*NullableTraceDepthRm) Set ¶

func (v *NullableTraceDepthRm) Set(val *TraceDepthRm)

func (*NullableTraceDepthRm) UnmarshalJSON ¶

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

func (*NullableTraceDepthRm) Unset ¶

func (v *NullableTraceDepthRm) Unset()

type NullableTrafficProfile ¶

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

func NewNullableTrafficProfile ¶

func NewNullableTrafficProfile(val *TrafficProfile) *NullableTrafficProfile

func (NullableTrafficProfile) Get ¶

func (NullableTrafficProfile) IsSet ¶

func (v NullableTrafficProfile) IsSet() bool

func (NullableTrafficProfile) MarshalJSON ¶

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

func (*NullableTrafficProfile) Set ¶

func (*NullableTrafficProfile) UnmarshalJSON ¶

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

func (*NullableTrafficProfile) Unset ¶

func (v *NullableTrafficProfile) Unset()

type NullableTrafficProfileRm ¶

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

func NewNullableTrafficProfileRm ¶

func NewNullableTrafficProfileRm(val *TrafficProfileRm) *NullableTrafficProfileRm

func (NullableTrafficProfileRm) Get ¶

func (NullableTrafficProfileRm) IsSet ¶

func (v NullableTrafficProfileRm) IsSet() bool

func (NullableTrafficProfileRm) MarshalJSON ¶

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

func (*NullableTrafficProfileRm) Set ¶

func (*NullableTrafficProfileRm) UnmarshalJSON ¶

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

func (*NullableTrafficProfileRm) Unset ¶

func (v *NullableTrafficProfileRm) Unset()

type NullableTransportProtocol ¶

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

func NewNullableTransportProtocol ¶

func NewNullableTransportProtocol(val *TransportProtocol) *NullableTransportProtocol

func (NullableTransportProtocol) Get ¶

func (NullableTransportProtocol) IsSet ¶

func (v NullableTransportProtocol) IsSet() bool

func (NullableTransportProtocol) MarshalJSON ¶

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

func (*NullableTransportProtocol) Set ¶

func (*NullableTransportProtocol) UnmarshalJSON ¶

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

func (*NullableTransportProtocol) Unset ¶

func (v *NullableTransportProtocol) Unset()

type NullableTunnelAddress ¶

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

func NewNullableTunnelAddress ¶

func NewNullableTunnelAddress(val *TunnelAddress) *NullableTunnelAddress

func (NullableTunnelAddress) Get ¶

func (NullableTunnelAddress) IsSet ¶

func (v NullableTunnelAddress) IsSet() bool

func (NullableTunnelAddress) MarshalJSON ¶

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

func (*NullableTunnelAddress) Set ¶

func (v *NullableTunnelAddress) Set(val *TunnelAddress)

func (*NullableTunnelAddress) UnmarshalJSON ¶

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

func (*NullableTunnelAddress) Unset ¶

func (v *NullableTunnelAddress) Unset()

type NullableTwapId ¶

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

func NewNullableTwapId ¶

func NewNullableTwapId(val *TwapId) *NullableTwapId

func (NullableTwapId) Get ¶

func (v NullableTwapId) Get() *TwapId

func (NullableTwapId) IsSet ¶

func (v NullableTwapId) IsSet() bool

func (NullableTwapId) MarshalJSON ¶

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

func (*NullableTwapId) Set ¶

func (v *NullableTwapId) Set(val *TwapId)

func (*NullableTwapId) UnmarshalJSON ¶

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

func (*NullableTwapId) Unset ¶

func (v *NullableTwapId) Unset()

type NullableTwapIdRm ¶

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

func NewNullableTwapIdRm ¶

func NewNullableTwapIdRm(val *TwapIdRm) *NullableTwapIdRm

func (NullableTwapIdRm) Get ¶

func (v NullableTwapIdRm) Get() *TwapIdRm

func (NullableTwapIdRm) IsSet ¶

func (v NullableTwapIdRm) IsSet() bool

func (NullableTwapIdRm) MarshalJSON ¶

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

func (*NullableTwapIdRm) Set ¶

func (v *NullableTwapIdRm) Set(val *TwapIdRm)

func (*NullableTwapIdRm) UnmarshalJSON ¶

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

func (*NullableTwapIdRm) Unset ¶

func (v *NullableTwapIdRm) Unset()

type NullableUeAuth ¶

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

func NewNullableUeAuth ¶

func NewNullableUeAuth(val *UeAuth) *NullableUeAuth

func (NullableUeAuth) Get ¶

func (v NullableUeAuth) Get() *UeAuth

func (NullableUeAuth) IsSet ¶

func (v NullableUeAuth) IsSet() bool

func (NullableUeAuth) MarshalJSON ¶

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

func (*NullableUeAuth) Set ¶

func (v *NullableUeAuth) Set(val *UeAuth)

func (*NullableUeAuth) UnmarshalJSON ¶

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

func (*NullableUeAuth) Unset ¶

func (v *NullableUeAuth) Unset()

type NullableUncertaintyEllipse ¶

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

func NewNullableUncertaintyEllipse ¶

func NewNullableUncertaintyEllipse(val *UncertaintyEllipse) *NullableUncertaintyEllipse

func (NullableUncertaintyEllipse) Get ¶

func (NullableUncertaintyEllipse) IsSet ¶

func (v NullableUncertaintyEllipse) IsSet() bool

func (NullableUncertaintyEllipse) MarshalJSON ¶

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

func (*NullableUncertaintyEllipse) Set ¶

func (*NullableUncertaintyEllipse) UnmarshalJSON ¶

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

func (*NullableUncertaintyEllipse) Unset ¶

func (v *NullableUncertaintyEllipse) Unset()

type NullableUncertaintyEllipsoid ¶

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

func (NullableUncertaintyEllipsoid) Get ¶

func (NullableUncertaintyEllipsoid) IsSet ¶

func (NullableUncertaintyEllipsoid) MarshalJSON ¶

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

func (*NullableUncertaintyEllipsoid) Set ¶

func (*NullableUncertaintyEllipsoid) UnmarshalJSON ¶

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

func (*NullableUncertaintyEllipsoid) Unset ¶

func (v *NullableUncertaintyEllipsoid) Unset()

type NullableUpConfidentiality ¶

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

func NewNullableUpConfidentiality ¶

func NewNullableUpConfidentiality(val *UpConfidentiality) *NullableUpConfidentiality

func (NullableUpConfidentiality) Get ¶

func (NullableUpConfidentiality) IsSet ¶

func (v NullableUpConfidentiality) IsSet() bool

func (NullableUpConfidentiality) MarshalJSON ¶

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

func (*NullableUpConfidentiality) Set ¶

func (*NullableUpConfidentiality) UnmarshalJSON ¶

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

func (*NullableUpConfidentiality) Unset ¶

func (v *NullableUpConfidentiality) Unset()

type NullableUpConfidentialityRm ¶

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

func (NullableUpConfidentialityRm) Get ¶

func (NullableUpConfidentialityRm) IsSet ¶

func (NullableUpConfidentialityRm) MarshalJSON ¶

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

func (*NullableUpConfidentialityRm) Set ¶

func (*NullableUpConfidentialityRm) UnmarshalJSON ¶

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

func (*NullableUpConfidentialityRm) Unset ¶

func (v *NullableUpConfidentialityRm) Unset()

type NullableUpIntegrity ¶

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

func NewNullableUpIntegrity ¶

func NewNullableUpIntegrity(val *UpIntegrity) *NullableUpIntegrity

func (NullableUpIntegrity) Get ¶

func (NullableUpIntegrity) IsSet ¶

func (v NullableUpIntegrity) IsSet() bool

func (NullableUpIntegrity) MarshalJSON ¶

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

func (*NullableUpIntegrity) Set ¶

func (v *NullableUpIntegrity) Set(val *UpIntegrity)

func (*NullableUpIntegrity) UnmarshalJSON ¶

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

func (*NullableUpIntegrity) Unset ¶

func (v *NullableUpIntegrity) Unset()

type NullableUpIntegrityRm ¶

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

func NewNullableUpIntegrityRm ¶

func NewNullableUpIntegrityRm(val *UpIntegrityRm) *NullableUpIntegrityRm

func (NullableUpIntegrityRm) Get ¶

func (NullableUpIntegrityRm) IsSet ¶

func (v NullableUpIntegrityRm) IsSet() bool

func (NullableUpIntegrityRm) MarshalJSON ¶

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

func (*NullableUpIntegrityRm) Set ¶

func (v *NullableUpIntegrityRm) Set(val *UpIntegrityRm)

func (*NullableUpIntegrityRm) UnmarshalJSON ¶

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

func (*NullableUpIntegrityRm) Unset ¶

func (v *NullableUpIntegrityRm) Unset()

type NullableUpSecurity ¶

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

func NewNullableUpSecurity ¶

func NewNullableUpSecurity(val *UpSecurity) *NullableUpSecurity

func (NullableUpSecurity) Get ¶

func (v NullableUpSecurity) Get() *UpSecurity

func (NullableUpSecurity) IsSet ¶

func (v NullableUpSecurity) IsSet() bool

func (NullableUpSecurity) MarshalJSON ¶

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

func (*NullableUpSecurity) Set ¶

func (v *NullableUpSecurity) Set(val *UpSecurity)

func (*NullableUpSecurity) UnmarshalJSON ¶

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

func (*NullableUpSecurity) Unset ¶

func (v *NullableUpSecurity) Unset()

type NullableUpSecurityRm ¶

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

func NewNullableUpSecurityRm ¶

func NewNullableUpSecurityRm(val *UpSecurityRm) *NullableUpSecurityRm

func (NullableUpSecurityRm) Get ¶

func (NullableUpSecurityRm) IsSet ¶

func (v NullableUpSecurityRm) IsSet() bool

func (NullableUpSecurityRm) MarshalJSON ¶

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

func (*NullableUpSecurityRm) Set ¶

func (v *NullableUpSecurityRm) Set(val *UpSecurityRm)

func (*NullableUpSecurityRm) UnmarshalJSON ¶

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

func (*NullableUpSecurityRm) Unset ¶

func (v *NullableUpSecurityRm) Unset()

type NullableUriScheme ¶

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

func NewNullableUriScheme ¶

func NewNullableUriScheme(val *UriScheme) *NullableUriScheme

func (NullableUriScheme) Get ¶

func (v NullableUriScheme) Get() *UriScheme

func (NullableUriScheme) IsSet ¶

func (v NullableUriScheme) IsSet() bool

func (NullableUriScheme) MarshalJSON ¶

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

func (*NullableUriScheme) Set ¶

func (v *NullableUriScheme) Set(val *UriScheme)

func (*NullableUriScheme) UnmarshalJSON ¶

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

func (*NullableUriScheme) Unset ¶

func (v *NullableUriScheme) Unset()

type NullableUserLocation ¶

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

func NewNullableUserLocation ¶

func NewNullableUserLocation(val *UserLocation) *NullableUserLocation

func (NullableUserLocation) Get ¶

func (NullableUserLocation) IsSet ¶

func (v NullableUserLocation) IsSet() bool

func (NullableUserLocation) MarshalJSON ¶

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

func (*NullableUserLocation) Set ¶

func (v *NullableUserLocation) Set(val *UserLocation)

func (*NullableUserLocation) UnmarshalJSON ¶

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

func (*NullableUserLocation) Unset ¶

func (v *NullableUserLocation) Unset()

type NullableUtraLocation ¶

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

func NewNullableUtraLocation ¶

func NewNullableUtraLocation(val *UtraLocation) *NullableUtraLocation

func (NullableUtraLocation) Get ¶

func (NullableUtraLocation) IsSet ¶

func (v NullableUtraLocation) IsSet() bool

func (NullableUtraLocation) MarshalJSON ¶

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

func (*NullableUtraLocation) Set ¶

func (v *NullableUtraLocation) Set(val *UtraLocation)

func (*NullableUtraLocation) UnmarshalJSON ¶

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

func (*NullableUtraLocation) Unset ¶

func (v *NullableUtraLocation) Unset()

type NullableVolumeTimedReport ¶

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

func NewNullableVolumeTimedReport ¶

func NewNullableVolumeTimedReport(val *VolumeTimedReport) *NullableVolumeTimedReport

func (NullableVolumeTimedReport) Get ¶

func (NullableVolumeTimedReport) IsSet ¶

func (v NullableVolumeTimedReport) IsSet() bool

func (NullableVolumeTimedReport) MarshalJSON ¶

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

func (*NullableVolumeTimedReport) Set ¶

func (*NullableVolumeTimedReport) UnmarshalJSON ¶

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

func (*NullableVolumeTimedReport) Unset ¶

func (v *NullableVolumeTimedReport) Unset()

type NullableWirelineArea ¶

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

func NewNullableWirelineArea ¶

func NewNullableWirelineArea(val *WirelineArea) *NullableWirelineArea

func (NullableWirelineArea) Get ¶

func (NullableWirelineArea) IsSet ¶

func (v NullableWirelineArea) IsSet() bool

func (NullableWirelineArea) MarshalJSON ¶

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

func (*NullableWirelineArea) Set ¶

func (v *NullableWirelineArea) Set(val *WirelineArea)

func (*NullableWirelineArea) UnmarshalJSON ¶

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

func (*NullableWirelineArea) Unset ¶

func (v *NullableWirelineArea) Unset()

type NullableWirelineServiceAreaRestriction ¶

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

func (NullableWirelineServiceAreaRestriction) Get ¶

func (NullableWirelineServiceAreaRestriction) IsSet ¶

func (NullableWirelineServiceAreaRestriction) MarshalJSON ¶

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

func (*NullableWirelineServiceAreaRestriction) Set ¶

func (*NullableWirelineServiceAreaRestriction) UnmarshalJSON ¶

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

func (*NullableWirelineServiceAreaRestriction) Unset ¶

type OdbData ¶

type OdbData struct {
	RoamingOdb *RoamingOdb `json:"roamingOdb,omitempty"`
}

OdbData Contains information regarding operater determined barring.

func NewOdbData ¶

func NewOdbData() *OdbData

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

func NewOdbDataWithDefaults ¶

func NewOdbDataWithDefaults() *OdbData

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

func (*OdbData) GetRoamingOdb ¶

func (o *OdbData) GetRoamingOdb() RoamingOdb

GetRoamingOdb returns the RoamingOdb field value if set, zero value otherwise.

func (*OdbData) GetRoamingOdbOk ¶

func (o *OdbData) GetRoamingOdbOk() (*RoamingOdb, bool)

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

func (*OdbData) HasRoamingOdb ¶

func (o *OdbData) HasRoamingOdb() bool

HasRoamingOdb returns a boolean if a field has been set.

func (OdbData) MarshalJSON ¶

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

func (*OdbData) SetRoamingOdb ¶

func (o *OdbData) SetRoamingOdb(v RoamingOdb)

SetRoamingOdb gets a reference to the given RoamingOdb and assigns it to the RoamingOdb field.

func (OdbData) ToMap ¶

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

type OdbPacketServices ¶

type OdbPacketServices struct {
	NullValue              *NullValue
	OdbPacketServicesAnyOf *OdbPacketServicesAnyOf
}

OdbPacketServices The enumeration OdbPacketServices defines the Barring of Packet Oriented Services. See 3GPP TS 23.015 for further description. It shall comply with the provisions defined in table 5.7.3.2-1

func (*OdbPacketServices) MarshalJSON ¶

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

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

func (*OdbPacketServices) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type OdbPacketServicesAnyOf ¶

type OdbPacketServicesAnyOf struct {
	String *string
}

OdbPacketServicesAnyOf struct for OdbPacketServicesAnyOf

func (*OdbPacketServicesAnyOf) MarshalJSON ¶

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

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

func (*OdbPacketServicesAnyOf) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type PartitioningCriteria ¶

type PartitioningCriteria struct {
	String *string
}

PartitioningCriteria Possible values are: - \"TAC\": Type Allocation Code - \"SUBPLMN\": Subscriber PLMN ID - \"GEOAREA\": Geographical area, i.e. list(s) of TAI(s) - \"SNSSAI\": S-NSSAI - \"DNN\": DNN

func (*PartitioningCriteria) MarshalJSON ¶

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

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

func (*PartitioningCriteria) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type PartitioningCriteriaRm ¶

type PartitioningCriteriaRm struct {
	NullValue            *NullValue
	PartitioningCriteria *PartitioningCriteria
}

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

func (*PartitioningCriteriaRm) MarshalJSON ¶

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

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

func (*PartitioningCriteriaRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type PatchItem ¶

type PatchItem struct {
	Op PatchOperation `json:"op"`
	// contains a JSON pointer value (as defined in IETF RFC 6901) that references a location of a resource on which the patch operation shall be performed.
	Path string `json:"path"`
	// indicates the path of the source JSON element (according to JSON Pointer syntax) being moved or copied to the location indicated by the \"path\" attribute.
	From  *string     `json:"from,omitempty"`
	Value interface{} `json:"value,omitempty"`
}

PatchItem it contains information on data to be changed.

func NewPatchItem ¶

func NewPatchItem(op PatchOperation, path string) *PatchItem

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

func NewPatchItemWithDefaults ¶

func NewPatchItemWithDefaults() *PatchItem

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

func (*PatchItem) GetFrom ¶

func (o *PatchItem) GetFrom() string

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

func (*PatchItem) GetFromOk ¶

func (o *PatchItem) GetFromOk() (*string, bool)

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

func (*PatchItem) GetOp ¶

func (o *PatchItem) GetOp() PatchOperation

GetOp returns the Op field value

func (*PatchItem) GetOpOk ¶

func (o *PatchItem) GetOpOk() (*PatchOperation, bool)

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

func (*PatchItem) GetPath ¶

func (o *PatchItem) GetPath() string

GetPath returns the Path field value

func (*PatchItem) GetPathOk ¶

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

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

func (*PatchItem) GetValue ¶

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

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

func (*PatchItem) GetValueOk ¶

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

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

func (*PatchItem) HasFrom ¶

func (o *PatchItem) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*PatchItem) HasValue ¶

func (o *PatchItem) HasValue() bool

HasValue returns a boolean if a field has been set.

func (PatchItem) MarshalJSON ¶

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

func (*PatchItem) SetFrom ¶

func (o *PatchItem) SetFrom(v string)

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

func (*PatchItem) SetOp ¶

func (o *PatchItem) SetOp(v PatchOperation)

SetOp sets field value

func (*PatchItem) SetPath ¶

func (o *PatchItem) SetPath(v string)

SetPath sets field value

func (*PatchItem) SetValue ¶

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

SetValue gets a reference to the given interface{} and assigns it to the Value field.

func (PatchItem) ToMap ¶

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

type PatchOperation ¶

type PatchOperation struct {
	String *string
}

PatchOperation Operations as defined in IETF RFC 6902.

func (*PatchOperation) MarshalJSON ¶

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

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

func (*PatchOperation) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type PatchResult ¶

type PatchResult struct {
	// The execution report contains an array of report items. Each report item indicates one  failed modification.
	Report []ReportItem `json:"report"`
}

PatchResult The execution report result on failed modification.

func NewPatchResult ¶

func NewPatchResult(report []ReportItem) *PatchResult

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

func NewPatchResultWithDefaults ¶

func NewPatchResultWithDefaults() *PatchResult

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

func (*PatchResult) GetReport ¶

func (o *PatchResult) GetReport() []ReportItem

GetReport returns the Report field value

func (*PatchResult) GetReportOk ¶

func (o *PatchResult) GetReportOk() ([]ReportItem, bool)

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

func (PatchResult) MarshalJSON ¶

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

func (*PatchResult) SetReport ¶

func (o *PatchResult) SetReport(v []ReportItem)

SetReport sets field value

func (PatchResult) ToMap ¶

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

type Pc5FlowBitRates ¶

type Pc5FlowBitRates 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\".
	GuaFbr *string `json:"guaFbr,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\".
	MaxFbr *string `json:"maxFbr,omitempty"`
}

Pc5FlowBitRates it shall represent the PC5 Flow Bit Rates

func NewPc5FlowBitRates ¶

func NewPc5FlowBitRates() *Pc5FlowBitRates

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

func NewPc5FlowBitRatesWithDefaults ¶

func NewPc5FlowBitRatesWithDefaults() *Pc5FlowBitRates

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

func (*Pc5FlowBitRates) GetGuaFbr ¶

func (o *Pc5FlowBitRates) GetGuaFbr() string

GetGuaFbr returns the GuaFbr field value if set, zero value otherwise.

func (*Pc5FlowBitRates) GetGuaFbrOk ¶

func (o *Pc5FlowBitRates) GetGuaFbrOk() (*string, bool)

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

func (*Pc5FlowBitRates) GetMaxFbr ¶

func (o *Pc5FlowBitRates) GetMaxFbr() string

GetMaxFbr returns the MaxFbr field value if set, zero value otherwise.

func (*Pc5FlowBitRates) GetMaxFbrOk ¶

func (o *Pc5FlowBitRates) GetMaxFbrOk() (*string, bool)

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

func (*Pc5FlowBitRates) HasGuaFbr ¶

func (o *Pc5FlowBitRates) HasGuaFbr() bool

HasGuaFbr returns a boolean if a field has been set.

func (*Pc5FlowBitRates) HasMaxFbr ¶

func (o *Pc5FlowBitRates) HasMaxFbr() bool

HasMaxFbr returns a boolean if a field has been set.

func (Pc5FlowBitRates) MarshalJSON ¶

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

func (*Pc5FlowBitRates) SetGuaFbr ¶

func (o *Pc5FlowBitRates) SetGuaFbr(v string)

SetGuaFbr gets a reference to the given string and assigns it to the GuaFbr field.

func (*Pc5FlowBitRates) SetMaxFbr ¶

func (o *Pc5FlowBitRates) SetMaxFbr(v string)

SetMaxFbr gets a reference to the given string and assigns it to the MaxFbr field.

func (Pc5FlowBitRates) ToMap ¶

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

type Pc5QoSPara ¶

type Pc5QoSPara struct {
	Pc5QosFlowList []Pc5QosFlowItem `json:"pc5QosFlowList"`
	// 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\".
	Pc5LinkAmbr *string `json:"pc5LinkAmbr,omitempty"`
}

Pc5QoSPara Contains policy data on the PC5 QoS parameters.

func NewPc5QoSPara ¶

func NewPc5QoSPara(pc5QosFlowList []Pc5QosFlowItem) *Pc5QoSPara

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

func NewPc5QoSParaWithDefaults ¶

func NewPc5QoSParaWithDefaults() *Pc5QoSPara

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

func (*Pc5QoSPara) GetPc5LinkAmbr ¶

func (o *Pc5QoSPara) GetPc5LinkAmbr() string

GetPc5LinkAmbr returns the Pc5LinkAmbr field value if set, zero value otherwise.

func (*Pc5QoSPara) GetPc5LinkAmbrOk ¶

func (o *Pc5QoSPara) GetPc5LinkAmbrOk() (*string, bool)

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

func (*Pc5QoSPara) GetPc5QosFlowList ¶

func (o *Pc5QoSPara) GetPc5QosFlowList() []Pc5QosFlowItem

GetPc5QosFlowList returns the Pc5QosFlowList field value

func (*Pc5QoSPara) GetPc5QosFlowListOk ¶

func (o *Pc5QoSPara) GetPc5QosFlowListOk() ([]Pc5QosFlowItem, bool)

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

func (*Pc5QoSPara) HasPc5LinkAmbr ¶

func (o *Pc5QoSPara) HasPc5LinkAmbr() bool

HasPc5LinkAmbr returns a boolean if a field has been set.

func (Pc5QoSPara) MarshalJSON ¶

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

func (*Pc5QoSPara) SetPc5LinkAmbr ¶

func (o *Pc5QoSPara) SetPc5LinkAmbr(v string)

SetPc5LinkAmbr gets a reference to the given string and assigns it to the Pc5LinkAmbr field.

func (*Pc5QoSPara) SetPc5QosFlowList ¶

func (o *Pc5QoSPara) SetPc5QosFlowList(v []Pc5QosFlowItem)

SetPc5QosFlowList sets field value

func (Pc5QoSPara) ToMap ¶

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

type Pc5QosFlowItem ¶

type Pc5QosFlowItem 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.
	Pqi             int32            `json:"pqi"`
	Pc5FlowBitRates *Pc5FlowBitRates `json:"pc5FlowBitRates,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	Range *int32 `json:"range,omitempty"`
}

Pc5QosFlowItem Contains a PC5 QOS flow.

func NewPc5QosFlowItem ¶

func NewPc5QosFlowItem(pqi int32) *Pc5QosFlowItem

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

func NewPc5QosFlowItemWithDefaults ¶

func NewPc5QosFlowItemWithDefaults() *Pc5QosFlowItem

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

func (*Pc5QosFlowItem) GetPc5FlowBitRates ¶

func (o *Pc5QosFlowItem) GetPc5FlowBitRates() Pc5FlowBitRates

GetPc5FlowBitRates returns the Pc5FlowBitRates field value if set, zero value otherwise.

func (*Pc5QosFlowItem) GetPc5FlowBitRatesOk ¶

func (o *Pc5QosFlowItem) GetPc5FlowBitRatesOk() (*Pc5FlowBitRates, bool)

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

func (*Pc5QosFlowItem) GetPqi ¶

func (o *Pc5QosFlowItem) GetPqi() int32

GetPqi returns the Pqi field value

func (*Pc5QosFlowItem) GetPqiOk ¶

func (o *Pc5QosFlowItem) GetPqiOk() (*int32, bool)

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

func (*Pc5QosFlowItem) GetRange ¶

func (o *Pc5QosFlowItem) GetRange() int32

GetRange returns the Range field value if set, zero value otherwise.

func (*Pc5QosFlowItem) GetRangeOk ¶

func (o *Pc5QosFlowItem) GetRangeOk() (*int32, bool)

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

func (*Pc5QosFlowItem) HasPc5FlowBitRates ¶

func (o *Pc5QosFlowItem) HasPc5FlowBitRates() bool

HasPc5FlowBitRates returns a boolean if a field has been set.

func (*Pc5QosFlowItem) HasRange ¶

func (o *Pc5QosFlowItem) HasRange() bool

HasRange returns a boolean if a field has been set.

func (Pc5QosFlowItem) MarshalJSON ¶

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

func (*Pc5QosFlowItem) SetPc5FlowBitRates ¶

func (o *Pc5QosFlowItem) SetPc5FlowBitRates(v Pc5FlowBitRates)

SetPc5FlowBitRates gets a reference to the given Pc5FlowBitRates and assigns it to the Pc5FlowBitRates field.

func (*Pc5QosFlowItem) SetPqi ¶

func (o *Pc5QosFlowItem) SetPqi(v int32)

SetPqi sets field value

func (*Pc5QosFlowItem) SetRange ¶

func (o *Pc5QosFlowItem) SetRange(v int32)

SetRange gets a reference to the given int32 and assigns it to the Range field.

func (Pc5QosFlowItem) ToMap ¶

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

type PcfUeCallbackInfo ¶

type PcfUeCallbackInfo struct {
	// String providing an URI formatted according to RFC 3986.
	CallbackUri string  `json:"callbackUri"`
	BindingInfo *string `json:"bindingInfo,omitempty"`
}

PcfUeCallbackInfo Contains the PCF for the UE information necessary for the PCF for the PDU session to send SM Policy Association Establishment and Termination events.

func NewPcfUeCallbackInfo ¶

func NewPcfUeCallbackInfo(callbackUri string) *PcfUeCallbackInfo

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

func NewPcfUeCallbackInfoWithDefaults ¶

func NewPcfUeCallbackInfoWithDefaults() *PcfUeCallbackInfo

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

func (*PcfUeCallbackInfo) GetBindingInfo ¶

func (o *PcfUeCallbackInfo) GetBindingInfo() string

GetBindingInfo returns the BindingInfo field value if set, zero value otherwise.

func (*PcfUeCallbackInfo) GetBindingInfoOk ¶

func (o *PcfUeCallbackInfo) GetBindingInfoOk() (*string, bool)

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

func (*PcfUeCallbackInfo) GetCallbackUri ¶

func (o *PcfUeCallbackInfo) GetCallbackUri() string

GetCallbackUri returns the CallbackUri field value

func (*PcfUeCallbackInfo) GetCallbackUriOk ¶

func (o *PcfUeCallbackInfo) GetCallbackUriOk() (*string, bool)

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

func (*PcfUeCallbackInfo) HasBindingInfo ¶

func (o *PcfUeCallbackInfo) HasBindingInfo() bool

HasBindingInfo returns a boolean if a field has been set.

func (PcfUeCallbackInfo) MarshalJSON ¶

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

func (*PcfUeCallbackInfo) SetBindingInfo ¶

func (o *PcfUeCallbackInfo) SetBindingInfo(v string)

SetBindingInfo gets a reference to the given string and assigns it to the BindingInfo field.

func (*PcfUeCallbackInfo) SetCallbackUri ¶

func (o *PcfUeCallbackInfo) SetCallbackUri(v string)

SetCallbackUri sets field value

func (PcfUeCallbackInfo) ToMap ¶

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

type PduSessionInfo ¶

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

PduSessionInfo indicates the DNN and S-NSSAI combination of a PDU session.

func NewPduSessionInfo ¶

func NewPduSessionInfo(snssai Snssai, dnn string) *PduSessionInfo

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

func NewPduSessionInfoWithDefaults ¶

func NewPduSessionInfoWithDefaults() *PduSessionInfo

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

func (*PduSessionInfo) GetDnn ¶

func (o *PduSessionInfo) GetDnn() string

GetDnn returns the Dnn field value

func (*PduSessionInfo) GetDnnOk ¶

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

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

func (*PduSessionInfo) GetSnssai ¶

func (o *PduSessionInfo) GetSnssai() Snssai

GetSnssai returns the Snssai field value

func (*PduSessionInfo) GetSnssaiOk ¶

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

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

func (PduSessionInfo) MarshalJSON ¶

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

func (*PduSessionInfo) SetDnn ¶

func (o *PduSessionInfo) SetDnn(v string)

SetDnn sets field value

func (*PduSessionInfo) SetSnssai ¶

func (o *PduSessionInfo) SetSnssai(v Snssai)

SetSnssai sets field value

func (PduSessionInfo) ToMap ¶

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

type PduSessionType ¶

type PduSessionType struct {
	String *string
}

PduSessionType PduSessionType indicates the type of a PDU session. It shall comply with the provisions defined in table 5.4.3.3-1.

func (*PduSessionType) MarshalJSON ¶

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

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

func (*PduSessionType) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type PduSessionTypeRm ¶

type PduSessionTypeRm struct {
	NullValue      *NullValue
	PduSessionType *PduSessionType
}

PduSessionTypeRm PduSessionType indicates the type of a PDU session. It shall comply with the provisions defined in table 5.4.3.3-1 but with the OpenAPI \"nullable: true\" property.

func (*PduSessionTypeRm) MarshalJSON ¶

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

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

func (*PduSessionTypeRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type PlmnId ¶

type PlmnId struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
}

PlmnId When PlmnId needs to be converted to string (e.g. when used in maps as key), the string shall be composed of three digits \"mcc\" followed by \"-\" and two or three digits \"mnc\".

func NewPlmnId ¶

func NewPlmnId(mcc string, mnc string) *PlmnId

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

func NewPlmnIdWithDefaults ¶

func NewPlmnIdWithDefaults() *PlmnId

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

func (*PlmnId) GetMcc ¶

func (o *PlmnId) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnId) GetMccOk ¶

func (o *PlmnId) GetMccOk() (*string, bool)

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

func (*PlmnId) GetMnc ¶

func (o *PlmnId) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnId) GetMncOk ¶

func (o *PlmnId) GetMncOk() (*string, bool)

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

func (PlmnId) MarshalJSON ¶

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

func (*PlmnId) SetMcc ¶

func (o *PlmnId) SetMcc(v string)

SetMcc sets field value

func (*PlmnId) SetMnc ¶

func (o *PlmnId) SetMnc(v string)

SetMnc sets field value

func (PlmnId) ToMap ¶

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

type PlmnId1 ¶

type PlmnId1 struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
}

PlmnId1 When PlmnId needs to be converted to string (e.g. when used in maps as key), the string shall be composed of three digits \"mcc\" followed by \"-\" and two or three digits \"mnc\".

func NewPlmnId1 ¶

func NewPlmnId1(mcc string, mnc string) *PlmnId1

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

func NewPlmnId1WithDefaults ¶

func NewPlmnId1WithDefaults() *PlmnId1

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

func (*PlmnId1) GetMcc ¶

func (o *PlmnId1) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnId1) GetMccOk ¶

func (o *PlmnId1) GetMccOk() (*string, bool)

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

func (*PlmnId1) GetMnc ¶

func (o *PlmnId1) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnId1) GetMncOk ¶

func (o *PlmnId1) GetMncOk() (*string, bool)

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

func (PlmnId1) MarshalJSON ¶

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

func (*PlmnId1) SetMcc ¶

func (o *PlmnId1) SetMcc(v string)

SetMcc sets field value

func (*PlmnId1) SetMnc ¶

func (o *PlmnId1) SetMnc(v string)

SetMnc sets field value

func (PlmnId1) ToMap ¶

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

type PlmnIdNid ¶

type PlmnIdNid struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

PlmnIdNid Contains the serving core network operator PLMN ID and, for an SNPN, the NID that together with the PLMN ID identifies the SNPN.

func NewPlmnIdNid ¶

func NewPlmnIdNid(mcc string, mnc string) *PlmnIdNid

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

func NewPlmnIdNidWithDefaults ¶

func NewPlmnIdNidWithDefaults() *PlmnIdNid

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

func (*PlmnIdNid) GetMcc ¶

func (o *PlmnIdNid) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnIdNid) GetMccOk ¶

func (o *PlmnIdNid) GetMccOk() (*string, bool)

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

func (*PlmnIdNid) GetMnc ¶

func (o *PlmnIdNid) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnIdNid) GetMncOk ¶

func (o *PlmnIdNid) GetMncOk() (*string, bool)

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

func (*PlmnIdNid) GetNid ¶

func (o *PlmnIdNid) GetNid() string

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

func (*PlmnIdNid) GetNidOk ¶

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

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

func (*PlmnIdNid) HasNid ¶

func (o *PlmnIdNid) HasNid() bool

HasNid returns a boolean if a field has been set.

func (PlmnIdNid) MarshalJSON ¶

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

func (*PlmnIdNid) SetMcc ¶

func (o *PlmnIdNid) SetMcc(v string)

SetMcc sets field value

func (*PlmnIdNid) SetMnc ¶

func (o *PlmnIdNid) SetMnc(v string)

SetMnc sets field value

func (*PlmnIdNid) SetNid ¶

func (o *PlmnIdNid) SetNid(v string)

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

func (PlmnIdNid) ToMap ¶

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

type PlmnIdNid1 ¶

type PlmnIdNid1 struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

PlmnIdNid1 Contains the serving core network operator PLMN ID and, for an SNPN, the NID that together with the PLMN ID identifies the SNPN.

func NewPlmnIdNid1 ¶

func NewPlmnIdNid1(mcc string, mnc string) *PlmnIdNid1

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

func NewPlmnIdNid1WithDefaults ¶

func NewPlmnIdNid1WithDefaults() *PlmnIdNid1

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

func (*PlmnIdNid1) GetMcc ¶

func (o *PlmnIdNid1) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnIdNid1) GetMccOk ¶

func (o *PlmnIdNid1) GetMccOk() (*string, bool)

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

func (*PlmnIdNid1) GetMnc ¶

func (o *PlmnIdNid1) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnIdNid1) GetMncOk ¶

func (o *PlmnIdNid1) GetMncOk() (*string, bool)

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

func (*PlmnIdNid1) GetNid ¶

func (o *PlmnIdNid1) GetNid() string

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

func (*PlmnIdNid1) GetNidOk ¶

func (o *PlmnIdNid1) 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 (*PlmnIdNid1) HasNid ¶

func (o *PlmnIdNid1) HasNid() bool

HasNid returns a boolean if a field has been set.

func (PlmnIdNid1) MarshalJSON ¶

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

func (*PlmnIdNid1) SetMcc ¶

func (o *PlmnIdNid1) SetMcc(v string)

SetMcc sets field value

func (*PlmnIdNid1) SetMnc ¶

func (o *PlmnIdNid1) SetMnc(v string)

SetMnc sets field value

func (*PlmnIdNid1) SetNid ¶

func (o *PlmnIdNid1) SetNid(v string)

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

func (PlmnIdNid1) ToMap ¶

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

type PlmnIdNidRm ¶

type PlmnIdNidRm struct {
	NullValue *NullValue
	PlmnIdNid *PlmnIdNid
}

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

func (*PlmnIdNidRm) MarshalJSON ¶

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

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

func (*PlmnIdNidRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type PlmnIdRm ¶

type PlmnIdRm struct {
	NullValue *NullValue
	PlmnId    *PlmnId
}

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

func (*PlmnIdRm) MarshalJSON ¶

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

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

func (*PlmnIdRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type Point ¶

type Point struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
}

Point Ellipsoid Point.

func NewPoint ¶

func NewPoint(point GeographicalCoordinates, shape SupportedGADShapes) *Point

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

func NewPointWithDefaults ¶

func NewPointWithDefaults() *Point

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

func (*Point) GetPoint ¶

func (o *Point) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*Point) GetPointOk ¶

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

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

func (Point) MarshalJSON ¶

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

func (*Point) SetPoint ¶

func (o *Point) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (Point) ToMap ¶

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

type PointAllOf ¶

type PointAllOf struct {
	Point GeographicalCoordinates `json:"point"`
}

PointAllOf struct for PointAllOf

func NewPointAllOf ¶

func NewPointAllOf(point GeographicalCoordinates) *PointAllOf

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

func NewPointAllOfWithDefaults ¶

func NewPointAllOfWithDefaults() *PointAllOf

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

func (*PointAllOf) GetPoint ¶

func (o *PointAllOf) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*PointAllOf) GetPointOk ¶

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

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

func (PointAllOf) MarshalJSON ¶

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

func (*PointAllOf) SetPoint ¶

func (o *PointAllOf) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (PointAllOf) ToMap ¶

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

type PointAltitude ¶

type PointAltitude struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude float64 `json:"altitude"`
}

PointAltitude Ellipsoid point with altitude.

func NewPointAltitude ¶

func NewPointAltitude(point GeographicalCoordinates, altitude float64, shape SupportedGADShapes) *PointAltitude

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

func NewPointAltitudeWithDefaults ¶

func NewPointAltitudeWithDefaults() *PointAltitude

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

func (*PointAltitude) GetAltitude ¶

func (o *PointAltitude) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitude) GetAltitudeOk ¶

func (o *PointAltitude) GetAltitudeOk() (*float64, bool)

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

func (*PointAltitude) GetPoint ¶

func (o *PointAltitude) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*PointAltitude) GetPointOk ¶

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

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

func (PointAltitude) MarshalJSON ¶

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

func (*PointAltitude) SetAltitude ¶

func (o *PointAltitude) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitude) SetPoint ¶

func (o *PointAltitude) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (PointAltitude) ToMap ¶

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

type PointAltitudeAllOf ¶

type PointAltitudeAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude float64 `json:"altitude"`
}

PointAltitudeAllOf struct for PointAltitudeAllOf

func NewPointAltitudeAllOf ¶

func NewPointAltitudeAllOf(point GeographicalCoordinates, altitude float64) *PointAltitudeAllOf

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

func NewPointAltitudeAllOfWithDefaults ¶

func NewPointAltitudeAllOfWithDefaults() *PointAltitudeAllOf

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

func (*PointAltitudeAllOf) GetAltitude ¶

func (o *PointAltitudeAllOf) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitudeAllOf) GetAltitudeOk ¶

func (o *PointAltitudeAllOf) GetAltitudeOk() (*float64, bool)

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

func (*PointAltitudeAllOf) GetPoint ¶

GetPoint returns the Point field value

func (*PointAltitudeAllOf) GetPointOk ¶

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

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

func (PointAltitudeAllOf) MarshalJSON ¶

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

func (*PointAltitudeAllOf) SetAltitude ¶

func (o *PointAltitudeAllOf) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitudeAllOf) SetPoint ¶

SetPoint sets field value

func (PointAltitudeAllOf) ToMap ¶

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

type PointAltitudeUncertainty ¶

type PointAltitudeUncertainty struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude           float64            `json:"altitude"`
	UncertaintyEllipse UncertaintyEllipse `json:"uncertaintyEllipse"`
	// Indicates value of uncertainty.
	UncertaintyAltitude float32 `json:"uncertaintyAltitude"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointAltitudeUncertainty Ellipsoid point with altitude and uncertainty ellipsoid.

func NewPointAltitudeUncertainty ¶

func NewPointAltitudeUncertainty(point GeographicalCoordinates, altitude float64, uncertaintyEllipse UncertaintyEllipse, uncertaintyAltitude float32, confidence int32, shape SupportedGADShapes) *PointAltitudeUncertainty

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

func NewPointAltitudeUncertaintyWithDefaults ¶

func NewPointAltitudeUncertaintyWithDefaults() *PointAltitudeUncertainty

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

func (*PointAltitudeUncertainty) GetAltitude ¶

func (o *PointAltitudeUncertainty) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitudeUncertainty) GetAltitudeOk ¶

func (o *PointAltitudeUncertainty) GetAltitudeOk() (*float64, bool)

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

func (*PointAltitudeUncertainty) GetConfidence ¶

func (o *PointAltitudeUncertainty) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointAltitudeUncertainty) GetConfidenceOk ¶

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

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

func (*PointAltitudeUncertainty) GetPoint ¶

GetPoint returns the Point field value

func (*PointAltitudeUncertainty) GetPointOk ¶

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

func (*PointAltitudeUncertainty) GetUncertaintyAltitude ¶

func (o *PointAltitudeUncertainty) GetUncertaintyAltitude() float32

GetUncertaintyAltitude returns the UncertaintyAltitude field value

func (*PointAltitudeUncertainty) GetUncertaintyAltitudeOk ¶

func (o *PointAltitudeUncertainty) GetUncertaintyAltitudeOk() (*float32, bool)

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

func (*PointAltitudeUncertainty) GetUncertaintyEllipse ¶

func (o *PointAltitudeUncertainty) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointAltitudeUncertainty) GetUncertaintyEllipseOk ¶

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

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

func (PointAltitudeUncertainty) MarshalJSON ¶

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

func (*PointAltitudeUncertainty) SetAltitude ¶

func (o *PointAltitudeUncertainty) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitudeUncertainty) SetConfidence ¶

func (o *PointAltitudeUncertainty) SetConfidence(v int32)

SetConfidence sets field value

func (*PointAltitudeUncertainty) SetPoint ¶

SetPoint sets field value

func (*PointAltitudeUncertainty) SetUncertaintyAltitude ¶

func (o *PointAltitudeUncertainty) SetUncertaintyAltitude(v float32)

SetUncertaintyAltitude sets field value

func (*PointAltitudeUncertainty) SetUncertaintyEllipse ¶

func (o *PointAltitudeUncertainty) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointAltitudeUncertainty) ToMap ¶

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

type PointAltitudeUncertaintyAllOf ¶

type PointAltitudeUncertaintyAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude           float64            `json:"altitude"`
	UncertaintyEllipse UncertaintyEllipse `json:"uncertaintyEllipse"`
	// Indicates value of uncertainty.
	UncertaintyAltitude float32 `json:"uncertaintyAltitude"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointAltitudeUncertaintyAllOf struct for PointAltitudeUncertaintyAllOf

func NewPointAltitudeUncertaintyAllOf ¶

func NewPointAltitudeUncertaintyAllOf(point GeographicalCoordinates, altitude float64, uncertaintyEllipse UncertaintyEllipse, uncertaintyAltitude float32, confidence int32) *PointAltitudeUncertaintyAllOf

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

func NewPointAltitudeUncertaintyAllOfWithDefaults ¶

func NewPointAltitudeUncertaintyAllOfWithDefaults() *PointAltitudeUncertaintyAllOf

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

func (*PointAltitudeUncertaintyAllOf) GetAltitude ¶

func (o *PointAltitudeUncertaintyAllOf) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitudeUncertaintyAllOf) GetAltitudeOk ¶

func (o *PointAltitudeUncertaintyAllOf) GetAltitudeOk() (*float64, bool)

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

func (*PointAltitudeUncertaintyAllOf) GetConfidence ¶

func (o *PointAltitudeUncertaintyAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointAltitudeUncertaintyAllOf) GetConfidenceOk ¶

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

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

func (*PointAltitudeUncertaintyAllOf) GetPoint ¶

GetPoint returns the Point field value

func (*PointAltitudeUncertaintyAllOf) GetPointOk ¶

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

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyAltitude ¶

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyAltitude() float32

GetUncertaintyAltitude returns the UncertaintyAltitude field value

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyAltitudeOk ¶

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyAltitudeOk() (*float32, bool)

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

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyEllipse ¶

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyEllipseOk ¶

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

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

func (PointAltitudeUncertaintyAllOf) MarshalJSON ¶

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

func (*PointAltitudeUncertaintyAllOf) SetAltitude ¶

func (o *PointAltitudeUncertaintyAllOf) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitudeUncertaintyAllOf) SetConfidence ¶

func (o *PointAltitudeUncertaintyAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*PointAltitudeUncertaintyAllOf) SetPoint ¶

SetPoint sets field value

func (*PointAltitudeUncertaintyAllOf) SetUncertaintyAltitude ¶

func (o *PointAltitudeUncertaintyAllOf) SetUncertaintyAltitude(v float32)

SetUncertaintyAltitude sets field value

func (*PointAltitudeUncertaintyAllOf) SetUncertaintyEllipse ¶

func (o *PointAltitudeUncertaintyAllOf) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointAltitudeUncertaintyAllOf) ToMap ¶

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

type PointUncertaintyCircle ¶

type PointUncertaintyCircle struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of uncertainty.
	Uncertainty float32 `json:"uncertainty"`
}

PointUncertaintyCircle Ellipsoid point with uncertainty circle.

func NewPointUncertaintyCircle ¶

func NewPointUncertaintyCircle(point GeographicalCoordinates, uncertainty float32, shape SupportedGADShapes) *PointUncertaintyCircle

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

func NewPointUncertaintyCircleWithDefaults ¶

func NewPointUncertaintyCircleWithDefaults() *PointUncertaintyCircle

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

func (*PointUncertaintyCircle) GetPoint ¶

GetPoint returns the Point field value

func (*PointUncertaintyCircle) GetPointOk ¶

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

func (*PointUncertaintyCircle) GetUncertainty ¶

func (o *PointUncertaintyCircle) GetUncertainty() float32

GetUncertainty returns the Uncertainty field value

func (*PointUncertaintyCircle) GetUncertaintyOk ¶

func (o *PointUncertaintyCircle) GetUncertaintyOk() (*float32, bool)

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

func (PointUncertaintyCircle) MarshalJSON ¶

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

func (*PointUncertaintyCircle) SetPoint ¶

SetPoint sets field value

func (*PointUncertaintyCircle) SetUncertainty ¶

func (o *PointUncertaintyCircle) SetUncertainty(v float32)

SetUncertainty sets field value

func (PointUncertaintyCircle) ToMap ¶

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

type PointUncertaintyCircleAllOf ¶

type PointUncertaintyCircleAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of uncertainty.
	Uncertainty float32 `json:"uncertainty"`
}

PointUncertaintyCircleAllOf struct for PointUncertaintyCircleAllOf

func NewPointUncertaintyCircleAllOf ¶

func NewPointUncertaintyCircleAllOf(point GeographicalCoordinates, uncertainty float32) *PointUncertaintyCircleAllOf

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

func NewPointUncertaintyCircleAllOfWithDefaults ¶

func NewPointUncertaintyCircleAllOfWithDefaults() *PointUncertaintyCircleAllOf

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

func (*PointUncertaintyCircleAllOf) GetPoint ¶

GetPoint returns the Point field value

func (*PointUncertaintyCircleAllOf) GetPointOk ¶

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

func (*PointUncertaintyCircleAllOf) GetUncertainty ¶

func (o *PointUncertaintyCircleAllOf) GetUncertainty() float32

GetUncertainty returns the Uncertainty field value

func (*PointUncertaintyCircleAllOf) GetUncertaintyOk ¶

func (o *PointUncertaintyCircleAllOf) GetUncertaintyOk() (*float32, bool)

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

func (PointUncertaintyCircleAllOf) MarshalJSON ¶

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

func (*PointUncertaintyCircleAllOf) SetPoint ¶

SetPoint sets field value

func (*PointUncertaintyCircleAllOf) SetUncertainty ¶

func (o *PointUncertaintyCircleAllOf) SetUncertainty(v float32)

SetUncertainty sets field value

func (PointUncertaintyCircleAllOf) ToMap ¶

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

type PointUncertaintyEllipse ¶

type PointUncertaintyEllipse struct {
	GADShape
	Point              GeographicalCoordinates `json:"point"`
	UncertaintyEllipse UncertaintyEllipse      `json:"uncertaintyEllipse"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointUncertaintyEllipse Ellipsoid point with uncertainty ellipse.

func NewPointUncertaintyEllipse ¶

func NewPointUncertaintyEllipse(point GeographicalCoordinates, uncertaintyEllipse UncertaintyEllipse, confidence int32, shape SupportedGADShapes) *PointUncertaintyEllipse

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

func NewPointUncertaintyEllipseWithDefaults ¶

func NewPointUncertaintyEllipseWithDefaults() *PointUncertaintyEllipse

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

func (*PointUncertaintyEllipse) GetConfidence ¶

func (o *PointUncertaintyEllipse) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointUncertaintyEllipse) GetConfidenceOk ¶

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

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

func (*PointUncertaintyEllipse) GetPoint ¶

GetPoint returns the Point field value

func (*PointUncertaintyEllipse) GetPointOk ¶

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

func (*PointUncertaintyEllipse) GetUncertaintyEllipse ¶

func (o *PointUncertaintyEllipse) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointUncertaintyEllipse) GetUncertaintyEllipseOk ¶

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

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

func (PointUncertaintyEllipse) MarshalJSON ¶

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

func (*PointUncertaintyEllipse) SetConfidence ¶

func (o *PointUncertaintyEllipse) SetConfidence(v int32)

SetConfidence sets field value

func (*PointUncertaintyEllipse) SetPoint ¶

SetPoint sets field value

func (*PointUncertaintyEllipse) SetUncertaintyEllipse ¶

func (o *PointUncertaintyEllipse) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointUncertaintyEllipse) ToMap ¶

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

type PointUncertaintyEllipseAllOf ¶

type PointUncertaintyEllipseAllOf struct {
	Point              GeographicalCoordinates `json:"point"`
	UncertaintyEllipse UncertaintyEllipse      `json:"uncertaintyEllipse"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointUncertaintyEllipseAllOf struct for PointUncertaintyEllipseAllOf

func NewPointUncertaintyEllipseAllOf ¶

func NewPointUncertaintyEllipseAllOf(point GeographicalCoordinates, uncertaintyEllipse UncertaintyEllipse, confidence int32) *PointUncertaintyEllipseAllOf

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

func NewPointUncertaintyEllipseAllOfWithDefaults ¶

func NewPointUncertaintyEllipseAllOfWithDefaults() *PointUncertaintyEllipseAllOf

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

func (*PointUncertaintyEllipseAllOf) GetConfidence ¶

func (o *PointUncertaintyEllipseAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointUncertaintyEllipseAllOf) GetConfidenceOk ¶

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

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

func (*PointUncertaintyEllipseAllOf) GetPoint ¶

GetPoint returns the Point field value

func (*PointUncertaintyEllipseAllOf) GetPointOk ¶

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

func (*PointUncertaintyEllipseAllOf) GetUncertaintyEllipse ¶

func (o *PointUncertaintyEllipseAllOf) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointUncertaintyEllipseAllOf) GetUncertaintyEllipseOk ¶

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

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

func (PointUncertaintyEllipseAllOf) MarshalJSON ¶

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

func (*PointUncertaintyEllipseAllOf) SetConfidence ¶

func (o *PointUncertaintyEllipseAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*PointUncertaintyEllipseAllOf) SetPoint ¶

SetPoint sets field value

func (*PointUncertaintyEllipseAllOf) SetUncertaintyEllipse ¶

func (o *PointUncertaintyEllipseAllOf) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointUncertaintyEllipseAllOf) ToMap ¶

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

type Polygon ¶

type Polygon struct {
	GADShape
	// List of points.
	PointList []GeographicalCoordinates `json:"pointList"`
}

Polygon Polygon.

func NewPolygon ¶

func NewPolygon(pointList []GeographicalCoordinates, shape SupportedGADShapes) *Polygon

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

func NewPolygonWithDefaults ¶

func NewPolygonWithDefaults() *Polygon

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

func (*Polygon) GetPointList ¶

func (o *Polygon) GetPointList() []GeographicalCoordinates

GetPointList returns the PointList field value

func (*Polygon) GetPointListOk ¶

func (o *Polygon) GetPointListOk() ([]GeographicalCoordinates, bool)

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

func (Polygon) MarshalJSON ¶

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

func (*Polygon) SetPointList ¶

func (o *Polygon) SetPointList(v []GeographicalCoordinates)

SetPointList sets field value

func (Polygon) ToMap ¶

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

type PolygonAllOf ¶

type PolygonAllOf struct {
	// List of points.
	PointList []GeographicalCoordinates `json:"pointList"`
}

PolygonAllOf struct for PolygonAllOf

func NewPolygonAllOf ¶

func NewPolygonAllOf(pointList []GeographicalCoordinates) *PolygonAllOf

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

func NewPolygonAllOfWithDefaults ¶

func NewPolygonAllOfWithDefaults() *PolygonAllOf

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

func (*PolygonAllOf) GetPointList ¶

func (o *PolygonAllOf) GetPointList() []GeographicalCoordinates

GetPointList returns the PointList field value

func (*PolygonAllOf) GetPointListOk ¶

func (o *PolygonAllOf) GetPointListOk() ([]GeographicalCoordinates, bool)

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

func (PolygonAllOf) MarshalJSON ¶

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

func (*PolygonAllOf) SetPointList ¶

func (o *PolygonAllOf) SetPointList(v []GeographicalCoordinates)

SetPointList sets field value

func (PolygonAllOf) ToMap ¶

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

type PositioningMethodMdt ¶

type PositioningMethodMdt struct {
	String *string
}

PositioningMethodMdt The enumeration LoggingDurationMdt defines Logging Duration 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.13-1.

func (*PositioningMethodMdt) MarshalJSON ¶

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

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

func (*PositioningMethodMdt) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type PreemptionCapability ¶

type PreemptionCapability struct {
	String *string
}

PreemptionCapability The enumeration PreemptionCapability indicates the pre-emption capability of a request on other QoS flows. See clause 5.7.2.2 of 3GPP TS 23.501. It shall comply with the provisions defined in table 5.5.3.1-1.

func (*PreemptionCapability) MarshalJSON ¶

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

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

func (*PreemptionCapability) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type PreemptionCapabilityRm ¶

type PreemptionCapabilityRm struct {
	NullValue            *NullValue
	PreemptionCapability *PreemptionCapability
}

PreemptionCapabilityRm This enumeration is defined in the same way as the 'PreemptionCapability' enumeration, but with the OpenAPI 'nullable: true' property.

func (*PreemptionCapabilityRm) MarshalJSON ¶

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

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

func (*PreemptionCapabilityRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type PreemptionVulnerability ¶

type PreemptionVulnerability struct {
	String *string
}

PreemptionVulnerability The enumeration PreemptionVulnerability indicates the pre-emption vulnerability of the QoS flow to pre-emption from other QoS flows. See clause 5.7.2.2 of 3GPP TS 23.501. It shall comply with the provisions defined in table 5.5.3.2-1

func (*PreemptionVulnerability) MarshalJSON ¶

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

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

func (*PreemptionVulnerability) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type PreemptionVulnerabilityRm ¶

type PreemptionVulnerabilityRm struct {
	NullValue               *NullValue
	PreemptionVulnerability *PreemptionVulnerability
}

PreemptionVulnerabilityRm This enumeration is defined in the same way as the 'PreemptionVulnerability' enumeration, but with the OpenAPI 'nullable: true' property.\"

func (*PreemptionVulnerabilityRm) MarshalJSON ¶

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

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

func (*PreemptionVulnerabilityRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type PresenceInfo ¶

type PresenceInfo struct {
	// Represents an identifier of the Presence Reporting Area (see clause 28.10 of 3GPP  TS 23.003.  This IE shall be present  if the Area of Interest subscribed or reported is a Presence Reporting Area or a Set of Core Network predefined Presence Reporting Areas. When present, it shall be encoded as a string representing an integer in the following ranges: 0 to 8 388 607 for UE-dedicated PRA 8 388 608 to 16 777 215 for Core Network predefined PRA Examples: PRA ID 123 is encoded as \"123\" PRA ID 11 238 660 is encoded as \"11238660\"
	PraId *string `json:"praId,omitempty"`
	// This IE may be present if the praId IE is present and if it contains a PRA identifier referring to a set of Core Network predefined Presence Reporting Areas. When present, this IE shall contain a PRA Identifier of an individual PRA within the Set of Core Network predefined Presence Reporting Areas indicated by the praId IE.
	AdditionalPraId *string        `json:"additionalPraId,omitempty"`
	PresenceState   *PresenceState `json:"presenceState,omitempty"`
	// Represents the list of tracking areas that constitutes the area. This IE shall be present if the subscription or  the event report is for tracking UE presence in the tracking areas. For non 3GPP access the TAI shall be the N3GPP TAI.
	TrackingAreaList []Tai `json:"trackingAreaList,omitempty"`
	// Represents the list of EUTRAN cell Ids that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of EUTRAN cell Ids.
	EcgiList []Ecgi `json:"ecgiList,omitempty"`
	// Represents the list of NR cell Ids that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of NR cell Ids.
	NcgiList []Ncgi `json:"ncgiList,omitempty"`
	// Represents the list of NG RAN node identifiers that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of NG RAN node identifiers.
	GlobalRanNodeIdList []GlobalRanNodeId `json:"globalRanNodeIdList,omitempty"`
	// Represents the list of eNodeB identifiers that constitutes the area. This IE shall be  present if the Area of Interest subscribed is a list of eNodeB identifiers.
	GlobaleNbIdList []GlobalRanNodeId `json:"globaleNbIdList,omitempty"`
}

PresenceInfo If the additionalPraId IE is present, this IE shall state the presence information of the UE for the individual PRA identified by the additionalPraId IE; If the additionalPraId IE is not present, this IE shall state the presence information of the UE for the PRA identified by the praId IE.

func NewPresenceInfo ¶

func NewPresenceInfo() *PresenceInfo

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

func NewPresenceInfoWithDefaults ¶

func NewPresenceInfoWithDefaults() *PresenceInfo

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

func (*PresenceInfo) GetAdditionalPraId ¶

func (o *PresenceInfo) GetAdditionalPraId() string

GetAdditionalPraId returns the AdditionalPraId field value if set, zero value otherwise.

func (*PresenceInfo) GetAdditionalPraIdOk ¶

func (o *PresenceInfo) GetAdditionalPraIdOk() (*string, bool)

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

func (*PresenceInfo) GetEcgiList ¶

func (o *PresenceInfo) GetEcgiList() []Ecgi

GetEcgiList returns the EcgiList field value if set, zero value otherwise.

func (*PresenceInfo) GetEcgiListOk ¶

func (o *PresenceInfo) GetEcgiListOk() ([]Ecgi, bool)

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

func (*PresenceInfo) GetGlobalRanNodeIdList ¶

func (o *PresenceInfo) GetGlobalRanNodeIdList() []GlobalRanNodeId

GetGlobalRanNodeIdList returns the GlobalRanNodeIdList field value if set, zero value otherwise.

func (*PresenceInfo) GetGlobalRanNodeIdListOk ¶

func (o *PresenceInfo) GetGlobalRanNodeIdListOk() ([]GlobalRanNodeId, bool)

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

func (*PresenceInfo) GetGlobaleNbIdList ¶

func (o *PresenceInfo) GetGlobaleNbIdList() []GlobalRanNodeId

GetGlobaleNbIdList returns the GlobaleNbIdList field value if set, zero value otherwise.

func (*PresenceInfo) GetGlobaleNbIdListOk ¶

func (o *PresenceInfo) GetGlobaleNbIdListOk() ([]GlobalRanNodeId, bool)

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

func (*PresenceInfo) GetNcgiList ¶

func (o *PresenceInfo) GetNcgiList() []Ncgi

GetNcgiList returns the NcgiList field value if set, zero value otherwise.

func (*PresenceInfo) GetNcgiListOk ¶

func (o *PresenceInfo) GetNcgiListOk() ([]Ncgi, bool)

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

func (*PresenceInfo) GetPraId ¶

func (o *PresenceInfo) GetPraId() string

GetPraId returns the PraId field value if set, zero value otherwise.

func (*PresenceInfo) GetPraIdOk ¶

func (o *PresenceInfo) GetPraIdOk() (*string, bool)

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

func (*PresenceInfo) GetPresenceState ¶

func (o *PresenceInfo) GetPresenceState() PresenceState

GetPresenceState returns the PresenceState field value if set, zero value otherwise.

func (*PresenceInfo) GetPresenceStateOk ¶

func (o *PresenceInfo) GetPresenceStateOk() (*PresenceState, bool)

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

func (*PresenceInfo) GetTrackingAreaList ¶

func (o *PresenceInfo) GetTrackingAreaList() []Tai

GetTrackingAreaList returns the TrackingAreaList field value if set, zero value otherwise.

func (*PresenceInfo) GetTrackingAreaListOk ¶

func (o *PresenceInfo) GetTrackingAreaListOk() ([]Tai, bool)

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

func (*PresenceInfo) HasAdditionalPraId ¶

func (o *PresenceInfo) HasAdditionalPraId() bool

HasAdditionalPraId returns a boolean if a field has been set.

func (*PresenceInfo) HasEcgiList ¶

func (o *PresenceInfo) HasEcgiList() bool

HasEcgiList returns a boolean if a field has been set.

func (*PresenceInfo) HasGlobalRanNodeIdList ¶

func (o *PresenceInfo) HasGlobalRanNodeIdList() bool

HasGlobalRanNodeIdList returns a boolean if a field has been set.

func (*PresenceInfo) HasGlobaleNbIdList ¶

func (o *PresenceInfo) HasGlobaleNbIdList() bool

HasGlobaleNbIdList returns a boolean if a field has been set.

func (*PresenceInfo) HasNcgiList ¶

func (o *PresenceInfo) HasNcgiList() bool

HasNcgiList returns a boolean if a field has been set.

func (*PresenceInfo) HasPraId ¶

func (o *PresenceInfo) HasPraId() bool

HasPraId returns a boolean if a field has been set.

func (*PresenceInfo) HasPresenceState ¶

func (o *PresenceInfo) HasPresenceState() bool

HasPresenceState returns a boolean if a field has been set.

func (*PresenceInfo) HasTrackingAreaList ¶

func (o *PresenceInfo) HasTrackingAreaList() bool

HasTrackingAreaList returns a boolean if a field has been set.

func (PresenceInfo) MarshalJSON ¶

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

func (*PresenceInfo) SetAdditionalPraId ¶

func (o *PresenceInfo) SetAdditionalPraId(v string)

SetAdditionalPraId gets a reference to the given string and assigns it to the AdditionalPraId field.

func (*PresenceInfo) SetEcgiList ¶

func (o *PresenceInfo) SetEcgiList(v []Ecgi)

SetEcgiList gets a reference to the given []Ecgi and assigns it to the EcgiList field.

func (*PresenceInfo) SetGlobalRanNodeIdList ¶

func (o *PresenceInfo) SetGlobalRanNodeIdList(v []GlobalRanNodeId)

SetGlobalRanNodeIdList gets a reference to the given []GlobalRanNodeId and assigns it to the GlobalRanNodeIdList field.

func (*PresenceInfo) SetGlobaleNbIdList ¶

func (o *PresenceInfo) SetGlobaleNbIdList(v []GlobalRanNodeId)

SetGlobaleNbIdList gets a reference to the given []GlobalRanNodeId and assigns it to the GlobaleNbIdList field.

func (*PresenceInfo) SetNcgiList ¶

func (o *PresenceInfo) SetNcgiList(v []Ncgi)

SetNcgiList gets a reference to the given []Ncgi and assigns it to the NcgiList field.

func (*PresenceInfo) SetPraId ¶

func (o *PresenceInfo) SetPraId(v string)

SetPraId gets a reference to the given string and assigns it to the PraId field.

func (*PresenceInfo) SetPresenceState ¶

func (o *PresenceInfo) SetPresenceState(v PresenceState)

SetPresenceState gets a reference to the given PresenceState and assigns it to the PresenceState field.

func (*PresenceInfo) SetTrackingAreaList ¶

func (o *PresenceInfo) SetTrackingAreaList(v []Tai)

SetTrackingAreaList gets a reference to the given []Tai and assigns it to the TrackingAreaList field.

func (PresenceInfo) ToMap ¶

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

type PresenceInfoRm ¶

type PresenceInfoRm struct {
	// Represents an identifier of the Presence Reporting Area (see clause 28.10 of  3GPP TS 23.003. This IE shall be present  if the Area of Interest subscribed or reported is a Presence Reporting Area or a Set of Core Network predefined Presence Reporting Areas. When present, it shall be encoded as a string representing an integer in the following ranges: - 0 to 8 388 607 for UE-dedicated PRA - 8 388 608 to 16 777 215 for Core Network predefined PRA Examples: PRA ID 123 is encoded as \"123\" PRA ID 11 238 660 is encoded as \"11238660\"
	PraId *string `json:"praId,omitempty"`
	// This IE may be present if the praId IE is present and if it contains a PRA identifier referring to a set of Core Network predefined Presence Reporting Areas. When present, this IE shall contain a PRA Identifier of an individual PRA within the Set of Core Network predefined Presence Reporting Areas indicated by the praId IE.
	AdditionalPraId *string        `json:"additionalPraId,omitempty"`
	PresenceState   *PresenceState `json:"presenceState,omitempty"`
	// Represents the list of tracking areas that constitutes the area. This IE shall be present if the subscription or the event report  is for tracking UE presence in the tracking areas. For non 3GPP access the TAI shall be the N3GPP TAI.
	TrackingAreaList []Tai `json:"trackingAreaList,omitempty"`
	// Represents the list of EUTRAN cell Ids that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of EUTRAN cell Ids.
	EcgiList []Ecgi `json:"ecgiList,omitempty"`
	// Represents the list of NR cell Ids that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of NR cell Ids.
	NcgiList []Ncgi `json:"ncgiList,omitempty"`
	// Represents the list of NG RAN node identifiers that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of NG RAN node identifiers.
	GlobalRanNodeIdList []GlobalRanNodeId `json:"globalRanNodeIdList,omitempty"`
	// Represents the list of eNodeB identifiers that constitutes the area. This IE shall be present if the Area of Interest subscribed is a list of eNodeB identifiers.
	GlobaleNbIdList []GlobalRanNodeId `json:"globaleNbIdList,omitempty"`
}

PresenceInfoRm This data type is defined in the same way as the 'PresenceInfo' data type, but with the OpenAPI 'nullable: true' property. If the additionalPraId IE is present, this IE shall state the presence information of the UE for the individual PRA identified by the additionalPraId IE; If the additionalPraId IE is not present, this IE shall state the presence information of the UE for the PRA identified by the praId IE.

func NewPresenceInfoRm ¶

func NewPresenceInfoRm() *PresenceInfoRm

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

func NewPresenceInfoRmWithDefaults ¶

func NewPresenceInfoRmWithDefaults() *PresenceInfoRm

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

func (*PresenceInfoRm) GetAdditionalPraId ¶

func (o *PresenceInfoRm) GetAdditionalPraId() string

GetAdditionalPraId returns the AdditionalPraId field value if set, zero value otherwise.

func (*PresenceInfoRm) GetAdditionalPraIdOk ¶

func (o *PresenceInfoRm) GetAdditionalPraIdOk() (*string, bool)

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

func (*PresenceInfoRm) GetEcgiList ¶

func (o *PresenceInfoRm) GetEcgiList() []Ecgi

GetEcgiList returns the EcgiList field value if set, zero value otherwise.

func (*PresenceInfoRm) GetEcgiListOk ¶

func (o *PresenceInfoRm) GetEcgiListOk() ([]Ecgi, bool)

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

func (*PresenceInfoRm) GetGlobalRanNodeIdList ¶

func (o *PresenceInfoRm) GetGlobalRanNodeIdList() []GlobalRanNodeId

GetGlobalRanNodeIdList returns the GlobalRanNodeIdList field value if set, zero value otherwise.

func (*PresenceInfoRm) GetGlobalRanNodeIdListOk ¶

func (o *PresenceInfoRm) GetGlobalRanNodeIdListOk() ([]GlobalRanNodeId, bool)

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

func (*PresenceInfoRm) GetGlobaleNbIdList ¶

func (o *PresenceInfoRm) GetGlobaleNbIdList() []GlobalRanNodeId

GetGlobaleNbIdList returns the GlobaleNbIdList field value if set, zero value otherwise.

func (*PresenceInfoRm) GetGlobaleNbIdListOk ¶

func (o *PresenceInfoRm) GetGlobaleNbIdListOk() ([]GlobalRanNodeId, bool)

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

func (*PresenceInfoRm) GetNcgiList ¶

func (o *PresenceInfoRm) GetNcgiList() []Ncgi

GetNcgiList returns the NcgiList field value if set, zero value otherwise.

func (*PresenceInfoRm) GetNcgiListOk ¶

func (o *PresenceInfoRm) GetNcgiListOk() ([]Ncgi, bool)

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

func (*PresenceInfoRm) GetPraId ¶

func (o *PresenceInfoRm) GetPraId() string

GetPraId returns the PraId field value if set, zero value otherwise.

func (*PresenceInfoRm) GetPraIdOk ¶

func (o *PresenceInfoRm) GetPraIdOk() (*string, bool)

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

func (*PresenceInfoRm) GetPresenceState ¶

func (o *PresenceInfoRm) GetPresenceState() PresenceState

GetPresenceState returns the PresenceState field value if set, zero value otherwise.

func (*PresenceInfoRm) GetPresenceStateOk ¶

func (o *PresenceInfoRm) GetPresenceStateOk() (*PresenceState, bool)

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

func (*PresenceInfoRm) GetTrackingAreaList ¶

func (o *PresenceInfoRm) GetTrackingAreaList() []Tai

GetTrackingAreaList returns the TrackingAreaList field value if set, zero value otherwise.

func (*PresenceInfoRm) GetTrackingAreaListOk ¶

func (o *PresenceInfoRm) GetTrackingAreaListOk() ([]Tai, bool)

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

func (*PresenceInfoRm) HasAdditionalPraId ¶

func (o *PresenceInfoRm) HasAdditionalPraId() bool

HasAdditionalPraId returns a boolean if a field has been set.

func (*PresenceInfoRm) HasEcgiList ¶

func (o *PresenceInfoRm) HasEcgiList() bool

HasEcgiList returns a boolean if a field has been set.

func (*PresenceInfoRm) HasGlobalRanNodeIdList ¶

func (o *PresenceInfoRm) HasGlobalRanNodeIdList() bool

HasGlobalRanNodeIdList returns a boolean if a field has been set.

func (*PresenceInfoRm) HasGlobaleNbIdList ¶

func (o *PresenceInfoRm) HasGlobaleNbIdList() bool

HasGlobaleNbIdList returns a boolean if a field has been set.

func (*PresenceInfoRm) HasNcgiList ¶

func (o *PresenceInfoRm) HasNcgiList() bool

HasNcgiList returns a boolean if a field has been set.

func (*PresenceInfoRm) HasPraId ¶

func (o *PresenceInfoRm) HasPraId() bool

HasPraId returns a boolean if a field has been set.

func (*PresenceInfoRm) HasPresenceState ¶

func (o *PresenceInfoRm) HasPresenceState() bool

HasPresenceState returns a boolean if a field has been set.

func (*PresenceInfoRm) HasTrackingAreaList ¶

func (o *PresenceInfoRm) HasTrackingAreaList() bool

HasTrackingAreaList returns a boolean if a field has been set.

func (PresenceInfoRm) MarshalJSON ¶

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

func (*PresenceInfoRm) SetAdditionalPraId ¶

func (o *PresenceInfoRm) SetAdditionalPraId(v string)

SetAdditionalPraId gets a reference to the given string and assigns it to the AdditionalPraId field.

func (*PresenceInfoRm) SetEcgiList ¶

func (o *PresenceInfoRm) SetEcgiList(v []Ecgi)

SetEcgiList gets a reference to the given []Ecgi and assigns it to the EcgiList field.

func (*PresenceInfoRm) SetGlobalRanNodeIdList ¶

func (o *PresenceInfoRm) SetGlobalRanNodeIdList(v []GlobalRanNodeId)

SetGlobalRanNodeIdList gets a reference to the given []GlobalRanNodeId and assigns it to the GlobalRanNodeIdList field.

func (*PresenceInfoRm) SetGlobaleNbIdList ¶

func (o *PresenceInfoRm) SetGlobaleNbIdList(v []GlobalRanNodeId)

SetGlobaleNbIdList gets a reference to the given []GlobalRanNodeId and assigns it to the GlobaleNbIdList field.

func (*PresenceInfoRm) SetNcgiList ¶

func (o *PresenceInfoRm) SetNcgiList(v []Ncgi)

SetNcgiList gets a reference to the given []Ncgi and assigns it to the NcgiList field.

func (*PresenceInfoRm) SetPraId ¶

func (o *PresenceInfoRm) SetPraId(v string)

SetPraId gets a reference to the given string and assigns it to the PraId field.

func (*PresenceInfoRm) SetPresenceState ¶

func (o *PresenceInfoRm) SetPresenceState(v PresenceState)

SetPresenceState gets a reference to the given PresenceState and assigns it to the PresenceState field.

func (*PresenceInfoRm) SetTrackingAreaList ¶

func (o *PresenceInfoRm) SetTrackingAreaList(v []Tai)

SetTrackingAreaList gets a reference to the given []Tai and assigns it to the TrackingAreaList field.

func (PresenceInfoRm) ToMap ¶

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

type PresenceState ¶

type PresenceState struct {
	String *string
}

PresenceState Possible values are: -IN_AREA: Indicates that the UE is inside or enters the presence reporting area. -OUT_OF_AREA: Indicates that the UE is outside or leaves the presence reporting area -UNKNOW: Indicates it is unknown whether the UE is in the presence reporting area or not -INACTIVE: Indicates that the presence reporting area is inactive in the serving node.

func (*PresenceState) MarshalJSON ¶

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

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

func (*PresenceState) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type ProblemDetails ¶

type ProblemDetails struct {
	// String providing an URI formatted according to RFC 3986.
	Type   *string `json:"type,omitempty"`
	Title  *string `json:"title,omitempty"`
	Status *int32  `json:"status,omitempty"`
	// A human-readable explanation specific to this occurrence of the problem.
	Detail *string `json:"detail,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	Instance *string `json:"instance,omitempty"`
	// A machine-readable application error cause specific to this occurrence of the problem.  This IE should be present and provide application-related error information, if available.
	Cause         *string        `json:"cause,omitempty"`
	InvalidParams []InvalidParam `json:"invalidParams,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures  *string         `json:"supportedFeatures,omitempty"`
	AccessTokenError   *AccessTokenErr `json:"accessTokenError,omitempty"`
	AccessTokenRequest *AccessTokenReq `json:"accessTokenRequest,omitempty"`
	// Fully Qualified Domain Name
	NrfId                *string  `json:"nrfId,omitempty"`
	SupportedApiVersions []string `json:"supportedApiVersions,omitempty"`
}

ProblemDetails Provides additional information in an error response.

func NewProblemDetails ¶

func NewProblemDetails() *ProblemDetails

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

func NewProblemDetailsWithDefaults ¶

func NewProblemDetailsWithDefaults() *ProblemDetails

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

func (*ProblemDetails) GetAccessTokenError ¶

func (o *ProblemDetails) GetAccessTokenError() AccessTokenErr

GetAccessTokenError returns the AccessTokenError field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenErrorOk ¶

func (o *ProblemDetails) GetAccessTokenErrorOk() (*AccessTokenErr, bool)

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

func (*ProblemDetails) GetAccessTokenRequest ¶

func (o *ProblemDetails) GetAccessTokenRequest() AccessTokenReq

GetAccessTokenRequest returns the AccessTokenRequest field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenRequestOk ¶

func (o *ProblemDetails) GetAccessTokenRequestOk() (*AccessTokenReq, bool)

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

func (*ProblemDetails) GetCause ¶

func (o *ProblemDetails) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*ProblemDetails) GetCauseOk ¶

func (o *ProblemDetails) GetCauseOk() (*string, bool)

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

func (*ProblemDetails) GetDetail ¶

func (o *ProblemDetails) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ProblemDetails) GetDetailOk ¶

func (o *ProblemDetails) GetDetailOk() (*string, bool)

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

func (*ProblemDetails) GetInstance ¶

func (o *ProblemDetails) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise.

func (*ProblemDetails) GetInstanceOk ¶

func (o *ProblemDetails) GetInstanceOk() (*string, bool)

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

func (*ProblemDetails) GetInvalidParams ¶

func (o *ProblemDetails) GetInvalidParams() []InvalidParam

GetInvalidParams returns the InvalidParams field value if set, zero value otherwise.

func (*ProblemDetails) GetInvalidParamsOk ¶

func (o *ProblemDetails) GetInvalidParamsOk() ([]InvalidParam, bool)

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

func (*ProblemDetails) GetNrfId ¶

func (o *ProblemDetails) GetNrfId() string

GetNrfId returns the NrfId field value if set, zero value otherwise.

func (*ProblemDetails) GetNrfIdOk ¶

func (o *ProblemDetails) GetNrfIdOk() (*string, bool)

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

func (*ProblemDetails) GetStatus ¶

func (o *ProblemDetails) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ProblemDetails) GetStatusOk ¶

func (o *ProblemDetails) GetStatusOk() (*int32, bool)

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

func (*ProblemDetails) GetSupportedApiVersions ¶

func (o *ProblemDetails) GetSupportedApiVersions() []string

GetSupportedApiVersions returns the SupportedApiVersions field value if set, zero value otherwise.

func (*ProblemDetails) GetSupportedApiVersionsOk ¶

func (o *ProblemDetails) GetSupportedApiVersionsOk() ([]string, bool)

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

func (*ProblemDetails) GetSupportedFeatures ¶

func (o *ProblemDetails) GetSupportedFeatures() string

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

func (*ProblemDetails) GetSupportedFeaturesOk ¶

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

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

func (*ProblemDetails) GetTitle ¶

func (o *ProblemDetails) GetTitle() string

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

func (*ProblemDetails) GetTitleOk ¶

func (o *ProblemDetails) GetTitleOk() (*string, bool)

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

func (*ProblemDetails) GetType ¶

func (o *ProblemDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProblemDetails) GetTypeOk ¶

func (o *ProblemDetails) GetTypeOk() (*string, bool)

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

func (*ProblemDetails) HasAccessTokenError ¶

func (o *ProblemDetails) HasAccessTokenError() bool

HasAccessTokenError returns a boolean if a field has been set.

func (*ProblemDetails) HasAccessTokenRequest ¶

func (o *ProblemDetails) HasAccessTokenRequest() bool

HasAccessTokenRequest returns a boolean if a field has been set.

func (*ProblemDetails) HasCause ¶

func (o *ProblemDetails) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ProblemDetails) HasDetail ¶

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance ¶

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasInvalidParams ¶

func (o *ProblemDetails) HasInvalidParams() bool

HasInvalidParams returns a boolean if a field has been set.

func (*ProblemDetails) HasNrfId ¶

func (o *ProblemDetails) HasNrfId() bool

HasNrfId returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus ¶

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedApiVersions ¶

func (o *ProblemDetails) HasSupportedApiVersions() bool

HasSupportedApiVersions returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures ¶

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle ¶

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType ¶

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON ¶

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

func (*ProblemDetails) SetAccessTokenError ¶

func (o *ProblemDetails) SetAccessTokenError(v AccessTokenErr)

SetAccessTokenError gets a reference to the given AccessTokenErr and assigns it to the AccessTokenError field.

func (*ProblemDetails) SetAccessTokenRequest ¶

func (o *ProblemDetails) SetAccessTokenRequest(v AccessTokenReq)

SetAccessTokenRequest gets a reference to the given AccessTokenReq and assigns it to the AccessTokenRequest field.

func (*ProblemDetails) SetCause ¶

func (o *ProblemDetails) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*ProblemDetails) SetDetail ¶

func (o *ProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ProblemDetails) SetInstance ¶

func (o *ProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given string and assigns it to the Instance field.

func (*ProblemDetails) SetInvalidParams ¶

func (o *ProblemDetails) SetInvalidParams(v []InvalidParam)

SetInvalidParams gets a reference to the given []InvalidParam and assigns it to the InvalidParams field.

func (*ProblemDetails) SetNrfId ¶

func (o *ProblemDetails) SetNrfId(v string)

SetNrfId gets a reference to the given string and assigns it to the NrfId field.

func (*ProblemDetails) SetStatus ¶

func (o *ProblemDetails) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*ProblemDetails) SetSupportedApiVersions ¶

func (o *ProblemDetails) SetSupportedApiVersions(v []string)

SetSupportedApiVersions gets a reference to the given []string and assigns it to the SupportedApiVersions field.

func (*ProblemDetails) SetSupportedFeatures ¶

func (o *ProblemDetails) SetSupportedFeatures(v string)

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

func (*ProblemDetails) SetTitle ¶

func (o *ProblemDetails) SetTitle(v string)

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

func (*ProblemDetails) SetType ¶

func (o *ProblemDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ProblemDetails) ToMap ¶

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

type Property ¶

type Property struct {
	// The name of the property
	Name string `json:"name"`
	// Indicates whether the property is required – true= required –  false(default)= not required.
	Required *bool `json:"required,omitempty"`
	// A regular expression string to be applied to the value of the property.
	Regex *string `json:"regex,omitempty"`
	// The property value. When present, it shall be a valid JSON string.
	Value *string `json:"value,omitempty"`
}

Property If the contentType attribute is set to \"application/json\", then this attribute describes the attributes of the JSON object of the body.

func NewProperty ¶

func NewProperty(name string) *Property

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

func NewPropertyWithDefaults ¶

func NewPropertyWithDefaults() *Property

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

func (*Property) GetName ¶

func (o *Property) GetName() string

GetName returns the Name field value

func (*Property) GetNameOk ¶

func (o *Property) GetNameOk() (*string, bool)

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

func (*Property) GetRegex ¶

func (o *Property) GetRegex() string

GetRegex returns the Regex field value if set, zero value otherwise.

func (*Property) GetRegexOk ¶

func (o *Property) GetRegexOk() (*string, bool)

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

func (*Property) GetRequired ¶

func (o *Property) GetRequired() bool

GetRequired returns the Required field value if set, zero value otherwise.

func (*Property) GetRequiredOk ¶

func (o *Property) GetRequiredOk() (*bool, bool)

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

func (*Property) GetValue ¶

func (o *Property) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*Property) GetValueOk ¶

func (o *Property) GetValueOk() (*string, bool)

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

func (*Property) HasRegex ¶

func (o *Property) HasRegex() bool

HasRegex returns a boolean if a field has been set.

func (*Property) HasRequired ¶

func (o *Property) HasRequired() bool

HasRequired returns a boolean if a field has been set.

func (*Property) HasValue ¶

func (o *Property) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Property) MarshalJSON ¶

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

func (*Property) SetName ¶

func (o *Property) SetName(v string)

SetName sets field value

func (*Property) SetRegex ¶

func (o *Property) SetRegex(v string)

SetRegex gets a reference to the given string and assigns it to the Regex field.

func (*Property) SetRequired ¶

func (o *Property) SetRequired(v bool)

SetRequired gets a reference to the given bool and assigns it to the Required field.

func (*Property) SetValue ¶

func (o *Property) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (Property) ToMap ¶

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

type ProseServiceAuth ¶

type ProseServiceAuth struct {
	ProseDirectDiscoveryAuth     *UeAuth `json:"proseDirectDiscoveryAuth,omitempty"`
	ProseDirectCommunicationAuth *UeAuth `json:"proseDirectCommunicationAuth,omitempty"`
}

ProseServiceAuth Indicates whether the UE is authorized to use ProSe Direct Discovery, ProSe Direct Communication, or both.

func NewProseServiceAuth ¶

func NewProseServiceAuth() *ProseServiceAuth

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

func NewProseServiceAuthWithDefaults ¶

func NewProseServiceAuthWithDefaults() *ProseServiceAuth

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

func (*ProseServiceAuth) GetProseDirectCommunicationAuth ¶

func (o *ProseServiceAuth) GetProseDirectCommunicationAuth() UeAuth

GetProseDirectCommunicationAuth returns the ProseDirectCommunicationAuth field value if set, zero value otherwise.

func (*ProseServiceAuth) GetProseDirectCommunicationAuthOk ¶

func (o *ProseServiceAuth) GetProseDirectCommunicationAuthOk() (*UeAuth, bool)

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

func (*ProseServiceAuth) GetProseDirectDiscoveryAuth ¶

func (o *ProseServiceAuth) GetProseDirectDiscoveryAuth() UeAuth

GetProseDirectDiscoveryAuth returns the ProseDirectDiscoveryAuth field value if set, zero value otherwise.

func (*ProseServiceAuth) GetProseDirectDiscoveryAuthOk ¶

func (o *ProseServiceAuth) GetProseDirectDiscoveryAuthOk() (*UeAuth, bool)

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

func (*ProseServiceAuth) HasProseDirectCommunicationAuth ¶

func (o *ProseServiceAuth) HasProseDirectCommunicationAuth() bool

HasProseDirectCommunicationAuth returns a boolean if a field has been set.

func (*ProseServiceAuth) HasProseDirectDiscoveryAuth ¶

func (o *ProseServiceAuth) HasProseDirectDiscoveryAuth() bool

HasProseDirectDiscoveryAuth returns a boolean if a field has been set.

func (ProseServiceAuth) MarshalJSON ¶

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

func (*ProseServiceAuth) SetProseDirectCommunicationAuth ¶

func (o *ProseServiceAuth) SetProseDirectCommunicationAuth(v UeAuth)

SetProseDirectCommunicationAuth gets a reference to the given UeAuth and assigns it to the ProseDirectCommunicationAuth field.

func (*ProseServiceAuth) SetProseDirectDiscoveryAuth ¶

func (o *ProseServiceAuth) SetProseDirectDiscoveryAuth(v UeAuth)

SetProseDirectDiscoveryAuth gets a reference to the given UeAuth and assigns it to the ProseDirectDiscoveryAuth field.

func (ProseServiceAuth) ToMap ¶

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

type QosFlowUsageReport ¶

type QosFlowUsageReport struct {
	// Unsigned integer identifying a QoS flow, within the range 0 to 63.
	Qfi int32 `json:"qfi"`
	// string with format 'date-time' as defined in OpenAPI.
	StartTimeStamp time.Time `json:"startTimeStamp"`
	// string with format 'date-time' as defined in OpenAPI.
	EndTimeStamp time.Time `json:"endTimeStamp"`
	// string with format 'int64' as defined in OpenAPI.
	DownlinkVolume int64 `json:"downlinkVolume"`
	// string with format 'int64' as defined in OpenAPI.
	UplinkVolume int64 `json:"uplinkVolume"`
}

QosFlowUsageReport Contains QoS flows usage data information.

func NewQosFlowUsageReport ¶

func NewQosFlowUsageReport(qfi int32, startTimeStamp time.Time, endTimeStamp time.Time, downlinkVolume int64, uplinkVolume int64) *QosFlowUsageReport

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

func NewQosFlowUsageReportWithDefaults ¶

func NewQosFlowUsageReportWithDefaults() *QosFlowUsageReport

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

func (*QosFlowUsageReport) GetDownlinkVolume ¶

func (o *QosFlowUsageReport) GetDownlinkVolume() int64

GetDownlinkVolume returns the DownlinkVolume field value

func (*QosFlowUsageReport) GetDownlinkVolumeOk ¶

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

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

func (*QosFlowUsageReport) GetEndTimeStamp ¶

func (o *QosFlowUsageReport) GetEndTimeStamp() time.Time

GetEndTimeStamp returns the EndTimeStamp field value

func (*QosFlowUsageReport) GetEndTimeStampOk ¶

func (o *QosFlowUsageReport) GetEndTimeStampOk() (*time.Time, bool)

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

func (*QosFlowUsageReport) GetQfi ¶

func (o *QosFlowUsageReport) GetQfi() int32

GetQfi returns the Qfi field value

func (*QosFlowUsageReport) GetQfiOk ¶

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

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

func (*QosFlowUsageReport) GetStartTimeStamp ¶

func (o *QosFlowUsageReport) GetStartTimeStamp() time.Time

GetStartTimeStamp returns the StartTimeStamp field value

func (*QosFlowUsageReport) GetStartTimeStampOk ¶

func (o *QosFlowUsageReport) GetStartTimeStampOk() (*time.Time, bool)

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

func (*QosFlowUsageReport) GetUplinkVolume ¶

func (o *QosFlowUsageReport) GetUplinkVolume() int64

GetUplinkVolume returns the UplinkVolume field value

func (*QosFlowUsageReport) GetUplinkVolumeOk ¶

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

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

func (QosFlowUsageReport) MarshalJSON ¶

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

func (*QosFlowUsageReport) SetDownlinkVolume ¶

func (o *QosFlowUsageReport) SetDownlinkVolume(v int64)

SetDownlinkVolume sets field value

func (*QosFlowUsageReport) SetEndTimeStamp ¶

func (o *QosFlowUsageReport) SetEndTimeStamp(v time.Time)

SetEndTimeStamp sets field value

func (*QosFlowUsageReport) SetQfi ¶

func (o *QosFlowUsageReport) SetQfi(v int32)

SetQfi sets field value

func (*QosFlowUsageReport) SetStartTimeStamp ¶

func (o *QosFlowUsageReport) SetStartTimeStamp(v time.Time)

SetStartTimeStamp sets field value

func (*QosFlowUsageReport) SetUplinkVolume ¶

func (o *QosFlowUsageReport) SetUplinkVolume(v int64)

SetUplinkVolume sets field value

func (QosFlowUsageReport) ToMap ¶

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

type QosResourceType ¶

type QosResourceType struct {
	String *string
}

QosResourceType The enumeration QosResourceType indicates whether a QoS Flow is non-GBR, delay critical GBR, or non-delay critical GBR (see clauses 5.7.3.4 and 5.7.3.5 of 3GPP TS 23.501). It shall comply with the provisions defined in table 5.5.3.6-1.

func (*QosResourceType) MarshalJSON ¶

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

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

func (*QosResourceType) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type QosResourceTypeRm ¶

type QosResourceTypeRm struct {
	NullValue       *NullValue
	QosResourceType *QosResourceType
}

QosResourceTypeRm This enumeration is defined in the same way as the 'QosResourceType' enumeration, but with the OpenAPI 'nullable: true' property. \"

func (*QosResourceTypeRm) MarshalJSON ¶

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

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

func (*QosResourceTypeRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type RatType ¶

type RatType struct {
	String *string
}

RatType Indicates the radio access used.

func (*RatType) MarshalJSON ¶

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

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

func (*RatType) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type RatTypeRm ¶

type RatTypeRm struct {
	NullValue *NullValue
	RatType   *RatType
}

RatTypeRm Provides information about the radio access but with the OpenAPI 'nullable: true' property.

func (*RatTypeRm) MarshalJSON ¶

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

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

func (*RatTypeRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type RedirectResponse ¶

type RedirectResponse struct {
	Cause *string `json:"cause,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetScp *string `json:"targetScp,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetSepp *string `json:"targetSepp,omitempty"`
}

RedirectResponse The response shall include a Location header field containing a different URI (pointing to a different URI of an other service instance), or the same URI if a request is redirected to the same target resource via a different SCP.

func NewRedirectResponse ¶

func NewRedirectResponse() *RedirectResponse

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

func NewRedirectResponseWithDefaults ¶

func NewRedirectResponseWithDefaults() *RedirectResponse

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

func (*RedirectResponse) GetCause ¶

func (o *RedirectResponse) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*RedirectResponse) GetCauseOk ¶

func (o *RedirectResponse) GetCauseOk() (*string, bool)

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

func (*RedirectResponse) GetTargetScp ¶

func (o *RedirectResponse) GetTargetScp() string

GetTargetScp returns the TargetScp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetScpOk ¶

func (o *RedirectResponse) GetTargetScpOk() (*string, bool)

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

func (*RedirectResponse) GetTargetSepp ¶

func (o *RedirectResponse) GetTargetSepp() string

GetTargetSepp returns the TargetSepp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetSeppOk ¶

func (o *RedirectResponse) GetTargetSeppOk() (*string, bool)

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

func (*RedirectResponse) HasCause ¶

func (o *RedirectResponse) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetScp ¶

func (o *RedirectResponse) HasTargetScp() bool

HasTargetScp returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetSepp ¶

func (o *RedirectResponse) HasTargetSepp() bool

HasTargetSepp returns a boolean if a field has been set.

func (RedirectResponse) MarshalJSON ¶

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

func (*RedirectResponse) SetCause ¶

func (o *RedirectResponse) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*RedirectResponse) SetTargetScp ¶

func (o *RedirectResponse) SetTargetScp(v string)

SetTargetScp gets a reference to the given string and assigns it to the TargetScp field.

func (*RedirectResponse) SetTargetSepp ¶

func (o *RedirectResponse) SetTargetSepp(v string)

SetTargetSepp gets a reference to the given string and assigns it to the TargetSepp field.

func (RedirectResponse) ToMap ¶

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

type RefToBinaryData ¶

type RefToBinaryData struct {
	// This IE shall contain the value of the Content-ID header of the referenced binary body part.
	ContentId string `json:"contentId"`
}

RefToBinaryData This parameter provides information about the referenced binary body data.

func NewRefToBinaryData ¶

func NewRefToBinaryData(contentId string) *RefToBinaryData

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

func NewRefToBinaryDataWithDefaults ¶

func NewRefToBinaryDataWithDefaults() *RefToBinaryData

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

func (*RefToBinaryData) GetContentId ¶

func (o *RefToBinaryData) GetContentId() string

GetContentId returns the ContentId field value

func (*RefToBinaryData) GetContentIdOk ¶

func (o *RefToBinaryData) GetContentIdOk() (*string, bool)

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

func (RefToBinaryData) MarshalJSON ¶

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

func (*RefToBinaryData) SetContentId ¶

func (o *RefToBinaryData) SetContentId(v string)

SetContentId sets field value

func (RefToBinaryData) ToMap ¶

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

type RefToBinaryDataRm ¶

type RefToBinaryDataRm struct {
	NullValue       *NullValue
	RefToBinaryData *RefToBinaryData
}

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

func (*RefToBinaryDataRm) MarshalJSON ¶

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

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

func (*RefToBinaryDataRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type ReflectiveQoSAttribute ¶

type ReflectiveQoSAttribute struct {
	String *string
}

ReflectiveQoSAttribute The enumeration ReflectiveQosAttribute indicates whether certain traffic of the QoS flow may be subject to Reflective QoS (see clause 5.7.2.3 of 3GPP TS 23.501). It shall comply with the provisions defined in table 5.5.3.3-1.

func (*ReflectiveQoSAttribute) MarshalJSON ¶

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

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

func (*ReflectiveQoSAttribute) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type ReflectiveQoSAttributeRm ¶

type ReflectiveQoSAttributeRm struct {
	NullValue              *NullValue
	ReflectiveQoSAttribute *ReflectiveQoSAttribute
}

ReflectiveQoSAttributeRm This enumeration is defined in the same way as the 'ReflectiveQosAttribute' enumeration, but with the OpenAPI 'nullable: true' property. \"

func (*ReflectiveQoSAttributeRm) MarshalJSON ¶

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

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

func (*ReflectiveQoSAttributeRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type RelativeCartesianLocation ¶

type RelativeCartesianLocation struct {
	// string with format 'float' as defined in OpenAPI.
	X float32 `json:"x"`
	// string with format 'float' as defined in OpenAPI.
	Y float32 `json:"y"`
	// string with format 'float' as defined in OpenAPI.
	Z *float32 `json:"z,omitempty"`
}

RelativeCartesianLocation Relative Cartesian Location

func NewRelativeCartesianLocation ¶

func NewRelativeCartesianLocation(x float32, y float32) *RelativeCartesianLocation

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

func NewRelativeCartesianLocationWithDefaults ¶

func NewRelativeCartesianLocationWithDefaults() *RelativeCartesianLocation

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

func (*RelativeCartesianLocation) GetX ¶

GetX returns the X field value

func (*RelativeCartesianLocation) GetXOk ¶

func (o *RelativeCartesianLocation) GetXOk() (*float32, bool)

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

func (*RelativeCartesianLocation) GetY ¶

GetY returns the Y field value

func (*RelativeCartesianLocation) GetYOk ¶

func (o *RelativeCartesianLocation) GetYOk() (*float32, bool)

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

func (*RelativeCartesianLocation) GetZ ¶

GetZ returns the Z field value if set, zero value otherwise.

func (*RelativeCartesianLocation) GetZOk ¶

func (o *RelativeCartesianLocation) GetZOk() (*float32, bool)

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

func (*RelativeCartesianLocation) HasZ ¶

func (o *RelativeCartesianLocation) HasZ() bool

HasZ returns a boolean if a field has been set.

func (RelativeCartesianLocation) MarshalJSON ¶

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

func (*RelativeCartesianLocation) SetX ¶

SetX sets field value

func (*RelativeCartesianLocation) SetY ¶

SetY sets field value

func (*RelativeCartesianLocation) SetZ ¶

SetZ gets a reference to the given float32 and assigns it to the Z field.

func (RelativeCartesianLocation) ToMap ¶

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

type ReportAmountMdt ¶

type ReportAmountMdt struct {
	String *string
}

ReportAmountMdt The enumeration ReportAmountMdt defines Report Amount 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.10-1.

func (*ReportAmountMdt) MarshalJSON ¶

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

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

func (*ReportAmountMdt) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type ReportIntervalMdt ¶

type ReportIntervalMdt struct {
	String *string
}

ReportIntervalMdt The enumeration ReportIntervalMdt defines Report 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.9-1.

func (*ReportIntervalMdt) MarshalJSON ¶

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

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

func (*ReportIntervalMdt) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type ReportIntervalNrMdt ¶

type ReportIntervalNrMdt struct {
	String *string
}

ReportIntervalNrMdt The enumeration ReportIntervalNrMdt defines Report 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.17-1.

func (*ReportIntervalNrMdt) MarshalJSON ¶

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

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

func (*ReportIntervalNrMdt) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type ReportItem ¶

type ReportItem struct {
	// Contains a JSON pointer value (as defined in IETF RFC 6901) that references a  location of a resource to which the modification is subject.
	Path string `json:"path"`
	// A human-readable reason providing details on the reported modification failure.  The reason string should identify the operation that failed using the operation's  array index to assist in correlation of the invalid parameter with the failed  operation, e.g. \"Replacement value invalid for attribute (failed operation index= 4)\".
	Reason *string `json:"reason,omitempty"`
}

ReportItem indicates performed modivications.

func NewReportItem ¶

func NewReportItem(path string) *ReportItem

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

func NewReportItemWithDefaults ¶

func NewReportItemWithDefaults() *ReportItem

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

func (*ReportItem) GetPath ¶

func (o *ReportItem) GetPath() string

GetPath returns the Path field value

func (*ReportItem) GetPathOk ¶

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

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

func (*ReportItem) GetReason ¶

func (o *ReportItem) GetReason() string

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

func (*ReportItem) GetReasonOk ¶

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

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

func (*ReportItem) HasReason ¶

func (o *ReportItem) HasReason() bool

HasReason returns a boolean if a field has been set.

func (ReportItem) MarshalJSON ¶

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

func (*ReportItem) SetPath ¶

func (o *ReportItem) SetPath(v string)

SetPath sets field value

func (*ReportItem) SetReason ¶

func (o *ReportItem) SetReason(v string)

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

func (ReportItem) ToMap ¶

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

type ReportTypeMdt ¶

type ReportTypeMdt struct {
	String *string
}

ReportTypeMdt The enumeration ReportTypeMdt defines Report Type 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.4-1.

func (*ReportTypeMdt) MarshalJSON ¶

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

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

func (*ReportTypeMdt) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type ReportingTrigger ¶

type ReportingTrigger struct {
	String *string
}

ReportingTrigger The enumeration ReportingTrigger defines Reporting Triggers for MDT in the trace. See 3GPP TS 32.42] for further description of the values. It shall comply with the provisions defined in table 5.6.3.8-1.

func (*ReportingTrigger) MarshalJSON ¶

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

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

func (*ReportingTrigger) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type ReservPriority ¶

type ReservPriority struct {
	String *string
}

ReservPriority Indicates the reservation priority.

func (*ReservPriority) MarshalJSON ¶

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

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

func (*ReservPriority) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type RestrictionType ¶

type RestrictionType struct {
	String *string
}

RestrictionType It contains the restriction type ALLOWED_AREAS or NOT_ALLOWED_AREAS.

func (*RestrictionType) MarshalJSON ¶

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

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

func (*RestrictionType) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type RestrictionTypeRm ¶

type RestrictionTypeRm struct {
	NullValue       *NullValue
	RestrictionType *RestrictionType
}

RestrictionTypeRm It contains the restriction type ALLOWED_AREAS or NOT_ALLOWED_AREAS but with the OpenAPI 'nullable: true' property.

func (*RestrictionTypeRm) MarshalJSON ¶

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

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

func (*RestrictionTypeRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type RgWirelineCharacteristicsRm ¶

type RgWirelineCharacteristicsRm struct {
	NullValue *NullValue
	String    *string
}

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

func (*RgWirelineCharacteristicsRm) MarshalJSON ¶

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

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

func (*RgWirelineCharacteristicsRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type RoamingOdb ¶

type RoamingOdb struct {
	String *string
}

RoamingOdb The enumeration RoamingOdb defines the Barring of Roaming as. See 3GPP TS 23.015 for further description. It shall comply with the provisions defined in table 5.7.3.1-1.

func (*RoamingOdb) MarshalJSON ¶

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

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

func (*RoamingOdb) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type RoamingRestrictions ¶

type RoamingRestrictions struct {
	AccessAllowed *bool `json:"accessAllowed,omitempty"`
}

RoamingRestrictions Indicates if access is allowed to a given serving network, e.g. a PLMN (MCC, MNC) or an SNPN (MCC, MNC, NID).

func NewRoamingRestrictions ¶

func NewRoamingRestrictions() *RoamingRestrictions

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

func NewRoamingRestrictionsWithDefaults ¶

func NewRoamingRestrictionsWithDefaults() *RoamingRestrictions

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

func (*RoamingRestrictions) GetAccessAllowed ¶

func (o *RoamingRestrictions) GetAccessAllowed() bool

GetAccessAllowed returns the AccessAllowed field value if set, zero value otherwise.

func (*RoamingRestrictions) GetAccessAllowedOk ¶

func (o *RoamingRestrictions) GetAccessAllowedOk() (*bool, bool)

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

func (*RoamingRestrictions) HasAccessAllowed ¶

func (o *RoamingRestrictions) HasAccessAllowed() bool

HasAccessAllowed returns a boolean if a field has been set.

func (RoamingRestrictions) MarshalJSON ¶

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

func (*RoamingRestrictions) SetAccessAllowed ¶

func (o *RoamingRestrictions) SetAccessAllowed(v bool)

SetAccessAllowed gets a reference to the given bool and assigns it to the AccessAllowed field.

func (RoamingRestrictions) ToMap ¶

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

type RouteInformation ¶

type RouteInformation struct {
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	Ipv4Addr *string   `json:"ipv4Addr,omitempty"`
	Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber int32 `json:"portNumber"`
}

RouteInformation At least one of the \"ipv4Addr\" attribute and the \"ipv6Addr\" attribute shall be included in the \"RouteInformation\" data type.

func NewRouteInformation ¶

func NewRouteInformation(portNumber int32) *RouteInformation

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

func NewRouteInformationWithDefaults ¶

func NewRouteInformationWithDefaults() *RouteInformation

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

func (*RouteInformation) GetIpv4Addr ¶

func (o *RouteInformation) GetIpv4Addr() string

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

func (*RouteInformation) GetIpv4AddrOk ¶

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

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

func (*RouteInformation) GetIpv6Addr ¶

func (o *RouteInformation) GetIpv6Addr() Ipv6Addr

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

func (*RouteInformation) GetIpv6AddrOk ¶

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

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

func (*RouteInformation) GetPortNumber ¶

func (o *RouteInformation) GetPortNumber() int32

GetPortNumber returns the PortNumber field value

func (*RouteInformation) GetPortNumberOk ¶

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

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

func (*RouteInformation) HasIpv4Addr ¶

func (o *RouteInformation) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*RouteInformation) HasIpv6Addr ¶

func (o *RouteInformation) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (RouteInformation) MarshalJSON ¶

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

func (*RouteInformation) SetIpv4Addr ¶

func (o *RouteInformation) SetIpv4Addr(v string)

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

func (*RouteInformation) SetIpv6Addr ¶

func (o *RouteInformation) SetIpv6Addr(v Ipv6Addr)

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

func (*RouteInformation) SetPortNumber ¶

func (o *RouteInformation) SetPortNumber(v int32)

SetPortNumber sets field value

func (RouteInformation) ToMap ¶

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

type RouteToLocation ¶

type RouteToLocation struct {
	Interface *interface{}
}

RouteToLocation At least one of the \"routeInfo\" attribute and the \"routeProfId\" attribute shall be included in the \"RouteToLocation\" data type.

func (*RouteToLocation) MarshalJSON ¶

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

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

func (*RouteToLocation) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type RoutingAreaId ¶

type RoutingAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code
	Lac string `json:"lac"`
	// Routing Area Code
	Rac string `json:"rac"`
}

RoutingAreaId Contains a Routing Area Identification as defined in 3GPP TS 23.003, clause 4.2.

func NewRoutingAreaId ¶

func NewRoutingAreaId(plmnId PlmnId, lac string, rac string) *RoutingAreaId

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

func NewRoutingAreaIdWithDefaults ¶

func NewRoutingAreaIdWithDefaults() *RoutingAreaId

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

func (*RoutingAreaId) GetLac ¶

func (o *RoutingAreaId) GetLac() string

GetLac returns the Lac field value

func (*RoutingAreaId) GetLacOk ¶

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

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

func (*RoutingAreaId) GetPlmnId ¶

func (o *RoutingAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*RoutingAreaId) GetPlmnIdOk ¶

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

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

func (*RoutingAreaId) GetRac ¶

func (o *RoutingAreaId) GetRac() string

GetRac returns the Rac field value

func (*RoutingAreaId) GetRacOk ¶

func (o *RoutingAreaId) GetRacOk() (*string, bool)

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

func (RoutingAreaId) MarshalJSON ¶

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

func (*RoutingAreaId) SetLac ¶

func (o *RoutingAreaId) SetLac(v string)

SetLac sets field value

func (*RoutingAreaId) SetPlmnId ¶

func (o *RoutingAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*RoutingAreaId) SetRac ¶

func (o *RoutingAreaId) SetRac(v string)

SetRac sets field value

func (RoutingAreaId) ToMap ¶

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

type SACEventStatus ¶

type SACEventStatus struct {
	ReachedNumUes     *SACInfo `json:"reachedNumUes,omitempty"`
	ReachedNumPduSess *SACInfo `json:"reachedNumPduSess,omitempty"`
}

SACEventStatus Contains the network slice status information in terms of the current number of UEs registered with a network slice, the current number of PDU Sessions established on a network slice or both.

func NewSACEventStatus ¶

func NewSACEventStatus() *SACEventStatus

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

func NewSACEventStatusWithDefaults ¶

func NewSACEventStatusWithDefaults() *SACEventStatus

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

func (*SACEventStatus) GetReachedNumPduSess ¶

func (o *SACEventStatus) GetReachedNumPduSess() SACInfo

GetReachedNumPduSess returns the ReachedNumPduSess field value if set, zero value otherwise.

func (*SACEventStatus) GetReachedNumPduSessOk ¶

func (o *SACEventStatus) GetReachedNumPduSessOk() (*SACInfo, bool)

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

func (*SACEventStatus) GetReachedNumUes ¶

func (o *SACEventStatus) GetReachedNumUes() SACInfo

GetReachedNumUes returns the ReachedNumUes field value if set, zero value otherwise.

func (*SACEventStatus) GetReachedNumUesOk ¶

func (o *SACEventStatus) GetReachedNumUesOk() (*SACInfo, bool)

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

func (*SACEventStatus) HasReachedNumPduSess ¶

func (o *SACEventStatus) HasReachedNumPduSess() bool

HasReachedNumPduSess returns a boolean if a field has been set.

func (*SACEventStatus) HasReachedNumUes ¶

func (o *SACEventStatus) HasReachedNumUes() bool

HasReachedNumUes returns a boolean if a field has been set.

func (SACEventStatus) MarshalJSON ¶

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

func (*SACEventStatus) SetReachedNumPduSess ¶

func (o *SACEventStatus) SetReachedNumPduSess(v SACInfo)

SetReachedNumPduSess gets a reference to the given SACInfo and assigns it to the ReachedNumPduSess field.

func (*SACEventStatus) SetReachedNumUes ¶

func (o *SACEventStatus) SetReachedNumUes(v SACInfo)

SetReachedNumUes gets a reference to the given SACInfo and assigns it to the ReachedNumUes field.

func (SACEventStatus) ToMap ¶

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

type SACInfo ¶

type SACInfo struct {
	NumericValNumUes     *int32 `json:"numericValNumUes,omitempty"`
	NumericValNumPduSess *int32 `json:"numericValNumPduSess,omitempty"`
	PercValueNumUes      *int32 `json:"percValueNumUes,omitempty"`
	PercValueNumPduSess  *int32 `json:"percValueNumPduSess,omitempty"`
}

SACInfo Represents threshold(s) to control the triggering of network slice reporting notifications or the information contained in the network slice reporting notification.

func NewSACInfo ¶

func NewSACInfo() *SACInfo

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

func NewSACInfoWithDefaults ¶

func NewSACInfoWithDefaults() *SACInfo

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

func (*SACInfo) GetNumericValNumPduSess ¶

func (o *SACInfo) GetNumericValNumPduSess() int32

GetNumericValNumPduSess returns the NumericValNumPduSess field value if set, zero value otherwise.

func (*SACInfo) GetNumericValNumPduSessOk ¶

func (o *SACInfo) GetNumericValNumPduSessOk() (*int32, bool)

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

func (*SACInfo) GetNumericValNumUes ¶

func (o *SACInfo) GetNumericValNumUes() int32

GetNumericValNumUes returns the NumericValNumUes field value if set, zero value otherwise.

func (*SACInfo) GetNumericValNumUesOk ¶

func (o *SACInfo) GetNumericValNumUesOk() (*int32, bool)

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

func (*SACInfo) GetPercValueNumPduSess ¶

func (o *SACInfo) GetPercValueNumPduSess() int32

GetPercValueNumPduSess returns the PercValueNumPduSess field value if set, zero value otherwise.

func (*SACInfo) GetPercValueNumPduSessOk ¶

func (o *SACInfo) GetPercValueNumPduSessOk() (*int32, bool)

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

func (*SACInfo) GetPercValueNumUes ¶

func (o *SACInfo) GetPercValueNumUes() int32

GetPercValueNumUes returns the PercValueNumUes field value if set, zero value otherwise.

func (*SACInfo) GetPercValueNumUesOk ¶

func (o *SACInfo) GetPercValueNumUesOk() (*int32, bool)

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

func (*SACInfo) HasNumericValNumPduSess ¶

func (o *SACInfo) HasNumericValNumPduSess() bool

HasNumericValNumPduSess returns a boolean if a field has been set.

func (*SACInfo) HasNumericValNumUes ¶

func (o *SACInfo) HasNumericValNumUes() bool

HasNumericValNumUes returns a boolean if a field has been set.

func (*SACInfo) HasPercValueNumPduSess ¶

func (o *SACInfo) HasPercValueNumPduSess() bool

HasPercValueNumPduSess returns a boolean if a field has been set.

func (*SACInfo) HasPercValueNumUes ¶

func (o *SACInfo) HasPercValueNumUes() bool

HasPercValueNumUes returns a boolean if a field has been set.

func (SACInfo) MarshalJSON ¶

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

func (*SACInfo) SetNumericValNumPduSess ¶

func (o *SACInfo) SetNumericValNumPduSess(v int32)

SetNumericValNumPduSess gets a reference to the given int32 and assigns it to the NumericValNumPduSess field.

func (*SACInfo) SetNumericValNumUes ¶

func (o *SACInfo) SetNumericValNumUes(v int32)

SetNumericValNumUes gets a reference to the given int32 and assigns it to the NumericValNumUes field.

func (*SACInfo) SetPercValueNumPduSess ¶

func (o *SACInfo) SetPercValueNumPduSess(v int32)

SetPercValueNumPduSess gets a reference to the given int32 and assigns it to the PercValueNumPduSess field.

func (*SACInfo) SetPercValueNumUes ¶

func (o *SACInfo) SetPercValueNumUes(v int32)

SetPercValueNumUes gets a reference to the given int32 and assigns it to the PercValueNumUes field.

func (SACInfo) ToMap ¶

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

type SatelliteBackhaulCategory ¶

type SatelliteBackhaulCategory struct {
	String *string
}

SatelliteBackhaulCategory Indicates the satellite backhaul used.

func (*SatelliteBackhaulCategory) MarshalJSON ¶

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

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

func (*SatelliteBackhaulCategory) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type SatelliteBackhaulCategoryRm ¶

type SatelliteBackhaulCategoryRm struct {
	NullValue                 *NullValue
	SatelliteBackhaulCategory *SatelliteBackhaulCategory
}

SatelliteBackhaulCategoryRm Provides information about the satellite backhaul but with the OpenAPI 'nullable: true' property.

func (*SatelliteBackhaulCategoryRm) MarshalJSON ¶

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

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

func (*SatelliteBackhaulCategoryRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type ScheduledCommunicationTime ¶

type ScheduledCommunicationTime struct {
	// Identifies the day(s) of the week. If absent, it indicates every day of the week.
	DaysOfWeek []int32 `json:"daysOfWeek,omitempty"`
	// String with format partial-time or full-time as defined in clause 5.6 of IETF RFC 3339. Examples, 20:15:00, 20:15:00-08:00 (for 8 hours behind UTC).
	TimeOfDayStart *string `json:"timeOfDayStart,omitempty"`
	// String with format partial-time or full-time as defined in clause 5.6 of IETF RFC 3339. Examples, 20:15:00, 20:15:00-08:00 (for 8 hours behind UTC).
	TimeOfDayEnd *string `json:"timeOfDayEnd,omitempty"`
}

ScheduledCommunicationTime Identifies time and day of the week when the UE is available for communication.

func NewScheduledCommunicationTime ¶

func NewScheduledCommunicationTime() *ScheduledCommunicationTime

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

func NewScheduledCommunicationTimeWithDefaults ¶

func NewScheduledCommunicationTimeWithDefaults() *ScheduledCommunicationTime

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

func (*ScheduledCommunicationTime) GetDaysOfWeek ¶

func (o *ScheduledCommunicationTime) GetDaysOfWeek() []int32

GetDaysOfWeek returns the DaysOfWeek field value if set, zero value otherwise.

func (*ScheduledCommunicationTime) GetDaysOfWeekOk ¶

func (o *ScheduledCommunicationTime) GetDaysOfWeekOk() ([]int32, bool)

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

func (*ScheduledCommunicationTime) GetTimeOfDayEnd ¶

func (o *ScheduledCommunicationTime) GetTimeOfDayEnd() string

GetTimeOfDayEnd returns the TimeOfDayEnd field value if set, zero value otherwise.

func (*ScheduledCommunicationTime) GetTimeOfDayEndOk ¶

func (o *ScheduledCommunicationTime) GetTimeOfDayEndOk() (*string, bool)

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

func (*ScheduledCommunicationTime) GetTimeOfDayStart ¶

func (o *ScheduledCommunicationTime) GetTimeOfDayStart() string

GetTimeOfDayStart returns the TimeOfDayStart field value if set, zero value otherwise.

func (*ScheduledCommunicationTime) GetTimeOfDayStartOk ¶

func (o *ScheduledCommunicationTime) GetTimeOfDayStartOk() (*string, bool)

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

func (*ScheduledCommunicationTime) HasDaysOfWeek ¶

func (o *ScheduledCommunicationTime) HasDaysOfWeek() bool

HasDaysOfWeek returns a boolean if a field has been set.

func (*ScheduledCommunicationTime) HasTimeOfDayEnd ¶

func (o *ScheduledCommunicationTime) HasTimeOfDayEnd() bool

HasTimeOfDayEnd returns a boolean if a field has been set.

func (*ScheduledCommunicationTime) HasTimeOfDayStart ¶

func (o *ScheduledCommunicationTime) HasTimeOfDayStart() bool

HasTimeOfDayStart returns a boolean if a field has been set.

func (ScheduledCommunicationTime) MarshalJSON ¶

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

func (*ScheduledCommunicationTime) SetDaysOfWeek ¶

func (o *ScheduledCommunicationTime) SetDaysOfWeek(v []int32)

SetDaysOfWeek gets a reference to the given []int32 and assigns it to the DaysOfWeek field.

func (*ScheduledCommunicationTime) SetTimeOfDayEnd ¶

func (o *ScheduledCommunicationTime) SetTimeOfDayEnd(v string)

SetTimeOfDayEnd gets a reference to the given string and assigns it to the TimeOfDayEnd field.

func (*ScheduledCommunicationTime) SetTimeOfDayStart ¶

func (o *ScheduledCommunicationTime) SetTimeOfDayStart(v string)

SetTimeOfDayStart gets a reference to the given string and assigns it to the TimeOfDayStart field.

func (ScheduledCommunicationTime) ToMap ¶

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

type ScheduledCommunicationTimeRm ¶

type ScheduledCommunicationTimeRm struct {
	NullValue                  *NullValue
	ScheduledCommunicationTime *ScheduledCommunicationTime
}

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

func (*ScheduledCommunicationTimeRm) MarshalJSON ¶

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

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

func (*ScheduledCommunicationTimeRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type ScheduledCommunicationType ¶

type ScheduledCommunicationType struct {
	String *string
}

ScheduledCommunicationType Possible values are: -DOWNLINK_ONLY: Downlink only -UPLINK_ONLY: Uplink only -BIDIRECTIONA: Bi-directional

func (*ScheduledCommunicationType) MarshalJSON ¶

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

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

func (*ScheduledCommunicationType) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type ScheduledCommunicationTypeRm ¶

type ScheduledCommunicationTypeRm struct {
	NullValue                  *NullValue
	ScheduledCommunicationType *ScheduledCommunicationType
}

ScheduledCommunicationTypeRm This enumeration is defined in the same way as the 'ScheduledCommunicationTypen' enumeration, but with the OpenAPI 'nullable: true' property.\"

func (*ScheduledCommunicationTypeRm) MarshalJSON ¶

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

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

func (*ScheduledCommunicationTypeRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type SdRange ¶

type SdRange struct {
	// First value identifying the start of an SD range. This string shall be formatted as specified for the sd attribute of the Snssai data type in clause 5.4.4.2.
	Start *string `json:"start,omitempty"`
	// Last value identifying the end of an SD range. This string shall be formatted as specified for the sd attribute of the Snssai data type in clause 5.4.4.2.
	End *string `json:"end,omitempty"`
}

SdRange A range of SDs (Slice Differentiators)

func NewSdRange ¶

func NewSdRange() *SdRange

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

func NewSdRangeWithDefaults ¶

func NewSdRangeWithDefaults() *SdRange

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

func (*SdRange) GetEnd ¶

func (o *SdRange) GetEnd() string

GetEnd returns the End field value if set, zero value otherwise.

func (*SdRange) GetEndOk ¶

func (o *SdRange) GetEndOk() (*string, bool)

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

func (*SdRange) GetStart ¶

func (o *SdRange) GetStart() string

GetStart returns the Start field value if set, zero value otherwise.

func (*SdRange) GetStartOk ¶

func (o *SdRange) GetStartOk() (*string, bool)

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

func (*SdRange) HasEnd ¶

func (o *SdRange) HasEnd() bool

HasEnd returns a boolean if a field has been set.

func (*SdRange) HasStart ¶

func (o *SdRange) HasStart() bool

HasStart returns a boolean if a field has been set.

func (SdRange) MarshalJSON ¶

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

func (*SdRange) SetEnd ¶

func (o *SdRange) SetEnd(v string)

SetEnd gets a reference to the given string and assigns it to the End field.

func (*SdRange) SetStart ¶

func (o *SdRange) SetStart(v string)

SetStart gets a reference to the given string and assigns it to the Start field.

func (SdRange) ToMap ¶

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

type SecondaryRatUsageInfo ¶

type SecondaryRatUsageInfo struct {
	SecondaryRatType    RatType              `json:"secondaryRatType"`
	QosFlowsUsageData   []QosFlowUsageReport `json:"qosFlowsUsageData,omitempty"`
	PduSessionUsageData []VolumeTimedReport  `json:"pduSessionUsageData,omitempty"`
}

SecondaryRatUsageInfo Secondary RAT Usage Information to report usage data for a secondary RAT for QoS flows and/or the whole PDU session.

func NewSecondaryRatUsageInfo ¶

func NewSecondaryRatUsageInfo(secondaryRatType RatType) *SecondaryRatUsageInfo

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

func NewSecondaryRatUsageInfoWithDefaults ¶

func NewSecondaryRatUsageInfoWithDefaults() *SecondaryRatUsageInfo

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

func (*SecondaryRatUsageInfo) GetPduSessionUsageData ¶

func (o *SecondaryRatUsageInfo) GetPduSessionUsageData() []VolumeTimedReport

GetPduSessionUsageData returns the PduSessionUsageData field value if set, zero value otherwise.

func (*SecondaryRatUsageInfo) GetPduSessionUsageDataOk ¶

func (o *SecondaryRatUsageInfo) GetPduSessionUsageDataOk() ([]VolumeTimedReport, bool)

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

func (*SecondaryRatUsageInfo) GetQosFlowsUsageData ¶

func (o *SecondaryRatUsageInfo) GetQosFlowsUsageData() []QosFlowUsageReport

GetQosFlowsUsageData returns the QosFlowsUsageData field value if set, zero value otherwise.

func (*SecondaryRatUsageInfo) GetQosFlowsUsageDataOk ¶

func (o *SecondaryRatUsageInfo) GetQosFlowsUsageDataOk() ([]QosFlowUsageReport, bool)

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

func (*SecondaryRatUsageInfo) GetSecondaryRatType ¶

func (o *SecondaryRatUsageInfo) GetSecondaryRatType() RatType

GetSecondaryRatType returns the SecondaryRatType field value

func (*SecondaryRatUsageInfo) GetSecondaryRatTypeOk ¶

func (o *SecondaryRatUsageInfo) GetSecondaryRatTypeOk() (*RatType, bool)

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

func (*SecondaryRatUsageInfo) HasPduSessionUsageData ¶

func (o *SecondaryRatUsageInfo) HasPduSessionUsageData() bool

HasPduSessionUsageData returns a boolean if a field has been set.

func (*SecondaryRatUsageInfo) HasQosFlowsUsageData ¶

func (o *SecondaryRatUsageInfo) HasQosFlowsUsageData() bool

HasQosFlowsUsageData returns a boolean if a field has been set.

func (SecondaryRatUsageInfo) MarshalJSON ¶

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

func (*SecondaryRatUsageInfo) SetPduSessionUsageData ¶

func (o *SecondaryRatUsageInfo) SetPduSessionUsageData(v []VolumeTimedReport)

SetPduSessionUsageData gets a reference to the given []VolumeTimedReport and assigns it to the PduSessionUsageData field.

func (*SecondaryRatUsageInfo) SetQosFlowsUsageData ¶

func (o *SecondaryRatUsageInfo) SetQosFlowsUsageData(v []QosFlowUsageReport)

SetQosFlowsUsageData gets a reference to the given []QosFlowUsageReport and assigns it to the QosFlowsUsageData field.

func (*SecondaryRatUsageInfo) SetSecondaryRatType ¶

func (o *SecondaryRatUsageInfo) SetSecondaryRatType(v RatType)

SetSecondaryRatType sets field value

func (SecondaryRatUsageInfo) ToMap ¶

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

type SecondaryRatUsageReport ¶

type SecondaryRatUsageReport struct {
	SecondaryRatType  RatType              `json:"secondaryRatType"`
	QosFlowsUsageData []QosFlowUsageReport `json:"qosFlowsUsageData"`
}

SecondaryRatUsageReport Secondary RAT Usage Report to report usage data for a secondary RAT for QoS flows.

func NewSecondaryRatUsageReport ¶

func NewSecondaryRatUsageReport(secondaryRatType RatType, qosFlowsUsageData []QosFlowUsageReport) *SecondaryRatUsageReport

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

func NewSecondaryRatUsageReportWithDefaults ¶

func NewSecondaryRatUsageReportWithDefaults() *SecondaryRatUsageReport

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

func (*SecondaryRatUsageReport) GetQosFlowsUsageData ¶

func (o *SecondaryRatUsageReport) GetQosFlowsUsageData() []QosFlowUsageReport

GetQosFlowsUsageData returns the QosFlowsUsageData field value

func (*SecondaryRatUsageReport) GetQosFlowsUsageDataOk ¶

func (o *SecondaryRatUsageReport) GetQosFlowsUsageDataOk() ([]QosFlowUsageReport, bool)

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

func (*SecondaryRatUsageReport) GetSecondaryRatType ¶

func (o *SecondaryRatUsageReport) GetSecondaryRatType() RatType

GetSecondaryRatType returns the SecondaryRatType field value

func (*SecondaryRatUsageReport) GetSecondaryRatTypeOk ¶

func (o *SecondaryRatUsageReport) GetSecondaryRatTypeOk() (*RatType, bool)

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

func (SecondaryRatUsageReport) MarshalJSON ¶

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

func (*SecondaryRatUsageReport) SetQosFlowsUsageData ¶

func (o *SecondaryRatUsageReport) SetQosFlowsUsageData(v []QosFlowUsageReport)

SetQosFlowsUsageData sets field value

func (*SecondaryRatUsageReport) SetSecondaryRatType ¶

func (o *SecondaryRatUsageReport) SetSecondaryRatType(v RatType)

SetSecondaryRatType sets field value

func (SecondaryRatUsageReport) ToMap ¶

func (o SecondaryRatUsageReport) ToMap() (map[string]interface{}, error)
type SelfLink struct {
	Self Link `json:"self"`
}

SelfLink It contains the URI of the linked resource.

func NewSelfLink(self Link) *SelfLink

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

func NewSelfLinkWithDefaults ¶

func NewSelfLinkWithDefaults() *SelfLink

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

func (*SelfLink) GetSelf ¶

func (o *SelfLink) GetSelf() Link

GetSelf returns the Self field value

func (*SelfLink) GetSelfOk ¶

func (o *SelfLink) GetSelfOk() (*Link, bool)

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

func (SelfLink) MarshalJSON ¶

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

func (*SelfLink) SetSelf ¶

func (o *SelfLink) SetSelf(v Link)

SetSelf sets field value

func (SelfLink) ToMap ¶

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

type SensorMeasurement ¶

type SensorMeasurement struct {
	String *string
}

SensorMeasurement The enumeration SensorMeasurement defines sensor measurement type 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.7-1.

func (*SensorMeasurement) MarshalJSON ¶

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

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

func (*SensorMeasurement) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type ServerAddressingInfo ¶

type ServerAddressingInfo struct {
	Interface *interface{}
}

ServerAddressingInfo Contains addressing information (IP addresses and/or FQDNs) of a server.

func (*ServerAddressingInfo) MarshalJSON ¶

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

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

func (*ServerAddressingInfo) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type ServerConfiguration ¶

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations ¶

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL ¶

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable ¶

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type ServiceAreaId ¶

type ServiceAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code.
	Lac string `json:"lac"`
	// Service Area Code.
	Sac string `json:"sac"`
}

ServiceAreaId Contains a Service Area Identifier as defined in 3GPP TS 23.003, clause 12.5.

func NewServiceAreaId ¶

func NewServiceAreaId(plmnId PlmnId, lac string, sac string) *ServiceAreaId

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

func NewServiceAreaIdWithDefaults ¶

func NewServiceAreaIdWithDefaults() *ServiceAreaId

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

func (*ServiceAreaId) GetLac ¶

func (o *ServiceAreaId) GetLac() string

GetLac returns the Lac field value

func (*ServiceAreaId) GetLacOk ¶

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

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

func (*ServiceAreaId) GetPlmnId ¶

func (o *ServiceAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*ServiceAreaId) GetPlmnIdOk ¶

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

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

func (*ServiceAreaId) GetSac ¶

func (o *ServiceAreaId) GetSac() string

GetSac returns the Sac field value

func (*ServiceAreaId) GetSacOk ¶

func (o *ServiceAreaId) GetSacOk() (*string, bool)

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

func (ServiceAreaId) MarshalJSON ¶

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

func (*ServiceAreaId) SetLac ¶

func (o *ServiceAreaId) SetLac(v string)

SetLac sets field value

func (*ServiceAreaId) SetPlmnId ¶

func (o *ServiceAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*ServiceAreaId) SetSac ¶

func (o *ServiceAreaId) SetSac(v string)

SetSac sets field value

func (ServiceAreaId) ToMap ¶

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

type ServiceAreaRestriction ¶

type ServiceAreaRestriction struct {
	RestrictionType *RestrictionType `json:"restrictionType,omitempty"`
	Areas           []Area           `json:"areas,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	MaxNumOfTAs *int32 `json:"maxNumOfTAs,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	MaxNumOfTAsForNotAllowedAreas *int32 `json:"maxNumOfTAsForNotAllowedAreas,omitempty"`
}

ServiceAreaRestriction Provides information about allowed or not allowed areas.

func NewServiceAreaRestriction ¶

func NewServiceAreaRestriction() *ServiceAreaRestriction

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

func NewServiceAreaRestrictionWithDefaults ¶

func NewServiceAreaRestrictionWithDefaults() *ServiceAreaRestriction

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

func (*ServiceAreaRestriction) GetAreas ¶

func (o *ServiceAreaRestriction) GetAreas() []Area

GetAreas returns the Areas field value if set, zero value otherwise.

func (*ServiceAreaRestriction) GetAreasOk ¶

func (o *ServiceAreaRestriction) GetAreasOk() ([]Area, bool)

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

func (*ServiceAreaRestriction) GetMaxNumOfTAs ¶

func (o *ServiceAreaRestriction) GetMaxNumOfTAs() int32

GetMaxNumOfTAs returns the MaxNumOfTAs field value if set, zero value otherwise.

func (*ServiceAreaRestriction) GetMaxNumOfTAsForNotAllowedAreas ¶

func (o *ServiceAreaRestriction) GetMaxNumOfTAsForNotAllowedAreas() int32

GetMaxNumOfTAsForNotAllowedAreas returns the MaxNumOfTAsForNotAllowedAreas field value if set, zero value otherwise.

func (*ServiceAreaRestriction) GetMaxNumOfTAsForNotAllowedAreasOk ¶

func (o *ServiceAreaRestriction) GetMaxNumOfTAsForNotAllowedAreasOk() (*int32, bool)

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

func (*ServiceAreaRestriction) GetMaxNumOfTAsOk ¶

func (o *ServiceAreaRestriction) GetMaxNumOfTAsOk() (*int32, bool)

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

func (*ServiceAreaRestriction) GetRestrictionType ¶

func (o *ServiceAreaRestriction) GetRestrictionType() RestrictionType

GetRestrictionType returns the RestrictionType field value if set, zero value otherwise.

func (*ServiceAreaRestriction) GetRestrictionTypeOk ¶

func (o *ServiceAreaRestriction) GetRestrictionTypeOk() (*RestrictionType, bool)

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

func (*ServiceAreaRestriction) HasAreas ¶

func (o *ServiceAreaRestriction) HasAreas() bool

HasAreas returns a boolean if a field has been set.

func (*ServiceAreaRestriction) HasMaxNumOfTAs ¶

func (o *ServiceAreaRestriction) HasMaxNumOfTAs() bool

HasMaxNumOfTAs returns a boolean if a field has been set.

func (*ServiceAreaRestriction) HasMaxNumOfTAsForNotAllowedAreas ¶

func (o *ServiceAreaRestriction) HasMaxNumOfTAsForNotAllowedAreas() bool

HasMaxNumOfTAsForNotAllowedAreas returns a boolean if a field has been set.

func (*ServiceAreaRestriction) HasRestrictionType ¶

func (o *ServiceAreaRestriction) HasRestrictionType() bool

HasRestrictionType returns a boolean if a field has been set.

func (ServiceAreaRestriction) MarshalJSON ¶

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

func (*ServiceAreaRestriction) SetAreas ¶

func (o *ServiceAreaRestriction) SetAreas(v []Area)

SetAreas gets a reference to the given []Area and assigns it to the Areas field.

func (*ServiceAreaRestriction) SetMaxNumOfTAs ¶

func (o *ServiceAreaRestriction) SetMaxNumOfTAs(v int32)

SetMaxNumOfTAs gets a reference to the given int32 and assigns it to the MaxNumOfTAs field.

func (*ServiceAreaRestriction) SetMaxNumOfTAsForNotAllowedAreas ¶

func (o *ServiceAreaRestriction) SetMaxNumOfTAsForNotAllowedAreas(v int32)

SetMaxNumOfTAsForNotAllowedAreas gets a reference to the given int32 and assigns it to the MaxNumOfTAsForNotAllowedAreas field.

func (*ServiceAreaRestriction) SetRestrictionType ¶

func (o *ServiceAreaRestriction) SetRestrictionType(v RestrictionType)

SetRestrictionType gets a reference to the given RestrictionType and assigns it to the RestrictionType field.

func (ServiceAreaRestriction) ToMap ¶

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

type SliceMbr ¶

type SliceMbr 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"`
}

SliceMbr MBR related to slice

func NewSliceMbr ¶

func NewSliceMbr(uplink string, downlink string) *SliceMbr

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

func NewSliceMbrWithDefaults ¶

func NewSliceMbrWithDefaults() *SliceMbr

NewSliceMbrWithDefaults instantiates a new SliceMbr object This constructor 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 *SliceMbr) GetDownlink() string

GetDownlink returns the Downlink field value

func (*SliceMbr) GetDownlinkOk ¶

func (o *SliceMbr) 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 *SliceMbr) GetUplink() string

GetUplink returns the Uplink field value

func (*SliceMbr) GetUplinkOk ¶

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

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

func (SliceMbr) MarshalJSON ¶

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

SetDownlink sets field value

func (o *SliceMbr) SetUplink(v string)

SetUplink sets field value

func (SliceMbr) ToMap ¶

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

type SliceMbrRm ¶

type SliceMbrRm struct {
	NullValue *NullValue
	SliceMbr  *SliceMbr
}

SliceMbrRm SliceMbr with nullable: true

func (*SliceMbrRm) MarshalJSON ¶

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

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

func (*SliceMbrRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type SmallDataRateStatus ¶

type SmallDataRateStatus 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 PDU session (see clause 5.31.14.3 of 3GPP TS 23.501.
	RemainPacketsUl *int32 `json:"remainPacketsUl,omitempty"`
	// When present it shall contain the number of packets the AF is allowed to send downlink in the given time unit for the given PDU session (see clause 5.31.14.3 of 3GPP TS 23.501.
	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 number of additional exception reports the UE is allowed to send uplink in the given time  unit for  the given PDU session (see clause 5.31.14.3 of 3GPP TS 23.501.
	RemainExReportsUl *int32 `json:"remainExReportsUl,omitempty"`
	// When present, it shall indicate number of additional exception reports the AF is allowed to send downlink  in the given time unit for the given PDU session (see clause 5.31.14.3 in 3GPP TS 23.501
	RemainExReportsDl *int32 `json:"remainExReportsDl,omitempty"`
}

SmallDataRateStatus It indicates theSmall Data Rate Control Status

func NewSmallDataRateStatus ¶

func NewSmallDataRateStatus() *SmallDataRateStatus

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

func NewSmallDataRateStatusWithDefaults ¶

func NewSmallDataRateStatusWithDefaults() *SmallDataRateStatus

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

func (*SmallDataRateStatus) GetRemainExReportsDl ¶

func (o *SmallDataRateStatus) GetRemainExReportsDl() int32

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

func (*SmallDataRateStatus) GetRemainExReportsDlOk ¶

func (o *SmallDataRateStatus) 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 (*SmallDataRateStatus) GetRemainExReportsUl ¶

func (o *SmallDataRateStatus) GetRemainExReportsUl() int32

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

func (*SmallDataRateStatus) GetRemainExReportsUlOk ¶

func (o *SmallDataRateStatus) 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 (*SmallDataRateStatus) GetRemainPacketsDl ¶

func (o *SmallDataRateStatus) GetRemainPacketsDl() int32

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

func (*SmallDataRateStatus) GetRemainPacketsDlOk ¶

func (o *SmallDataRateStatus) 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 (*SmallDataRateStatus) GetRemainPacketsUl ¶

func (o *SmallDataRateStatus) GetRemainPacketsUl() int32

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

func (*SmallDataRateStatus) GetRemainPacketsUlOk ¶

func (o *SmallDataRateStatus) 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 (*SmallDataRateStatus) GetValidityTime ¶

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

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

func (*SmallDataRateStatus) GetValidityTimeOk ¶

func (o *SmallDataRateStatus) 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 (*SmallDataRateStatus) HasRemainExReportsDl ¶

func (o *SmallDataRateStatus) HasRemainExReportsDl() bool

HasRemainExReportsDl returns a boolean if a field has been set.

func (*SmallDataRateStatus) HasRemainExReportsUl ¶

func (o *SmallDataRateStatus) HasRemainExReportsUl() bool

HasRemainExReportsUl returns a boolean if a field has been set.

func (*SmallDataRateStatus) HasRemainPacketsDl ¶

func (o *SmallDataRateStatus) HasRemainPacketsDl() bool

HasRemainPacketsDl returns a boolean if a field has been set.

func (*SmallDataRateStatus) HasRemainPacketsUl ¶

func (o *SmallDataRateStatus) HasRemainPacketsUl() bool

HasRemainPacketsUl returns a boolean if a field has been set.

func (*SmallDataRateStatus) HasValidityTime ¶

func (o *SmallDataRateStatus) HasValidityTime() bool

HasValidityTime returns a boolean if a field has been set.

func (SmallDataRateStatus) MarshalJSON ¶

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

func (*SmallDataRateStatus) SetRemainExReportsDl ¶

func (o *SmallDataRateStatus) SetRemainExReportsDl(v int32)

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

func (*SmallDataRateStatus) SetRemainExReportsUl ¶

func (o *SmallDataRateStatus) SetRemainExReportsUl(v int32)

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

func (*SmallDataRateStatus) SetRemainPacketsDl ¶

func (o *SmallDataRateStatus) SetRemainPacketsDl(v int32)

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

func (*SmallDataRateStatus) SetRemainPacketsUl ¶

func (o *SmallDataRateStatus) SetRemainPacketsUl(v int32)

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

func (*SmallDataRateStatus) SetValidityTime ¶

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

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

func (SmallDataRateStatus) ToMap ¶

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

type Snssai ¶

type Snssai struct {
	// Unsigned integer, within the range 0 to 255, representing the Slice/Service Type.  It indicates the expected Network Slice behaviour in terms of features and services. Values 0 to 127 correspond to the standardized SST range. Values 128 to 255 correspond  to the Operator-specific range. See clause 28.4.2 of 3GPP TS 23.003. Standardized values are defined in clause 5.15.2.2 of 3GPP TS 23.501.
	Sst int32 `json:"sst"`
	// 3-octet string, representing the Slice Differentiator, in hexadecimal representation. Each character in the string shall take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant character representing the 4 most significant bits of the SD shall appear first in the string, and the character representing the 4 least significant bit of the SD shall appear last in the string. This is an optional parameter that complements the Slice/Service type(s) to allow to  differentiate amongst multiple Network Slices of the same Slice/Service type. This IE shall be absent if no SD value is associated with the SST.
	Sd *string `json:"sd,omitempty"`
}

Snssai When Snssai needs to be converted to string (e.g. when used in maps as key), the string shall be composed of one to three digits \"sst\" optionally followed by \"-\" and 6 hexadecimal digits \"sd\".

func NewSnssai ¶

func NewSnssai(sst int32) *Snssai

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

func NewSnssaiWithDefaults ¶

func NewSnssaiWithDefaults() *Snssai

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

func (*Snssai) GetSd ¶

func (o *Snssai) GetSd() string

GetSd returns the Sd field value if set, zero value otherwise.

func (*Snssai) GetSdOk ¶

func (o *Snssai) GetSdOk() (*string, bool)

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

func (*Snssai) GetSst ¶

func (o *Snssai) GetSst() int32

GetSst returns the Sst field value

func (*Snssai) GetSstOk ¶

func (o *Snssai) GetSstOk() (*int32, bool)

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

func (*Snssai) HasSd ¶

func (o *Snssai) HasSd() bool

HasSd returns a boolean if a field has been set.

func (Snssai) MarshalJSON ¶

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

func (*Snssai) SetSd ¶

func (o *Snssai) SetSd(v string)

SetSd gets a reference to the given string and assigns it to the Sd field.

func (*Snssai) SetSst ¶

func (o *Snssai) SetSst(v int32)

SetSst sets field value

func (Snssai) ToMap ¶

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

type SnssaiExtension ¶

type SnssaiExtension struct {
	// 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"`
}

SnssaiExtension Extensions to the Snssai data type, sdRanges and wildcardSd shall not be present simultaneously

func NewSnssaiExtension ¶

func NewSnssaiExtension() *SnssaiExtension

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

func NewSnssaiExtensionWithDefaults ¶

func NewSnssaiExtensionWithDefaults() *SnssaiExtension

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

func (*SnssaiExtension) GetSdRanges ¶

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

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

func (*SnssaiExtension) GetSdRangesOk ¶

func (o *SnssaiExtension) 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 (*SnssaiExtension) GetWildcardSd ¶

func (o *SnssaiExtension) GetWildcardSd() bool

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

func (*SnssaiExtension) GetWildcardSdOk ¶

func (o *SnssaiExtension) 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 (*SnssaiExtension) HasSdRanges ¶

func (o *SnssaiExtension) HasSdRanges() bool

HasSdRanges returns a boolean if a field has been set.

func (*SnssaiExtension) HasWildcardSd ¶

func (o *SnssaiExtension) HasWildcardSd() bool

HasWildcardSd returns a boolean if a field has been set.

func (SnssaiExtension) MarshalJSON ¶

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

func (*SnssaiExtension) SetSdRanges ¶

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

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

func (*SnssaiExtension) SetWildcardSd ¶

func (o *SnssaiExtension) SetWildcardSd(v bool)

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

func (SnssaiExtension) ToMap ¶

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

type SpatialValidityCond ¶

type SpatialValidityCond struct {
	TrackingAreaList        []Tai           `json:"trackingAreaList,omitempty"`
	Countries               []string        `json:"countries,omitempty"`
	GeographicalServiceArea *GeoServiceArea `json:"geographicalServiceArea,omitempty"`
}

SpatialValidityCond Contains the Spatial Validity Condition.

func NewSpatialValidityCond ¶

func NewSpatialValidityCond() *SpatialValidityCond

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

func NewSpatialValidityCondWithDefaults ¶

func NewSpatialValidityCondWithDefaults() *SpatialValidityCond

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

func (*SpatialValidityCond) GetCountries ¶

func (o *SpatialValidityCond) GetCountries() []string

GetCountries returns the Countries field value if set, zero value otherwise.

func (*SpatialValidityCond) GetCountriesOk ¶

func (o *SpatialValidityCond) GetCountriesOk() ([]string, bool)

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

func (*SpatialValidityCond) GetGeographicalServiceArea ¶

func (o *SpatialValidityCond) GetGeographicalServiceArea() GeoServiceArea

GetGeographicalServiceArea returns the GeographicalServiceArea field value if set, zero value otherwise.

func (*SpatialValidityCond) GetGeographicalServiceAreaOk ¶

func (o *SpatialValidityCond) GetGeographicalServiceAreaOk() (*GeoServiceArea, bool)

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

func (*SpatialValidityCond) GetTrackingAreaList ¶

func (o *SpatialValidityCond) GetTrackingAreaList() []Tai

GetTrackingAreaList returns the TrackingAreaList field value if set, zero value otherwise.

func (*SpatialValidityCond) GetTrackingAreaListOk ¶

func (o *SpatialValidityCond) GetTrackingAreaListOk() ([]Tai, bool)

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

func (*SpatialValidityCond) HasCountries ¶

func (o *SpatialValidityCond) HasCountries() bool

HasCountries returns a boolean if a field has been set.

func (*SpatialValidityCond) HasGeographicalServiceArea ¶

func (o *SpatialValidityCond) HasGeographicalServiceArea() bool

HasGeographicalServiceArea returns a boolean if a field has been set.

func (*SpatialValidityCond) HasTrackingAreaList ¶

func (o *SpatialValidityCond) HasTrackingAreaList() bool

HasTrackingAreaList returns a boolean if a field has been set.

func (SpatialValidityCond) MarshalJSON ¶

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

func (*SpatialValidityCond) SetCountries ¶

func (o *SpatialValidityCond) SetCountries(v []string)

SetCountries gets a reference to the given []string and assigns it to the Countries field.

func (*SpatialValidityCond) SetGeographicalServiceArea ¶

func (o *SpatialValidityCond) SetGeographicalServiceArea(v GeoServiceArea)

SetGeographicalServiceArea gets a reference to the given GeoServiceArea and assigns it to the GeographicalServiceArea field.

func (*SpatialValidityCond) SetTrackingAreaList ¶

func (o *SpatialValidityCond) SetTrackingAreaList(v []Tai)

SetTrackingAreaList gets a reference to the given []Tai and assigns it to the TrackingAreaList field.

func (SpatialValidityCond) ToMap ¶

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

type SpatialValidityCondRm ¶

type SpatialValidityCondRm struct {
	NullValue           *NullValue
	SpatialValidityCond *SpatialValidityCond
}

SpatialValidityCondRm Contains the Spatial Validity Condition or the null value.

func (*SpatialValidityCondRm) MarshalJSON ¶

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

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

func (*SpatialValidityCondRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type SscMode ¶

type SscMode struct {
	String *string
}

SscMode represents the service and session continuity mode It shall comply with the provisions defined in table 5.4.3.6-1.

func (*SscMode) MarshalJSON ¶

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

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

func (*SscMode) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type SscModeRm ¶

type SscModeRm struct {
	NullValue *NullValue
	SscMode   *SscMode
}

SscModeRm represents the service and session continuity mode It shall comply with the provisions defined in table 5.4.3.6-1 but with the OpenAPI 'nullable: true' property.

func (*SscModeRm) MarshalJSON ¶

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

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

func (*SscModeRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type Ssm ¶

type Ssm struct {
	SourceIpAddr IpAddr `json:"sourceIpAddr"`
	DestIpAddr   IpAddr `json:"destIpAddr"`
}

Ssm Source specific IP multicast address

func NewSsm ¶

func NewSsm(sourceIpAddr IpAddr, destIpAddr IpAddr) *Ssm

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

func NewSsmWithDefaults ¶

func NewSsmWithDefaults() *Ssm

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

func (*Ssm) GetDestIpAddr ¶

func (o *Ssm) GetDestIpAddr() IpAddr

GetDestIpAddr returns the DestIpAddr field value

func (*Ssm) GetDestIpAddrOk ¶

func (o *Ssm) GetDestIpAddrOk() (*IpAddr, bool)

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

func (*Ssm) GetSourceIpAddr ¶

func (o *Ssm) GetSourceIpAddr() IpAddr

GetSourceIpAddr returns the SourceIpAddr field value

func (*Ssm) GetSourceIpAddrOk ¶

func (o *Ssm) GetSourceIpAddrOk() (*IpAddr, bool)

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

func (Ssm) MarshalJSON ¶

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

func (*Ssm) SetDestIpAddr ¶

func (o *Ssm) SetDestIpAddr(v IpAddr)

SetDestIpAddr sets field value

func (*Ssm) SetSourceIpAddr ¶

func (o *Ssm) SetSourceIpAddr(v IpAddr)

SetSourceIpAddr sets field value

func (Ssm) ToMap ¶

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

type StationaryIndication ¶

type StationaryIndication struct {
	String *string
}

StationaryIndication Possible values are: - STATIONARY: Identifies the UE is stationary - MOBILE: Identifies the UE is mobile

func (*StationaryIndication) MarshalJSON ¶

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

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

func (*StationaryIndication) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type StationaryIndicationRm ¶

type StationaryIndicationRm struct {
	NullValue            *NullValue
	StationaryIndication *StationaryIndication
}

StationaryIndicationRm This enumeration is defined in the same way as the 'StationaryIndication' enumeration, but with the OpenAPI 'nullable: true' property.\"

func (*StationaryIndicationRm) MarshalJSON ¶

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

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

func (*StationaryIndicationRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type StringMatchingCondition ¶

type StringMatchingCondition struct {
	MatchingString   *string          `json:"matchingString,omitempty"`
	MatchingOperator MatchingOperator `json:"matchingOperator"`
}

StringMatchingCondition A String with Matching Operator

func NewStringMatchingCondition ¶

func NewStringMatchingCondition(matchingOperator MatchingOperator) *StringMatchingCondition

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

func NewStringMatchingConditionWithDefaults ¶

func NewStringMatchingConditionWithDefaults() *StringMatchingCondition

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

func (*StringMatchingCondition) GetMatchingOperator ¶

func (o *StringMatchingCondition) GetMatchingOperator() MatchingOperator

GetMatchingOperator returns the MatchingOperator field value

func (*StringMatchingCondition) GetMatchingOperatorOk ¶

func (o *StringMatchingCondition) GetMatchingOperatorOk() (*MatchingOperator, bool)

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

func (*StringMatchingCondition) GetMatchingString ¶

func (o *StringMatchingCondition) GetMatchingString() string

GetMatchingString returns the MatchingString field value if set, zero value otherwise.

func (*StringMatchingCondition) GetMatchingStringOk ¶

func (o *StringMatchingCondition) GetMatchingStringOk() (*string, bool)

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

func (*StringMatchingCondition) HasMatchingString ¶

func (o *StringMatchingCondition) HasMatchingString() bool

HasMatchingString returns a boolean if a field has been set.

func (StringMatchingCondition) MarshalJSON ¶

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

func (*StringMatchingCondition) SetMatchingOperator ¶

func (o *StringMatchingCondition) SetMatchingOperator(v MatchingOperator)

SetMatchingOperator sets field value

func (*StringMatchingCondition) SetMatchingString ¶

func (o *StringMatchingCondition) SetMatchingString(v string)

SetMatchingString gets a reference to the given string and assigns it to the MatchingString field.

func (StringMatchingCondition) ToMap ¶

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

type StringMatchingRule ¶

type StringMatchingRule struct {
	StringMatchingConditions []StringMatchingCondition `json:"stringMatchingConditions,omitempty"`
}

StringMatchingRule A list of conditions for string matching

func NewStringMatchingRule ¶

func NewStringMatchingRule() *StringMatchingRule

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

func NewStringMatchingRuleWithDefaults ¶

func NewStringMatchingRuleWithDefaults() *StringMatchingRule

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

func (*StringMatchingRule) GetStringMatchingConditions ¶

func (o *StringMatchingRule) GetStringMatchingConditions() []StringMatchingCondition

GetStringMatchingConditions returns the StringMatchingConditions field value if set, zero value otherwise.

func (*StringMatchingRule) GetStringMatchingConditionsOk ¶

func (o *StringMatchingRule) GetStringMatchingConditionsOk() ([]StringMatchingCondition, bool)

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

func (*StringMatchingRule) HasStringMatchingConditions ¶

func (o *StringMatchingRule) HasStringMatchingConditions() bool

HasStringMatchingConditions returns a boolean if a field has been set.

func (StringMatchingRule) MarshalJSON ¶

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

func (*StringMatchingRule) SetStringMatchingConditions ¶

func (o *StringMatchingRule) SetStringMatchingConditions(v []StringMatchingCondition)

SetStringMatchingConditions gets a reference to the given []StringMatchingCondition and assigns it to the StringMatchingConditions field.

func (StringMatchingRule) ToMap ¶

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

type SubscribedDefaultQos ¶

type SubscribedDefaultQos 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"`
	Arp    Arp   `json:"arp"`
	// 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"`
}

SubscribedDefaultQos Provides the subsribed 5QI and the ARP, it may contain the priority level.

func NewSubscribedDefaultQos ¶

func NewSubscribedDefaultQos(var5qi int32, arp Arp) *SubscribedDefaultQos

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

func NewSubscribedDefaultQosWithDefaults ¶

func NewSubscribedDefaultQosWithDefaults() *SubscribedDefaultQos

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

func (*SubscribedDefaultQos) GetArp ¶

func (o *SubscribedDefaultQos) GetArp() Arp

GetArp returns the Arp field value

func (*SubscribedDefaultQos) GetArpOk ¶

func (o *SubscribedDefaultQos) GetArpOk() (*Arp, bool)

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

func (*SubscribedDefaultQos) GetPriorityLevel ¶

func (o *SubscribedDefaultQos) GetPriorityLevel() int32

GetPriorityLevel returns the PriorityLevel field value if set, zero value otherwise.

func (*SubscribedDefaultQos) GetPriorityLevelOk ¶

func (o *SubscribedDefaultQos) 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 (*SubscribedDefaultQos) GetVar5qi ¶

func (o *SubscribedDefaultQos) GetVar5qi() int32

GetVar5qi returns the Var5qi field value

func (*SubscribedDefaultQos) GetVar5qiOk ¶

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

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

func (*SubscribedDefaultQos) HasPriorityLevel ¶

func (o *SubscribedDefaultQos) HasPriorityLevel() bool

HasPriorityLevel returns a boolean if a field has been set.

func (SubscribedDefaultQos) MarshalJSON ¶

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

func (*SubscribedDefaultQos) SetArp ¶

func (o *SubscribedDefaultQos) SetArp(v Arp)

SetArp sets field value

func (*SubscribedDefaultQos) SetPriorityLevel ¶

func (o *SubscribedDefaultQos) SetPriorityLevel(v int32)

SetPriorityLevel gets a reference to the given int32 and assigns it to the PriorityLevel field.

func (*SubscribedDefaultQos) SetVar5qi ¶

func (o *SubscribedDefaultQos) SetVar5qi(v int32)

SetVar5qi sets field value

func (SubscribedDefaultQos) ToMap ¶

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

type SupportedGADShapes ¶

type SupportedGADShapes struct {
	String *string
}

SupportedGADShapes Indicates supported GAD shapes.

func (*SupportedGADShapes) MarshalJSON ¶

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

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

func (*SupportedGADShapes) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type TacInfo ¶

type TacInfo struct {
	TacList []string `json:"tacList"`
}

TacInfo contains tracking area information (tracking area codes).

func NewTacInfo ¶

func NewTacInfo(tacList []string) *TacInfo

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

func NewTacInfoWithDefaults ¶

func NewTacInfoWithDefaults() *TacInfo

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

func (*TacInfo) GetTacList ¶

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

GetTacList returns the TacList field value

func (*TacInfo) GetTacListOk ¶

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

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

func (TacInfo) MarshalJSON ¶

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

func (*TacInfo) SetTacList ¶

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

SetTacList sets field value

func (TacInfo) ToMap ¶

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

type Tai ¶

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

Tai Contains the tracking area identity as described in 3GPP 23.003

func NewTai ¶

func NewTai(plmnId PlmnId, tac string) *Tai

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

func NewTaiWithDefaults ¶

func NewTaiWithDefaults() *Tai

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

func (*Tai) GetNid ¶

func (o *Tai) GetNid() string

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

func (*Tai) GetNidOk ¶

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

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

func (*Tai) GetPlmnId ¶

func (o *Tai) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Tai) GetPlmnIdOk ¶

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

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

func (*Tai) GetTac ¶

func (o *Tai) GetTac() string

GetTac returns the Tac field value

func (*Tai) GetTacOk ¶

func (o *Tai) GetTacOk() (*string, bool)

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

func (*Tai) HasNid ¶

func (o *Tai) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Tai) MarshalJSON ¶

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

func (*Tai) SetNid ¶

func (o *Tai) SetNid(v string)

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

func (*Tai) SetPlmnId ¶

func (o *Tai) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*Tai) SetTac ¶

func (o *Tai) SetTac(v string)

SetTac sets field value

func (Tai) ToMap ¶

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

type TaiRm ¶

type TaiRm struct {
	NullValue *NullValue
	Tai       *Tai
}

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

func (*TaiRm) MarshalJSON ¶

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

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

func (*TaiRm) UnmarshalJSON ¶

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

Unmarshal JSON data into any of the pointers in the struct

type Tmgi ¶

type Tmgi struct {
	// MBS Service ID
	MbsServiceId string `json:"mbsServiceId"`
	PlmnId       PlmnId `json:"plmnId"`
}

Tmgi Temporary Mobile Group Identity

func NewTmgi ¶

func NewTmgi(mbsServiceId string, plmnId PlmnId) *Tmgi

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

func NewTmgiWithDefaults ¶

func NewTmgiWithDefaults() *Tmgi

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

func (*Tmgi) GetMbsServiceId ¶

func (o *Tmgi) GetMbsServiceId() string

GetMbsServiceId returns the MbsServiceId field value

func (*Tmgi) GetMbsServiceIdOk ¶

func (o *Tmgi) GetMbsServiceIdOk() (*string, bool)

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

func (*Tmgi) GetPlmnId ¶

func (o *Tmgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Tmgi) GetPlmnIdOk ¶

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

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

func (Tmgi) MarshalJSON ¶

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

func (*Tmgi) SetMbsServiceId ¶

func (o *Tmgi) SetMbsServiceId(v string)

SetMbsServiceId sets field value

func (*Tmgi) SetPlmnId ¶

func (o *Tmgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Tmgi) ToMap ¶

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

type TnapId ¶

type TnapId struct {
	// This IE shall be present if the UE is accessing the 5GC via a trusted WLAN access network.When present, it shall contain the SSID of the access point to which the UE is attached, that is received over NGAP,  see IEEE Std 802.11-2012.
	SsId *string `json:"ssId,omitempty"`
	// When present, it shall contain the BSSID of the access point to which the UE is attached, that is received over NGAP, see IEEE Std 802.11-2012.
	BssId *string `json:"bssId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	CivicAddress *string `json:"civicAddress,omitempty"`
}

TnapId Contain the TNAP Identifier see clause5.6.2 of 3GPP TS 23.501.

func NewTnapId ¶

func NewTnapId() *TnapId

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

func NewTnapIdWithDefaults ¶

func NewTnapIdWithDefaults() *TnapId

NewTnapIdWithDefaults instantiates a new TnapId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TnapId) GetBssId ¶

func (o *TnapId) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*TnapId) GetBssIdOk ¶

func (o *TnapId) GetBssIdOk() (*string, bool)

GetBssIdOk returns a tuple with the BssId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) GetCivicAddress ¶

func (o *TnapId) GetCivicAddress() string

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*TnapId) GetCivicAddressOk ¶

func (o *TnapId) GetCivicAddressOk() (*string, bool)

GetCivicAddressOk returns a tuple with the CivicAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) GetSsId ¶

func (o *TnapId) GetSsId() string

GetSsId returns the SsId field value if set, zero value otherwise.

func (*TnapId) GetSsIdOk ¶

func (o *TnapId) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) HasBssId ¶

func (o *TnapId) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*TnapId) HasCivicAddress ¶

func (o *TnapId) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (*TnapId) HasSsId ¶

func (o *TnapId) HasSsId() bool

HasSsId returns a boolean if a field has been set.

func (TnapId) MarshalJSON ¶

func (o TnapId) MarshalJSON() ([]byte, error)

func (*TnapId) SetBssId ¶

func (o *TnapId) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*TnapId) SetCivicAddress ¶

func (o *TnapId) SetCivicAddress(v string)

SetCivicAddress gets a reference to the given string and assigns it to the CivicAddress field.

func (*TnapId) SetSsId ¶

func (o *TnapId) SetSsId(v string)

SetSsId gets a reference to the given string and assigns it to the SsId field.

func (TnapId) ToMap ¶

func (o TnapId) ToMap() (map[string]interface{}, error)

type TnapIdRm ¶

type TnapIdRm struct {
	NullValue *NullValue
	TnapId    *TnapId
}

TnapIdRm This data type is defined in the same way as the 'TnapId' data type, but with the OpenAPI 'nullable: true' property.

func (*TnapIdRm) MarshalJSON ¶

func (src *TnapIdRm) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TnapIdRm) UnmarshalJSON ¶

func (dst *TnapIdRm) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TraceData ¶

type TraceData struct {
	// Trace Reference (see 3GPP TS 32.422).It shall be encoded as the concatenation of MCC, MNC and Trace ID as follows: 'MCC'<MNC'-'Trace ID'The Trace ID shall be encoded as a 3 octet string in hexadecimal representation. Each character in the Trace ID 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 Trace ID shall appear first  in the string, and the character representing the 4 least significant bit of the Trace ID shall appear last in the string.
	TraceRef   string     `json:"traceRef"`
	TraceDepth TraceDepth `json:"traceDepth"`
	// List of NE Types (see 3GPP TS 32.422).It shall be encoded as an octet string 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 shall appear first in the string, and the character representing the 4 least significant bit shall appear last in the string.Octets shall be coded according to 3GPP TS 32.422.
	NeTypeList string `json:"neTypeList"`
	// Triggering events (see 3GPP TS 32.422).It shall be encoded as an octet string 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 shall appear first in the string, and the character representing the 4 least significant bit shall appear last in the string. Octets shall be coded according to 3GPP TS 32.422.
	EventList string `json:"eventList"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	CollectionEntityIpv4Addr *string   `json:"collectionEntityIpv4Addr,omitempty"`
	CollectionEntityIpv6Addr *Ipv6Addr `json:"collectionEntityIpv6Addr,omitempty"`
	// List of Interfaces (see 3GPP TS 32.422).It shall be encoded as an octet string 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 shall appear first in the string, and the character representing the  4 least significant bit shall appear last in the string. Octets shall be coded according to 3GPP TS 32.422. If this attribute is not present, all the interfaces applicable to the list of NE types indicated in the neTypeList attribute should be traced.
	InterfaceList *string `json:"interfaceList,omitempty"`
}

TraceData contains Trace control and configuration parameters.

func NewTraceData ¶

func NewTraceData(traceRef string, traceDepth TraceDepth, neTypeList string, eventList string) *TraceData

NewTraceData instantiates a new TraceData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTraceDataWithDefaults ¶

func NewTraceDataWithDefaults() *TraceData

NewTraceDataWithDefaults instantiates a new TraceData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TraceData) GetCollectionEntityIpv4Addr ¶

func (o *TraceData) GetCollectionEntityIpv4Addr() string

GetCollectionEntityIpv4Addr returns the CollectionEntityIpv4Addr field value if set, zero value otherwise.

func (*TraceData) GetCollectionEntityIpv4AddrOk ¶

func (o *TraceData) GetCollectionEntityIpv4AddrOk() (*string, bool)

GetCollectionEntityIpv4AddrOk returns a tuple with the CollectionEntityIpv4Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TraceData) GetCollectionEntityIpv6Addr ¶

func (o *TraceData) GetCollectionEntityIpv6Addr() Ipv6Addr

GetCollectionEntityIpv6Addr returns the CollectionEntityIpv6Addr field value if set, zero value otherwise.

func (*TraceData) GetCollectionEntityIpv6AddrOk ¶

func (o *TraceData) GetCollectionEntityIpv6AddrOk() (*Ipv6Addr, bool)

GetCollectionEntityIpv6AddrOk returns a tuple with the CollectionEntityIpv6Addr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TraceData) GetEventList ¶

func (o *TraceData) GetEventList() string

GetEventList returns the EventList field value

func (*TraceData) GetEventListOk ¶

func (o *TraceData) GetEventListOk() (*string, bool)

GetEventListOk returns a tuple with the EventList field value and a boolean to check if the value has been set.

func (*TraceData) GetInterfaceList ¶

func (o *TraceData) GetInterfaceList() string

GetInterfaceList returns the InterfaceList field value if set, zero value otherwise.

func (*TraceData) GetInterfaceListOk ¶

func (o *TraceData) GetInterfaceListOk() (*string, bool)

GetInterfaceListOk returns a tuple with the InterfaceList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TraceData) GetNeTypeList ¶

func (o *TraceData) GetNeTypeList() string

GetNeTypeList returns the NeTypeList field value

func (*TraceData) GetNeTypeListOk ¶

func (o *TraceData) GetNeTypeListOk() (*string, bool)

GetNeTypeListOk returns a tuple with the NeTypeList field value and a boolean to check if the value has been set.

func (*TraceData) GetTraceDepth ¶

func (o *TraceData) GetTraceDepth() TraceDepth

GetTraceDepth returns the TraceDepth field value

func (*TraceData) GetTraceDepthOk ¶

func (o *TraceData) GetTraceDepthOk() (*TraceDepth, bool)

GetTraceDepthOk returns a tuple with the TraceDepth field value and a boolean to check if the value has been set.

func (*TraceData) GetTraceRef ¶

func (o *TraceData) GetTraceRef() string

GetTraceRef returns the TraceRef field value

func (*TraceData) GetTraceRefOk ¶

func (o *TraceData) GetTraceRefOk() (*string, bool)

GetTraceRefOk returns a tuple with the TraceRef field value and a boolean to check if the value has been set.

func (*TraceData) HasCollectionEntityIpv4Addr ¶

func (o *TraceData) HasCollectionEntityIpv4Addr() bool

HasCollectionEntityIpv4Addr returns a boolean if a field has been set.

func (*TraceData) HasCollectionEntityIpv6Addr ¶

func (o *TraceData) HasCollectionEntityIpv6Addr() bool

HasCollectionEntityIpv6Addr returns a boolean if a field has been set.

func (*TraceData) HasInterfaceList ¶

func (o *TraceData) HasInterfaceList() bool

HasInterfaceList returns a boolean if a field has been set.

func (TraceData) MarshalJSON ¶

func (o TraceData) MarshalJSON() ([]byte, error)

func (*TraceData) SetCollectionEntityIpv4Addr ¶

func (o *TraceData) SetCollectionEntityIpv4Addr(v string)

SetCollectionEntityIpv4Addr gets a reference to the given string and assigns it to the CollectionEntityIpv4Addr field.

func (*TraceData) SetCollectionEntityIpv6Addr ¶

func (o *TraceData) SetCollectionEntityIpv6Addr(v Ipv6Addr)

SetCollectionEntityIpv6Addr gets a reference to the given Ipv6Addr and assigns it to the CollectionEntityIpv6Addr field.

func (*TraceData) SetEventList ¶

func (o *TraceData) SetEventList(v string)

SetEventList sets field value

func (*TraceData) SetInterfaceList ¶

func (o *TraceData) SetInterfaceList(v string)

SetInterfaceList gets a reference to the given string and assigns it to the InterfaceList field.

func (*TraceData) SetNeTypeList ¶

func (o *TraceData) SetNeTypeList(v string)

SetNeTypeList sets field value

func (*TraceData) SetTraceDepth ¶

func (o *TraceData) SetTraceDepth(v TraceDepth)

SetTraceDepth sets field value

func (*TraceData) SetTraceRef ¶

func (o *TraceData) SetTraceRef(v string)

SetTraceRef sets field value

func (TraceData) ToMap ¶

func (o TraceData) ToMap() (map[string]interface{}, error)

type TraceDepth ¶

type TraceDepth struct {
	String *string
}

TraceDepth The enumeration TraceDepth defines how detailed information should be recorded 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.1-1

func (*TraceDepth) MarshalJSON ¶

func (src *TraceDepth) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TraceDepth) UnmarshalJSON ¶

func (dst *TraceDepth) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TraceDepthRm ¶

type TraceDepthRm struct {
	NullValue  *NullValue
	TraceDepth *TraceDepth
}

TraceDepthRm This enumeration is defined in the same way as the 'TraceDepth' enumeration, but with the OpenAPI 'nullable: true' property.

func (*TraceDepthRm) MarshalJSON ¶

func (src *TraceDepthRm) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TraceDepthRm) UnmarshalJSON ¶

func (dst *TraceDepthRm) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TrafficProfile ¶

type TrafficProfile struct {
	String *string
}

TrafficProfile Possible values are: - SINGLE_TRANS_UL: Uplink single packet transmission. - SINGLE_TRANS_DL: Downlink single packet transmission. - DUAL_TRANS_UL_FIRST: Dual packet transmission, firstly uplink packet transmission with subsequent downlink packet transmission. - DUAL_TRANS_DL_FIRST: Dual packet transmission, firstly downlink packet transmission with subsequent uplink packet transmission.

func (*TrafficProfile) MarshalJSON ¶

func (src *TrafficProfile) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TrafficProfile) UnmarshalJSON ¶

func (dst *TrafficProfile) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TrafficProfileRm ¶

type TrafficProfileRm struct {
	NullValue      *NullValue
	TrafficProfile *TrafficProfile
}

TrafficProfileRm This enumeration is defined in the same way as the 'TrafficProfile' enumeration, but with the OpenAPI 'nullable: true' property.

func (*TrafficProfileRm) MarshalJSON ¶

func (src *TrafficProfileRm) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TrafficProfileRm) UnmarshalJSON ¶

func (dst *TrafficProfileRm) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TransportProtocol ¶

type TransportProtocol struct {
	String *string
}

TransportProtocol Possible values are: - UDP: User Datagram Protocol. - TCP: Transmission Control Protocol.

func (*TransportProtocol) MarshalJSON ¶

func (src *TransportProtocol) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TransportProtocol) UnmarshalJSON ¶

func (dst *TransportProtocol) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TunnelAddress ¶

type TunnelAddress struct {
	Interface *interface{}
}

TunnelAddress Tunnel address

func (*TunnelAddress) MarshalJSON ¶

func (src *TunnelAddress) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TunnelAddress) UnmarshalJSON ¶

func (dst *TunnelAddress) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TwapId ¶

type TwapId struct {
	// This IE shall contain the SSID of the access point to which the UE is attached, that is received over NGAP, see IEEE Std 802.11-2012.
	SsId string `json:"ssId"`
	// When present, it shall contain the BSSID of the access point to which the UE is attached, for trusted WLAN access, see IEEE Std 802.11-2012.
	BssId *string `json:"bssId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	CivicAddress *string `json:"civicAddress,omitempty"`
}

TwapId Contain the TWAP Identifier as defined in clause 4.2.8.5.3 of 3GPP TS 23.501 or the WLAN location information as defined in clause 4.5.7.2.8 of 3GPP TS 23.402.

func NewTwapId ¶

func NewTwapId(ssId string) *TwapId

NewTwapId instantiates a new TwapId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTwapIdWithDefaults ¶

func NewTwapIdWithDefaults() *TwapId

NewTwapIdWithDefaults instantiates a new TwapId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TwapId) GetBssId ¶

func (o *TwapId) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*TwapId) GetBssIdOk ¶

func (o *TwapId) GetBssIdOk() (*string, bool)

GetBssIdOk returns a tuple with the BssId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwapId) GetCivicAddress ¶

func (o *TwapId) GetCivicAddress() string

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*TwapId) GetCivicAddressOk ¶

func (o *TwapId) GetCivicAddressOk() (*string, bool)

GetCivicAddressOk returns a tuple with the CivicAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwapId) GetSsId ¶

func (o *TwapId) GetSsId() string

GetSsId returns the SsId field value

func (*TwapId) GetSsIdOk ¶

func (o *TwapId) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value and a boolean to check if the value has been set.

func (*TwapId) HasBssId ¶

func (o *TwapId) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*TwapId) HasCivicAddress ¶

func (o *TwapId) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (TwapId) MarshalJSON ¶

func (o TwapId) MarshalJSON() ([]byte, error)

func (*TwapId) SetBssId ¶

func (o *TwapId) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*TwapId) SetCivicAddress ¶

func (o *TwapId) SetCivicAddress(v string)

SetCivicAddress gets a reference to the given string and assigns it to the CivicAddress field.

func (*TwapId) SetSsId ¶

func (o *TwapId) SetSsId(v string)

SetSsId sets field value

func (TwapId) ToMap ¶

func (o TwapId) ToMap() (map[string]interface{}, error)

type TwapIdRm ¶

type TwapIdRm struct {
	NullValue *NullValue
	TwapId    *TwapId
}

TwapIdRm This data type is defined in the same way as the 'TwapId' data type, but with the OpenAPI 'nullable: true' property.

func (*TwapIdRm) MarshalJSON ¶

func (src *TwapIdRm) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TwapIdRm) UnmarshalJSON ¶

func (dst *TwapIdRm) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UeAuth ¶

type UeAuth struct {
	String *string
}

UeAuth Possible values are: - AUTHORIZED: Indicates that the UE is authorized. - NOT_AUTHORIZED: Indicates that the UE is not authorized.

func (*UeAuth) MarshalJSON ¶

func (src *UeAuth) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UeAuth) UnmarshalJSON ¶

func (dst *UeAuth) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UncertaintyEllipse ¶

type UncertaintyEllipse struct {
	// Indicates value of uncertainty.
	SemiMajor float32 `json:"semiMajor"`
	// Indicates value of uncertainty.
	SemiMinor float32 `json:"semiMinor"`
	// Indicates value of orientation angle.
	OrientationMajor int32 `json:"orientationMajor"`
}

UncertaintyEllipse Ellipse with uncertainty.

func NewUncertaintyEllipse ¶

func NewUncertaintyEllipse(semiMajor float32, semiMinor float32, orientationMajor int32) *UncertaintyEllipse

NewUncertaintyEllipse instantiates a new UncertaintyEllipse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUncertaintyEllipseWithDefaults ¶

func NewUncertaintyEllipseWithDefaults() *UncertaintyEllipse

NewUncertaintyEllipseWithDefaults instantiates a new UncertaintyEllipse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UncertaintyEllipse) GetOrientationMajor ¶

func (o *UncertaintyEllipse) GetOrientationMajor() int32

GetOrientationMajor returns the OrientationMajor field value

func (*UncertaintyEllipse) GetOrientationMajorOk ¶

func (o *UncertaintyEllipse) GetOrientationMajorOk() (*int32, bool)

GetOrientationMajorOk returns a tuple with the OrientationMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipse) GetSemiMajor ¶

func (o *UncertaintyEllipse) GetSemiMajor() float32

GetSemiMajor returns the SemiMajor field value

func (*UncertaintyEllipse) GetSemiMajorOk ¶

func (o *UncertaintyEllipse) GetSemiMajorOk() (*float32, bool)

GetSemiMajorOk returns a tuple with the SemiMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipse) GetSemiMinor ¶

func (o *UncertaintyEllipse) GetSemiMinor() float32

GetSemiMinor returns the SemiMinor field value

func (*UncertaintyEllipse) GetSemiMinorOk ¶

func (o *UncertaintyEllipse) GetSemiMinorOk() (*float32, bool)

GetSemiMinorOk returns a tuple with the SemiMinor field value and a boolean to check if the value has been set.

func (UncertaintyEllipse) MarshalJSON ¶

func (o UncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*UncertaintyEllipse) SetOrientationMajor ¶

func (o *UncertaintyEllipse) SetOrientationMajor(v int32)

SetOrientationMajor sets field value

func (*UncertaintyEllipse) SetSemiMajor ¶

func (o *UncertaintyEllipse) SetSemiMajor(v float32)

SetSemiMajor sets field value

func (*UncertaintyEllipse) SetSemiMinor ¶

func (o *UncertaintyEllipse) SetSemiMinor(v float32)

SetSemiMinor sets field value

func (UncertaintyEllipse) ToMap ¶

func (o UncertaintyEllipse) ToMap() (map[string]interface{}, error)

type UncertaintyEllipsoid ¶

type UncertaintyEllipsoid struct {
	// Indicates value of uncertainty.
	SemiMajor float32 `json:"semiMajor"`
	// Indicates value of uncertainty.
	SemiMinor float32 `json:"semiMinor"`
	// Indicates value of uncertainty.
	Vertical float32 `json:"vertical"`
	// Indicates value of orientation angle.
	OrientationMajor int32 `json:"orientationMajor"`
}

UncertaintyEllipsoid Ellipsoid with uncertainty

func NewUncertaintyEllipsoid ¶

func NewUncertaintyEllipsoid(semiMajor float32, semiMinor float32, vertical float32, orientationMajor int32) *UncertaintyEllipsoid

NewUncertaintyEllipsoid instantiates a new UncertaintyEllipsoid object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUncertaintyEllipsoidWithDefaults ¶

func NewUncertaintyEllipsoidWithDefaults() *UncertaintyEllipsoid

NewUncertaintyEllipsoidWithDefaults instantiates a new UncertaintyEllipsoid object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UncertaintyEllipsoid) GetOrientationMajor ¶

func (o *UncertaintyEllipsoid) GetOrientationMajor() int32

GetOrientationMajor returns the OrientationMajor field value

func (*UncertaintyEllipsoid) GetOrientationMajorOk ¶

func (o *UncertaintyEllipsoid) GetOrientationMajorOk() (*int32, bool)

GetOrientationMajorOk returns a tuple with the OrientationMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetSemiMajor ¶

func (o *UncertaintyEllipsoid) GetSemiMajor() float32

GetSemiMajor returns the SemiMajor field value

func (*UncertaintyEllipsoid) GetSemiMajorOk ¶

func (o *UncertaintyEllipsoid) GetSemiMajorOk() (*float32, bool)

GetSemiMajorOk returns a tuple with the SemiMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetSemiMinor ¶

func (o *UncertaintyEllipsoid) GetSemiMinor() float32

GetSemiMinor returns the SemiMinor field value

func (*UncertaintyEllipsoid) GetSemiMinorOk ¶

func (o *UncertaintyEllipsoid) GetSemiMinorOk() (*float32, bool)

GetSemiMinorOk returns a tuple with the SemiMinor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetVertical ¶

func (o *UncertaintyEllipsoid) GetVertical() float32

GetVertical returns the Vertical field value

func (*UncertaintyEllipsoid) GetVerticalOk ¶

func (o *UncertaintyEllipsoid) GetVerticalOk() (*float32, bool)

GetVerticalOk returns a tuple with the Vertical field value and a boolean to check if the value has been set.

func (UncertaintyEllipsoid) MarshalJSON ¶

func (o UncertaintyEllipsoid) MarshalJSON() ([]byte, error)

func (*UncertaintyEllipsoid) SetOrientationMajor ¶

func (o *UncertaintyEllipsoid) SetOrientationMajor(v int32)

SetOrientationMajor sets field value

func (*UncertaintyEllipsoid) SetSemiMajor ¶

func (o *UncertaintyEllipsoid) SetSemiMajor(v float32)

SetSemiMajor sets field value

func (*UncertaintyEllipsoid) SetSemiMinor ¶

func (o *UncertaintyEllipsoid) SetSemiMinor(v float32)

SetSemiMinor sets field value

func (*UncertaintyEllipsoid) SetVertical ¶

func (o *UncertaintyEllipsoid) SetVertical(v float32)

SetVertical sets field value

func (UncertaintyEllipsoid) ToMap ¶

func (o UncertaintyEllipsoid) ToMap() (map[string]interface{}, error)

type UpConfidentiality ¶

type UpConfidentiality struct {
	String *string
}

UpConfidentiality indicates whether UP confidentiality protection is required, preferred or not needed for all the traffic on the PDU Session. It shall comply with the provisions defined in table 5.4.3.5-1.

func (*UpConfidentiality) MarshalJSON ¶

func (src *UpConfidentiality) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpConfidentiality) UnmarshalJSON ¶

func (dst *UpConfidentiality) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UpConfidentialityRm ¶

type UpConfidentialityRm struct {
	NullValue         *NullValue
	UpConfidentiality *UpConfidentiality
}

UpConfidentialityRm indicates whether UP integrity protection is required, preferred or not needed for all the traffic on the PDU Session. It shall comply with the provisions defined in table 5.4.3.4-1, but with the OpenAPI 'nullable: true' property.

func (*UpConfidentialityRm) MarshalJSON ¶

func (src *UpConfidentialityRm) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpConfidentialityRm) UnmarshalJSON ¶

func (dst *UpConfidentialityRm) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UpIntegrity ¶

type UpIntegrity struct {
	String *string
}

UpIntegrity indicates whether UP integrity protection is required, preferred or not needed for all the traffic on the PDU Session. It shall comply with the provisions defined in table 5.4.3.4-1.

func (*UpIntegrity) MarshalJSON ¶

func (src *UpIntegrity) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpIntegrity) UnmarshalJSON ¶

func (dst *UpIntegrity) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UpIntegrityRm ¶

type UpIntegrityRm struct {
	NullValue   *NullValue
	UpIntegrity *UpIntegrity
}

UpIntegrityRm indicates whether UP integrity protection is required, preferred or not needed for all the traffic on the PDU Session. It shall comply with the provisions defined in table 5.4.3.4-1.

func (*UpIntegrityRm) MarshalJSON ¶

func (src *UpIntegrityRm) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpIntegrityRm) UnmarshalJSON ¶

func (dst *UpIntegrityRm) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UpSecurity ¶

type UpSecurity struct {
	UpIntegr UpIntegrity       `json:"upIntegr"`
	UpConfid UpConfidentiality `json:"upConfid"`
}

UpSecurity Contains Userplain security information.

func NewUpSecurity ¶

func NewUpSecurity(upIntegr UpIntegrity, upConfid UpConfidentiality) *UpSecurity

NewUpSecurity instantiates a new UpSecurity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpSecurityWithDefaults ¶

func NewUpSecurityWithDefaults() *UpSecurity

NewUpSecurityWithDefaults instantiates a new UpSecurity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpSecurity) GetUpConfid ¶

func (o *UpSecurity) GetUpConfid() UpConfidentiality

GetUpConfid returns the UpConfid field value

func (*UpSecurity) GetUpConfidOk ¶

func (o *UpSecurity) GetUpConfidOk() (*UpConfidentiality, bool)

GetUpConfidOk returns a tuple with the UpConfid field value and a boolean to check if the value has been set.

func (*UpSecurity) GetUpIntegr ¶

func (o *UpSecurity) GetUpIntegr() UpIntegrity

GetUpIntegr returns the UpIntegr field value

func (*UpSecurity) GetUpIntegrOk ¶

func (o *UpSecurity) GetUpIntegrOk() (*UpIntegrity, bool)

GetUpIntegrOk returns a tuple with the UpIntegr field value and a boolean to check if the value has been set.

func (UpSecurity) MarshalJSON ¶

func (o UpSecurity) MarshalJSON() ([]byte, error)

func (*UpSecurity) SetUpConfid ¶

func (o *UpSecurity) SetUpConfid(v UpConfidentiality)

SetUpConfid sets field value

func (*UpSecurity) SetUpIntegr ¶

func (o *UpSecurity) SetUpIntegr(v UpIntegrity)

SetUpIntegr sets field value

func (UpSecurity) ToMap ¶

func (o UpSecurity) ToMap() (map[string]interface{}, error)

type UpSecurityRm ¶

type UpSecurityRm struct {
	NullValue  *NullValue
	UpSecurity *UpSecurity
}

UpSecurityRm This data type is defined in the same way as the 'UpSecurity' data type, but with the OpenAPI 'nullable: true' property.

func (*UpSecurityRm) MarshalJSON ¶

func (src *UpSecurityRm) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpSecurityRm) UnmarshalJSON ¶

func (dst *UpSecurityRm) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UriScheme ¶

type UriScheme struct {
	String *string
}

UriScheme HTTP and HTTPS URI scheme.

func (*UriScheme) MarshalJSON ¶

func (src *UriScheme) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UriScheme) UnmarshalJSON ¶

func (dst *UriScheme) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UserLocation ¶

type UserLocation struct {
	EutraLocation *EutraLocation `json:"eutraLocation,omitempty"`
	NrLocation    *NrLocation    `json:"nrLocation,omitempty"`
	N3gaLocation  *N3gaLocation  `json:"n3gaLocation,omitempty"`
	UtraLocation  *UtraLocation  `json:"utraLocation,omitempty"`
	GeraLocation  *GeraLocation  `json:"geraLocation,omitempty"`
}

UserLocation At least one of eutraLocation, nrLocation and n3gaLocation shall be present. Several of them may be present.

func NewUserLocation ¶

func NewUserLocation() *UserLocation

NewUserLocation instantiates a new UserLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserLocationWithDefaults ¶

func NewUserLocationWithDefaults() *UserLocation

NewUserLocationWithDefaults instantiates a new UserLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserLocation) GetEutraLocation ¶

func (o *UserLocation) GetEutraLocation() EutraLocation

GetEutraLocation returns the EutraLocation field value if set, zero value otherwise.

func (*UserLocation) GetEutraLocationOk ¶

func (o *UserLocation) GetEutraLocationOk() (*EutraLocation, bool)

GetEutraLocationOk returns a tuple with the EutraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetGeraLocation ¶

func (o *UserLocation) GetGeraLocation() GeraLocation

GetGeraLocation returns the GeraLocation field value if set, zero value otherwise.

func (*UserLocation) GetGeraLocationOk ¶

func (o *UserLocation) GetGeraLocationOk() (*GeraLocation, bool)

GetGeraLocationOk returns a tuple with the GeraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetN3gaLocation ¶

func (o *UserLocation) GetN3gaLocation() N3gaLocation

GetN3gaLocation returns the N3gaLocation field value if set, zero value otherwise.

func (*UserLocation) GetN3gaLocationOk ¶

func (o *UserLocation) GetN3gaLocationOk() (*N3gaLocation, bool)

GetN3gaLocationOk returns a tuple with the N3gaLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetNrLocation ¶

func (o *UserLocation) GetNrLocation() NrLocation

GetNrLocation returns the NrLocation field value if set, zero value otherwise.

func (*UserLocation) GetNrLocationOk ¶

func (o *UserLocation) GetNrLocationOk() (*NrLocation, bool)

GetNrLocationOk returns a tuple with the NrLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetUtraLocation ¶

func (o *UserLocation) GetUtraLocation() UtraLocation

GetUtraLocation returns the UtraLocation field value if set, zero value otherwise.

func (*UserLocation) GetUtraLocationOk ¶

func (o *UserLocation) GetUtraLocationOk() (*UtraLocation, bool)

GetUtraLocationOk returns a tuple with the UtraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) HasEutraLocation ¶

func (o *UserLocation) HasEutraLocation() bool

HasEutraLocation returns a boolean if a field has been set.

func (*UserLocation) HasGeraLocation ¶

func (o *UserLocation) HasGeraLocation() bool

HasGeraLocation returns a boolean if a field has been set.

func (*UserLocation) HasN3gaLocation ¶

func (o *UserLocation) HasN3gaLocation() bool

HasN3gaLocation returns a boolean if a field has been set.

func (*UserLocation) HasNrLocation ¶

func (o *UserLocation) HasNrLocation() bool

HasNrLocation returns a boolean if a field has been set.

func (*UserLocation) HasUtraLocation ¶

func (o *UserLocation) HasUtraLocation() bool

HasUtraLocation returns a boolean if a field has been set.

func (UserLocation) MarshalJSON ¶

func (o UserLocation) MarshalJSON() ([]byte, error)

func (*UserLocation) SetEutraLocation ¶

func (o *UserLocation) SetEutraLocation(v EutraLocation)

SetEutraLocation gets a reference to the given EutraLocation and assigns it to the EutraLocation field.

func (*UserLocation) SetGeraLocation ¶

func (o *UserLocation) SetGeraLocation(v GeraLocation)

SetGeraLocation gets a reference to the given GeraLocation and assigns it to the GeraLocation field.

func (*UserLocation) SetN3gaLocation ¶

func (o *UserLocation) SetN3gaLocation(v N3gaLocation)

SetN3gaLocation gets a reference to the given N3gaLocation and assigns it to the N3gaLocation field.

func (*UserLocation) SetNrLocation ¶

func (o *UserLocation) SetNrLocation(v NrLocation)

SetNrLocation gets a reference to the given NrLocation and assigns it to the NrLocation field.

func (*UserLocation) SetUtraLocation ¶

func (o *UserLocation) SetUtraLocation(v UtraLocation)

SetUtraLocation gets a reference to the given UtraLocation and assigns it to the UtraLocation field.

func (UserLocation) ToMap ¶

func (o UserLocation) ToMap() (map[string]interface{}, error)

type UtraLocation ¶

type UtraLocation struct {
	Interface *interface{}
}

UtraLocation - Exactly one of cgi, sai or lai shall be present.

func InterfaceAsUtraLocation ¶

func InterfaceAsUtraLocation(v *interface{}) UtraLocation

interface{}AsUtraLocation is a convenience function that returns interface{} wrapped in UtraLocation

func (*UtraLocation) GetActualInstance ¶

func (obj *UtraLocation) GetActualInstance() interface{}

Get the actual instance

func (UtraLocation) MarshalJSON ¶

func (src UtraLocation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UtraLocation) UnmarshalJSON ¶

func (dst *UtraLocation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type VolumeTimedReport ¶

type VolumeTimedReport struct {
	// string with format 'date-time' as defined in OpenAPI.
	StartTimeStamp time.Time `json:"startTimeStamp"`
	// string with format 'date-time' as defined in OpenAPI.
	EndTimeStamp time.Time `json:"endTimeStamp"`
	// string with format 'int64' as defined in OpenAPI.
	DownlinkVolume int64 `json:"downlinkVolume"`
	// string with format 'int64' as defined in OpenAPI.
	UplinkVolume int64 `json:"uplinkVolume"`
}

VolumeTimedReport Contains Usage data information.

func NewVolumeTimedReport ¶

func NewVolumeTimedReport(startTimeStamp time.Time, endTimeStamp time.Time, downlinkVolume int64, uplinkVolume int64) *VolumeTimedReport

NewVolumeTimedReport instantiates a new VolumeTimedReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeTimedReportWithDefaults ¶

func NewVolumeTimedReportWithDefaults() *VolumeTimedReport

NewVolumeTimedReportWithDefaults instantiates a new VolumeTimedReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeTimedReport) GetDownlinkVolume ¶

func (o *VolumeTimedReport) GetDownlinkVolume() int64

GetDownlinkVolume returns the DownlinkVolume field value

func (*VolumeTimedReport) GetDownlinkVolumeOk ¶

func (o *VolumeTimedReport) GetDownlinkVolumeOk() (*int64, bool)

GetDownlinkVolumeOk returns a tuple with the DownlinkVolume field value and a boolean to check if the value has been set.

func (*VolumeTimedReport) GetEndTimeStamp ¶

func (o *VolumeTimedReport) GetEndTimeStamp() time.Time

GetEndTimeStamp returns the EndTimeStamp field value

func (*VolumeTimedReport) GetEndTimeStampOk ¶

func (o *VolumeTimedReport) GetEndTimeStampOk() (*time.Time, bool)

GetEndTimeStampOk returns a tuple with the EndTimeStamp field value and a boolean to check if the value has been set.

func (*VolumeTimedReport) GetStartTimeStamp ¶

func (o *VolumeTimedReport) GetStartTimeStamp() time.Time

GetStartTimeStamp returns the StartTimeStamp field value

func (*VolumeTimedReport) GetStartTimeStampOk ¶

func (o *VolumeTimedReport) GetStartTimeStampOk() (*time.Time, bool)

GetStartTimeStampOk returns a tuple with the StartTimeStamp field value and a boolean to check if the value has been set.

func (*VolumeTimedReport) GetUplinkVolume ¶

func (o *VolumeTimedReport) GetUplinkVolume() int64

GetUplinkVolume returns the UplinkVolume field value

func (*VolumeTimedReport) GetUplinkVolumeOk ¶

func (o *VolumeTimedReport) GetUplinkVolumeOk() (*int64, bool)

GetUplinkVolumeOk returns a tuple with the UplinkVolume field value and a boolean to check if the value has been set.

func (VolumeTimedReport) MarshalJSON ¶

func (o VolumeTimedReport) MarshalJSON() ([]byte, error)

func (*VolumeTimedReport) SetDownlinkVolume ¶

func (o *VolumeTimedReport) SetDownlinkVolume(v int64)

SetDownlinkVolume sets field value

func (*VolumeTimedReport) SetEndTimeStamp ¶

func (o *VolumeTimedReport) SetEndTimeStamp(v time.Time)

SetEndTimeStamp sets field value

func (*VolumeTimedReport) SetStartTimeStamp ¶

func (o *VolumeTimedReport) SetStartTimeStamp(v time.Time)

SetStartTimeStamp sets field value

func (*VolumeTimedReport) SetUplinkVolume ¶

func (o *VolumeTimedReport) SetUplinkVolume(v int64)

SetUplinkVolume sets field value

func (VolumeTimedReport) ToMap ¶

func (o VolumeTimedReport) ToMap() (map[string]interface{}, error)

type WirelineArea ¶

type WirelineArea struct {
	GlobalLineIds []string `json:"globalLineIds,omitempty"`
	HfcNIds       []string `json:"hfcNIds,omitempty"`
	// Values are operator specific.
	AreaCodeB *string `json:"areaCodeB,omitempty"`
	// Values are operator specific.
	AreaCodeC *string `json:"areaCodeC,omitempty"`
}

WirelineArea One and only one of the \"globLineIds\", \"hfcNIds\", \"areaCodeB\" and \"areaCodeC\" attributes shall be included in a WirelineArea data structure

func NewWirelineArea ¶

func NewWirelineArea() *WirelineArea

NewWirelineArea instantiates a new WirelineArea object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWirelineAreaWithDefaults ¶

func NewWirelineAreaWithDefaults() *WirelineArea

NewWirelineAreaWithDefaults instantiates a new WirelineArea object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WirelineArea) GetAreaCodeB ¶

func (o *WirelineArea) GetAreaCodeB() string

GetAreaCodeB returns the AreaCodeB field value if set, zero value otherwise.

func (*WirelineArea) GetAreaCodeBOk ¶

func (o *WirelineArea) GetAreaCodeBOk() (*string, bool)

GetAreaCodeBOk returns a tuple with the AreaCodeB field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WirelineArea) GetAreaCodeC ¶

func (o *WirelineArea) GetAreaCodeC() string

GetAreaCodeC returns the AreaCodeC field value if set, zero value otherwise.

func (*WirelineArea) GetAreaCodeCOk ¶

func (o *WirelineArea) GetAreaCodeCOk() (*string, bool)

GetAreaCodeCOk returns a tuple with the AreaCodeC field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WirelineArea) GetGlobalLineIds ¶

func (o *WirelineArea) GetGlobalLineIds() []string

GetGlobalLineIds returns the GlobalLineIds field value if set, zero value otherwise.

func (*WirelineArea) GetGlobalLineIdsOk ¶

func (o *WirelineArea) GetGlobalLineIdsOk() ([]string, bool)

GetGlobalLineIdsOk returns a tuple with the GlobalLineIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WirelineArea) GetHfcNIds ¶

func (o *WirelineArea) GetHfcNIds() []string

GetHfcNIds returns the HfcNIds field value if set, zero value otherwise.

func (*WirelineArea) GetHfcNIdsOk ¶

func (o *WirelineArea) GetHfcNIdsOk() ([]string, bool)

GetHfcNIdsOk returns a tuple with the HfcNIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WirelineArea) HasAreaCodeB ¶

func (o *WirelineArea) HasAreaCodeB() bool

HasAreaCodeB returns a boolean if a field has been set.

func (*WirelineArea) HasAreaCodeC ¶

func (o *WirelineArea) HasAreaCodeC() bool

HasAreaCodeC returns a boolean if a field has been set.

func (*WirelineArea) HasGlobalLineIds ¶

func (o *WirelineArea) HasGlobalLineIds() bool

HasGlobalLineIds returns a boolean if a field has been set.

func (*WirelineArea) HasHfcNIds ¶

func (o *WirelineArea) HasHfcNIds() bool

HasHfcNIds returns a boolean if a field has been set.

func (WirelineArea) MarshalJSON ¶

func (o WirelineArea) MarshalJSON() ([]byte, error)

func (*WirelineArea) SetAreaCodeB ¶

func (o *WirelineArea) SetAreaCodeB(v string)

SetAreaCodeB gets a reference to the given string and assigns it to the AreaCodeB field.

func (*WirelineArea) SetAreaCodeC ¶

func (o *WirelineArea) SetAreaCodeC(v string)

SetAreaCodeC gets a reference to the given string and assigns it to the AreaCodeC field.

func (*WirelineArea) SetGlobalLineIds ¶

func (o *WirelineArea) SetGlobalLineIds(v []string)

SetGlobalLineIds gets a reference to the given []string and assigns it to the GlobalLineIds field.

func (*WirelineArea) SetHfcNIds ¶

func (o *WirelineArea) SetHfcNIds(v []string)

SetHfcNIds gets a reference to the given []string and assigns it to the HfcNIds field.

func (WirelineArea) ToMap ¶

func (o WirelineArea) ToMap() (map[string]interface{}, error)

type WirelineServiceAreaRestriction ¶

type WirelineServiceAreaRestriction struct {
	RestrictionType *RestrictionType `json:"restrictionType,omitempty"`
	Areas           []WirelineArea   `json:"areas,omitempty"`
}

WirelineServiceAreaRestriction The \"restrictionType\" attribute and the \"areas\" attribute shall be either both present or absent. The empty array of areas is used when service is allowed/restricted nowhere.

func NewWirelineServiceAreaRestriction ¶

func NewWirelineServiceAreaRestriction() *WirelineServiceAreaRestriction

NewWirelineServiceAreaRestriction instantiates a new WirelineServiceAreaRestriction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWirelineServiceAreaRestrictionWithDefaults ¶

func NewWirelineServiceAreaRestrictionWithDefaults() *WirelineServiceAreaRestriction

NewWirelineServiceAreaRestrictionWithDefaults instantiates a new WirelineServiceAreaRestriction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WirelineServiceAreaRestriction) GetAreas ¶

GetAreas returns the Areas field value if set, zero value otherwise.

func (*WirelineServiceAreaRestriction) GetAreasOk ¶

func (o *WirelineServiceAreaRestriction) GetAreasOk() ([]WirelineArea, bool)

GetAreasOk returns a tuple with the Areas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WirelineServiceAreaRestriction) GetRestrictionType ¶

func (o *WirelineServiceAreaRestriction) GetRestrictionType() RestrictionType

GetRestrictionType returns the RestrictionType field value if set, zero value otherwise.

func (*WirelineServiceAreaRestriction) GetRestrictionTypeOk ¶

func (o *WirelineServiceAreaRestriction) GetRestrictionTypeOk() (*RestrictionType, bool)

GetRestrictionTypeOk returns a tuple with the RestrictionType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WirelineServiceAreaRestriction) HasAreas ¶

func (o *WirelineServiceAreaRestriction) HasAreas() bool

HasAreas returns a boolean if a field has been set.

func (*WirelineServiceAreaRestriction) HasRestrictionType ¶

func (o *WirelineServiceAreaRestriction) HasRestrictionType() bool

HasRestrictionType returns a boolean if a field has been set.

func (WirelineServiceAreaRestriction) MarshalJSON ¶

func (o WirelineServiceAreaRestriction) MarshalJSON() ([]byte, error)

func (*WirelineServiceAreaRestriction) SetAreas ¶

SetAreas gets a reference to the given []WirelineArea and assigns it to the Areas field.

func (*WirelineServiceAreaRestriction) SetRestrictionType ¶

func (o *WirelineServiceAreaRestriction) SetRestrictionType(v RestrictionType)

SetRestrictionType gets a reference to the given RestrictionType and assigns it to the RestrictionType field.

func (WirelineServiceAreaRestriction) ToMap ¶

func (o WirelineServiceAreaRestriction) ToMap() (map[string]interface{}, error)

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL