OpenAPI_MonitoringEvent

package
v0.0.0-...-e403a3c Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 22, 2023 License: MIT Imports: 21 Imported by: 0

README

Go API client for OpenAPI_MonitoringEvent

API for Monitoring Event.
© 2023, 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.2.2
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

import OpenAPI_MonitoringEvent "gitee.com/konglinglong/openapi/OpenAPI_MonitoringEvent"

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 OpenAPI_MonitoringEvent.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), OpenAPI_MonitoringEvent.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value OpenAPI_MonitoringEvent.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), OpenAPI_MonitoringEvent.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 OpenAPI_MonitoringEvent.ContextOperationServerIndices and OpenAPI_MonitoringEvent.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), OpenAPI_MonitoringEvent.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), OpenAPI_MonitoringEvent.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://example.com/3gpp-monitoring-event/v1

Class Method HTTP request Description
IndividualMonitoringEventSubscriptionAPI DeleteIndMonitoringEventSubscription Delete /{scsAsId}/subscriptions/{subscriptionId} Deletes an already existing monitoring event subscription.
IndividualMonitoringEventSubscriptionAPI FetchIndMonitoringEventSubscription Get /{scsAsId}/subscriptions/{subscriptionId} Read an active subscriptions for the SCS/AS and the subscription Id.
IndividualMonitoringEventSubscriptionAPI ModifyIndMonitoringEventSubscription Patch /{scsAsId}/subscriptions/{subscriptionId} Modifies an existing subscription of monitoring event.
IndividualMonitoringEventSubscriptionAPI UpdateIndMonitoringEventSubscription Put /{scsAsId}/subscriptions/{subscriptionId} Updates/replaces an existing subscription resource.
MonitoringEventSubscriptionsAPI CreateMonitoringEventSubscription Post /{scsAsId}/subscriptions Creates a new subscription resource for monitoring event notification.
MonitoringEventSubscriptionsAPI FetchAllMonitoringEventSubscriptions Get /{scsAsId}/subscriptions Read all or queried active subscriptions for the SCS/AS.

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

oAuth2ClientCredentials
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes: N/A

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedVerticalDirectionEnumValues = []VerticalDirection{
	"UPWARD",
	"DOWNWARD",
}

All allowed values of VerticalDirection enum

Functions

func CacheExpires

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

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

func IsNil

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 {
	IndividualMonitoringEventSubscriptionAPI *IndividualMonitoringEventSubscriptionAPIService

	MonitoringEventSubscriptionsAPI *MonitoringEventSubscriptionsAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the 3gpp-monitoring-event API v1.2.2 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 Accuracy

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

Accuracy Possible values are - CGI_ECGI: The SCS/AS requests to be notified using cell level location accuracy. - ENODEB: The SCS/AS requests to be notified using eNodeB level location accuracy. - TA_RA: The SCS/AS requests to be notified using TA/RA level location accuracy. - PLMN: The SCS/AS requests to be notified using PLMN level location accuracy. - TWAN_ID: The SCS/AS requests to be notified using TWAN identifier level location accuracy. - GEO_AREA: The SCS/AS requests to be notified using the geographical area accuracy. - CIVIC_ADDR: The SCS/AS requests to be notified using the civic address accuracy.

func (*Accuracy) MarshalJSON

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

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

func (*Accuracy) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type AccuracyFulfilmentIndicator

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

AccuracyFulfilmentIndicator Indicates fulfilment of requested accuracy.

func (*AccuracyFulfilmentIndicator) MarshalJSON

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

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

func (*AccuracyFulfilmentIndicator) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ApiCapabilityInfo

type ApiCapabilityInfo struct {
	ApiName string `json:"apiName"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SuppFeat string `json:"suppFeat"`
}

ApiCapabilityInfo Represents the availability information of supported API.

func NewApiCapabilityInfo

func NewApiCapabilityInfo(apiName string, suppFeat string) *ApiCapabilityInfo

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

func NewApiCapabilityInfoWithDefaults

func NewApiCapabilityInfoWithDefaults() *ApiCapabilityInfo

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

func (*ApiCapabilityInfo) GetApiName

func (o *ApiCapabilityInfo) GetApiName() string

GetApiName returns the ApiName field value

func (*ApiCapabilityInfo) GetApiNameOk

func (o *ApiCapabilityInfo) GetApiNameOk() (*string, bool)

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

func (*ApiCapabilityInfo) GetSuppFeat

func (o *ApiCapabilityInfo) GetSuppFeat() string

GetSuppFeat returns the SuppFeat field value

func (*ApiCapabilityInfo) GetSuppFeatOk

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

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

func (ApiCapabilityInfo) MarshalJSON

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

func (*ApiCapabilityInfo) SetApiName

func (o *ApiCapabilityInfo) SetApiName(v string)

SetApiName sets field value

func (*ApiCapabilityInfo) SetSuppFeat

func (o *ApiCapabilityInfo) SetSuppFeat(v string)

SetSuppFeat sets field value

func (ApiCapabilityInfo) ToMap

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

func (*ApiCapabilityInfo) UnmarshalJSON

func (o *ApiCapabilityInfo) UnmarshalJSON(bytes []byte) (err error)

type ApiCreateMonitoringEventSubscriptionRequest

type ApiCreateMonitoringEventSubscriptionRequest struct {
	ApiService *MonitoringEventSubscriptionsAPIService
	// contains filtered or unexported fields
}

func (ApiCreateMonitoringEventSubscriptionRequest) Execute

func (r ApiCreateMonitoringEventSubscriptionRequest) Execute() (*OneOfMonitoringEventReportMonitoringEventReports, *http.Response, error)

func (ApiCreateMonitoringEventSubscriptionRequest) MonitoringEventSubscription

Subscription for notification about monitoring event

type ApiDeleteIndMonitoringEventSubscriptionRequest

type ApiDeleteIndMonitoringEventSubscriptionRequest struct {
	ApiService *IndividualMonitoringEventSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteIndMonitoringEventSubscriptionRequest) Execute

type ApiFetchAllMonitoringEventSubscriptionsRequest

type ApiFetchAllMonitoringEventSubscriptionsRequest struct {
	ApiService *MonitoringEventSubscriptionsAPIService
	// contains filtered or unexported fields
}

func (ApiFetchAllMonitoringEventSubscriptionsRequest) Execute

func (ApiFetchAllMonitoringEventSubscriptionsRequest) IpAddrs

The IP address(es) of the requested UE(s).

func (ApiFetchAllMonitoringEventSubscriptionsRequest) IpDomain

The IPv4 address domain identifier. The attribute may only be provided if IPv4 address is included in the ip-addrs query parameter.

func (ApiFetchAllMonitoringEventSubscriptionsRequest) MacAddrs

The MAC address(es) of the requested UE(s).

type ApiFetchIndMonitoringEventSubscriptionRequest

type ApiFetchIndMonitoringEventSubscriptionRequest struct {
	ApiService *IndividualMonitoringEventSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiFetchIndMonitoringEventSubscriptionRequest) Execute

type ApiModifyIndMonitoringEventSubscriptionRequest

type ApiModifyIndMonitoringEventSubscriptionRequest struct {
	ApiService *IndividualMonitoringEventSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiModifyIndMonitoringEventSubscriptionRequest) Execute

func (ApiModifyIndMonitoringEventSubscriptionRequest) PatchItem

This is used for PATCH request for partial cancellation and/or partial addition of certain UE(s) within an active group.

type ApiUpdateIndMonitoringEventSubscriptionRequest

type ApiUpdateIndMonitoringEventSubscriptionRequest struct {
	ApiService *IndividualMonitoringEventSubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateIndMonitoringEventSubscriptionRequest) Execute

func (ApiUpdateIndMonitoringEventSubscriptionRequest) MonitoringEventSubscription

Parameters to update/replace the existing subscription

type AppliedParameterConfiguration

type AppliedParameterConfiguration struct {
	// Each element uniquely identifies a user.
	ExternalIds []string `json:"externalIds,omitempty"`
	// Each element identifies the MS internal PSTN/ISDN number allocated for a UE.
	Msisdns []string `json:"msisdns,omitempty"`
	// Unsigned integer identifying a period of time in units of seconds.
	MaximumLatency *int32 `json:"maximumLatency,omitempty"`
	// Unsigned integer identifying a period of time in units of seconds.
	MaximumResponseTime *int32 `json:"maximumResponseTime,omitempty"`
	// Unsigned integer identifying a period of time in units of seconds.
	MaximumDetectionTime *int32 `json:"maximumDetectionTime,omitempty"`
}

AppliedParameterConfiguration Represents the parameter configuration applied in the network.

func NewAppliedParameterConfiguration

func NewAppliedParameterConfiguration() *AppliedParameterConfiguration

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

func NewAppliedParameterConfigurationWithDefaults

func NewAppliedParameterConfigurationWithDefaults() *AppliedParameterConfiguration

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

func (*AppliedParameterConfiguration) GetExternalIds

func (o *AppliedParameterConfiguration) GetExternalIds() []string

GetExternalIds returns the ExternalIds field value if set, zero value otherwise.

func (*AppliedParameterConfiguration) GetExternalIdsOk

func (o *AppliedParameterConfiguration) GetExternalIdsOk() ([]string, bool)

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

func (*AppliedParameterConfiguration) GetMaximumDetectionTime

func (o *AppliedParameterConfiguration) GetMaximumDetectionTime() int32

GetMaximumDetectionTime returns the MaximumDetectionTime field value if set, zero value otherwise.

func (*AppliedParameterConfiguration) GetMaximumDetectionTimeOk

func (o *AppliedParameterConfiguration) GetMaximumDetectionTimeOk() (*int32, bool)

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

func (*AppliedParameterConfiguration) GetMaximumLatency

func (o *AppliedParameterConfiguration) GetMaximumLatency() int32

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

func (*AppliedParameterConfiguration) GetMaximumLatencyOk

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

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

func (*AppliedParameterConfiguration) GetMaximumResponseTime

func (o *AppliedParameterConfiguration) GetMaximumResponseTime() int32

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

func (*AppliedParameterConfiguration) GetMaximumResponseTimeOk

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

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

func (*AppliedParameterConfiguration) GetMsisdns

func (o *AppliedParameterConfiguration) GetMsisdns() []string

GetMsisdns returns the Msisdns field value if set, zero value otherwise.

func (*AppliedParameterConfiguration) GetMsisdnsOk

func (o *AppliedParameterConfiguration) GetMsisdnsOk() ([]string, bool)

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

func (*AppliedParameterConfiguration) HasExternalIds

func (o *AppliedParameterConfiguration) HasExternalIds() bool

HasExternalIds returns a boolean if a field has been set.

func (*AppliedParameterConfiguration) HasMaximumDetectionTime

func (o *AppliedParameterConfiguration) HasMaximumDetectionTime() bool

HasMaximumDetectionTime returns a boolean if a field has been set.

func (*AppliedParameterConfiguration) HasMaximumLatency

func (o *AppliedParameterConfiguration) HasMaximumLatency() bool

HasMaximumLatency returns a boolean if a field has been set.

func (*AppliedParameterConfiguration) HasMaximumResponseTime

func (o *AppliedParameterConfiguration) HasMaximumResponseTime() bool

HasMaximumResponseTime returns a boolean if a field has been set.

func (*AppliedParameterConfiguration) HasMsisdns

func (o *AppliedParameterConfiguration) HasMsisdns() bool

HasMsisdns returns a boolean if a field has been set.

func (AppliedParameterConfiguration) MarshalJSON

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

func (*AppliedParameterConfiguration) SetExternalIds

func (o *AppliedParameterConfiguration) SetExternalIds(v []string)

SetExternalIds gets a reference to the given []string and assigns it to the ExternalIds field.

func (*AppliedParameterConfiguration) SetMaximumDetectionTime

func (o *AppliedParameterConfiguration) SetMaximumDetectionTime(v int32)

SetMaximumDetectionTime gets a reference to the given int32 and assigns it to the MaximumDetectionTime field.

func (*AppliedParameterConfiguration) SetMaximumLatency

func (o *AppliedParameterConfiguration) SetMaximumLatency(v int32)

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

func (*AppliedParameterConfiguration) SetMaximumResponseTime

func (o *AppliedParameterConfiguration) SetMaximumResponseTime(v int32)

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

func (*AppliedParameterConfiguration) SetMsisdns

func (o *AppliedParameterConfiguration) SetMsisdns(v []string)

SetMsisdns gets a reference to the given []string and assigns it to the Msisdns field.

func (AppliedParameterConfiguration) ToMap

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

type AssociationType

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

AssociationType Possible values are - IMEI: The value shall be used when the change of IMSI-IMEI association shall be detected - IMEISV: The value shall be used when the change of IMSI-IMEISV association shall be detected

func (*AssociationType) MarshalJSON

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

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

func (*AssociationType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type BasicAuth

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

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

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

type ConfigResult struct {
	// Each element indicates an external identifier of the UE.
	ExternalIds []string `json:"externalIds,omitempty"`
	// Each element identifies the MS internal PSTN/ISDN number allocated for the UE.
	Msisdns      []string     `json:"msisdns,omitempty"`
	ResultReason ResultReason `json:"resultReason"`
}

ConfigResult Represents one configuration processing result for a group's members.

func NewConfigResult

func NewConfigResult(resultReason ResultReason) *ConfigResult

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

func NewConfigResultWithDefaults

func NewConfigResultWithDefaults() *ConfigResult

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

func (*ConfigResult) GetExternalIds

func (o *ConfigResult) GetExternalIds() []string

GetExternalIds returns the ExternalIds field value if set, zero value otherwise.

func (*ConfigResult) GetExternalIdsOk

func (o *ConfigResult) GetExternalIdsOk() ([]string, bool)

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

func (*ConfigResult) GetMsisdns

func (o *ConfigResult) GetMsisdns() []string

GetMsisdns returns the Msisdns field value if set, zero value otherwise.

func (*ConfigResult) GetMsisdnsOk

func (o *ConfigResult) GetMsisdnsOk() ([]string, bool)

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

func (*ConfigResult) GetResultReason

func (o *ConfigResult) GetResultReason() ResultReason

GetResultReason returns the ResultReason field value

func (*ConfigResult) GetResultReasonOk

func (o *ConfigResult) GetResultReasonOk() (*ResultReason, bool)

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

func (*ConfigResult) HasExternalIds

func (o *ConfigResult) HasExternalIds() bool

HasExternalIds returns a boolean if a field has been set.

func (*ConfigResult) HasMsisdns

func (o *ConfigResult) HasMsisdns() bool

HasMsisdns returns a boolean if a field has been set.

func (ConfigResult) MarshalJSON

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

func (*ConfigResult) SetExternalIds

func (o *ConfigResult) SetExternalIds(v []string)

SetExternalIds gets a reference to the given []string and assigns it to the ExternalIds field.

func (*ConfigResult) SetMsisdns

func (o *ConfigResult) SetMsisdns(v []string)

SetMsisdns gets a reference to the given []string and assigns it to the Msisdns field.

func (*ConfigResult) SetResultReason

func (o *ConfigResult) SetResultReason(v ResultReason)

SetResultReason sets field value

func (ConfigResult) ToMap

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

func (*ConfigResult) UnmarshalJSON

func (o *ConfigResult) UnmarshalJSON(bytes []byte) (err error)

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type ConsentRevocNotif

type ConsentRevocNotif struct {
	SubscriptionId  string           `json:"subscriptionId"`
	ConsentsRevoked []ConsentRevoked `json:"consentsRevoked"`
}

ConsentRevocNotif Represents the user consent revocation information conveyed in a user consent revocation notification.

func NewConsentRevocNotif

func NewConsentRevocNotif(subscriptionId string, consentsRevoked []ConsentRevoked) *ConsentRevocNotif

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

func NewConsentRevocNotifWithDefaults

func NewConsentRevocNotifWithDefaults() *ConsentRevocNotif

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

func (*ConsentRevocNotif) GetConsentsRevoked

func (o *ConsentRevocNotif) GetConsentsRevoked() []ConsentRevoked

GetConsentsRevoked returns the ConsentsRevoked field value

func (*ConsentRevocNotif) GetConsentsRevokedOk

func (o *ConsentRevocNotif) GetConsentsRevokedOk() ([]ConsentRevoked, bool)

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

func (*ConsentRevocNotif) GetSubscriptionId

func (o *ConsentRevocNotif) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value

func (*ConsentRevocNotif) GetSubscriptionIdOk

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

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

func (ConsentRevocNotif) MarshalJSON

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

func (*ConsentRevocNotif) SetConsentsRevoked

func (o *ConsentRevocNotif) SetConsentsRevoked(v []ConsentRevoked)

SetConsentsRevoked sets field value

func (*ConsentRevocNotif) SetSubscriptionId

func (o *ConsentRevocNotif) SetSubscriptionId(v string)

SetSubscriptionId sets field value

func (ConsentRevocNotif) ToMap

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

func (*ConsentRevocNotif) UnmarshalJSON

func (o *ConsentRevocNotif) UnmarshalJSON(bytes []byte) (err error)

type ConsentRevoked

type ConsentRevoked struct {
	UcPurpose UcPurpose `json:"ucPurpose"`
	// string containing a local identifier followed by \"@\" and a domain identifier. Both the local identifier and the domain identifier shall be encoded as strings that do not contain any \"@\" characters. See Clause 4.6.2 of 3GPP TS 23.682 for more information.
	ExternalId *string `json:"externalId,omitempty"`
	// string formatted according to clause 3.3 of 3GPP TS 23.003 that describes an MSISDN.
	Msisdn *string `json:"msisdn,omitempty"`
}

ConsentRevoked Represents the information related to a revoked user consent.

func NewConsentRevoked

func NewConsentRevoked(ucPurpose UcPurpose) *ConsentRevoked

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

func NewConsentRevokedWithDefaults

func NewConsentRevokedWithDefaults() *ConsentRevoked

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

func (*ConsentRevoked) GetExternalId

func (o *ConsentRevoked) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ConsentRevoked) GetExternalIdOk

func (o *ConsentRevoked) GetExternalIdOk() (*string, bool)

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

func (*ConsentRevoked) GetMsisdn

func (o *ConsentRevoked) GetMsisdn() string

GetMsisdn returns the Msisdn field value if set, zero value otherwise.

func (*ConsentRevoked) GetMsisdnOk

func (o *ConsentRevoked) GetMsisdnOk() (*string, bool)

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

func (*ConsentRevoked) GetUcPurpose

func (o *ConsentRevoked) GetUcPurpose() UcPurpose

GetUcPurpose returns the UcPurpose field value

func (*ConsentRevoked) GetUcPurposeOk

func (o *ConsentRevoked) GetUcPurposeOk() (*UcPurpose, bool)

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

func (*ConsentRevoked) HasExternalId

func (o *ConsentRevoked) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ConsentRevoked) HasMsisdn

func (o *ConsentRevoked) HasMsisdn() bool

HasMsisdn returns a boolean if a field has been set.

func (ConsentRevoked) MarshalJSON

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

func (*ConsentRevoked) SetExternalId

func (o *ConsentRevoked) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ConsentRevoked) SetMsisdn

func (o *ConsentRevoked) SetMsisdn(v string)

SetMsisdn gets a reference to the given string and assigns it to the Msisdn field.

func (*ConsentRevoked) SetUcPurpose

func (o *ConsentRevoked) SetUcPurpose(v UcPurpose)

SetUcPurpose sets field value

func (ConsentRevoked) ToMap

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

func (*ConsentRevoked) UnmarshalJSON

func (o *ConsentRevoked) UnmarshalJSON(bytes []byte) (err error)

type DddTrafficDescriptor

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

DddTrafficDescriptor Contains a Traffic Descriptor.

func NewDddTrafficDescriptor

func NewDddTrafficDescriptor() *DddTrafficDescriptor

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

func NewDddTrafficDescriptorWithDefaults

func NewDddTrafficDescriptorWithDefaults() *DddTrafficDescriptor

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

func (*DddTrafficDescriptor) GetIpv4Addr

func (o *DddTrafficDescriptor) GetIpv4Addr() string

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

func (*DddTrafficDescriptor) GetIpv4AddrOk

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

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

func (*DddTrafficDescriptor) GetIpv6Addr

func (o *DddTrafficDescriptor) GetIpv6Addr() Ipv6Addr

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

func (*DddTrafficDescriptor) GetIpv6AddrOk

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

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

func (*DddTrafficDescriptor) GetMacAddr

func (o *DddTrafficDescriptor) GetMacAddr() string

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

func (*DddTrafficDescriptor) GetMacAddrOk

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

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

func (*DddTrafficDescriptor) GetPortNumber

func (o *DddTrafficDescriptor) GetPortNumber() int32

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

func (*DddTrafficDescriptor) GetPortNumberOk

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

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

func (*DddTrafficDescriptor) HasIpv4Addr

func (o *DddTrafficDescriptor) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasIpv6Addr

func (o *DddTrafficDescriptor) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasMacAddr

func (o *DddTrafficDescriptor) HasMacAddr() bool

HasMacAddr returns a boolean if a field has been set.

func (*DddTrafficDescriptor) HasPortNumber

func (o *DddTrafficDescriptor) HasPortNumber() bool

HasPortNumber returns a boolean if a field has been set.

func (DddTrafficDescriptor) MarshalJSON

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

func (*DddTrafficDescriptor) SetIpv4Addr

func (o *DddTrafficDescriptor) SetIpv4Addr(v string)

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

func (*DddTrafficDescriptor) SetIpv6Addr

func (o *DddTrafficDescriptor) SetIpv6Addr(v Ipv6Addr)

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

func (*DddTrafficDescriptor) SetMacAddr

func (o *DddTrafficDescriptor) SetMacAddr(v string)

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

func (*DddTrafficDescriptor) SetPortNumber

func (o *DddTrafficDescriptor) SetPortNumber(v int32)

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

func (DddTrafficDescriptor) ToMap

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

type DlDataDeliveryStatus

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

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

func (*DlDataDeliveryStatus) MarshalJSON

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

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

func (*DlDataDeliveryStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Ecgi

type Ecgi struct {
	PlmnId PlmnId1 `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 PlmnId1, 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() PlmnId1

GetPlmnId returns the PlmnId field value

func (*Ecgi) GetPlmnIdOk

func (o *Ecgi) GetPlmnIdOk() (*PlmnId1, 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 PlmnId1)

SetPlmnId sets field value

func (Ecgi) ToMap

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

func (*Ecgi) UnmarshalJSON

func (o *Ecgi) UnmarshalJSON(bytes []byte) (err error)

type EllipsoidArc

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

EllipsoidArc Ellipsoid Arc.

func NewEllipsoidArc

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

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

func NewEllipsoidArcWithDefaults

func NewEllipsoidArcWithDefaults() *EllipsoidArc

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

func (*EllipsoidArc) GetConfidence

func (o *EllipsoidArc) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*EllipsoidArc) GetConfidenceOk

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

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

func (*EllipsoidArc) GetIncludedAngle

func (o *EllipsoidArc) GetIncludedAngle() int32

GetIncludedAngle returns the IncludedAngle field value

func (*EllipsoidArc) GetIncludedAngleOk

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

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

func (*EllipsoidArc) GetInnerRadius

func (o *EllipsoidArc) GetInnerRadius() int32

GetInnerRadius returns the InnerRadius field value

func (*EllipsoidArc) GetInnerRadiusOk

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

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

func (*EllipsoidArc) GetOffsetAngle

func (o *EllipsoidArc) GetOffsetAngle() int32

GetOffsetAngle returns the OffsetAngle field value

func (*EllipsoidArc) GetOffsetAngleOk

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

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

func (*EllipsoidArc) GetPoint

func (o *EllipsoidArc) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*EllipsoidArc) GetPointOk

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

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

func (*EllipsoidArc) GetUncertaintyRadius

func (o *EllipsoidArc) GetUncertaintyRadius() float32

GetUncertaintyRadius returns the UncertaintyRadius field value

func (*EllipsoidArc) GetUncertaintyRadiusOk

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

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

func (EllipsoidArc) MarshalJSON

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

func (*EllipsoidArc) SetConfidence

func (o *EllipsoidArc) SetConfidence(v int32)

SetConfidence sets field value

func (*EllipsoidArc) SetIncludedAngle

func (o *EllipsoidArc) SetIncludedAngle(v int32)

SetIncludedAngle sets field value

func (*EllipsoidArc) SetInnerRadius

func (o *EllipsoidArc) SetInnerRadius(v int32)

SetInnerRadius sets field value

func (*EllipsoidArc) SetOffsetAngle

func (o *EllipsoidArc) SetOffsetAngle(v int32)

SetOffsetAngle sets field value

func (*EllipsoidArc) SetPoint

func (o *EllipsoidArc) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (*EllipsoidArc) SetUncertaintyRadius

func (o *EllipsoidArc) SetUncertaintyRadius(v float32)

SetUncertaintyRadius sets field value

func (EllipsoidArc) ToMap

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

func (*EllipsoidArc) UnmarshalJSON

func (o *EllipsoidArc) UnmarshalJSON(bytes []byte) (err error)

type FailureCause

type FailureCause struct {
	// Identifies a non-transparent copy of the BSSGP cause code. Refer to 3GPP TS 29.128.
	BssgpCause *int32 `json:"bssgpCause,omitempty"`
	// Identify the type of the S1AP-Cause. Refer to 3GPP TS 29.128.
	CauseType *int32 `json:"causeType,omitempty"`
	// Identifies a non-transparent copy of the GMM cause code. Refer to 3GPP TS 29.128.
	GmmCause *int32 `json:"gmmCause,omitempty"`
	// Identifies a non-transparent copy of the RANAP cause code. Refer to 3GPP TS 29.128.
	RanapCause *int32 `json:"ranapCause,omitempty"`
	// Indicates RAN and/or NAS release cause code information, TWAN release cause code information or untrusted WLAN release cause code information. Refer to 3GPP TS 29.214.
	RanNasCause *string `json:"ranNasCause,omitempty"`
	// Identifies a non-transparent copy of the S1AP cause code. Refer to 3GPP TS 29.128.
	S1ApCause *int32 `json:"s1ApCause,omitempty"`
	// Identifies a non-transparent copy of the SM cause code. Refer to 3GPP TS 29.128.
	SmCause *int32 `json:"smCause,omitempty"`
}

FailureCause Represents the reason of communication failure.

func NewFailureCause

func NewFailureCause() *FailureCause

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

func NewFailureCauseWithDefaults

func NewFailureCauseWithDefaults() *FailureCause

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

func (*FailureCause) GetBssgpCause

func (o *FailureCause) GetBssgpCause() int32

GetBssgpCause returns the BssgpCause field value if set, zero value otherwise.

func (*FailureCause) GetBssgpCauseOk

func (o *FailureCause) GetBssgpCauseOk() (*int32, bool)

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

func (*FailureCause) GetCauseType

func (o *FailureCause) GetCauseType() int32

GetCauseType returns the CauseType field value if set, zero value otherwise.

func (*FailureCause) GetCauseTypeOk

func (o *FailureCause) GetCauseTypeOk() (*int32, bool)

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

func (*FailureCause) GetGmmCause

func (o *FailureCause) GetGmmCause() int32

GetGmmCause returns the GmmCause field value if set, zero value otherwise.

func (*FailureCause) GetGmmCauseOk

func (o *FailureCause) GetGmmCauseOk() (*int32, bool)

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

func (*FailureCause) GetRanNasCause

func (o *FailureCause) GetRanNasCause() string

GetRanNasCause returns the RanNasCause field value if set, zero value otherwise.

func (*FailureCause) GetRanNasCauseOk

func (o *FailureCause) GetRanNasCauseOk() (*string, bool)

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

func (*FailureCause) GetRanapCause

func (o *FailureCause) GetRanapCause() int32

GetRanapCause returns the RanapCause field value if set, zero value otherwise.

func (*FailureCause) GetRanapCauseOk

func (o *FailureCause) GetRanapCauseOk() (*int32, bool)

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

func (*FailureCause) GetS1ApCause

func (o *FailureCause) GetS1ApCause() int32

GetS1ApCause returns the S1ApCause field value if set, zero value otherwise.

func (*FailureCause) GetS1ApCauseOk

func (o *FailureCause) GetS1ApCauseOk() (*int32, bool)

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

func (*FailureCause) GetSmCause

func (o *FailureCause) GetSmCause() int32

GetSmCause returns the SmCause field value if set, zero value otherwise.

func (*FailureCause) GetSmCauseOk

func (o *FailureCause) GetSmCauseOk() (*int32, bool)

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

func (*FailureCause) HasBssgpCause

func (o *FailureCause) HasBssgpCause() bool

HasBssgpCause returns a boolean if a field has been set.

func (*FailureCause) HasCauseType

func (o *FailureCause) HasCauseType() bool

HasCauseType returns a boolean if a field has been set.

func (*FailureCause) HasGmmCause

func (o *FailureCause) HasGmmCause() bool

HasGmmCause returns a boolean if a field has been set.

func (*FailureCause) HasRanNasCause

func (o *FailureCause) HasRanNasCause() bool

HasRanNasCause returns a boolean if a field has been set.

func (*FailureCause) HasRanapCause

func (o *FailureCause) HasRanapCause() bool

HasRanapCause returns a boolean if a field has been set.

func (*FailureCause) HasS1ApCause

func (o *FailureCause) HasS1ApCause() bool

HasS1ApCause returns a boolean if a field has been set.

func (*FailureCause) HasSmCause

func (o *FailureCause) HasSmCause() bool

HasSmCause returns a boolean if a field has been set.

func (FailureCause) MarshalJSON

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

func (*FailureCause) SetBssgpCause

func (o *FailureCause) SetBssgpCause(v int32)

SetBssgpCause gets a reference to the given int32 and assigns it to the BssgpCause field.

func (*FailureCause) SetCauseType

func (o *FailureCause) SetCauseType(v int32)

SetCauseType gets a reference to the given int32 and assigns it to the CauseType field.

func (*FailureCause) SetGmmCause

func (o *FailureCause) SetGmmCause(v int32)

SetGmmCause gets a reference to the given int32 and assigns it to the GmmCause field.

func (*FailureCause) SetRanNasCause

func (o *FailureCause) SetRanNasCause(v string)

SetRanNasCause gets a reference to the given string and assigns it to the RanNasCause field.

func (*FailureCause) SetRanapCause

func (o *FailureCause) SetRanapCause(v int32)

SetRanapCause gets a reference to the given int32 and assigns it to the RanapCause field.

func (*FailureCause) SetS1ApCause

func (o *FailureCause) SetS1ApCause(v int32)

SetS1ApCause gets a reference to the given int32 and assigns it to the S1ApCause field.

func (*FailureCause) SetSmCause

func (o *FailureCause) SetSmCause(v int32)

SetSmCause gets a reference to the given int32 and assigns it to the SmCause field.

func (FailureCause) ToMap

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

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)

func (*GADShape) UnmarshalJSON

func (o *GADShape) UnmarshalJSON(bytes []byte) (err 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)

func (*GNbId) UnmarshalJSON

func (o *GNbId) UnmarshalJSON(bytes []byte) (err error)

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GeographicArea

type GeographicArea struct {
	EllipsoidArc                     *EllipsoidArc
	Local2dPointUncertaintyEllipse   *Local2dPointUncertaintyEllipse
	Local3dPointUncertaintyEllipsoid *Local3dPointUncertaintyEllipsoid
	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)

func (*GeographicalCoordinates) UnmarshalJSON

func (o *GeographicalCoordinates) UnmarshalJSON(bytes []byte) (err error)

type GlobalRanNodeId

type GlobalRanNodeId struct {
	PlmnId PlmnId1 `json:"plmnId"`
	// This represents the identifier of the N3IWF ID as specified in clause 9.3.1.57 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 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"`
	GNbId   *GNbId  `json:"gNbId,omitempty"`
	// This represents the identifier of the ng-eNB ID as specified in clause 9.3.1.8 of  3GPP TS 38.413. The value of the ng-eNB 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, so the most  significant character representing the padding 0 if required together with the 4 most  significant bits of the ng-eNB ID shall appear first in the string, and the character  representing the 4 least significant bit of the ng-eNB ID (to form a nibble) shall appear last  in the string.
	NgeNbId *string `json:"ngeNbId,omitempty"`
	// This represents the identifier of the W-AGF ID as specified in clause 9.3.1.162 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 W-AGF ID shall appear first in the  string, and the character representing the 4 least significant bit of the W-AGF ID shall  appear last in the string.
	WagfId *string `json:"wagfId,omitempty"`
	// This represents the identifier of the TNGF ID as specified in clause 9.3.1.161 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 TNGF ID shall appear first in the string, and the character  representing the 4 least significant bit of the TNGF ID shall appear last in the string.
	TngfId *string `json:"tngfId,omitempty"`
	// 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"`
	// This represents the identifier of the eNB ID as specified in clause 9.2.1.37 of  3GPP TS 36.413. The string shall be formatted with the following pattern  '^('MacroeNB-[A-Fa-f0-9]{5}|LMacroeNB-[A-Fa-f0-9]{6}|SMacroeNB-[A-Fa-f0-9]{5} |HomeeNB-[A-Fa-f0-9]{7})$'. The value of the eNB 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, so the most significant character  representing the padding 0 if required together with the 4 most significant bits of the eNB ID  shall appear first in the string, and the character representing the 4 least significant bit  of the eNB ID (to form a nibble) shall appear last in the string.
	ENbId *string `json:"eNbId,omitempty"`
}

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

func NewGlobalRanNodeId

func NewGlobalRanNodeId(plmnId PlmnId1) *GlobalRanNodeId

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

func NewGlobalRanNodeIdWithDefaults

func NewGlobalRanNodeIdWithDefaults() *GlobalRanNodeId

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

func (*GlobalRanNodeId) GetENbId

func (o *GlobalRanNodeId) GetENbId() string

GetENbId returns the ENbId field value if set, zero value otherwise.

func (*GlobalRanNodeId) GetENbIdOk

func (o *GlobalRanNodeId) GetENbIdOk() (*string, bool)

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

func (*GlobalRanNodeId) GetGNbId

func (o *GlobalRanNodeId) GetGNbId() GNbId

GetGNbId returns the GNbId field value if set, zero value otherwise.

func (*GlobalRanNodeId) GetGNbIdOk

func (o *GlobalRanNodeId) GetGNbIdOk() (*GNbId, bool)

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

func (*GlobalRanNodeId) GetN3IwfId

func (o *GlobalRanNodeId) GetN3IwfId() string

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

func (*GlobalRanNodeId) GetN3IwfIdOk

func (o *GlobalRanNodeId) 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 (*GlobalRanNodeId) GetNgeNbId

func (o *GlobalRanNodeId) GetNgeNbId() string

GetNgeNbId returns the NgeNbId field value if set, zero value otherwise.

func (*GlobalRanNodeId) GetNgeNbIdOk

func (o *GlobalRanNodeId) GetNgeNbIdOk() (*string, bool)

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

func (*GlobalRanNodeId) GetNid

func (o *GlobalRanNodeId) GetNid() string

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

func (*GlobalRanNodeId) GetNidOk

func (o *GlobalRanNodeId) 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 (*GlobalRanNodeId) GetPlmnId

func (o *GlobalRanNodeId) GetPlmnId() PlmnId1

GetPlmnId returns the PlmnId field value

func (*GlobalRanNodeId) GetPlmnIdOk

func (o *GlobalRanNodeId) GetPlmnIdOk() (*PlmnId1, bool)

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

func (*GlobalRanNodeId) GetTngfId

func (o *GlobalRanNodeId) GetTngfId() string

GetTngfId returns the TngfId field value if set, zero value otherwise.

func (*GlobalRanNodeId) GetTngfIdOk

func (o *GlobalRanNodeId) GetTngfIdOk() (*string, bool)

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

func (*GlobalRanNodeId) GetWagfId

func (o *GlobalRanNodeId) GetWagfId() string

GetWagfId returns the WagfId field value if set, zero value otherwise.

func (*GlobalRanNodeId) GetWagfIdOk

func (o *GlobalRanNodeId) GetWagfIdOk() (*string, bool)

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

func (*GlobalRanNodeId) HasENbId

func (o *GlobalRanNodeId) HasENbId() bool

HasENbId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasGNbId

func (o *GlobalRanNodeId) HasGNbId() bool

HasGNbId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasN3IwfId

func (o *GlobalRanNodeId) HasN3IwfId() bool

HasN3IwfId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasNgeNbId

func (o *GlobalRanNodeId) HasNgeNbId() bool

HasNgeNbId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasNid

func (o *GlobalRanNodeId) HasNid() bool

HasNid returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasTngfId

func (o *GlobalRanNodeId) HasTngfId() bool

HasTngfId returns a boolean if a field has been set.

func (*GlobalRanNodeId) HasWagfId

func (o *GlobalRanNodeId) HasWagfId() bool

HasWagfId returns a boolean if a field has been set.

func (GlobalRanNodeId) MarshalJSON

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

func (*GlobalRanNodeId) SetENbId

func (o *GlobalRanNodeId) SetENbId(v string)

SetENbId gets a reference to the given string and assigns it to the ENbId field.

func (*GlobalRanNodeId) SetGNbId

func (o *GlobalRanNodeId) SetGNbId(v GNbId)

SetGNbId gets a reference to the given GNbId and assigns it to the GNbId field.

func (*GlobalRanNodeId) SetN3IwfId

func (o *GlobalRanNodeId) SetN3IwfId(v string)

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

func (*GlobalRanNodeId) SetNgeNbId

func (o *GlobalRanNodeId) SetNgeNbId(v string)

SetNgeNbId gets a reference to the given string and assigns it to the NgeNbId field.

func (*GlobalRanNodeId) SetNid

func (o *GlobalRanNodeId) SetNid(v string)

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

func (*GlobalRanNodeId) SetPlmnId

func (o *GlobalRanNodeId) SetPlmnId(v PlmnId1)

SetPlmnId sets field value

func (*GlobalRanNodeId) SetTngfId

func (o *GlobalRanNodeId) SetTngfId(v string)

SetTngfId gets a reference to the given string and assigns it to the TngfId field.

func (*GlobalRanNodeId) SetWagfId

func (o *GlobalRanNodeId) SetWagfId(v string)

SetWagfId gets a reference to the given string and assigns it to the WagfId field.

func (GlobalRanNodeId) ToMap

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

func (*GlobalRanNodeId) UnmarshalJSON

func (o *GlobalRanNodeId) UnmarshalJSON(bytes []byte) (err error)

type HorizontalVelocity

type HorizontalVelocity struct {
	// Indicates value of horizontal speed.
	HSpeed float32 `json:"hSpeed"`
	// Indicates value of angle.
	Bearing int32 `json:"bearing"`
}

HorizontalVelocity Horizontal velocity.

func NewHorizontalVelocity

func NewHorizontalVelocity(hSpeed float32, bearing int32) *HorizontalVelocity

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

func NewHorizontalVelocityWithDefaults

func NewHorizontalVelocityWithDefaults() *HorizontalVelocity

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

func (*HorizontalVelocity) GetBearing

func (o *HorizontalVelocity) GetBearing() int32

GetBearing returns the Bearing field value

func (*HorizontalVelocity) GetBearingOk

func (o *HorizontalVelocity) GetBearingOk() (*int32, bool)

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

func (*HorizontalVelocity) GetHSpeed

func (o *HorizontalVelocity) GetHSpeed() float32

GetHSpeed returns the HSpeed field value

func (*HorizontalVelocity) GetHSpeedOk

func (o *HorizontalVelocity) GetHSpeedOk() (*float32, bool)

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

func (HorizontalVelocity) MarshalJSON

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

func (*HorizontalVelocity) SetBearing

func (o *HorizontalVelocity) SetBearing(v int32)

SetBearing sets field value

func (*HorizontalVelocity) SetHSpeed

func (o *HorizontalVelocity) SetHSpeed(v float32)

SetHSpeed sets field value

func (HorizontalVelocity) ToMap

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

func (*HorizontalVelocity) UnmarshalJSON

func (o *HorizontalVelocity) UnmarshalJSON(bytes []byte) (err error)

type HorizontalVelocityWithUncertainty

type HorizontalVelocityWithUncertainty struct {
	// Indicates value of horizontal speed.
	HSpeed float32 `json:"hSpeed"`
	// Indicates value of angle.
	Bearing int32 `json:"bearing"`
	// Indicates value of speed uncertainty.
	HUncertainty float32 `json:"hUncertainty"`
}

HorizontalVelocityWithUncertainty Horizontal velocity with speed uncertainty.

func NewHorizontalVelocityWithUncertainty

func NewHorizontalVelocityWithUncertainty(hSpeed float32, bearing int32, hUncertainty float32) *HorizontalVelocityWithUncertainty

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

func NewHorizontalVelocityWithUncertaintyWithDefaults

func NewHorizontalVelocityWithUncertaintyWithDefaults() *HorizontalVelocityWithUncertainty

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

func (*HorizontalVelocityWithUncertainty) GetBearing

func (o *HorizontalVelocityWithUncertainty) GetBearing() int32

GetBearing returns the Bearing field value

func (*HorizontalVelocityWithUncertainty) GetBearingOk

func (o *HorizontalVelocityWithUncertainty) GetBearingOk() (*int32, bool)

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

func (*HorizontalVelocityWithUncertainty) GetHSpeed

GetHSpeed returns the HSpeed field value

func (*HorizontalVelocityWithUncertainty) GetHSpeedOk

func (o *HorizontalVelocityWithUncertainty) GetHSpeedOk() (*float32, bool)

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

func (*HorizontalVelocityWithUncertainty) GetHUncertainty

func (o *HorizontalVelocityWithUncertainty) GetHUncertainty() float32

GetHUncertainty returns the HUncertainty field value

func (*HorizontalVelocityWithUncertainty) GetHUncertaintyOk

func (o *HorizontalVelocityWithUncertainty) GetHUncertaintyOk() (*float32, bool)

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

func (HorizontalVelocityWithUncertainty) MarshalJSON

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

func (*HorizontalVelocityWithUncertainty) SetBearing

func (o *HorizontalVelocityWithUncertainty) SetBearing(v int32)

SetBearing sets field value

func (*HorizontalVelocityWithUncertainty) SetHSpeed

SetHSpeed sets field value

func (*HorizontalVelocityWithUncertainty) SetHUncertainty

func (o *HorizontalVelocityWithUncertainty) SetHUncertainty(v float32)

SetHUncertainty sets field value

func (HorizontalVelocityWithUncertainty) ToMap

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

func (*HorizontalVelocityWithUncertainty) UnmarshalJSON

func (o *HorizontalVelocityWithUncertainty) UnmarshalJSON(bytes []byte) (err error)

type HorizontalWithVerticalVelocity

type HorizontalWithVerticalVelocity struct {
	// Indicates value of horizontal speed.
	HSpeed float32 `json:"hSpeed"`
	// Indicates value of angle.
	Bearing int32 `json:"bearing"`
	// Indicates value of vertical speed.
	VSpeed     float32           `json:"vSpeed"`
	VDirection VerticalDirection `json:"vDirection"`
}

HorizontalWithVerticalVelocity Horizontal and vertical velocity.

func NewHorizontalWithVerticalVelocity

func NewHorizontalWithVerticalVelocity(hSpeed float32, bearing int32, vSpeed float32, vDirection VerticalDirection) *HorizontalWithVerticalVelocity

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

func NewHorizontalWithVerticalVelocityWithDefaults

func NewHorizontalWithVerticalVelocityWithDefaults() *HorizontalWithVerticalVelocity

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

func (*HorizontalWithVerticalVelocity) GetBearing

func (o *HorizontalWithVerticalVelocity) GetBearing() int32

GetBearing returns the Bearing field value

func (*HorizontalWithVerticalVelocity) GetBearingOk

func (o *HorizontalWithVerticalVelocity) GetBearingOk() (*int32, bool)

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

func (*HorizontalWithVerticalVelocity) GetHSpeed

func (o *HorizontalWithVerticalVelocity) GetHSpeed() float32

GetHSpeed returns the HSpeed field value

func (*HorizontalWithVerticalVelocity) GetHSpeedOk

func (o *HorizontalWithVerticalVelocity) GetHSpeedOk() (*float32, bool)

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

func (*HorizontalWithVerticalVelocity) GetVDirection

GetVDirection returns the VDirection field value

func (*HorizontalWithVerticalVelocity) GetVDirectionOk

func (o *HorizontalWithVerticalVelocity) GetVDirectionOk() (*VerticalDirection, bool)

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

func (*HorizontalWithVerticalVelocity) GetVSpeed

func (o *HorizontalWithVerticalVelocity) GetVSpeed() float32

GetVSpeed returns the VSpeed field value

func (*HorizontalWithVerticalVelocity) GetVSpeedOk

func (o *HorizontalWithVerticalVelocity) GetVSpeedOk() (*float32, bool)

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

func (HorizontalWithVerticalVelocity) MarshalJSON

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

func (*HorizontalWithVerticalVelocity) SetBearing

func (o *HorizontalWithVerticalVelocity) SetBearing(v int32)

SetBearing sets field value

func (*HorizontalWithVerticalVelocity) SetHSpeed

func (o *HorizontalWithVerticalVelocity) SetHSpeed(v float32)

SetHSpeed sets field value

func (*HorizontalWithVerticalVelocity) SetVDirection

SetVDirection sets field value

func (*HorizontalWithVerticalVelocity) SetVSpeed

func (o *HorizontalWithVerticalVelocity) SetVSpeed(v float32)

SetVSpeed sets field value

func (HorizontalWithVerticalVelocity) ToMap

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

func (*HorizontalWithVerticalVelocity) UnmarshalJSON

func (o *HorizontalWithVerticalVelocity) UnmarshalJSON(bytes []byte) (err error)

type HorizontalWithVerticalVelocityAndUncertainty

type HorizontalWithVerticalVelocityAndUncertainty struct {
	// Indicates value of horizontal speed.
	HSpeed float32 `json:"hSpeed"`
	// Indicates value of angle.
	Bearing int32 `json:"bearing"`
	// Indicates value of vertical speed.
	VSpeed     float32           `json:"vSpeed"`
	VDirection VerticalDirection `json:"vDirection"`
	// Indicates value of speed uncertainty.
	HUncertainty float32 `json:"hUncertainty"`
	// Indicates value of speed uncertainty.
	VUncertainty float32 `json:"vUncertainty"`
}

HorizontalWithVerticalVelocityAndUncertainty Horizontal and vertical velocity with speed uncertainty.

func NewHorizontalWithVerticalVelocityAndUncertainty

func NewHorizontalWithVerticalVelocityAndUncertainty(hSpeed float32, bearing int32, vSpeed float32, vDirection VerticalDirection, hUncertainty float32, vUncertainty float32) *HorizontalWithVerticalVelocityAndUncertainty

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

func NewHorizontalWithVerticalVelocityAndUncertaintyWithDefaults

func NewHorizontalWithVerticalVelocityAndUncertaintyWithDefaults() *HorizontalWithVerticalVelocityAndUncertainty

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

func (*HorizontalWithVerticalVelocityAndUncertainty) GetBearing

GetBearing returns the Bearing field value

func (*HorizontalWithVerticalVelocityAndUncertainty) GetBearingOk

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

func (*HorizontalWithVerticalVelocityAndUncertainty) GetHSpeed

GetHSpeed returns the HSpeed field value

func (*HorizontalWithVerticalVelocityAndUncertainty) GetHSpeedOk

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

func (*HorizontalWithVerticalVelocityAndUncertainty) GetHUncertainty

GetHUncertainty returns the HUncertainty field value

func (*HorizontalWithVerticalVelocityAndUncertainty) GetHUncertaintyOk

func (o *HorizontalWithVerticalVelocityAndUncertainty) GetHUncertaintyOk() (*float32, bool)

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

func (*HorizontalWithVerticalVelocityAndUncertainty) GetVDirection

GetVDirection returns the VDirection field value

func (*HorizontalWithVerticalVelocityAndUncertainty) GetVDirectionOk

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

func (*HorizontalWithVerticalVelocityAndUncertainty) GetVSpeed

GetVSpeed returns the VSpeed field value

func (*HorizontalWithVerticalVelocityAndUncertainty) GetVSpeedOk

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

func (*HorizontalWithVerticalVelocityAndUncertainty) GetVUncertainty

GetVUncertainty returns the VUncertainty field value

func (*HorizontalWithVerticalVelocityAndUncertainty) GetVUncertaintyOk

func (o *HorizontalWithVerticalVelocityAndUncertainty) GetVUncertaintyOk() (*float32, bool)

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

func (HorizontalWithVerticalVelocityAndUncertainty) MarshalJSON

func (*HorizontalWithVerticalVelocityAndUncertainty) SetBearing

SetBearing sets field value

func (*HorizontalWithVerticalVelocityAndUncertainty) SetHSpeed

SetHSpeed sets field value

func (*HorizontalWithVerticalVelocityAndUncertainty) SetHUncertainty

SetHUncertainty sets field value

func (*HorizontalWithVerticalVelocityAndUncertainty) SetVDirection

SetVDirection sets field value

func (*HorizontalWithVerticalVelocityAndUncertainty) SetVSpeed

SetVSpeed sets field value

func (*HorizontalWithVerticalVelocityAndUncertainty) SetVUncertainty

SetVUncertainty sets field value

func (HorizontalWithVerticalVelocityAndUncertainty) ToMap

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

func (*HorizontalWithVerticalVelocityAndUncertainty) UnmarshalJSON

func (o *HorizontalWithVerticalVelocityAndUncertainty) UnmarshalJSON(bytes []byte) (err error)

type IdleStatusInfo

type IdleStatusInfo struct {
	// Unsigned integer identifying a period of time in units of seconds.
	ActiveTime      *int32   `json:"activeTime,omitempty"`
	EdrxCycleLength *float32 `json:"edrxCycleLength,omitempty"`
	// Identifies the number of packets shall be buffered in the serving gateway. It shall be present if the idle status indication is requested by the SCS/AS with \"idleStatusIndication\" in the \"monitoringEventSubscription\" sets to \"true\".
	SuggestedNumberOfDlPackets *int32 `json:"suggestedNumberOfDlPackets,omitempty"`
	// string with format \"date-time\" as defined in OpenAPI.
	IdleStatusTimestamp *time.Time `json:"idleStatusTimestamp,omitempty"`
	// Unsigned integer identifying a period of time in units of seconds.
	PeriodicAUTimer *int32 `json:"periodicAUTimer,omitempty"`
}

IdleStatusInfo Represents the information relevant to when the UE transitions into idle mode.

func NewIdleStatusInfo

func NewIdleStatusInfo() *IdleStatusInfo

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

func NewIdleStatusInfoWithDefaults

func NewIdleStatusInfoWithDefaults() *IdleStatusInfo

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

func (*IdleStatusInfo) GetActiveTime

func (o *IdleStatusInfo) GetActiveTime() int32

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

func (*IdleStatusInfo) GetActiveTimeOk

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

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

func (*IdleStatusInfo) GetEdrxCycleLength

func (o *IdleStatusInfo) GetEdrxCycleLength() float32

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

func (*IdleStatusInfo) GetEdrxCycleLengthOk

func (o *IdleStatusInfo) GetEdrxCycleLengthOk() (*float32, bool)

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

func (*IdleStatusInfo) GetIdleStatusTimestamp

func (o *IdleStatusInfo) GetIdleStatusTimestamp() time.Time

GetIdleStatusTimestamp returns the IdleStatusTimestamp field value if set, zero value otherwise.

func (*IdleStatusInfo) GetIdleStatusTimestampOk

func (o *IdleStatusInfo) GetIdleStatusTimestampOk() (*time.Time, bool)

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

func (*IdleStatusInfo) GetPeriodicAUTimer

func (o *IdleStatusInfo) GetPeriodicAUTimer() int32

GetPeriodicAUTimer returns the PeriodicAUTimer field value if set, zero value otherwise.

func (*IdleStatusInfo) GetPeriodicAUTimerOk

func (o *IdleStatusInfo) GetPeriodicAUTimerOk() (*int32, bool)

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

func (*IdleStatusInfo) GetSuggestedNumberOfDlPackets

func (o *IdleStatusInfo) GetSuggestedNumberOfDlPackets() int32

GetSuggestedNumberOfDlPackets returns the SuggestedNumberOfDlPackets field value if set, zero value otherwise.

func (*IdleStatusInfo) GetSuggestedNumberOfDlPacketsOk

func (o *IdleStatusInfo) GetSuggestedNumberOfDlPacketsOk() (*int32, bool)

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

func (*IdleStatusInfo) HasActiveTime

func (o *IdleStatusInfo) HasActiveTime() bool

HasActiveTime returns a boolean if a field has been set.

func (*IdleStatusInfo) HasEdrxCycleLength

func (o *IdleStatusInfo) HasEdrxCycleLength() bool

HasEdrxCycleLength returns a boolean if a field has been set.

func (*IdleStatusInfo) HasIdleStatusTimestamp

func (o *IdleStatusInfo) HasIdleStatusTimestamp() bool

HasIdleStatusTimestamp returns a boolean if a field has been set.

func (*IdleStatusInfo) HasPeriodicAUTimer

func (o *IdleStatusInfo) HasPeriodicAUTimer() bool

HasPeriodicAUTimer returns a boolean if a field has been set.

func (*IdleStatusInfo) HasSuggestedNumberOfDlPackets

func (o *IdleStatusInfo) HasSuggestedNumberOfDlPackets() bool

HasSuggestedNumberOfDlPackets returns a boolean if a field has been set.

func (IdleStatusInfo) MarshalJSON

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

func (*IdleStatusInfo) SetActiveTime

func (o *IdleStatusInfo) SetActiveTime(v int32)

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

func (*IdleStatusInfo) SetEdrxCycleLength

func (o *IdleStatusInfo) SetEdrxCycleLength(v float32)

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

func (*IdleStatusInfo) SetIdleStatusTimestamp

func (o *IdleStatusInfo) SetIdleStatusTimestamp(v time.Time)

SetIdleStatusTimestamp gets a reference to the given time.Time and assigns it to the IdleStatusTimestamp field.

func (*IdleStatusInfo) SetPeriodicAUTimer

func (o *IdleStatusInfo) SetPeriodicAUTimer(v int32)

SetPeriodicAUTimer gets a reference to the given int32 and assigns it to the PeriodicAUTimer field.

func (*IdleStatusInfo) SetSuggestedNumberOfDlPackets

func (o *IdleStatusInfo) SetSuggestedNumberOfDlPackets(v int32)

SetSuggestedNumberOfDlPackets gets a reference to the given int32 and assigns it to the SuggestedNumberOfDlPackets field.

func (IdleStatusInfo) ToMap

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

type IndividualMonitoringEventSubscriptionAPIService

type IndividualMonitoringEventSubscriptionAPIService service

IndividualMonitoringEventSubscriptionAPIService IndividualMonitoringEventSubscriptionAPI service

func (*IndividualMonitoringEventSubscriptionAPIService) DeleteIndMonitoringEventSubscription

func (a *IndividualMonitoringEventSubscriptionAPIService) DeleteIndMonitoringEventSubscription(ctx context.Context, scsAsId string, subscriptionId string) ApiDeleteIndMonitoringEventSubscriptionRequest

DeleteIndMonitoringEventSubscription Deletes an already existing monitoring event subscription.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scsAsId Identifier of the SCS/AS
@param subscriptionId Identifier of the subscription resource
@return ApiDeleteIndMonitoringEventSubscriptionRequest

func (*IndividualMonitoringEventSubscriptionAPIService) DeleteIndMonitoringEventSubscriptionExecute

Execute executes the request

@return []MonitoringEventReport

func (*IndividualMonitoringEventSubscriptionAPIService) FetchIndMonitoringEventSubscription

func (a *IndividualMonitoringEventSubscriptionAPIService) FetchIndMonitoringEventSubscription(ctx context.Context, scsAsId string, subscriptionId string) ApiFetchIndMonitoringEventSubscriptionRequest

FetchIndMonitoringEventSubscription Read an active subscriptions for the SCS/AS and the subscription Id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scsAsId Identifier of the SCS/AS
@param subscriptionId Identifier of the subscription resource
@return ApiFetchIndMonitoringEventSubscriptionRequest

func (*IndividualMonitoringEventSubscriptionAPIService) FetchIndMonitoringEventSubscriptionExecute

Execute executes the request

@return MonitoringEventSubscription

func (*IndividualMonitoringEventSubscriptionAPIService) ModifyIndMonitoringEventSubscription

func (a *IndividualMonitoringEventSubscriptionAPIService) ModifyIndMonitoringEventSubscription(ctx context.Context, scsAsId string, subscriptionId string) ApiModifyIndMonitoringEventSubscriptionRequest

ModifyIndMonitoringEventSubscription Modifies an existing subscription of monitoring event.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scsAsId Identifier of the SCS/AS.
@param subscriptionId Identifier of the subscription resource.
@return ApiModifyIndMonitoringEventSubscriptionRequest

func (*IndividualMonitoringEventSubscriptionAPIService) ModifyIndMonitoringEventSubscriptionExecute

Execute executes the request

func (*IndividualMonitoringEventSubscriptionAPIService) UpdateIndMonitoringEventSubscription

func (a *IndividualMonitoringEventSubscriptionAPIService) UpdateIndMonitoringEventSubscription(ctx context.Context, scsAsId string, subscriptionId string) ApiUpdateIndMonitoringEventSubscriptionRequest

UpdateIndMonitoringEventSubscription Updates/replaces an existing subscription resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scsAsId Identifier of the SCS/AS
@param subscriptionId Identifier of the subscription resource
@return ApiUpdateIndMonitoringEventSubscriptionRequest

func (*IndividualMonitoringEventSubscriptionAPIService) UpdateIndMonitoringEventSubscriptionExecute

Execute executes the request

@return MonitoringEventSubscription

type InterfaceIndication

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

InterfaceIndication Possible values are - EXPOSURE_FUNCTION: SCEF is used for the PDN connection towards the SCS/AS. - PDN_GATEWAY: PDN gateway is used for the PDN connection towards the SCS/AS.

func (*InterfaceIndication) MarshalJSON

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

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

func (*InterfaceIndication) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type InvalidParam

type InvalidParam struct {
	// Attribute's name encoded as a JSON Pointer, or header's name.
	Param string `json:"param"`
	// A human-readable reason, e.g. \"must be a positive integer\".
	Reason *string `json:"reason,omitempty"`
}

InvalidParam Represents the description of invalid parameters, for a request rejected due to invalid parameters.

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)

func (*InvalidParam) UnmarshalJSON

func (o *InvalidParam) UnmarshalJSON(bytes []byte) (err error)

type IpAddr

type IpAddr 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"`
	Ipv6Prefix *Ipv6Prefix `json:"ipv6Prefix,omitempty"`
}

IpAddr Contains an IP adresse.

func NewIpAddr

func NewIpAddr() *IpAddr

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

func NewIpAddrWithDefaults

func NewIpAddrWithDefaults() *IpAddr

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

func (*IpAddr) GetIpv4Addr

func (o *IpAddr) GetIpv4Addr() string

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

func (*IpAddr) GetIpv4AddrOk

func (o *IpAddr) 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 (*IpAddr) GetIpv6Addr

func (o *IpAddr) GetIpv6Addr() Ipv6Addr

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

func (*IpAddr) GetIpv6AddrOk

func (o *IpAddr) 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 (*IpAddr) GetIpv6Prefix

func (o *IpAddr) GetIpv6Prefix() Ipv6Prefix

GetIpv6Prefix returns the Ipv6Prefix field value if set, zero value otherwise.

func (*IpAddr) GetIpv6PrefixOk

func (o *IpAddr) GetIpv6PrefixOk() (*Ipv6Prefix, bool)

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

func (*IpAddr) HasIpv4Addr

func (o *IpAddr) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*IpAddr) HasIpv6Addr

func (o *IpAddr) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*IpAddr) HasIpv6Prefix

func (o *IpAddr) HasIpv6Prefix() bool

HasIpv6Prefix returns a boolean if a field has been set.

func (IpAddr) MarshalJSON

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

func (*IpAddr) SetIpv4Addr

func (o *IpAddr) SetIpv4Addr(v string)

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

func (*IpAddr) SetIpv6Addr

func (o *IpAddr) SetIpv6Addr(v Ipv6Addr)

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

func (*IpAddr) SetIpv6Prefix

func (o *IpAddr) SetIpv6Prefix(v Ipv6Prefix)

SetIpv6Prefix gets a reference to the given Ipv6Prefix and assigns it to the Ipv6Prefix field.

func (IpAddr) ToMap

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

type Ipv6Addr

type Ipv6Addr struct {
}

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

func NewIpv6Addr

func NewIpv6Addr() *Ipv6Addr

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

func NewIpv6AddrWithDefaults

func NewIpv6AddrWithDefaults() *Ipv6Addr

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

func (Ipv6Addr) MarshalJSON

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

func (Ipv6Addr) ToMap

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

type Ipv6Prefix

type Ipv6Prefix struct {
}

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

func NewIpv6Prefix

func NewIpv6Prefix() *Ipv6Prefix

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

func NewIpv6PrefixWithDefaults

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

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

func (Ipv6Prefix) MarshalJSON

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

func (Ipv6Prefix) ToMap

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

type LcsQosClass

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

LcsQosClass Specifies LCS QoS class.

func (*LcsQosClass) MarshalJSON

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

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

func (*LcsQosClass) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LdrType

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

LdrType Indicates LDR types.

func (*LdrType) MarshalJSON

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

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

func (*LdrType) UnmarshalJSON

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

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

func (*Local2dPointUncertaintyEllipse) UnmarshalJSON

func (o *Local2dPointUncertaintyEllipse) UnmarshalJSON(bytes []byte) (err 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)

func (*Local3dPointUncertaintyEllipsoid) UnmarshalJSON

func (o *Local3dPointUncertaintyEllipsoid) UnmarshalJSON(bytes []byte) (err 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 LocationArea

type LocationArea struct {
	// Indicates a list of Cell Global Identities of the user which identifies the cell the UE is registered.
	CellIds []string `json:"cellIds,omitempty"`
	// Indicates a list of eNodeB identities in which the UE is currently located.
	EnodeBIds []string `json:"enodeBIds,omitempty"`
	// Identifies a list of Routing Area Identities of the user where the UE is located.
	RoutingAreaIds []string `json:"routingAreaIds,omitempty"`
	// Identifies a list of Tracking Area Identities of the user where the UE is located.
	TrackingAreaIds []string `json:"trackingAreaIds,omitempty"`
	// Identifies a list of geographic area of the user where the UE is located.
	GeographicAreas []GeographicArea `json:"geographicAreas,omitempty"`
	// Identifies a list of civic addresses of the user where the UE is located.
	CivicAddresses []CivicAddress `json:"civicAddresses,omitempty"`
}

LocationArea Represents a user location area.

func NewLocationArea

func NewLocationArea() *LocationArea

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

func NewLocationAreaWithDefaults

func NewLocationAreaWithDefaults() *LocationArea

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

func (*LocationArea) GetCellIds

func (o *LocationArea) GetCellIds() []string

GetCellIds returns the CellIds field value if set, zero value otherwise.

func (*LocationArea) GetCellIdsOk

func (o *LocationArea) GetCellIdsOk() ([]string, bool)

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

func (*LocationArea) GetCivicAddresses

func (o *LocationArea) GetCivicAddresses() []CivicAddress

GetCivicAddresses returns the CivicAddresses field value if set, zero value otherwise.

func (*LocationArea) GetCivicAddressesOk

func (o *LocationArea) GetCivicAddressesOk() ([]CivicAddress, bool)

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

func (*LocationArea) GetEnodeBIds

func (o *LocationArea) GetEnodeBIds() []string

GetEnodeBIds returns the EnodeBIds field value if set, zero value otherwise.

func (*LocationArea) GetEnodeBIdsOk

func (o *LocationArea) GetEnodeBIdsOk() ([]string, bool)

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

func (*LocationArea) GetGeographicAreas

func (o *LocationArea) GetGeographicAreas() []GeographicArea

GetGeographicAreas returns the GeographicAreas field value if set, zero value otherwise.

func (*LocationArea) GetGeographicAreasOk

func (o *LocationArea) GetGeographicAreasOk() ([]GeographicArea, bool)

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

func (*LocationArea) GetRoutingAreaIds

func (o *LocationArea) GetRoutingAreaIds() []string

GetRoutingAreaIds returns the RoutingAreaIds field value if set, zero value otherwise.

func (*LocationArea) GetRoutingAreaIdsOk

func (o *LocationArea) GetRoutingAreaIdsOk() ([]string, bool)

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

func (*LocationArea) GetTrackingAreaIds

func (o *LocationArea) GetTrackingAreaIds() []string

GetTrackingAreaIds returns the TrackingAreaIds field value if set, zero value otherwise.

func (*LocationArea) GetTrackingAreaIdsOk

func (o *LocationArea) GetTrackingAreaIdsOk() ([]string, bool)

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

func (*LocationArea) HasCellIds

func (o *LocationArea) HasCellIds() bool

HasCellIds returns a boolean if a field has been set.

func (*LocationArea) HasCivicAddresses

func (o *LocationArea) HasCivicAddresses() bool

HasCivicAddresses returns a boolean if a field has been set.

func (*LocationArea) HasEnodeBIds

func (o *LocationArea) HasEnodeBIds() bool

HasEnodeBIds returns a boolean if a field has been set.

func (*LocationArea) HasGeographicAreas

func (o *LocationArea) HasGeographicAreas() bool

HasGeographicAreas returns a boolean if a field has been set.

func (*LocationArea) HasRoutingAreaIds

func (o *LocationArea) HasRoutingAreaIds() bool

HasRoutingAreaIds returns a boolean if a field has been set.

func (*LocationArea) HasTrackingAreaIds

func (o *LocationArea) HasTrackingAreaIds() bool

HasTrackingAreaIds returns a boolean if a field has been set.

func (LocationArea) MarshalJSON

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

func (*LocationArea) SetCellIds

func (o *LocationArea) SetCellIds(v []string)

SetCellIds gets a reference to the given []string and assigns it to the CellIds field.

func (*LocationArea) SetCivicAddresses

func (o *LocationArea) SetCivicAddresses(v []CivicAddress)

SetCivicAddresses gets a reference to the given []CivicAddress and assigns it to the CivicAddresses field.

func (*LocationArea) SetEnodeBIds

func (o *LocationArea) SetEnodeBIds(v []string)

SetEnodeBIds gets a reference to the given []string and assigns it to the EnodeBIds field.

func (*LocationArea) SetGeographicAreas

func (o *LocationArea) SetGeographicAreas(v []GeographicArea)

SetGeographicAreas gets a reference to the given []GeographicArea and assigns it to the GeographicAreas field.

func (*LocationArea) SetRoutingAreaIds

func (o *LocationArea) SetRoutingAreaIds(v []string)

SetRoutingAreaIds gets a reference to the given []string and assigns it to the RoutingAreaIds field.

func (*LocationArea) SetTrackingAreaIds

func (o *LocationArea) SetTrackingAreaIds(v []string)

SetTrackingAreaIds gets a reference to the given []string and assigns it to the TrackingAreaIds field.

func (LocationArea) ToMap

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

type LocationArea5G

type LocationArea5G struct {
	// Identifies a list of geographic area of the user where the UE is located.
	GeographicAreas []GeographicArea `json:"geographicAreas,omitempty"`
	// Identifies a list of civic addresses of the user where the UE is located.
	CivicAddresses []CivicAddress   `json:"civicAddresses,omitempty"`
	NwAreaInfo     *NetworkAreaInfo `json:"nwAreaInfo,omitempty"`
}

LocationArea5G Represents a user location area when the UE is attached to 5G.

func NewLocationArea5G

func NewLocationArea5G() *LocationArea5G

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

func NewLocationArea5GWithDefaults

func NewLocationArea5GWithDefaults() *LocationArea5G

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

func (*LocationArea5G) GetCivicAddresses

func (o *LocationArea5G) GetCivicAddresses() []CivicAddress

GetCivicAddresses returns the CivicAddresses field value if set, zero value otherwise.

func (*LocationArea5G) GetCivicAddressesOk

func (o *LocationArea5G) GetCivicAddressesOk() ([]CivicAddress, bool)

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

func (*LocationArea5G) GetGeographicAreas

func (o *LocationArea5G) GetGeographicAreas() []GeographicArea

GetGeographicAreas returns the GeographicAreas field value if set, zero value otherwise.

func (*LocationArea5G) GetGeographicAreasOk

func (o *LocationArea5G) GetGeographicAreasOk() ([]GeographicArea, bool)

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

func (*LocationArea5G) GetNwAreaInfo

func (o *LocationArea5G) GetNwAreaInfo() NetworkAreaInfo

GetNwAreaInfo returns the NwAreaInfo field value if set, zero value otherwise.

func (*LocationArea5G) GetNwAreaInfoOk

func (o *LocationArea5G) GetNwAreaInfoOk() (*NetworkAreaInfo, bool)

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

func (*LocationArea5G) HasCivicAddresses

func (o *LocationArea5G) HasCivicAddresses() bool

HasCivicAddresses returns a boolean if a field has been set.

func (*LocationArea5G) HasGeographicAreas

func (o *LocationArea5G) HasGeographicAreas() bool

HasGeographicAreas returns a boolean if a field has been set.

func (*LocationArea5G) HasNwAreaInfo

func (o *LocationArea5G) HasNwAreaInfo() bool

HasNwAreaInfo returns a boolean if a field has been set.

func (LocationArea5G) MarshalJSON

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

func (*LocationArea5G) SetCivicAddresses

func (o *LocationArea5G) SetCivicAddresses(v []CivicAddress)

SetCivicAddresses gets a reference to the given []CivicAddress and assigns it to the CivicAddresses field.

func (*LocationArea5G) SetGeographicAreas

func (o *LocationArea5G) SetGeographicAreas(v []GeographicArea)

SetGeographicAreas gets a reference to the given []GeographicArea and assigns it to the GeographicAreas field.

func (*LocationArea5G) SetNwAreaInfo

func (o *LocationArea5G) SetNwAreaInfo(v NetworkAreaInfo)

SetNwAreaInfo gets a reference to the given NetworkAreaInfo and assigns it to the NwAreaInfo field.

func (LocationArea5G) ToMap

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

type LocationFailureCause

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

LocationFailureCause This string Indicates the location positioning failure cause. Possible values are - POSITIONING_DENIED: Positioning is denied. - UNSUPPORTED_BY_UE: Positioning is not supported by UE. - NOT_REGISTED_UE: UE is not registered. - UNSPECIFIED: Unspecified.

func (*LocationFailureCause) MarshalJSON

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

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

func (*LocationFailureCause) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LocationInfo

type LocationInfo struct {
	// Unsigned integer identifying a period of time in units of minutes.
	AgeOfLocationInfo *int32 `json:"ageOfLocationInfo,omitempty"`
	// Indicates the Cell Global Identification of the user which identifies the cell the UE is registered.
	CellId *string `json:"cellId,omitempty"`
	// Indicates the eNodeB in which the UE is currently located.
	EnodeBId *string `json:"enodeBId,omitempty"`
	// Identifies the Routing Area Identity of the user where the UE is located.
	RoutingAreaId *string `json:"routingAreaId,omitempty"`
	// Identifies the Tracking Area Identity of the user where the UE is located.
	TrackingAreaId *string `json:"trackingAreaId,omitempty"`
	// Identifies the PLMN Identity of the user where the UE is located.
	PlmnId *string `json:"plmnId,omitempty"`
	// Identifies the TWAN Identity of the user where the UE is located.
	TwanId         *string                      `json:"twanId,omitempty"`
	GeographicArea *GeographicArea              `json:"geographicArea,omitempty"`
	CivicAddress   *CivicAddress                `json:"civicAddress,omitempty"`
	PositionMethod *PositioningMethod           `json:"positionMethod,omitempty"`
	QosFulfilInd   *AccuracyFulfilmentIndicator `json:"qosFulfilInd,omitempty"`
	UeVelocity     *VelocityEstimate            `json:"ueVelocity,omitempty"`
	LdrType        *LdrType                     `json:"ldrType,omitempty"`
	AchievedQos    *MinorLocationQoS            `json:"achievedQos,omitempty"`
}

LocationInfo Represents the user location information.

func NewLocationInfo

func NewLocationInfo() *LocationInfo

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

func NewLocationInfoWithDefaults

func NewLocationInfoWithDefaults() *LocationInfo

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

func (*LocationInfo) GetAchievedQos

func (o *LocationInfo) GetAchievedQos() MinorLocationQoS

GetAchievedQos returns the AchievedQos field value if set, zero value otherwise.

func (*LocationInfo) GetAchievedQosOk

func (o *LocationInfo) GetAchievedQosOk() (*MinorLocationQoS, bool)

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

func (*LocationInfo) GetAgeOfLocationInfo

func (o *LocationInfo) GetAgeOfLocationInfo() int32

GetAgeOfLocationInfo returns the AgeOfLocationInfo field value if set, zero value otherwise.

func (*LocationInfo) GetAgeOfLocationInfoOk

func (o *LocationInfo) GetAgeOfLocationInfoOk() (*int32, bool)

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

func (*LocationInfo) GetCellId

func (o *LocationInfo) GetCellId() string

GetCellId returns the CellId field value if set, zero value otherwise.

func (*LocationInfo) GetCellIdOk

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

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

func (*LocationInfo) GetCivicAddress

func (o *LocationInfo) GetCivicAddress() CivicAddress

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*LocationInfo) GetCivicAddressOk

func (o *LocationInfo) GetCivicAddressOk() (*CivicAddress, 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 (*LocationInfo) GetEnodeBId

func (o *LocationInfo) GetEnodeBId() string

GetEnodeBId returns the EnodeBId field value if set, zero value otherwise.

func (*LocationInfo) GetEnodeBIdOk

func (o *LocationInfo) GetEnodeBIdOk() (*string, bool)

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

func (*LocationInfo) GetGeographicArea

func (o *LocationInfo) GetGeographicArea() GeographicArea

GetGeographicArea returns the GeographicArea field value if set, zero value otherwise.

func (*LocationInfo) GetGeographicAreaOk

func (o *LocationInfo) GetGeographicAreaOk() (*GeographicArea, bool)

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

func (*LocationInfo) GetLdrType

func (o *LocationInfo) GetLdrType() LdrType

GetLdrType returns the LdrType field value if set, zero value otherwise.

func (*LocationInfo) GetLdrTypeOk

func (o *LocationInfo) GetLdrTypeOk() (*LdrType, bool)

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

func (*LocationInfo) GetPlmnId

func (o *LocationInfo) GetPlmnId() string

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

func (*LocationInfo) GetPlmnIdOk

func (o *LocationInfo) GetPlmnIdOk() (*string, bool)

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

func (*LocationInfo) GetPositionMethod

func (o *LocationInfo) GetPositionMethod() PositioningMethod

GetPositionMethod returns the PositionMethod field value if set, zero value otherwise.

func (*LocationInfo) GetPositionMethodOk

func (o *LocationInfo) GetPositionMethodOk() (*PositioningMethod, bool)

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

func (*LocationInfo) GetQosFulfilInd

func (o *LocationInfo) GetQosFulfilInd() AccuracyFulfilmentIndicator

GetQosFulfilInd returns the QosFulfilInd field value if set, zero value otherwise.

func (*LocationInfo) GetQosFulfilIndOk

func (o *LocationInfo) GetQosFulfilIndOk() (*AccuracyFulfilmentIndicator, bool)

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

func (*LocationInfo) GetRoutingAreaId

func (o *LocationInfo) GetRoutingAreaId() string

GetRoutingAreaId returns the RoutingAreaId field value if set, zero value otherwise.

func (*LocationInfo) GetRoutingAreaIdOk

func (o *LocationInfo) GetRoutingAreaIdOk() (*string, bool)

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

func (*LocationInfo) GetTrackingAreaId

func (o *LocationInfo) GetTrackingAreaId() string

GetTrackingAreaId returns the TrackingAreaId field value if set, zero value otherwise.

func (*LocationInfo) GetTrackingAreaIdOk

func (o *LocationInfo) GetTrackingAreaIdOk() (*string, bool)

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

func (*LocationInfo) GetTwanId

func (o *LocationInfo) GetTwanId() string

GetTwanId returns the TwanId field value if set, zero value otherwise.

func (*LocationInfo) GetTwanIdOk

func (o *LocationInfo) GetTwanIdOk() (*string, bool)

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

func (*LocationInfo) GetUeVelocity

func (o *LocationInfo) GetUeVelocity() VelocityEstimate

GetUeVelocity returns the UeVelocity field value if set, zero value otherwise.

func (*LocationInfo) GetUeVelocityOk

func (o *LocationInfo) GetUeVelocityOk() (*VelocityEstimate, bool)

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

func (*LocationInfo) HasAchievedQos

func (o *LocationInfo) HasAchievedQos() bool

HasAchievedQos returns a boolean if a field has been set.

func (*LocationInfo) HasAgeOfLocationInfo

func (o *LocationInfo) HasAgeOfLocationInfo() bool

HasAgeOfLocationInfo returns a boolean if a field has been set.

func (*LocationInfo) HasCellId

func (o *LocationInfo) HasCellId() bool

HasCellId returns a boolean if a field has been set.

func (*LocationInfo) HasCivicAddress

func (o *LocationInfo) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (*LocationInfo) HasEnodeBId

func (o *LocationInfo) HasEnodeBId() bool

HasEnodeBId returns a boolean if a field has been set.

func (*LocationInfo) HasGeographicArea

func (o *LocationInfo) HasGeographicArea() bool

HasGeographicArea returns a boolean if a field has been set.

func (*LocationInfo) HasLdrType

func (o *LocationInfo) HasLdrType() bool

HasLdrType returns a boolean if a field has been set.

func (*LocationInfo) HasPlmnId

func (o *LocationInfo) HasPlmnId() bool

HasPlmnId returns a boolean if a field has been set.

func (*LocationInfo) HasPositionMethod

func (o *LocationInfo) HasPositionMethod() bool

HasPositionMethod returns a boolean if a field has been set.

func (*LocationInfo) HasQosFulfilInd

func (o *LocationInfo) HasQosFulfilInd() bool

HasQosFulfilInd returns a boolean if a field has been set.

func (*LocationInfo) HasRoutingAreaId

func (o *LocationInfo) HasRoutingAreaId() bool

HasRoutingAreaId returns a boolean if a field has been set.

func (*LocationInfo) HasTrackingAreaId

func (o *LocationInfo) HasTrackingAreaId() bool

HasTrackingAreaId returns a boolean if a field has been set.

func (*LocationInfo) HasTwanId

func (o *LocationInfo) HasTwanId() bool

HasTwanId returns a boolean if a field has been set.

func (*LocationInfo) HasUeVelocity

func (o *LocationInfo) HasUeVelocity() bool

HasUeVelocity returns a boolean if a field has been set.

func (LocationInfo) MarshalJSON

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

func (*LocationInfo) SetAchievedQos

func (o *LocationInfo) SetAchievedQos(v MinorLocationQoS)

SetAchievedQos gets a reference to the given MinorLocationQoS and assigns it to the AchievedQos field.

func (*LocationInfo) SetAgeOfLocationInfo

func (o *LocationInfo) SetAgeOfLocationInfo(v int32)

SetAgeOfLocationInfo gets a reference to the given int32 and assigns it to the AgeOfLocationInfo field.

func (*LocationInfo) SetCellId

func (o *LocationInfo) SetCellId(v string)

SetCellId gets a reference to the given string and assigns it to the CellId field.

func (*LocationInfo) SetCivicAddress

func (o *LocationInfo) SetCivicAddress(v CivicAddress)

SetCivicAddress gets a reference to the given CivicAddress and assigns it to the CivicAddress field.

func (*LocationInfo) SetEnodeBId

func (o *LocationInfo) SetEnodeBId(v string)

SetEnodeBId gets a reference to the given string and assigns it to the EnodeBId field.

func (*LocationInfo) SetGeographicArea

func (o *LocationInfo) SetGeographicArea(v GeographicArea)

SetGeographicArea gets a reference to the given GeographicArea and assigns it to the GeographicArea field.

func (*LocationInfo) SetLdrType

func (o *LocationInfo) SetLdrType(v LdrType)

SetLdrType gets a reference to the given LdrType and assigns it to the LdrType field.

func (*LocationInfo) SetPlmnId

func (o *LocationInfo) SetPlmnId(v string)

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

func (*LocationInfo) SetPositionMethod

func (o *LocationInfo) SetPositionMethod(v PositioningMethod)

SetPositionMethod gets a reference to the given PositioningMethod and assigns it to the PositionMethod field.

func (*LocationInfo) SetQosFulfilInd

func (o *LocationInfo) SetQosFulfilInd(v AccuracyFulfilmentIndicator)

SetQosFulfilInd gets a reference to the given AccuracyFulfilmentIndicator and assigns it to the QosFulfilInd field.

func (*LocationInfo) SetRoutingAreaId

func (o *LocationInfo) SetRoutingAreaId(v string)

SetRoutingAreaId gets a reference to the given string and assigns it to the RoutingAreaId field.

func (*LocationInfo) SetTrackingAreaId

func (o *LocationInfo) SetTrackingAreaId(v string)

SetTrackingAreaId gets a reference to the given string and assigns it to the TrackingAreaId field.

func (*LocationInfo) SetTwanId

func (o *LocationInfo) SetTwanId(v string)

SetTwanId gets a reference to the given string and assigns it to the TwanId field.

func (*LocationInfo) SetUeVelocity

func (o *LocationInfo) SetUeVelocity(v VelocityEstimate)

SetUeVelocity gets a reference to the given VelocityEstimate and assigns it to the UeVelocity field.

func (LocationInfo) ToMap

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

type LocationQoS

type LocationQoS struct {
	// Indicates value of accuracy.
	HAccuracy *float32 `json:"hAccuracy,omitempty"`
	// Indicates value of accuracy.
	VAccuracy         *float32           `json:"vAccuracy,omitempty"`
	VerticalRequested *bool              `json:"verticalRequested,omitempty"`
	ResponseTime      *ResponseTime      `json:"responseTime,omitempty"`
	MinorLocQoses     []MinorLocationQoS `json:"minorLocQoses,omitempty"`
	LcsQosClass       *LcsQosClass       `json:"lcsQosClass,omitempty"`
}

LocationQoS QoS of Location request.

func NewLocationQoS

func NewLocationQoS() *LocationQoS

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

func NewLocationQoSWithDefaults

func NewLocationQoSWithDefaults() *LocationQoS

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

func (*LocationQoS) GetHAccuracy

func (o *LocationQoS) GetHAccuracy() float32

GetHAccuracy returns the HAccuracy field value if set, zero value otherwise.

func (*LocationQoS) GetHAccuracyOk

func (o *LocationQoS) GetHAccuracyOk() (*float32, bool)

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

func (*LocationQoS) GetLcsQosClass

func (o *LocationQoS) GetLcsQosClass() LcsQosClass

GetLcsQosClass returns the LcsQosClass field value if set, zero value otherwise.

func (*LocationQoS) GetLcsQosClassOk

func (o *LocationQoS) GetLcsQosClassOk() (*LcsQosClass, bool)

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

func (*LocationQoS) GetMinorLocQoses

func (o *LocationQoS) GetMinorLocQoses() []MinorLocationQoS

GetMinorLocQoses returns the MinorLocQoses field value if set, zero value otherwise.

func (*LocationQoS) GetMinorLocQosesOk

func (o *LocationQoS) GetMinorLocQosesOk() ([]MinorLocationQoS, bool)

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

func (*LocationQoS) GetResponseTime

func (o *LocationQoS) GetResponseTime() ResponseTime

GetResponseTime returns the ResponseTime field value if set, zero value otherwise.

func (*LocationQoS) GetResponseTimeOk

func (o *LocationQoS) GetResponseTimeOk() (*ResponseTime, bool)

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

func (*LocationQoS) GetVAccuracy

func (o *LocationQoS) GetVAccuracy() float32

GetVAccuracy returns the VAccuracy field value if set, zero value otherwise.

func (*LocationQoS) GetVAccuracyOk

func (o *LocationQoS) GetVAccuracyOk() (*float32, bool)

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

func (*LocationQoS) GetVerticalRequested

func (o *LocationQoS) GetVerticalRequested() bool

GetVerticalRequested returns the VerticalRequested field value if set, zero value otherwise.

func (*LocationQoS) GetVerticalRequestedOk

func (o *LocationQoS) GetVerticalRequestedOk() (*bool, bool)

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

func (*LocationQoS) HasHAccuracy

func (o *LocationQoS) HasHAccuracy() bool

HasHAccuracy returns a boolean if a field has been set.

func (*LocationQoS) HasLcsQosClass

func (o *LocationQoS) HasLcsQosClass() bool

HasLcsQosClass returns a boolean if a field has been set.

func (*LocationQoS) HasMinorLocQoses

func (o *LocationQoS) HasMinorLocQoses() bool

HasMinorLocQoses returns a boolean if a field has been set.

func (*LocationQoS) HasResponseTime

func (o *LocationQoS) HasResponseTime() bool

HasResponseTime returns a boolean if a field has been set.

func (*LocationQoS) HasVAccuracy

func (o *LocationQoS) HasVAccuracy() bool

HasVAccuracy returns a boolean if a field has been set.

func (*LocationQoS) HasVerticalRequested

func (o *LocationQoS) HasVerticalRequested() bool

HasVerticalRequested returns a boolean if a field has been set.

func (LocationQoS) MarshalJSON

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

func (*LocationQoS) SetHAccuracy

func (o *LocationQoS) SetHAccuracy(v float32)

SetHAccuracy gets a reference to the given float32 and assigns it to the HAccuracy field.

func (*LocationQoS) SetLcsQosClass

func (o *LocationQoS) SetLcsQosClass(v LcsQosClass)

SetLcsQosClass gets a reference to the given LcsQosClass and assigns it to the LcsQosClass field.

func (*LocationQoS) SetMinorLocQoses

func (o *LocationQoS) SetMinorLocQoses(v []MinorLocationQoS)

SetMinorLocQoses gets a reference to the given []MinorLocationQoS and assigns it to the MinorLocQoses field.

func (*LocationQoS) SetResponseTime

func (o *LocationQoS) SetResponseTime(v ResponseTime)

SetResponseTime gets a reference to the given ResponseTime and assigns it to the ResponseTime field.

func (*LocationQoS) SetVAccuracy

func (o *LocationQoS) SetVAccuracy(v float32)

SetVAccuracy gets a reference to the given float32 and assigns it to the VAccuracy field.

func (*LocationQoS) SetVerticalRequested

func (o *LocationQoS) SetVerticalRequested(v bool)

SetVerticalRequested gets a reference to the given bool and assigns it to the VerticalRequested field.

func (LocationQoS) ToMap

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

type LocationType

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

LocationType Possible values are - CURRENT_LOCATION: The SCS/AS requests to be notified for current location - LAST_KNOWN_LOCATION: The SCS/AS requests to be notified for last known location - CURRENT_OR_LAST_KNOWN_LOCATION: The AF requests the current or last known location - INITIAL_LOCATION: The AF requests the initial location

func (*LocationType) MarshalJSON

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

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

func (*LocationType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type MappedNullable

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

type MinorLocationQoS

type MinorLocationQoS struct {
	// Indicates value of accuracy.
	HAccuracy *float32 `json:"hAccuracy,omitempty"`
	// Indicates value of accuracy.
	VAccuracy *float32 `json:"vAccuracy,omitempty"`
}

MinorLocationQoS Contain Minor Location QoS.

func NewMinorLocationQoS

func NewMinorLocationQoS() *MinorLocationQoS

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

func NewMinorLocationQoSWithDefaults

func NewMinorLocationQoSWithDefaults() *MinorLocationQoS

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

func (*MinorLocationQoS) GetHAccuracy

func (o *MinorLocationQoS) GetHAccuracy() float32

GetHAccuracy returns the HAccuracy field value if set, zero value otherwise.

func (*MinorLocationQoS) GetHAccuracyOk

func (o *MinorLocationQoS) GetHAccuracyOk() (*float32, bool)

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

func (*MinorLocationQoS) GetVAccuracy

func (o *MinorLocationQoS) GetVAccuracy() float32

GetVAccuracy returns the VAccuracy field value if set, zero value otherwise.

func (*MinorLocationQoS) GetVAccuracyOk

func (o *MinorLocationQoS) GetVAccuracyOk() (*float32, bool)

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

func (*MinorLocationQoS) HasHAccuracy

func (o *MinorLocationQoS) HasHAccuracy() bool

HasHAccuracy returns a boolean if a field has been set.

func (*MinorLocationQoS) HasVAccuracy

func (o *MinorLocationQoS) HasVAccuracy() bool

HasVAccuracy returns a boolean if a field has been set.

func (MinorLocationQoS) MarshalJSON

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

func (*MinorLocationQoS) SetHAccuracy

func (o *MinorLocationQoS) SetHAccuracy(v float32)

SetHAccuracy gets a reference to the given float32 and assigns it to the HAccuracy field.

func (*MinorLocationQoS) SetVAccuracy

func (o *MinorLocationQoS) SetVAccuracy(v float32)

SetVAccuracy gets a reference to the given float32 and assigns it to the VAccuracy field.

func (MinorLocationQoS) ToMap

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

type MonitoringEventReport

type MonitoringEventReport struct {
	ImeiChange *AssociationType `json:"imeiChange,omitempty"`
	// string containing a local identifier followed by \"@\" and a domain identifier. Both the local identifier and the domain identifier shall be encoded as strings that do not contain any \"@\" characters. See Clause 4.6.2 of 3GPP TS 23.682 for more information.
	ExternalId      *string               `json:"externalId,omitempty"`
	IdleStatusInfo  *IdleStatusInfo       `json:"idleStatusInfo,omitempty"`
	LocationInfo    *LocationInfo         `json:"locationInfo,omitempty"`
	LocFailureCause *LocationFailureCause `json:"locFailureCause,omitempty"`
	// If \"monitoringType\" is \"LOSS_OF_CONNECTIVITY\", this parameter shall be included if available to identify the reason why loss of connectivity is reported. Refer to 3GPP TS 29.336 clause 8.4.58.
	LossOfConnectReason *int32 `json:"lossOfConnectReason,omitempty"`
	// string with format \"date-time\" as defined in OpenAPI.
	MaxUEAvailabilityTime *time.Time `json:"maxUEAvailabilityTime,omitempty"`
	// string formatted according to clause 3.3 of 3GPP TS 23.003 that describes an MSISDN.
	Msisdn              *string              `json:"msisdn,omitempty"`
	MonitoringType      MonitoringType       `json:"monitoringType"`
	UePerLocationReport *UePerLocationReport `json:"uePerLocationReport,omitempty"`
	PlmnId              *PlmnId              `json:"plmnId,omitempty"`
	ReachabilityType    *ReachabilityType    `json:"reachabilityType,omitempty"`
	// If \"monitoringType\" is \"ROAMING_STATUS\", this parameter shall be set to \"true\" if the UE is on roaming status. Set to false or omitted otherwise.
	RoamingStatus *bool         `json:"roamingStatus,omitempty"`
	FailureCause  *FailureCause `json:"failureCause,omitempty"`
	// string with format \"date-time\" as defined in OpenAPI.
	EventTime         *time.Time                 `json:"eventTime,omitempty"`
	PdnConnInfoList   []PdnConnectionInformation `json:"pdnConnInfoList,omitempty"`
	DddStatus         *DlDataDeliveryStatus      `json:"dddStatus,omitempty"`
	DddTrafDescriptor *DddTrafficDescriptor      `json:"dddTrafDescriptor,omitempty"`
	// string with format \"date-time\" as defined in OpenAPI.
	MaxWaitTime  *time.Time          `json:"maxWaitTime,omitempty"`
	ApiCaps      []ApiCapabilityInfo `json:"apiCaps,omitempty"`
	NSStatusInfo *SACEventStatus     `json:"nSStatusInfo,omitempty"`
	AfServiceId  *string             `json:"afServiceId,omitempty"`
	// If \"monitoringType\" is \"AREA_OF_INTEREST\", this parameter may be included to identify the UAV.
	ServLevelDevId *string `json:"servLevelDevId,omitempty"`
	// If \"monitoringType\" is \"AREA_OF_INTEREST\", this parameter shall be set to true if the specified UAV is in the monitoring area. Set to false or omitted otherwise.
	UavPresInd *bool `json:"uavPresInd,omitempty"`
}

MonitoringEventReport Represents an event monitoring report.

func NewMonitoringEventReport

func NewMonitoringEventReport(monitoringType MonitoringType) *MonitoringEventReport

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

func NewMonitoringEventReportWithDefaults

func NewMonitoringEventReportWithDefaults() *MonitoringEventReport

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

func (*MonitoringEventReport) GetAfServiceId

func (o *MonitoringEventReport) GetAfServiceId() string

GetAfServiceId returns the AfServiceId field value if set, zero value otherwise.

func (*MonitoringEventReport) GetAfServiceIdOk

func (o *MonitoringEventReport) GetAfServiceIdOk() (*string, bool)

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

func (*MonitoringEventReport) GetApiCaps

func (o *MonitoringEventReport) GetApiCaps() []ApiCapabilityInfo

GetApiCaps returns the ApiCaps field value if set, zero value otherwise.

func (*MonitoringEventReport) GetApiCapsOk

func (o *MonitoringEventReport) GetApiCapsOk() ([]ApiCapabilityInfo, bool)

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

func (*MonitoringEventReport) GetDddStatus

func (o *MonitoringEventReport) GetDddStatus() DlDataDeliveryStatus

GetDddStatus returns the DddStatus field value if set, zero value otherwise.

func (*MonitoringEventReport) GetDddStatusOk

func (o *MonitoringEventReport) GetDddStatusOk() (*DlDataDeliveryStatus, bool)

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

func (*MonitoringEventReport) GetDddTrafDescriptor

func (o *MonitoringEventReport) GetDddTrafDescriptor() DddTrafficDescriptor

GetDddTrafDescriptor returns the DddTrafDescriptor field value if set, zero value otherwise.

func (*MonitoringEventReport) GetDddTrafDescriptorOk

func (o *MonitoringEventReport) GetDddTrafDescriptorOk() (*DddTrafficDescriptor, bool)

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

func (*MonitoringEventReport) GetEventTime

func (o *MonitoringEventReport) GetEventTime() time.Time

GetEventTime returns the EventTime field value if set, zero value otherwise.

func (*MonitoringEventReport) GetEventTimeOk

func (o *MonitoringEventReport) GetEventTimeOk() (*time.Time, bool)

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

func (*MonitoringEventReport) GetExternalId

func (o *MonitoringEventReport) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*MonitoringEventReport) GetExternalIdOk

func (o *MonitoringEventReport) GetExternalIdOk() (*string, bool)

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

func (*MonitoringEventReport) GetFailureCause

func (o *MonitoringEventReport) GetFailureCause() FailureCause

GetFailureCause returns the FailureCause field value if set, zero value otherwise.

func (*MonitoringEventReport) GetFailureCauseOk

func (o *MonitoringEventReport) GetFailureCauseOk() (*FailureCause, bool)

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

func (*MonitoringEventReport) GetIdleStatusInfo

func (o *MonitoringEventReport) GetIdleStatusInfo() IdleStatusInfo

GetIdleStatusInfo returns the IdleStatusInfo field value if set, zero value otherwise.

func (*MonitoringEventReport) GetIdleStatusInfoOk

func (o *MonitoringEventReport) GetIdleStatusInfoOk() (*IdleStatusInfo, bool)

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

func (*MonitoringEventReport) GetImeiChange

func (o *MonitoringEventReport) GetImeiChange() AssociationType

GetImeiChange returns the ImeiChange field value if set, zero value otherwise.

func (*MonitoringEventReport) GetImeiChangeOk

func (o *MonitoringEventReport) GetImeiChangeOk() (*AssociationType, bool)

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

func (*MonitoringEventReport) GetLocFailureCause

func (o *MonitoringEventReport) GetLocFailureCause() LocationFailureCause

GetLocFailureCause returns the LocFailureCause field value if set, zero value otherwise.

func (*MonitoringEventReport) GetLocFailureCauseOk

func (o *MonitoringEventReport) GetLocFailureCauseOk() (*LocationFailureCause, bool)

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

func (*MonitoringEventReport) GetLocationInfo

func (o *MonitoringEventReport) GetLocationInfo() LocationInfo

GetLocationInfo returns the LocationInfo field value if set, zero value otherwise.

func (*MonitoringEventReport) GetLocationInfoOk

func (o *MonitoringEventReport) GetLocationInfoOk() (*LocationInfo, bool)

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

func (*MonitoringEventReport) GetLossOfConnectReason

func (o *MonitoringEventReport) GetLossOfConnectReason() int32

GetLossOfConnectReason returns the LossOfConnectReason field value if set, zero value otherwise.

func (*MonitoringEventReport) GetLossOfConnectReasonOk

func (o *MonitoringEventReport) GetLossOfConnectReasonOk() (*int32, bool)

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

func (*MonitoringEventReport) GetMaxUEAvailabilityTime

func (o *MonitoringEventReport) GetMaxUEAvailabilityTime() time.Time

GetMaxUEAvailabilityTime returns the MaxUEAvailabilityTime field value if set, zero value otherwise.

func (*MonitoringEventReport) GetMaxUEAvailabilityTimeOk

func (o *MonitoringEventReport) GetMaxUEAvailabilityTimeOk() (*time.Time, bool)

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

func (*MonitoringEventReport) GetMaxWaitTime

func (o *MonitoringEventReport) GetMaxWaitTime() time.Time

GetMaxWaitTime returns the MaxWaitTime field value if set, zero value otherwise.

func (*MonitoringEventReport) GetMaxWaitTimeOk

func (o *MonitoringEventReport) GetMaxWaitTimeOk() (*time.Time, bool)

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

func (*MonitoringEventReport) GetMonitoringType

func (o *MonitoringEventReport) GetMonitoringType() MonitoringType

GetMonitoringType returns the MonitoringType field value

func (*MonitoringEventReport) GetMonitoringTypeOk

func (o *MonitoringEventReport) GetMonitoringTypeOk() (*MonitoringType, bool)

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

func (*MonitoringEventReport) GetMsisdn

func (o *MonitoringEventReport) GetMsisdn() string

GetMsisdn returns the Msisdn field value if set, zero value otherwise.

func (*MonitoringEventReport) GetMsisdnOk

func (o *MonitoringEventReport) GetMsisdnOk() (*string, bool)

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

func (*MonitoringEventReport) GetNSStatusInfo

func (o *MonitoringEventReport) GetNSStatusInfo() SACEventStatus

GetNSStatusInfo returns the NSStatusInfo field value if set, zero value otherwise.

func (*MonitoringEventReport) GetNSStatusInfoOk

func (o *MonitoringEventReport) GetNSStatusInfoOk() (*SACEventStatus, bool)

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

func (*MonitoringEventReport) GetPdnConnInfoList

func (o *MonitoringEventReport) GetPdnConnInfoList() []PdnConnectionInformation

GetPdnConnInfoList returns the PdnConnInfoList field value if set, zero value otherwise.

func (*MonitoringEventReport) GetPdnConnInfoListOk

func (o *MonitoringEventReport) GetPdnConnInfoListOk() ([]PdnConnectionInformation, bool)

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

func (*MonitoringEventReport) GetPlmnId

func (o *MonitoringEventReport) GetPlmnId() PlmnId

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

func (*MonitoringEventReport) GetPlmnIdOk

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

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

func (*MonitoringEventReport) GetReachabilityType

func (o *MonitoringEventReport) GetReachabilityType() ReachabilityType

GetReachabilityType returns the ReachabilityType field value if set, zero value otherwise.

func (*MonitoringEventReport) GetReachabilityTypeOk

func (o *MonitoringEventReport) GetReachabilityTypeOk() (*ReachabilityType, bool)

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

func (*MonitoringEventReport) GetRoamingStatus

func (o *MonitoringEventReport) GetRoamingStatus() bool

GetRoamingStatus returns the RoamingStatus field value if set, zero value otherwise.

func (*MonitoringEventReport) GetRoamingStatusOk

func (o *MonitoringEventReport) GetRoamingStatusOk() (*bool, bool)

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

func (*MonitoringEventReport) GetServLevelDevId

func (o *MonitoringEventReport) GetServLevelDevId() string

GetServLevelDevId returns the ServLevelDevId field value if set, zero value otherwise.

func (*MonitoringEventReport) GetServLevelDevIdOk

func (o *MonitoringEventReport) GetServLevelDevIdOk() (*string, bool)

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

func (*MonitoringEventReport) GetUavPresInd

func (o *MonitoringEventReport) GetUavPresInd() bool

GetUavPresInd returns the UavPresInd field value if set, zero value otherwise.

func (*MonitoringEventReport) GetUavPresIndOk

func (o *MonitoringEventReport) GetUavPresIndOk() (*bool, bool)

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

func (*MonitoringEventReport) GetUePerLocationReport

func (o *MonitoringEventReport) GetUePerLocationReport() UePerLocationReport

GetUePerLocationReport returns the UePerLocationReport field value if set, zero value otherwise.

func (*MonitoringEventReport) GetUePerLocationReportOk

func (o *MonitoringEventReport) GetUePerLocationReportOk() (*UePerLocationReport, bool)

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

func (*MonitoringEventReport) HasAfServiceId

func (o *MonitoringEventReport) HasAfServiceId() bool

HasAfServiceId returns a boolean if a field has been set.

func (*MonitoringEventReport) HasApiCaps

func (o *MonitoringEventReport) HasApiCaps() bool

HasApiCaps returns a boolean if a field has been set.

func (*MonitoringEventReport) HasDddStatus

func (o *MonitoringEventReport) HasDddStatus() bool

HasDddStatus returns a boolean if a field has been set.

func (*MonitoringEventReport) HasDddTrafDescriptor

func (o *MonitoringEventReport) HasDddTrafDescriptor() bool

HasDddTrafDescriptor returns a boolean if a field has been set.

func (*MonitoringEventReport) HasEventTime

func (o *MonitoringEventReport) HasEventTime() bool

HasEventTime returns a boolean if a field has been set.

func (*MonitoringEventReport) HasExternalId

func (o *MonitoringEventReport) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*MonitoringEventReport) HasFailureCause

func (o *MonitoringEventReport) HasFailureCause() bool

HasFailureCause returns a boolean if a field has been set.

func (*MonitoringEventReport) HasIdleStatusInfo

func (o *MonitoringEventReport) HasIdleStatusInfo() bool

HasIdleStatusInfo returns a boolean if a field has been set.

func (*MonitoringEventReport) HasImeiChange

func (o *MonitoringEventReport) HasImeiChange() bool

HasImeiChange returns a boolean if a field has been set.

func (*MonitoringEventReport) HasLocFailureCause

func (o *MonitoringEventReport) HasLocFailureCause() bool

HasLocFailureCause returns a boolean if a field has been set.

func (*MonitoringEventReport) HasLocationInfo

func (o *MonitoringEventReport) HasLocationInfo() bool

HasLocationInfo returns a boolean if a field has been set.

func (*MonitoringEventReport) HasLossOfConnectReason

func (o *MonitoringEventReport) HasLossOfConnectReason() bool

HasLossOfConnectReason returns a boolean if a field has been set.

func (*MonitoringEventReport) HasMaxUEAvailabilityTime

func (o *MonitoringEventReport) HasMaxUEAvailabilityTime() bool

HasMaxUEAvailabilityTime returns a boolean if a field has been set.

func (*MonitoringEventReport) HasMaxWaitTime

func (o *MonitoringEventReport) HasMaxWaitTime() bool

HasMaxWaitTime returns a boolean if a field has been set.

func (*MonitoringEventReport) HasMsisdn

func (o *MonitoringEventReport) HasMsisdn() bool

HasMsisdn returns a boolean if a field has been set.

func (*MonitoringEventReport) HasNSStatusInfo

func (o *MonitoringEventReport) HasNSStatusInfo() bool

HasNSStatusInfo returns a boolean if a field has been set.

func (*MonitoringEventReport) HasPdnConnInfoList

func (o *MonitoringEventReport) HasPdnConnInfoList() bool

HasPdnConnInfoList returns a boolean if a field has been set.

func (*MonitoringEventReport) HasPlmnId

func (o *MonitoringEventReport) HasPlmnId() bool

HasPlmnId returns a boolean if a field has been set.

func (*MonitoringEventReport) HasReachabilityType

func (o *MonitoringEventReport) HasReachabilityType() bool

HasReachabilityType returns a boolean if a field has been set.

func (*MonitoringEventReport) HasRoamingStatus

func (o *MonitoringEventReport) HasRoamingStatus() bool

HasRoamingStatus returns a boolean if a field has been set.

func (*MonitoringEventReport) HasServLevelDevId

func (o *MonitoringEventReport) HasServLevelDevId() bool

HasServLevelDevId returns a boolean if a field has been set.

func (*MonitoringEventReport) HasUavPresInd

func (o *MonitoringEventReport) HasUavPresInd() bool

HasUavPresInd returns a boolean if a field has been set.

func (*MonitoringEventReport) HasUePerLocationReport

func (o *MonitoringEventReport) HasUePerLocationReport() bool

HasUePerLocationReport returns a boolean if a field has been set.

func (MonitoringEventReport) MarshalJSON

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

func (*MonitoringEventReport) SetAfServiceId

func (o *MonitoringEventReport) SetAfServiceId(v string)

SetAfServiceId gets a reference to the given string and assigns it to the AfServiceId field.

func (*MonitoringEventReport) SetApiCaps

func (o *MonitoringEventReport) SetApiCaps(v []ApiCapabilityInfo)

SetApiCaps gets a reference to the given []ApiCapabilityInfo and assigns it to the ApiCaps field.

func (*MonitoringEventReport) SetDddStatus

func (o *MonitoringEventReport) SetDddStatus(v DlDataDeliveryStatus)

SetDddStatus gets a reference to the given DlDataDeliveryStatus and assigns it to the DddStatus field.

func (*MonitoringEventReport) SetDddTrafDescriptor

func (o *MonitoringEventReport) SetDddTrafDescriptor(v DddTrafficDescriptor)

SetDddTrafDescriptor gets a reference to the given DddTrafficDescriptor and assigns it to the DddTrafDescriptor field.

func (*MonitoringEventReport) SetEventTime

func (o *MonitoringEventReport) SetEventTime(v time.Time)

SetEventTime gets a reference to the given time.Time and assigns it to the EventTime field.

func (*MonitoringEventReport) SetExternalId

func (o *MonitoringEventReport) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*MonitoringEventReport) SetFailureCause

func (o *MonitoringEventReport) SetFailureCause(v FailureCause)

SetFailureCause gets a reference to the given FailureCause and assigns it to the FailureCause field.

func (*MonitoringEventReport) SetIdleStatusInfo

func (o *MonitoringEventReport) SetIdleStatusInfo(v IdleStatusInfo)

SetIdleStatusInfo gets a reference to the given IdleStatusInfo and assigns it to the IdleStatusInfo field.

func (*MonitoringEventReport) SetImeiChange

func (o *MonitoringEventReport) SetImeiChange(v AssociationType)

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

func (*MonitoringEventReport) SetLocFailureCause

func (o *MonitoringEventReport) SetLocFailureCause(v LocationFailureCause)

SetLocFailureCause gets a reference to the given LocationFailureCause and assigns it to the LocFailureCause field.

func (*MonitoringEventReport) SetLocationInfo

func (o *MonitoringEventReport) SetLocationInfo(v LocationInfo)

SetLocationInfo gets a reference to the given LocationInfo and assigns it to the LocationInfo field.

func (*MonitoringEventReport) SetLossOfConnectReason

func (o *MonitoringEventReport) SetLossOfConnectReason(v int32)

SetLossOfConnectReason gets a reference to the given int32 and assigns it to the LossOfConnectReason field.

func (*MonitoringEventReport) SetMaxUEAvailabilityTime

func (o *MonitoringEventReport) SetMaxUEAvailabilityTime(v time.Time)

SetMaxUEAvailabilityTime gets a reference to the given time.Time and assigns it to the MaxUEAvailabilityTime field.

func (*MonitoringEventReport) SetMaxWaitTime

func (o *MonitoringEventReport) SetMaxWaitTime(v time.Time)

SetMaxWaitTime gets a reference to the given time.Time and assigns it to the MaxWaitTime field.

func (*MonitoringEventReport) SetMonitoringType

func (o *MonitoringEventReport) SetMonitoringType(v MonitoringType)

SetMonitoringType sets field value

func (*MonitoringEventReport) SetMsisdn

func (o *MonitoringEventReport) SetMsisdn(v string)

SetMsisdn gets a reference to the given string and assigns it to the Msisdn field.

func (*MonitoringEventReport) SetNSStatusInfo

func (o *MonitoringEventReport) SetNSStatusInfo(v SACEventStatus)

SetNSStatusInfo gets a reference to the given SACEventStatus and assigns it to the NSStatusInfo field.

func (*MonitoringEventReport) SetPdnConnInfoList

func (o *MonitoringEventReport) SetPdnConnInfoList(v []PdnConnectionInformation)

SetPdnConnInfoList gets a reference to the given []PdnConnectionInformation and assigns it to the PdnConnInfoList field.

func (*MonitoringEventReport) SetPlmnId

func (o *MonitoringEventReport) SetPlmnId(v PlmnId)

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

func (*MonitoringEventReport) SetReachabilityType

func (o *MonitoringEventReport) SetReachabilityType(v ReachabilityType)

SetReachabilityType gets a reference to the given ReachabilityType and assigns it to the ReachabilityType field.

func (*MonitoringEventReport) SetRoamingStatus

func (o *MonitoringEventReport) SetRoamingStatus(v bool)

SetRoamingStatus gets a reference to the given bool and assigns it to the RoamingStatus field.

func (*MonitoringEventReport) SetServLevelDevId

func (o *MonitoringEventReport) SetServLevelDevId(v string)

SetServLevelDevId gets a reference to the given string and assigns it to the ServLevelDevId field.

func (*MonitoringEventReport) SetUavPresInd

func (o *MonitoringEventReport) SetUavPresInd(v bool)

SetUavPresInd gets a reference to the given bool and assigns it to the UavPresInd field.

func (*MonitoringEventReport) SetUePerLocationReport

func (o *MonitoringEventReport) SetUePerLocationReport(v UePerLocationReport)

SetUePerLocationReport gets a reference to the given UePerLocationReport and assigns it to the UePerLocationReport field.

func (MonitoringEventReport) ToMap

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

func (*MonitoringEventReport) UnmarshalJSON

func (o *MonitoringEventReport) UnmarshalJSON(bytes []byte) (err error)

type MonitoringEventReports

type MonitoringEventReports struct {
	MonitoringEventReports []MonitoringEventReport `json:"monitoringEventReports"`
}

MonitoringEventReports Represents a set of event monitoring reports.

func NewMonitoringEventReports

func NewMonitoringEventReports(monitoringEventReports []MonitoringEventReport) *MonitoringEventReports

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

func NewMonitoringEventReportsWithDefaults

func NewMonitoringEventReportsWithDefaults() *MonitoringEventReports

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

func (*MonitoringEventReports) GetMonitoringEventReports

func (o *MonitoringEventReports) GetMonitoringEventReports() []MonitoringEventReport

GetMonitoringEventReports returns the MonitoringEventReports field value

func (*MonitoringEventReports) GetMonitoringEventReportsOk

func (o *MonitoringEventReports) GetMonitoringEventReportsOk() ([]MonitoringEventReport, bool)

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

func (MonitoringEventReports) MarshalJSON

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

func (*MonitoringEventReports) SetMonitoringEventReports

func (o *MonitoringEventReports) SetMonitoringEventReports(v []MonitoringEventReport)

SetMonitoringEventReports sets field value

func (MonitoringEventReports) ToMap

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

func (*MonitoringEventReports) UnmarshalJSON

func (o *MonitoringEventReports) UnmarshalJSON(bytes []byte) (err error)

type MonitoringEventSubscription

type MonitoringEventSubscription struct {
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	Self *string `json:"self,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"`
	// Identifies the MTC Service Provider and/or MTC Application.
	MtcProviderId *string `json:"mtcProviderId,omitempty"`
	// string containing a local identifier followed by \"@\" and a domain identifier. Both the local identifier and the domain identifier shall be encoded as strings that do not contain any \"@\" characters. See Clause 4.6.2 of 3GPP TS 23.682 for more information.
	ExternalId *string `json:"externalId,omitempty"`
	// string formatted according to clause 3.3 of 3GPP TS 23.003 that describes an MSISDN.
	Msisdn *string `json:"msisdn,omitempty"`
	// Indicates the added external Identifier(s) within the active group.
	AddedExternalIds []string `json:"addedExternalIds,omitempty"`
	// Indicates the added MSISDN(s) within the active group.
	AddedMsisdns []string `json:"addedMsisdns,omitempty"`
	// Indicates cancellation of the external Identifier(s) within the active group.
	ExcludedExternalIds []string `json:"excludedExternalIds,omitempty"`
	// Indicates cancellation of the MSISDN(s) within the active group.
	ExcludedMsisdns []string `json:"excludedMsisdns,omitempty"`
	// string containing a local identifier followed by \"@\" and a domain identifier. Both the local identifier and the domain identifier shall be encoded as strings that do not contain any \"@\" characters. See Clauses 4.6.2 and 4.6.3 of 3GPP TS 23.682 for more information.
	ExternalGroupId *string  `json:"externalGroupId,omitempty"`
	AddExtGroupId   []string `json:"addExtGroupId,omitempty"`
	// string identifying a Ipv4 address formatted in the \"dotted decimal\" notation as defined in IETF RFC 1166.
	Ipv4Addr *string `json:"ipv4Addr,omitempty"`
	// string identifying a Ipv6 address formatted according to clause 4 in IETF RFC 5952. The mixed Ipv4 Ipv6 notation according to clause 5 of IETF RFC 5952 shall not be used.
	Ipv6Addr *string `json:"ipv6Addr,omitempty"`
	// String representing a Data Network as defined in clause 9A of 3GPP TS 23.003;  it shall contain either a DNN Network Identifier, or a full DNN with both the Network  Identifier and Operator Identifier, as specified in 3GPP TS 23.003 clause 9.1.1 and 9.1.2. It shall be coded as string in which the labels are separated by dots  (e.g. \"Label1.Label2.Label3\").
	Dnn *string `json:"dnn,omitempty"`
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	NotificationDestination string `json:"notificationDestination"`
	// Set to true by the SCS/AS to request the SCEF to send a test notification as defined in clause 5.2.5.3. Set to false by the SCS/AS indicates not request SCEF to send a test notification, default false if omitted otherwise.
	RequestTestNotification *bool               `json:"requestTestNotification,omitempty"`
	WebsockNotifConfig      *WebsockNotifConfig `json:"websockNotifConfig,omitempty"`
	MonitoringType          MonitoringType      `json:"monitoringType"`
	// Identifies the maximum number of event reports to be generated by the HSS, MME/SGSN as specified in clause 5.6.0 of 3GPP TS 23.682.
	MaximumNumberOfReports *int32 `json:"maximumNumberOfReports,omitempty"`
	// string with format \"date-time\" as defined in OpenAPI.
	MonitorExpireTime *time.Time `json:"monitorExpireTime,omitempty"`
	// Unsigned integer identifying a period of time in units of seconds.
	RepPeriod *int32 `json:"repPeriod,omitempty"`
	// Unsigned integer identifying a period of time in units of seconds.
	GroupReportGuardTime *int32 `json:"groupReportGuardTime,omitempty"`
	// Unsigned integer identifying a period of time in units of seconds.
	MaximumDetectionTime *int32            `json:"maximumDetectionTime,omitempty"`
	ReachabilityType     *ReachabilityType `json:"reachabilityType,omitempty"`
	// Unsigned integer identifying a period of time in units of seconds.
	MaximumLatency *int32 `json:"maximumLatency,omitempty"`
	// Unsigned integer identifying a period of time in units of seconds.
	MaximumResponseTime *int32 `json:"maximumResponseTime,omitempty"`
	// If \"monitoringType\" is \"UE_REACHABILITY\", this parameter may be included to identify the number of packets that the serving gateway shall buffer in case that the UE is not reachable.
	SuggestedNumberOfDlPackets *int32 `json:"suggestedNumberOfDlPackets,omitempty"`
	// If \"monitoringType\" is set to \"UE_REACHABILITY\" or \"AVAILABILITY_AFTER_DDN_FAILURE\", this parameter may be included to indicate the notification of when a UE, for which PSM is enabled, transitions into idle mode. \"true\"  indicates enabling of notification; \"false\"  indicate no need to notify. Default value is \"false\" if omitted.
	IdleStatusIndication *bool         `json:"idleStatusIndication,omitempty"`
	LocationType         *LocationType `json:"locationType,omitempty"`
	Accuracy             *Accuracy     `json:"accuracy,omitempty"`
	// Unsigned integer identifying a period of time in units of seconds.
	MinimumReportInterval *int32 `json:"minimumReportInterval,omitempty"`
	// Unsigned integer identifying a period of time in units of seconds.
	MaxRptExpireIntvl *int32 `json:"maxRptExpireIntvl,omitempty"`
	// Unsigned integer identifying a period of time in units of seconds.
	SamplingInterval *int32 `json:"samplingInterval,omitempty"`
	// Indicates whether to request the location estimate for event reporting. If \"monitoringType\" is \"LOCATION_REPORTING\", this parameter may be included to indicate whether event reporting requires the location information. If set to true, the location estimation information shall be included in event reporting. Set to \"false\", indicates the location estimation information shall not be included in event reporting. Default \"false\" if omitted.
	ReportingLocEstInd *bool `json:"reportingLocEstInd,omitempty"`
	// Minimum straight line distance moved by a UE to trigger a motion event report.
	LinearDistance *int32       `json:"linearDistance,omitempty"`
	LocQoS         *LocationQoS `json:"locQoS,omitempty"`
	// Contains the service identity
	SvcId             *string            `json:"svcId,omitempty"`
	LdrType           *LdrType           `json:"ldrType,omitempty"`
	VelocityRequested *VelocityRequested `json:"velocityRequested,omitempty"`
	// Indicates value of the age of the location estimate.
	MaxAgeOfLocEst     *int32               `json:"maxAgeOfLocEst,omitempty"`
	LocTimeWindow      *TimeWindow          `json:"locTimeWindow,omitempty"`
	SupportedGADShapes []SupportedGADShapes `json:"supportedGADShapes,omitempty"`
	// Contains the codeword
	CodeWord        *string          `json:"codeWord,omitempty"`
	AssociationType *AssociationType `json:"associationType,omitempty"`
	// If \"monitoringType\" is \"ROAMING_STATUS\", this parameter may be included to indicate the notification of UE's Serving PLMN ID. Value \"true\" indicates enabling of notification; \"false\" indicates disabling of notification. Default value is \"false\" if omitted.
	PlmnIndication        *bool                  `json:"plmnIndication,omitempty"`
	LocationArea          *LocationArea          `json:"locationArea,omitempty"`
	LocationArea5G        *LocationArea5G        `json:"locationArea5G,omitempty"`
	DddTraDescriptors     []DddTrafficDescriptor `json:"dddTraDescriptors,omitempty"`
	DddStati              []DlDataDeliveryStatus `json:"dddStati,omitempty"`
	ApiNames              []string               `json:"apiNames,omitempty"`
	MonitoringEventReport *MonitoringEventReport `json:"monitoringEventReport,omitempty"`
	Snssai                *Snssai                `json:"snssai,omitempty"`
	TgtNsThreshold        *SACInfo               `json:"tgtNsThreshold,omitempty"`
	NsRepFormat           *SACRepFormat          `json:"nsRepFormat,omitempty"`
	AfServiceId           *string                `json:"afServiceId,omitempty"`
	// Indicates whether an immediate reporting is requested or not. \"true\" indicate an immediate reporting is requested. \"false\" indicate an immediate reporting is not requested. Default value \"false\" if omitted.
	ImmediateRep *bool      `json:"immediateRep,omitempty"`
	UavPolicy    *UavPolicy `json:"uavPolicy,omitempty"`
	// Set to true by the SCS/AS so that only UAV's with \"PDU session established for DNN(s) subject to aerial service\" are to be listed in the Event report. Set to false or default false if omitted otherwise.
	SesEstInd           *bool                   `json:"sesEstInd,omitempty"`
	SubType             *SubType                `json:"subType,omitempty"`
	AddnMonTypes        []MonitoringType        `json:"addnMonTypes,omitempty"`
	AddnMonEventReports []MonitoringEventReport `json:"addnMonEventReports,omitempty"`
	UeIpAddr            NullableIpAddr          `json:"ueIpAddr,omitempty"`
	// String identifying a MAC address formatted in the hexadecimal notation according to clause 1.1 and clause 2.1 of RFC 7042.
	UeMacAddr *string `json:"ueMacAddr,omitempty"`
	// string providing an URI formatted according to IETF RFC 3986.
	RevocationNotifUri *string `json:"revocationNotifUri,omitempty"`
}

MonitoringEventSubscription Represents a subscription to event(s) monitoring.

func NewMonitoringEventSubscription

func NewMonitoringEventSubscription(notificationDestination string, monitoringType MonitoringType) *MonitoringEventSubscription

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

func NewMonitoringEventSubscriptionWithDefaults

func NewMonitoringEventSubscriptionWithDefaults() *MonitoringEventSubscription

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

func (*MonitoringEventSubscription) GetAccuracy

func (o *MonitoringEventSubscription) GetAccuracy() Accuracy

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

func (*MonitoringEventSubscription) GetAccuracyOk

func (o *MonitoringEventSubscription) GetAccuracyOk() (*Accuracy, bool)

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

func (*MonitoringEventSubscription) GetAddExtGroupId

func (o *MonitoringEventSubscription) GetAddExtGroupId() []string

GetAddExtGroupId returns the AddExtGroupId field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetAddExtGroupIdOk

func (o *MonitoringEventSubscription) GetAddExtGroupIdOk() ([]string, bool)

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

func (*MonitoringEventSubscription) GetAddedExternalIds

func (o *MonitoringEventSubscription) GetAddedExternalIds() []string

GetAddedExternalIds returns the AddedExternalIds field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetAddedExternalIdsOk

func (o *MonitoringEventSubscription) GetAddedExternalIdsOk() ([]string, bool)

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

func (*MonitoringEventSubscription) GetAddedMsisdns

func (o *MonitoringEventSubscription) GetAddedMsisdns() []string

GetAddedMsisdns returns the AddedMsisdns field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetAddedMsisdnsOk

func (o *MonitoringEventSubscription) GetAddedMsisdnsOk() ([]string, bool)

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

func (*MonitoringEventSubscription) GetAddnMonEventReports

func (o *MonitoringEventSubscription) GetAddnMonEventReports() []MonitoringEventReport

GetAddnMonEventReports returns the AddnMonEventReports field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetAddnMonEventReportsOk

func (o *MonitoringEventSubscription) GetAddnMonEventReportsOk() ([]MonitoringEventReport, bool)

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

func (*MonitoringEventSubscription) GetAddnMonTypes

func (o *MonitoringEventSubscription) GetAddnMonTypes() []MonitoringType

GetAddnMonTypes returns the AddnMonTypes field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetAddnMonTypesOk

func (o *MonitoringEventSubscription) GetAddnMonTypesOk() ([]MonitoringType, bool)

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

func (*MonitoringEventSubscription) GetAfServiceId

func (o *MonitoringEventSubscription) GetAfServiceId() string

GetAfServiceId returns the AfServiceId field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetAfServiceIdOk

func (o *MonitoringEventSubscription) GetAfServiceIdOk() (*string, bool)

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

func (*MonitoringEventSubscription) GetApiNames

func (o *MonitoringEventSubscription) GetApiNames() []string

GetApiNames returns the ApiNames field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetApiNamesOk

func (o *MonitoringEventSubscription) GetApiNamesOk() ([]string, bool)

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

func (*MonitoringEventSubscription) GetAssociationType

func (o *MonitoringEventSubscription) GetAssociationType() AssociationType

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

func (*MonitoringEventSubscription) GetAssociationTypeOk

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

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

func (*MonitoringEventSubscription) GetCodeWord

func (o *MonitoringEventSubscription) GetCodeWord() string

GetCodeWord returns the CodeWord field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetCodeWordOk

func (o *MonitoringEventSubscription) GetCodeWordOk() (*string, bool)

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

func (*MonitoringEventSubscription) GetDddStati

GetDddStati returns the DddStati field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetDddStatiOk

func (o *MonitoringEventSubscription) GetDddStatiOk() ([]DlDataDeliveryStatus, bool)

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

func (*MonitoringEventSubscription) GetDddTraDescriptors

func (o *MonitoringEventSubscription) GetDddTraDescriptors() []DddTrafficDescriptor

GetDddTraDescriptors returns the DddTraDescriptors field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetDddTraDescriptorsOk

func (o *MonitoringEventSubscription) GetDddTraDescriptorsOk() ([]DddTrafficDescriptor, bool)

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

func (*MonitoringEventSubscription) GetDnn

func (o *MonitoringEventSubscription) GetDnn() string

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

func (*MonitoringEventSubscription) GetDnnOk

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

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

func (*MonitoringEventSubscription) GetExcludedExternalIds

func (o *MonitoringEventSubscription) GetExcludedExternalIds() []string

GetExcludedExternalIds returns the ExcludedExternalIds field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetExcludedExternalIdsOk

func (o *MonitoringEventSubscription) GetExcludedExternalIdsOk() ([]string, bool)

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

func (*MonitoringEventSubscription) GetExcludedMsisdns

func (o *MonitoringEventSubscription) GetExcludedMsisdns() []string

GetExcludedMsisdns returns the ExcludedMsisdns field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetExcludedMsisdnsOk

func (o *MonitoringEventSubscription) GetExcludedMsisdnsOk() ([]string, bool)

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

func (*MonitoringEventSubscription) GetExternalGroupId

func (o *MonitoringEventSubscription) GetExternalGroupId() string

GetExternalGroupId returns the ExternalGroupId field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetExternalGroupIdOk

func (o *MonitoringEventSubscription) GetExternalGroupIdOk() (*string, bool)

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

func (*MonitoringEventSubscription) GetExternalId

func (o *MonitoringEventSubscription) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetExternalIdOk

func (o *MonitoringEventSubscription) GetExternalIdOk() (*string, bool)

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

func (*MonitoringEventSubscription) GetGroupReportGuardTime

func (o *MonitoringEventSubscription) GetGroupReportGuardTime() int32

GetGroupReportGuardTime returns the GroupReportGuardTime field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetGroupReportGuardTimeOk

func (o *MonitoringEventSubscription) GetGroupReportGuardTimeOk() (*int32, bool)

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

func (*MonitoringEventSubscription) GetIdleStatusIndication

func (o *MonitoringEventSubscription) GetIdleStatusIndication() bool

GetIdleStatusIndication returns the IdleStatusIndication field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetIdleStatusIndicationOk

func (o *MonitoringEventSubscription) GetIdleStatusIndicationOk() (*bool, bool)

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

func (*MonitoringEventSubscription) GetImmediateRep

func (o *MonitoringEventSubscription) GetImmediateRep() bool

GetImmediateRep returns the ImmediateRep field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetImmediateRepOk

func (o *MonitoringEventSubscription) GetImmediateRepOk() (*bool, bool)

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

func (*MonitoringEventSubscription) GetIpv4Addr

func (o *MonitoringEventSubscription) GetIpv4Addr() string

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

func (*MonitoringEventSubscription) GetIpv4AddrOk

func (o *MonitoringEventSubscription) 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 (*MonitoringEventSubscription) GetIpv6Addr

func (o *MonitoringEventSubscription) GetIpv6Addr() string

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

func (*MonitoringEventSubscription) GetIpv6AddrOk

func (o *MonitoringEventSubscription) GetIpv6AddrOk() (*string, 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 (*MonitoringEventSubscription) GetLdrType

func (o *MonitoringEventSubscription) GetLdrType() LdrType

GetLdrType returns the LdrType field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetLdrTypeOk

func (o *MonitoringEventSubscription) GetLdrTypeOk() (*LdrType, bool)

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

func (*MonitoringEventSubscription) GetLinearDistance

func (o *MonitoringEventSubscription) GetLinearDistance() int32

GetLinearDistance returns the LinearDistance field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetLinearDistanceOk

func (o *MonitoringEventSubscription) GetLinearDistanceOk() (*int32, bool)

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

func (*MonitoringEventSubscription) GetLocQoS

GetLocQoS returns the LocQoS field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetLocQoSOk

func (o *MonitoringEventSubscription) GetLocQoSOk() (*LocationQoS, bool)

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

func (*MonitoringEventSubscription) GetLocTimeWindow

func (o *MonitoringEventSubscription) GetLocTimeWindow() TimeWindow

GetLocTimeWindow returns the LocTimeWindow field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetLocTimeWindowOk

func (o *MonitoringEventSubscription) GetLocTimeWindowOk() (*TimeWindow, bool)

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

func (*MonitoringEventSubscription) GetLocationArea

func (o *MonitoringEventSubscription) GetLocationArea() LocationArea

GetLocationArea returns the LocationArea field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetLocationArea5G

func (o *MonitoringEventSubscription) GetLocationArea5G() LocationArea5G

GetLocationArea5G returns the LocationArea5G field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetLocationArea5GOk

func (o *MonitoringEventSubscription) GetLocationArea5GOk() (*LocationArea5G, bool)

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

func (*MonitoringEventSubscription) GetLocationAreaOk

func (o *MonitoringEventSubscription) GetLocationAreaOk() (*LocationArea, bool)

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

func (*MonitoringEventSubscription) GetLocationType

func (o *MonitoringEventSubscription) GetLocationType() LocationType

GetLocationType returns the LocationType field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetLocationTypeOk

func (o *MonitoringEventSubscription) GetLocationTypeOk() (*LocationType, bool)

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

func (*MonitoringEventSubscription) GetMaxAgeOfLocEst

func (o *MonitoringEventSubscription) GetMaxAgeOfLocEst() int32

GetMaxAgeOfLocEst returns the MaxAgeOfLocEst field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetMaxAgeOfLocEstOk

func (o *MonitoringEventSubscription) GetMaxAgeOfLocEstOk() (*int32, bool)

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

func (*MonitoringEventSubscription) GetMaxRptExpireIntvl

func (o *MonitoringEventSubscription) GetMaxRptExpireIntvl() int32

GetMaxRptExpireIntvl returns the MaxRptExpireIntvl field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetMaxRptExpireIntvlOk

func (o *MonitoringEventSubscription) GetMaxRptExpireIntvlOk() (*int32, bool)

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

func (*MonitoringEventSubscription) GetMaximumDetectionTime

func (o *MonitoringEventSubscription) GetMaximumDetectionTime() int32

GetMaximumDetectionTime returns the MaximumDetectionTime field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetMaximumDetectionTimeOk

func (o *MonitoringEventSubscription) GetMaximumDetectionTimeOk() (*int32, bool)

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

func (*MonitoringEventSubscription) GetMaximumLatency

func (o *MonitoringEventSubscription) GetMaximumLatency() int32

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

func (*MonitoringEventSubscription) GetMaximumLatencyOk

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

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

func (*MonitoringEventSubscription) GetMaximumNumberOfReports

func (o *MonitoringEventSubscription) GetMaximumNumberOfReports() int32

GetMaximumNumberOfReports returns the MaximumNumberOfReports field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetMaximumNumberOfReportsOk

func (o *MonitoringEventSubscription) GetMaximumNumberOfReportsOk() (*int32, bool)

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

func (*MonitoringEventSubscription) GetMaximumResponseTime

func (o *MonitoringEventSubscription) GetMaximumResponseTime() int32

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

func (*MonitoringEventSubscription) GetMaximumResponseTimeOk

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

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

func (*MonitoringEventSubscription) GetMinimumReportInterval

func (o *MonitoringEventSubscription) GetMinimumReportInterval() int32

GetMinimumReportInterval returns the MinimumReportInterval field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetMinimumReportIntervalOk

func (o *MonitoringEventSubscription) GetMinimumReportIntervalOk() (*int32, bool)

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

func (*MonitoringEventSubscription) GetMonitorExpireTime

func (o *MonitoringEventSubscription) GetMonitorExpireTime() time.Time

GetMonitorExpireTime returns the MonitorExpireTime field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetMonitorExpireTimeOk

func (o *MonitoringEventSubscription) GetMonitorExpireTimeOk() (*time.Time, bool)

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

func (*MonitoringEventSubscription) GetMonitoringEventReport

func (o *MonitoringEventSubscription) GetMonitoringEventReport() MonitoringEventReport

GetMonitoringEventReport returns the MonitoringEventReport field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetMonitoringEventReportOk

func (o *MonitoringEventSubscription) GetMonitoringEventReportOk() (*MonitoringEventReport, bool)

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

func (*MonitoringEventSubscription) GetMonitoringType

func (o *MonitoringEventSubscription) GetMonitoringType() MonitoringType

GetMonitoringType returns the MonitoringType field value

func (*MonitoringEventSubscription) GetMonitoringTypeOk

func (o *MonitoringEventSubscription) GetMonitoringTypeOk() (*MonitoringType, bool)

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

func (*MonitoringEventSubscription) GetMsisdn

func (o *MonitoringEventSubscription) GetMsisdn() string

GetMsisdn returns the Msisdn field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetMsisdnOk

func (o *MonitoringEventSubscription) GetMsisdnOk() (*string, bool)

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

func (*MonitoringEventSubscription) GetMtcProviderId

func (o *MonitoringEventSubscription) GetMtcProviderId() string

GetMtcProviderId returns the MtcProviderId field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetMtcProviderIdOk

func (o *MonitoringEventSubscription) GetMtcProviderIdOk() (*string, bool)

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

func (*MonitoringEventSubscription) GetNotificationDestination

func (o *MonitoringEventSubscription) GetNotificationDestination() string

GetNotificationDestination returns the NotificationDestination field value

func (*MonitoringEventSubscription) GetNotificationDestinationOk

func (o *MonitoringEventSubscription) GetNotificationDestinationOk() (*string, bool)

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

func (*MonitoringEventSubscription) GetNsRepFormat

func (o *MonitoringEventSubscription) GetNsRepFormat() SACRepFormat

GetNsRepFormat returns the NsRepFormat field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetNsRepFormatOk

func (o *MonitoringEventSubscription) GetNsRepFormatOk() (*SACRepFormat, bool)

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

func (*MonitoringEventSubscription) GetPlmnIndication

func (o *MonitoringEventSubscription) GetPlmnIndication() bool

GetPlmnIndication returns the PlmnIndication field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetPlmnIndicationOk

func (o *MonitoringEventSubscription) GetPlmnIndicationOk() (*bool, bool)

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

func (*MonitoringEventSubscription) GetReachabilityType

func (o *MonitoringEventSubscription) GetReachabilityType() ReachabilityType

GetReachabilityType returns the ReachabilityType field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetReachabilityTypeOk

func (o *MonitoringEventSubscription) GetReachabilityTypeOk() (*ReachabilityType, bool)

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

func (*MonitoringEventSubscription) GetRepPeriod

func (o *MonitoringEventSubscription) GetRepPeriod() int32

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

func (*MonitoringEventSubscription) GetRepPeriodOk

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

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

func (*MonitoringEventSubscription) GetReportingLocEstInd

func (o *MonitoringEventSubscription) GetReportingLocEstInd() bool

GetReportingLocEstInd returns the ReportingLocEstInd field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetReportingLocEstIndOk

func (o *MonitoringEventSubscription) GetReportingLocEstIndOk() (*bool, bool)

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

func (*MonitoringEventSubscription) GetRequestTestNotification

func (o *MonitoringEventSubscription) GetRequestTestNotification() bool

GetRequestTestNotification returns the RequestTestNotification field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetRequestTestNotificationOk

func (o *MonitoringEventSubscription) GetRequestTestNotificationOk() (*bool, bool)

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

func (*MonitoringEventSubscription) GetRevocationNotifUri

func (o *MonitoringEventSubscription) GetRevocationNotifUri() string

GetRevocationNotifUri returns the RevocationNotifUri field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetRevocationNotifUriOk

func (o *MonitoringEventSubscription) GetRevocationNotifUriOk() (*string, bool)

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

func (*MonitoringEventSubscription) GetSamplingInterval

func (o *MonitoringEventSubscription) GetSamplingInterval() int32

GetSamplingInterval returns the SamplingInterval field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetSamplingIntervalOk

func (o *MonitoringEventSubscription) GetSamplingIntervalOk() (*int32, bool)

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

func (*MonitoringEventSubscription) GetSelf

func (o *MonitoringEventSubscription) GetSelf() string

GetSelf returns the Self field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetSelfOk

func (o *MonitoringEventSubscription) GetSelfOk() (*string, bool)

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

func (*MonitoringEventSubscription) GetSesEstInd

func (o *MonitoringEventSubscription) GetSesEstInd() bool

GetSesEstInd returns the SesEstInd field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetSesEstIndOk

func (o *MonitoringEventSubscription) GetSesEstIndOk() (*bool, bool)

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

func (*MonitoringEventSubscription) GetSnssai

func (o *MonitoringEventSubscription) GetSnssai() Snssai

GetSnssai returns the Snssai field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetSnssaiOk

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

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

func (*MonitoringEventSubscription) GetSubType

func (o *MonitoringEventSubscription) GetSubType() SubType

GetSubType returns the SubType field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetSubTypeOk

func (o *MonitoringEventSubscription) GetSubTypeOk() (*SubType, bool)

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

func (*MonitoringEventSubscription) GetSuggestedNumberOfDlPackets

func (o *MonitoringEventSubscription) GetSuggestedNumberOfDlPackets() int32

GetSuggestedNumberOfDlPackets returns the SuggestedNumberOfDlPackets field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetSuggestedNumberOfDlPacketsOk

func (o *MonitoringEventSubscription) GetSuggestedNumberOfDlPacketsOk() (*int32, bool)

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

func (*MonitoringEventSubscription) GetSupportedFeatures

func (o *MonitoringEventSubscription) GetSupportedFeatures() string

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

func (*MonitoringEventSubscription) GetSupportedFeaturesOk

func (o *MonitoringEventSubscription) 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 (*MonitoringEventSubscription) GetSupportedGADShapes

func (o *MonitoringEventSubscription) GetSupportedGADShapes() []SupportedGADShapes

GetSupportedGADShapes returns the SupportedGADShapes field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetSupportedGADShapesOk

func (o *MonitoringEventSubscription) GetSupportedGADShapesOk() ([]SupportedGADShapes, bool)

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

func (*MonitoringEventSubscription) GetSvcId

func (o *MonitoringEventSubscription) GetSvcId() string

GetSvcId returns the SvcId field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetSvcIdOk

func (o *MonitoringEventSubscription) GetSvcIdOk() (*string, bool)

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

func (*MonitoringEventSubscription) GetTgtNsThreshold

func (o *MonitoringEventSubscription) GetTgtNsThreshold() SACInfo

GetTgtNsThreshold returns the TgtNsThreshold field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetTgtNsThresholdOk

func (o *MonitoringEventSubscription) GetTgtNsThresholdOk() (*SACInfo, bool)

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

func (*MonitoringEventSubscription) GetUavPolicy

func (o *MonitoringEventSubscription) GetUavPolicy() UavPolicy

GetUavPolicy returns the UavPolicy field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetUavPolicyOk

func (o *MonitoringEventSubscription) GetUavPolicyOk() (*UavPolicy, bool)

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

func (*MonitoringEventSubscription) GetUeIpAddr

func (o *MonitoringEventSubscription) GetUeIpAddr() IpAddr

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

func (*MonitoringEventSubscription) GetUeIpAddrOk

func (o *MonitoringEventSubscription) GetUeIpAddrOk() (*IpAddr, bool)

GetUeIpAddrOk returns a tuple with the UeIpAddr 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 (*MonitoringEventSubscription) GetUeMacAddr

func (o *MonitoringEventSubscription) GetUeMacAddr() string

GetUeMacAddr returns the UeMacAddr field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetUeMacAddrOk

func (o *MonitoringEventSubscription) GetUeMacAddrOk() (*string, bool)

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

func (*MonitoringEventSubscription) GetVelocityRequested

func (o *MonitoringEventSubscription) GetVelocityRequested() VelocityRequested

GetVelocityRequested returns the VelocityRequested field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetVelocityRequestedOk

func (o *MonitoringEventSubscription) GetVelocityRequestedOk() (*VelocityRequested, bool)

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

func (*MonitoringEventSubscription) GetWebsockNotifConfig

func (o *MonitoringEventSubscription) GetWebsockNotifConfig() WebsockNotifConfig

GetWebsockNotifConfig returns the WebsockNotifConfig field value if set, zero value otherwise.

func (*MonitoringEventSubscription) GetWebsockNotifConfigOk

func (o *MonitoringEventSubscription) GetWebsockNotifConfigOk() (*WebsockNotifConfig, bool)

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

func (*MonitoringEventSubscription) HasAccuracy

func (o *MonitoringEventSubscription) HasAccuracy() bool

HasAccuracy returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasAddExtGroupId

func (o *MonitoringEventSubscription) HasAddExtGroupId() bool

HasAddExtGroupId returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasAddedExternalIds

func (o *MonitoringEventSubscription) HasAddedExternalIds() bool

HasAddedExternalIds returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasAddedMsisdns

func (o *MonitoringEventSubscription) HasAddedMsisdns() bool

HasAddedMsisdns returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasAddnMonEventReports

func (o *MonitoringEventSubscription) HasAddnMonEventReports() bool

HasAddnMonEventReports returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasAddnMonTypes

func (o *MonitoringEventSubscription) HasAddnMonTypes() bool

HasAddnMonTypes returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasAfServiceId

func (o *MonitoringEventSubscription) HasAfServiceId() bool

HasAfServiceId returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasApiNames

func (o *MonitoringEventSubscription) HasApiNames() bool

HasApiNames returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasAssociationType

func (o *MonitoringEventSubscription) HasAssociationType() bool

HasAssociationType returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasCodeWord

func (o *MonitoringEventSubscription) HasCodeWord() bool

HasCodeWord returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasDddStati

func (o *MonitoringEventSubscription) HasDddStati() bool

HasDddStati returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasDddTraDescriptors

func (o *MonitoringEventSubscription) HasDddTraDescriptors() bool

HasDddTraDescriptors returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasDnn

func (o *MonitoringEventSubscription) HasDnn() bool

HasDnn returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasExcludedExternalIds

func (o *MonitoringEventSubscription) HasExcludedExternalIds() bool

HasExcludedExternalIds returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasExcludedMsisdns

func (o *MonitoringEventSubscription) HasExcludedMsisdns() bool

HasExcludedMsisdns returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasExternalGroupId

func (o *MonitoringEventSubscription) HasExternalGroupId() bool

HasExternalGroupId returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasExternalId

func (o *MonitoringEventSubscription) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasGroupReportGuardTime

func (o *MonitoringEventSubscription) HasGroupReportGuardTime() bool

HasGroupReportGuardTime returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasIdleStatusIndication

func (o *MonitoringEventSubscription) HasIdleStatusIndication() bool

HasIdleStatusIndication returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasImmediateRep

func (o *MonitoringEventSubscription) HasImmediateRep() bool

HasImmediateRep returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasIpv4Addr

func (o *MonitoringEventSubscription) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasIpv6Addr

func (o *MonitoringEventSubscription) HasIpv6Addr() bool

HasIpv6Addr returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasLdrType

func (o *MonitoringEventSubscription) HasLdrType() bool

HasLdrType returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasLinearDistance

func (o *MonitoringEventSubscription) HasLinearDistance() bool

HasLinearDistance returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasLocQoS

func (o *MonitoringEventSubscription) HasLocQoS() bool

HasLocQoS returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasLocTimeWindow

func (o *MonitoringEventSubscription) HasLocTimeWindow() bool

HasLocTimeWindow returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasLocationArea

func (o *MonitoringEventSubscription) HasLocationArea() bool

HasLocationArea returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasLocationArea5G

func (o *MonitoringEventSubscription) HasLocationArea5G() bool

HasLocationArea5G returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasLocationType

func (o *MonitoringEventSubscription) HasLocationType() bool

HasLocationType returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasMaxAgeOfLocEst

func (o *MonitoringEventSubscription) HasMaxAgeOfLocEst() bool

HasMaxAgeOfLocEst returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasMaxRptExpireIntvl

func (o *MonitoringEventSubscription) HasMaxRptExpireIntvl() bool

HasMaxRptExpireIntvl returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasMaximumDetectionTime

func (o *MonitoringEventSubscription) HasMaximumDetectionTime() bool

HasMaximumDetectionTime returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasMaximumLatency

func (o *MonitoringEventSubscription) HasMaximumLatency() bool

HasMaximumLatency returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasMaximumNumberOfReports

func (o *MonitoringEventSubscription) HasMaximumNumberOfReports() bool

HasMaximumNumberOfReports returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasMaximumResponseTime

func (o *MonitoringEventSubscription) HasMaximumResponseTime() bool

HasMaximumResponseTime returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasMinimumReportInterval

func (o *MonitoringEventSubscription) HasMinimumReportInterval() bool

HasMinimumReportInterval returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasMonitorExpireTime

func (o *MonitoringEventSubscription) HasMonitorExpireTime() bool

HasMonitorExpireTime returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasMonitoringEventReport

func (o *MonitoringEventSubscription) HasMonitoringEventReport() bool

HasMonitoringEventReport returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasMsisdn

func (o *MonitoringEventSubscription) HasMsisdn() bool

HasMsisdn returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasMtcProviderId

func (o *MonitoringEventSubscription) HasMtcProviderId() bool

HasMtcProviderId returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasNsRepFormat

func (o *MonitoringEventSubscription) HasNsRepFormat() bool

HasNsRepFormat returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasPlmnIndication

func (o *MonitoringEventSubscription) HasPlmnIndication() bool

HasPlmnIndication returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasReachabilityType

func (o *MonitoringEventSubscription) HasReachabilityType() bool

HasReachabilityType returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasRepPeriod

func (o *MonitoringEventSubscription) HasRepPeriod() bool

HasRepPeriod returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasReportingLocEstInd

func (o *MonitoringEventSubscription) HasReportingLocEstInd() bool

HasReportingLocEstInd returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasRequestTestNotification

func (o *MonitoringEventSubscription) HasRequestTestNotification() bool

HasRequestTestNotification returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasRevocationNotifUri

func (o *MonitoringEventSubscription) HasRevocationNotifUri() bool

HasRevocationNotifUri returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasSamplingInterval

func (o *MonitoringEventSubscription) HasSamplingInterval() bool

HasSamplingInterval returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasSelf

func (o *MonitoringEventSubscription) HasSelf() bool

HasSelf returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasSesEstInd

func (o *MonitoringEventSubscription) HasSesEstInd() bool

HasSesEstInd returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasSnssai

func (o *MonitoringEventSubscription) HasSnssai() bool

HasSnssai returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasSubType

func (o *MonitoringEventSubscription) HasSubType() bool

HasSubType returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasSuggestedNumberOfDlPackets

func (o *MonitoringEventSubscription) HasSuggestedNumberOfDlPackets() bool

HasSuggestedNumberOfDlPackets returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasSupportedFeatures

func (o *MonitoringEventSubscription) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasSupportedGADShapes

func (o *MonitoringEventSubscription) HasSupportedGADShapes() bool

HasSupportedGADShapes returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasSvcId

func (o *MonitoringEventSubscription) HasSvcId() bool

HasSvcId returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasTgtNsThreshold

func (o *MonitoringEventSubscription) HasTgtNsThreshold() bool

HasTgtNsThreshold returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasUavPolicy

func (o *MonitoringEventSubscription) HasUavPolicy() bool

HasUavPolicy returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasUeIpAddr

func (o *MonitoringEventSubscription) HasUeIpAddr() bool

HasUeIpAddr returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasUeMacAddr

func (o *MonitoringEventSubscription) HasUeMacAddr() bool

HasUeMacAddr returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasVelocityRequested

func (o *MonitoringEventSubscription) HasVelocityRequested() bool

HasVelocityRequested returns a boolean if a field has been set.

func (*MonitoringEventSubscription) HasWebsockNotifConfig

func (o *MonitoringEventSubscription) HasWebsockNotifConfig() bool

HasWebsockNotifConfig returns a boolean if a field has been set.

func (MonitoringEventSubscription) MarshalJSON

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

func (*MonitoringEventSubscription) SetAccuracy

func (o *MonitoringEventSubscription) SetAccuracy(v Accuracy)

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

func (*MonitoringEventSubscription) SetAddExtGroupId

func (o *MonitoringEventSubscription) SetAddExtGroupId(v []string)

SetAddExtGroupId gets a reference to the given []string and assigns it to the AddExtGroupId field.

func (*MonitoringEventSubscription) SetAddedExternalIds

func (o *MonitoringEventSubscription) SetAddedExternalIds(v []string)

SetAddedExternalIds gets a reference to the given []string and assigns it to the AddedExternalIds field.

func (*MonitoringEventSubscription) SetAddedMsisdns

func (o *MonitoringEventSubscription) SetAddedMsisdns(v []string)

SetAddedMsisdns gets a reference to the given []string and assigns it to the AddedMsisdns field.

func (*MonitoringEventSubscription) SetAddnMonEventReports

func (o *MonitoringEventSubscription) SetAddnMonEventReports(v []MonitoringEventReport)

SetAddnMonEventReports gets a reference to the given []MonitoringEventReport and assigns it to the AddnMonEventReports field.

func (*MonitoringEventSubscription) SetAddnMonTypes

func (o *MonitoringEventSubscription) SetAddnMonTypes(v []MonitoringType)

SetAddnMonTypes gets a reference to the given []MonitoringType and assigns it to the AddnMonTypes field.

func (*MonitoringEventSubscription) SetAfServiceId

func (o *MonitoringEventSubscription) SetAfServiceId(v string)

SetAfServiceId gets a reference to the given string and assigns it to the AfServiceId field.

func (*MonitoringEventSubscription) SetApiNames

func (o *MonitoringEventSubscription) SetApiNames(v []string)

SetApiNames gets a reference to the given []string and assigns it to the ApiNames field.

func (*MonitoringEventSubscription) SetAssociationType

func (o *MonitoringEventSubscription) SetAssociationType(v AssociationType)

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

func (*MonitoringEventSubscription) SetCodeWord

func (o *MonitoringEventSubscription) SetCodeWord(v string)

SetCodeWord gets a reference to the given string and assigns it to the CodeWord field.

func (*MonitoringEventSubscription) SetDddStati

SetDddStati gets a reference to the given []DlDataDeliveryStatus and assigns it to the DddStati field.

func (*MonitoringEventSubscription) SetDddTraDescriptors

func (o *MonitoringEventSubscription) SetDddTraDescriptors(v []DddTrafficDescriptor)

SetDddTraDescriptors gets a reference to the given []DddTrafficDescriptor and assigns it to the DddTraDescriptors field.

func (*MonitoringEventSubscription) SetDnn

func (o *MonitoringEventSubscription) SetDnn(v string)

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

func (*MonitoringEventSubscription) SetExcludedExternalIds

func (o *MonitoringEventSubscription) SetExcludedExternalIds(v []string)

SetExcludedExternalIds gets a reference to the given []string and assigns it to the ExcludedExternalIds field.

func (*MonitoringEventSubscription) SetExcludedMsisdns

func (o *MonitoringEventSubscription) SetExcludedMsisdns(v []string)

SetExcludedMsisdns gets a reference to the given []string and assigns it to the ExcludedMsisdns field.

func (*MonitoringEventSubscription) SetExternalGroupId

func (o *MonitoringEventSubscription) SetExternalGroupId(v string)

SetExternalGroupId gets a reference to the given string and assigns it to the ExternalGroupId field.

func (*MonitoringEventSubscription) SetExternalId

func (o *MonitoringEventSubscription) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*MonitoringEventSubscription) SetGroupReportGuardTime

func (o *MonitoringEventSubscription) SetGroupReportGuardTime(v int32)

SetGroupReportGuardTime gets a reference to the given int32 and assigns it to the GroupReportGuardTime field.

func (*MonitoringEventSubscription) SetIdleStatusIndication

func (o *MonitoringEventSubscription) SetIdleStatusIndication(v bool)

SetIdleStatusIndication gets a reference to the given bool and assigns it to the IdleStatusIndication field.

func (*MonitoringEventSubscription) SetImmediateRep

func (o *MonitoringEventSubscription) SetImmediateRep(v bool)

SetImmediateRep gets a reference to the given bool and assigns it to the ImmediateRep field.

func (*MonitoringEventSubscription) SetIpv4Addr

func (o *MonitoringEventSubscription) SetIpv4Addr(v string)

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

func (*MonitoringEventSubscription) SetIpv6Addr

func (o *MonitoringEventSubscription) SetIpv6Addr(v string)

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

func (*MonitoringEventSubscription) SetLdrType

func (o *MonitoringEventSubscription) SetLdrType(v LdrType)

SetLdrType gets a reference to the given LdrType and assigns it to the LdrType field.

func (*MonitoringEventSubscription) SetLinearDistance

func (o *MonitoringEventSubscription) SetLinearDistance(v int32)

SetLinearDistance gets a reference to the given int32 and assigns it to the LinearDistance field.

func (*MonitoringEventSubscription) SetLocQoS

func (o *MonitoringEventSubscription) SetLocQoS(v LocationQoS)

SetLocQoS gets a reference to the given LocationQoS and assigns it to the LocQoS field.

func (*MonitoringEventSubscription) SetLocTimeWindow

func (o *MonitoringEventSubscription) SetLocTimeWindow(v TimeWindow)

SetLocTimeWindow gets a reference to the given TimeWindow and assigns it to the LocTimeWindow field.

func (*MonitoringEventSubscription) SetLocationArea

func (o *MonitoringEventSubscription) SetLocationArea(v LocationArea)

SetLocationArea gets a reference to the given LocationArea and assigns it to the LocationArea field.

func (*MonitoringEventSubscription) SetLocationArea5G

func (o *MonitoringEventSubscription) SetLocationArea5G(v LocationArea5G)

SetLocationArea5G gets a reference to the given LocationArea5G and assigns it to the LocationArea5G field.

func (*MonitoringEventSubscription) SetLocationType

func (o *MonitoringEventSubscription) SetLocationType(v LocationType)

SetLocationType gets a reference to the given LocationType and assigns it to the LocationType field.

func (*MonitoringEventSubscription) SetMaxAgeOfLocEst

func (o *MonitoringEventSubscription) SetMaxAgeOfLocEst(v int32)

SetMaxAgeOfLocEst gets a reference to the given int32 and assigns it to the MaxAgeOfLocEst field.

func (*MonitoringEventSubscription) SetMaxRptExpireIntvl

func (o *MonitoringEventSubscription) SetMaxRptExpireIntvl(v int32)

SetMaxRptExpireIntvl gets a reference to the given int32 and assigns it to the MaxRptExpireIntvl field.

func (*MonitoringEventSubscription) SetMaximumDetectionTime

func (o *MonitoringEventSubscription) SetMaximumDetectionTime(v int32)

SetMaximumDetectionTime gets a reference to the given int32 and assigns it to the MaximumDetectionTime field.

func (*MonitoringEventSubscription) SetMaximumLatency

func (o *MonitoringEventSubscription) SetMaximumLatency(v int32)

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

func (*MonitoringEventSubscription) SetMaximumNumberOfReports

func (o *MonitoringEventSubscription) SetMaximumNumberOfReports(v int32)

SetMaximumNumberOfReports gets a reference to the given int32 and assigns it to the MaximumNumberOfReports field.

func (*MonitoringEventSubscription) SetMaximumResponseTime

func (o *MonitoringEventSubscription) SetMaximumResponseTime(v int32)

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

func (*MonitoringEventSubscription) SetMinimumReportInterval

func (o *MonitoringEventSubscription) SetMinimumReportInterval(v int32)

SetMinimumReportInterval gets a reference to the given int32 and assigns it to the MinimumReportInterval field.

func (*MonitoringEventSubscription) SetMonitorExpireTime

func (o *MonitoringEventSubscription) SetMonitorExpireTime(v time.Time)

SetMonitorExpireTime gets a reference to the given time.Time and assigns it to the MonitorExpireTime field.

func (*MonitoringEventSubscription) SetMonitoringEventReport

func (o *MonitoringEventSubscription) SetMonitoringEventReport(v MonitoringEventReport)

SetMonitoringEventReport gets a reference to the given MonitoringEventReport and assigns it to the MonitoringEventReport field.

func (*MonitoringEventSubscription) SetMonitoringType

func (o *MonitoringEventSubscription) SetMonitoringType(v MonitoringType)

SetMonitoringType sets field value

func (*MonitoringEventSubscription) SetMsisdn

func (o *MonitoringEventSubscription) SetMsisdn(v string)

SetMsisdn gets a reference to the given string and assigns it to the Msisdn field.

func (*MonitoringEventSubscription) SetMtcProviderId

func (o *MonitoringEventSubscription) SetMtcProviderId(v string)

SetMtcProviderId gets a reference to the given string and assigns it to the MtcProviderId field.

func (*MonitoringEventSubscription) SetNotificationDestination

func (o *MonitoringEventSubscription) SetNotificationDestination(v string)

SetNotificationDestination sets field value

func (*MonitoringEventSubscription) SetNsRepFormat

func (o *MonitoringEventSubscription) SetNsRepFormat(v SACRepFormat)

SetNsRepFormat gets a reference to the given SACRepFormat and assigns it to the NsRepFormat field.

func (*MonitoringEventSubscription) SetPlmnIndication

func (o *MonitoringEventSubscription) SetPlmnIndication(v bool)

SetPlmnIndication gets a reference to the given bool and assigns it to the PlmnIndication field.

func (*MonitoringEventSubscription) SetReachabilityType

func (o *MonitoringEventSubscription) SetReachabilityType(v ReachabilityType)

SetReachabilityType gets a reference to the given ReachabilityType and assigns it to the ReachabilityType field.

func (*MonitoringEventSubscription) SetRepPeriod

func (o *MonitoringEventSubscription) SetRepPeriod(v int32)

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

func (*MonitoringEventSubscription) SetReportingLocEstInd

func (o *MonitoringEventSubscription) SetReportingLocEstInd(v bool)

SetReportingLocEstInd gets a reference to the given bool and assigns it to the ReportingLocEstInd field.

func (*MonitoringEventSubscription) SetRequestTestNotification

func (o *MonitoringEventSubscription) SetRequestTestNotification(v bool)

SetRequestTestNotification gets a reference to the given bool and assigns it to the RequestTestNotification field.

func (*MonitoringEventSubscription) SetRevocationNotifUri

func (o *MonitoringEventSubscription) SetRevocationNotifUri(v string)

SetRevocationNotifUri gets a reference to the given string and assigns it to the RevocationNotifUri field.

func (*MonitoringEventSubscription) SetSamplingInterval

func (o *MonitoringEventSubscription) SetSamplingInterval(v int32)

SetSamplingInterval gets a reference to the given int32 and assigns it to the SamplingInterval field.

func (*MonitoringEventSubscription) SetSelf

func (o *MonitoringEventSubscription) SetSelf(v string)

SetSelf gets a reference to the given string and assigns it to the Self field.

func (*MonitoringEventSubscription) SetSesEstInd

func (o *MonitoringEventSubscription) SetSesEstInd(v bool)

SetSesEstInd gets a reference to the given bool and assigns it to the SesEstInd field.

func (*MonitoringEventSubscription) SetSnssai

func (o *MonitoringEventSubscription) SetSnssai(v Snssai)

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

func (*MonitoringEventSubscription) SetSubType

func (o *MonitoringEventSubscription) SetSubType(v SubType)

SetSubType gets a reference to the given SubType and assigns it to the SubType field.

func (*MonitoringEventSubscription) SetSuggestedNumberOfDlPackets

func (o *MonitoringEventSubscription) SetSuggestedNumberOfDlPackets(v int32)

SetSuggestedNumberOfDlPackets gets a reference to the given int32 and assigns it to the SuggestedNumberOfDlPackets field.

func (*MonitoringEventSubscription) SetSupportedFeatures

func (o *MonitoringEventSubscription) SetSupportedFeatures(v string)

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

func (*MonitoringEventSubscription) SetSupportedGADShapes

func (o *MonitoringEventSubscription) SetSupportedGADShapes(v []SupportedGADShapes)

SetSupportedGADShapes gets a reference to the given []SupportedGADShapes and assigns it to the SupportedGADShapes field.

func (*MonitoringEventSubscription) SetSvcId

func (o *MonitoringEventSubscription) SetSvcId(v string)

SetSvcId gets a reference to the given string and assigns it to the SvcId field.

func (*MonitoringEventSubscription) SetTgtNsThreshold

func (o *MonitoringEventSubscription) SetTgtNsThreshold(v SACInfo)

SetTgtNsThreshold gets a reference to the given SACInfo and assigns it to the TgtNsThreshold field.

func (*MonitoringEventSubscription) SetUavPolicy

func (o *MonitoringEventSubscription) SetUavPolicy(v UavPolicy)

SetUavPolicy gets a reference to the given UavPolicy and assigns it to the UavPolicy field.

func (*MonitoringEventSubscription) SetUeIpAddr

func (o *MonitoringEventSubscription) SetUeIpAddr(v IpAddr)

SetUeIpAddr gets a reference to the given NullableIpAddr and assigns it to the UeIpAddr field.

func (*MonitoringEventSubscription) SetUeIpAddrNil

func (o *MonitoringEventSubscription) SetUeIpAddrNil()

SetUeIpAddrNil sets the value for UeIpAddr to be an explicit nil

func (*MonitoringEventSubscription) SetUeMacAddr

func (o *MonitoringEventSubscription) SetUeMacAddr(v string)

SetUeMacAddr gets a reference to the given string and assigns it to the UeMacAddr field.

func (*MonitoringEventSubscription) SetVelocityRequested

func (o *MonitoringEventSubscription) SetVelocityRequested(v VelocityRequested)

SetVelocityRequested gets a reference to the given VelocityRequested and assigns it to the VelocityRequested field.

func (*MonitoringEventSubscription) SetWebsockNotifConfig

func (o *MonitoringEventSubscription) SetWebsockNotifConfig(v WebsockNotifConfig)

SetWebsockNotifConfig gets a reference to the given WebsockNotifConfig and assigns it to the WebsockNotifConfig field.

func (MonitoringEventSubscription) ToMap

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

func (*MonitoringEventSubscription) UnmarshalJSON

func (o *MonitoringEventSubscription) UnmarshalJSON(bytes []byte) (err error)

func (*MonitoringEventSubscription) UnsetUeIpAddr

func (o *MonitoringEventSubscription) UnsetUeIpAddr()

UnsetUeIpAddr ensures that no value is present for UeIpAddr, not even an explicit nil

type MonitoringEventSubscriptionsAPIService

type MonitoringEventSubscriptionsAPIService service

MonitoringEventSubscriptionsAPIService MonitoringEventSubscriptionsAPI service

func (*MonitoringEventSubscriptionsAPIService) CreateMonitoringEventSubscription

CreateMonitoringEventSubscription Creates a new subscription resource for monitoring event notification.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scsAsId Identifier of the SCS/AS
@return ApiCreateMonitoringEventSubscriptionRequest

func (*MonitoringEventSubscriptionsAPIService) CreateMonitoringEventSubscriptionExecute

func (a *MonitoringEventSubscriptionsAPIService) CreateMonitoringEventSubscriptionExecute(r ApiCreateMonitoringEventSubscriptionRequest) (*OneOfMonitoringEventReportMonitoringEventReports, *http.Response, error)

Execute executes the request

@return OneOfMonitoringEventReportMonitoringEventReports

func (*MonitoringEventSubscriptionsAPIService) FetchAllMonitoringEventSubscriptions

FetchAllMonitoringEventSubscriptions Read all or queried active subscriptions for the SCS/AS.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scsAsId Identifier of the SCS/AS
@return ApiFetchAllMonitoringEventSubscriptionsRequest

func (*MonitoringEventSubscriptionsAPIService) FetchAllMonitoringEventSubscriptionsExecute

Execute executes the request

@return []MonitoringEventSubscription

type MonitoringNotification

type MonitoringNotification struct {
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	Subscription string `json:"subscription"`
	// Each element identifies a notification of grouping configuration result.
	ConfigResults []ConfigResult `json:"configResults,omitempty"`
	// Monitoring event reports.
	MonitoringEventReports []MonitoringEventReport `json:"monitoringEventReports,omitempty"`
	// Identifies the added external Identifier(s) within the active group via the \"externalGroupId\" attribute within the MonitoringEventSubscription data type.
	AddedExternalIds []string `json:"addedExternalIds,omitempty"`
	// Identifies the added MSISDN(s) within the active group via the \"externalGroupId\" attribute within the MonitoringEventSubscription data type.
	AddedMsisdns []string `json:"addedMsisdns,omitempty"`
	// Identifies the cancelled external Identifier(s) within the active group via the \"externalGroupId\" attribute within the MonitoringEventSubscription data type.
	CancelExternalIds []string `json:"cancelExternalIds,omitempty"`
	// Identifies the cancelled MSISDN(s) within the active group via the \"externalGroupId\" attribute within the MonitoringEventSubscription data type.
	CancelMsisdns []string `json:"cancelMsisdns,omitempty"`
	// Indicates whether to request to cancel the corresponding monitoring subscription. Set to false or omitted otherwise.
	CancelInd    *bool                          `json:"cancelInd,omitempty"`
	AppliedParam *AppliedParameterConfiguration `json:"appliedParam,omitempty"`
}

MonitoringNotification Represents an event monitoring notification.

func NewMonitoringNotification

func NewMonitoringNotification(subscription string) *MonitoringNotification

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

func NewMonitoringNotificationWithDefaults

func NewMonitoringNotificationWithDefaults() *MonitoringNotification

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

func (*MonitoringNotification) GetAddedExternalIds

func (o *MonitoringNotification) GetAddedExternalIds() []string

GetAddedExternalIds returns the AddedExternalIds field value if set, zero value otherwise.

func (*MonitoringNotification) GetAddedExternalIdsOk

func (o *MonitoringNotification) GetAddedExternalIdsOk() ([]string, bool)

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

func (*MonitoringNotification) GetAddedMsisdns

func (o *MonitoringNotification) GetAddedMsisdns() []string

GetAddedMsisdns returns the AddedMsisdns field value if set, zero value otherwise.

func (*MonitoringNotification) GetAddedMsisdnsOk

func (o *MonitoringNotification) GetAddedMsisdnsOk() ([]string, bool)

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

func (*MonitoringNotification) GetAppliedParam

GetAppliedParam returns the AppliedParam field value if set, zero value otherwise.

func (*MonitoringNotification) GetAppliedParamOk

func (o *MonitoringNotification) GetAppliedParamOk() (*AppliedParameterConfiguration, bool)

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

func (*MonitoringNotification) GetCancelExternalIds

func (o *MonitoringNotification) GetCancelExternalIds() []string

GetCancelExternalIds returns the CancelExternalIds field value if set, zero value otherwise.

func (*MonitoringNotification) GetCancelExternalIdsOk

func (o *MonitoringNotification) GetCancelExternalIdsOk() ([]string, bool)

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

func (*MonitoringNotification) GetCancelInd

func (o *MonitoringNotification) GetCancelInd() bool

GetCancelInd returns the CancelInd field value if set, zero value otherwise.

func (*MonitoringNotification) GetCancelIndOk

func (o *MonitoringNotification) GetCancelIndOk() (*bool, bool)

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

func (*MonitoringNotification) GetCancelMsisdns

func (o *MonitoringNotification) GetCancelMsisdns() []string

GetCancelMsisdns returns the CancelMsisdns field value if set, zero value otherwise.

func (*MonitoringNotification) GetCancelMsisdnsOk

func (o *MonitoringNotification) GetCancelMsisdnsOk() ([]string, bool)

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

func (*MonitoringNotification) GetConfigResults

func (o *MonitoringNotification) GetConfigResults() []ConfigResult

GetConfigResults returns the ConfigResults field value if set, zero value otherwise.

func (*MonitoringNotification) GetConfigResultsOk

func (o *MonitoringNotification) GetConfigResultsOk() ([]ConfigResult, bool)

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

func (*MonitoringNotification) GetMonitoringEventReports

func (o *MonitoringNotification) GetMonitoringEventReports() []MonitoringEventReport

GetMonitoringEventReports returns the MonitoringEventReports field value if set, zero value otherwise.

func (*MonitoringNotification) GetMonitoringEventReportsOk

func (o *MonitoringNotification) GetMonitoringEventReportsOk() ([]MonitoringEventReport, bool)

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

func (*MonitoringNotification) GetSubscription

func (o *MonitoringNotification) GetSubscription() string

GetSubscription returns the Subscription field value

func (*MonitoringNotification) GetSubscriptionOk

func (o *MonitoringNotification) GetSubscriptionOk() (*string, bool)

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

func (*MonitoringNotification) HasAddedExternalIds

func (o *MonitoringNotification) HasAddedExternalIds() bool

HasAddedExternalIds returns a boolean if a field has been set.

func (*MonitoringNotification) HasAddedMsisdns

func (o *MonitoringNotification) HasAddedMsisdns() bool

HasAddedMsisdns returns a boolean if a field has been set.

func (*MonitoringNotification) HasAppliedParam

func (o *MonitoringNotification) HasAppliedParam() bool

HasAppliedParam returns a boolean if a field has been set.

func (*MonitoringNotification) HasCancelExternalIds

func (o *MonitoringNotification) HasCancelExternalIds() bool

HasCancelExternalIds returns a boolean if a field has been set.

func (*MonitoringNotification) HasCancelInd

func (o *MonitoringNotification) HasCancelInd() bool

HasCancelInd returns a boolean if a field has been set.

func (*MonitoringNotification) HasCancelMsisdns

func (o *MonitoringNotification) HasCancelMsisdns() bool

HasCancelMsisdns returns a boolean if a field has been set.

func (*MonitoringNotification) HasConfigResults

func (o *MonitoringNotification) HasConfigResults() bool

HasConfigResults returns a boolean if a field has been set.

func (*MonitoringNotification) HasMonitoringEventReports

func (o *MonitoringNotification) HasMonitoringEventReports() bool

HasMonitoringEventReports returns a boolean if a field has been set.

func (MonitoringNotification) MarshalJSON

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

func (*MonitoringNotification) SetAddedExternalIds

func (o *MonitoringNotification) SetAddedExternalIds(v []string)

SetAddedExternalIds gets a reference to the given []string and assigns it to the AddedExternalIds field.

func (*MonitoringNotification) SetAddedMsisdns

func (o *MonitoringNotification) SetAddedMsisdns(v []string)

SetAddedMsisdns gets a reference to the given []string and assigns it to the AddedMsisdns field.

func (*MonitoringNotification) SetAppliedParam

SetAppliedParam gets a reference to the given AppliedParameterConfiguration and assigns it to the AppliedParam field.

func (*MonitoringNotification) SetCancelExternalIds

func (o *MonitoringNotification) SetCancelExternalIds(v []string)

SetCancelExternalIds gets a reference to the given []string and assigns it to the CancelExternalIds field.

func (*MonitoringNotification) SetCancelInd

func (o *MonitoringNotification) SetCancelInd(v bool)

SetCancelInd gets a reference to the given bool and assigns it to the CancelInd field.

func (*MonitoringNotification) SetCancelMsisdns

func (o *MonitoringNotification) SetCancelMsisdns(v []string)

SetCancelMsisdns gets a reference to the given []string and assigns it to the CancelMsisdns field.

func (*MonitoringNotification) SetConfigResults

func (o *MonitoringNotification) SetConfigResults(v []ConfigResult)

SetConfigResults gets a reference to the given []ConfigResult and assigns it to the ConfigResults field.

func (*MonitoringNotification) SetMonitoringEventReports

func (o *MonitoringNotification) SetMonitoringEventReports(v []MonitoringEventReport)

SetMonitoringEventReports gets a reference to the given []MonitoringEventReport and assigns it to the MonitoringEventReports field.

func (*MonitoringNotification) SetSubscription

func (o *MonitoringNotification) SetSubscription(v string)

SetSubscription sets field value

func (MonitoringNotification) ToMap

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

func (*MonitoringNotification) UnmarshalJSON

func (o *MonitoringNotification) UnmarshalJSON(bytes []byte) (err error)

type MonitoringType

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

MonitoringType Possible values are - LOSS_OF_CONNECTIVITY: The SCS/AS requests to be notified when the 3GPP network detects that the UE is no longer reachable for signalling or user plane communication - UE_REACHABILITY: The SCS/AS requests to be notified when the UE becomes reachable for sending either SMS or downlink data to the UE - LOCATION_REPORTING: The SCS/AS requests to be notified of the current location or the last known location of the UE - CHANGE_OF_IMSI_IMEI_ASSOCIATION: The SCS/AS requests to be notified when the association of an ME (IMEI(SV)) that uses a specific subscription (IMSI) is changed - ROAMING_STATUS: The SCS/AS queries the UE's current roaming status and requests to get notified when the status changes - COMMUNICATION_FAILURE: The SCS/AS requests to be notified of communication failure events - AVAILABILITY_AFTER_DDN_FAILURE: The SCS/AS requests to be notified when the UE has become available after a DDN failure - NUMBER_OF_UES_IN_AN_AREA: The SCS/AS requests to be notified the number of UEs in a given geographic area - PDN_CONNECTIVITY_STATUS: The SCS/AS requests to be notified when the 3GPP network detects that the UE’s PDN connection is set up or torn down - DOWNLINK_DATA_DELIVERY_STATUS: The AF requests to be notified when the 3GPP network detects that the downlink data delivery status is changed. - API_SUPPORT_CAPABILITY: The SCS/AS requests to be notified of the availability of support of service APIs. - NUM_OF_REGD_UES: The AF requests to be notified of the current number of registered UEs for a network slice. - NUM_OF_ESTD_PDU_SESSIONS: The AF requests to be notified of the current number of established PDU Sessions for a network slice. - AREA_OF_INTEREST: The SCS/AS requests to be notified when the UAV moves in or out of the geographic area.

func (*MonitoringType) MarshalJSON

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

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

func (*MonitoringType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Ncgi

type Ncgi struct {
	PlmnId PlmnId1 `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 PlmnId1, 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() PlmnId1

GetPlmnId returns the PlmnId field value

func (*Ncgi) GetPlmnIdOk

func (o *Ncgi) GetPlmnIdOk() (*PlmnId1, 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 PlmnId1)

SetPlmnId sets field value

func (Ncgi) ToMap

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

func (*Ncgi) UnmarshalJSON

func (o *Ncgi) UnmarshalJSON(bytes []byte) (err error)

type NetworkAreaInfo

type NetworkAreaInfo struct {
	// Contains a list of E-UTRA cell identities.
	Ecgis []Ecgi `json:"ecgis,omitempty"`
	// Contains a list of NR cell identities.
	Ncgis []Ncgi `json:"ncgis,omitempty"`
	// Contains a list of NG RAN nodes.
	GRanNodeIds []GlobalRanNodeId `json:"gRanNodeIds,omitempty"`
	// Contains a list of tracking area identities.
	Tais []Tai `json:"tais,omitempty"`
}

NetworkAreaInfo Describes a network area information in which the NF service consumer requests the number of UEs.

func NewNetworkAreaInfo

func NewNetworkAreaInfo() *NetworkAreaInfo

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

func NewNetworkAreaInfoWithDefaults

func NewNetworkAreaInfoWithDefaults() *NetworkAreaInfo

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

func (*NetworkAreaInfo) GetEcgis

func (o *NetworkAreaInfo) GetEcgis() []Ecgi

GetEcgis returns the Ecgis field value if set, zero value otherwise.

func (*NetworkAreaInfo) GetEcgisOk

func (o *NetworkAreaInfo) GetEcgisOk() ([]Ecgi, bool)

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

func (*NetworkAreaInfo) GetGRanNodeIds

func (o *NetworkAreaInfo) GetGRanNodeIds() []GlobalRanNodeId

GetGRanNodeIds returns the GRanNodeIds field value if set, zero value otherwise.

func (*NetworkAreaInfo) GetGRanNodeIdsOk

func (o *NetworkAreaInfo) GetGRanNodeIdsOk() ([]GlobalRanNodeId, bool)

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

func (*NetworkAreaInfo) GetNcgis

func (o *NetworkAreaInfo) GetNcgis() []Ncgi

GetNcgis returns the Ncgis field value if set, zero value otherwise.

func (*NetworkAreaInfo) GetNcgisOk

func (o *NetworkAreaInfo) GetNcgisOk() ([]Ncgi, bool)

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

func (*NetworkAreaInfo) GetTais

func (o *NetworkAreaInfo) GetTais() []Tai

GetTais returns the Tais field value if set, zero value otherwise.

func (*NetworkAreaInfo) GetTaisOk

func (o *NetworkAreaInfo) GetTaisOk() ([]Tai, bool)

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

func (*NetworkAreaInfo) HasEcgis

func (o *NetworkAreaInfo) HasEcgis() bool

HasEcgis returns a boolean if a field has been set.

func (*NetworkAreaInfo) HasGRanNodeIds

func (o *NetworkAreaInfo) HasGRanNodeIds() bool

HasGRanNodeIds returns a boolean if a field has been set.

func (*NetworkAreaInfo) HasNcgis

func (o *NetworkAreaInfo) HasNcgis() bool

HasNcgis returns a boolean if a field has been set.

func (*NetworkAreaInfo) HasTais

func (o *NetworkAreaInfo) HasTais() bool

HasTais returns a boolean if a field has been set.

func (NetworkAreaInfo) MarshalJSON

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

func (*NetworkAreaInfo) SetEcgis

func (o *NetworkAreaInfo) SetEcgis(v []Ecgi)

SetEcgis gets a reference to the given []Ecgi and assigns it to the Ecgis field.

func (*NetworkAreaInfo) SetGRanNodeIds

func (o *NetworkAreaInfo) SetGRanNodeIds(v []GlobalRanNodeId)

SetGRanNodeIds gets a reference to the given []GlobalRanNodeId and assigns it to the GRanNodeIds field.

func (*NetworkAreaInfo) SetNcgis

func (o *NetworkAreaInfo) SetNcgis(v []Ncgi)

SetNcgis gets a reference to the given []Ncgi and assigns it to the Ncgis field.

func (*NetworkAreaInfo) SetTais

func (o *NetworkAreaInfo) SetTais(v []Tai)

SetTais gets a reference to the given []Tai and assigns it to the Tais field.

func (NetworkAreaInfo) ToMap

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

type NullableAccuracy

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

func NewNullableAccuracy

func NewNullableAccuracy(val *Accuracy) *NullableAccuracy

func (NullableAccuracy) Get

func (v NullableAccuracy) Get() *Accuracy

func (NullableAccuracy) IsSet

func (v NullableAccuracy) IsSet() bool

func (NullableAccuracy) MarshalJSON

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

func (*NullableAccuracy) Set

func (v *NullableAccuracy) Set(val *Accuracy)

func (*NullableAccuracy) UnmarshalJSON

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

func (*NullableAccuracy) Unset

func (v *NullableAccuracy) Unset()

type NullableAccuracyFulfilmentIndicator

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

func (NullableAccuracyFulfilmentIndicator) Get

func (NullableAccuracyFulfilmentIndicator) IsSet

func (NullableAccuracyFulfilmentIndicator) MarshalJSON

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

func (*NullableAccuracyFulfilmentIndicator) Set

func (*NullableAccuracyFulfilmentIndicator) UnmarshalJSON

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

func (*NullableAccuracyFulfilmentIndicator) Unset

type NullableApiCapabilityInfo

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

func NewNullableApiCapabilityInfo

func NewNullableApiCapabilityInfo(val *ApiCapabilityInfo) *NullableApiCapabilityInfo

func (NullableApiCapabilityInfo) Get

func (NullableApiCapabilityInfo) IsSet

func (v NullableApiCapabilityInfo) IsSet() bool

func (NullableApiCapabilityInfo) MarshalJSON

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

func (*NullableApiCapabilityInfo) Set

func (*NullableApiCapabilityInfo) UnmarshalJSON

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

func (*NullableApiCapabilityInfo) Unset

func (v *NullableApiCapabilityInfo) Unset()

type NullableAppliedParameterConfiguration

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

func (NullableAppliedParameterConfiguration) Get

func (NullableAppliedParameterConfiguration) IsSet

func (NullableAppliedParameterConfiguration) MarshalJSON

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

func (*NullableAppliedParameterConfiguration) Set

func (*NullableAppliedParameterConfiguration) UnmarshalJSON

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

func (*NullableAppliedParameterConfiguration) Unset

type NullableAssociationType

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

func NewNullableAssociationType

func NewNullableAssociationType(val *AssociationType) *NullableAssociationType

func (NullableAssociationType) Get

func (NullableAssociationType) IsSet

func (v NullableAssociationType) IsSet() bool

func (NullableAssociationType) MarshalJSON

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

func (*NullableAssociationType) Set

func (*NullableAssociationType) UnmarshalJSON

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

func (*NullableAssociationType) Unset

func (v *NullableAssociationType) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

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

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

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

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

func NewNullableConfigResult

func NewNullableConfigResult(val *ConfigResult) *NullableConfigResult

func (NullableConfigResult) Get

func (NullableConfigResult) IsSet

func (v NullableConfigResult) IsSet() bool

func (NullableConfigResult) MarshalJSON

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

func (*NullableConfigResult) Set

func (v *NullableConfigResult) Set(val *ConfigResult)

func (*NullableConfigResult) UnmarshalJSON

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

func (*NullableConfigResult) Unset

func (v *NullableConfigResult) Unset()

type NullableConsentRevocNotif

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

func NewNullableConsentRevocNotif

func NewNullableConsentRevocNotif(val *ConsentRevocNotif) *NullableConsentRevocNotif

func (NullableConsentRevocNotif) Get

func (NullableConsentRevocNotif) IsSet

func (v NullableConsentRevocNotif) IsSet() bool

func (NullableConsentRevocNotif) MarshalJSON

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

func (*NullableConsentRevocNotif) Set

func (*NullableConsentRevocNotif) UnmarshalJSON

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

func (*NullableConsentRevocNotif) Unset

func (v *NullableConsentRevocNotif) Unset()

type NullableConsentRevoked

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

func NewNullableConsentRevoked

func NewNullableConsentRevoked(val *ConsentRevoked) *NullableConsentRevoked

func (NullableConsentRevoked) Get

func (NullableConsentRevoked) IsSet

func (v NullableConsentRevoked) IsSet() bool

func (NullableConsentRevoked) MarshalJSON

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

func (*NullableConsentRevoked) Set

func (*NullableConsentRevoked) UnmarshalJSON

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

func (*NullableConsentRevoked) Unset

func (v *NullableConsentRevoked) Unset()

type NullableDddTrafficDescriptor

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

func NewNullableDddTrafficDescriptor

func NewNullableDddTrafficDescriptor(val *DddTrafficDescriptor) *NullableDddTrafficDescriptor

func (NullableDddTrafficDescriptor) Get

func (NullableDddTrafficDescriptor) IsSet

func (NullableDddTrafficDescriptor) MarshalJSON

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

func (*NullableDddTrafficDescriptor) Set

func (*NullableDddTrafficDescriptor) UnmarshalJSON

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

func (*NullableDddTrafficDescriptor) Unset

func (v *NullableDddTrafficDescriptor) Unset()

type NullableDlDataDeliveryStatus

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

func NewNullableDlDataDeliveryStatus

func NewNullableDlDataDeliveryStatus(val *DlDataDeliveryStatus) *NullableDlDataDeliveryStatus

func (NullableDlDataDeliveryStatus) Get

func (NullableDlDataDeliveryStatus) IsSet

func (NullableDlDataDeliveryStatus) MarshalJSON

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

func (*NullableDlDataDeliveryStatus) Set

func (*NullableDlDataDeliveryStatus) UnmarshalJSON

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

func (*NullableDlDataDeliveryStatus) Unset

func (v *NullableDlDataDeliveryStatus) Unset()

type NullableEcgi

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

func NewNullableEcgi

func NewNullableEcgi(val *Ecgi) *NullableEcgi

func (NullableEcgi) Get

func (v NullableEcgi) Get() *Ecgi

func (NullableEcgi) IsSet

func (v NullableEcgi) IsSet() bool

func (NullableEcgi) MarshalJSON

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

func (*NullableEcgi) Set

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

func (*NullableEcgi) UnmarshalJSON

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

func (*NullableEcgi) Unset

func (v *NullableEcgi) Unset()

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

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

func NewNullableFailureCause

func NewNullableFailureCause(val *FailureCause) *NullableFailureCause

func (NullableFailureCause) Get

func (NullableFailureCause) IsSet

func (v NullableFailureCause) IsSet() bool

func (NullableFailureCause) MarshalJSON

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

func (*NullableFailureCause) Set

func (v *NullableFailureCause) Set(val *FailureCause)

func (*NullableFailureCause) UnmarshalJSON

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

func (*NullableFailureCause) Unset

func (v *NullableFailureCause) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGADShape

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

func NewNullableGADShape

func NewNullableGADShape(val *GADShape) *NullableGADShape

func (NullableGADShape) Get

func (v NullableGADShape) Get() *GADShape

func (NullableGADShape) IsSet

func (v NullableGADShape) IsSet() bool

func (NullableGADShape) MarshalJSON

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

func (*NullableGADShape) Set

func (v *NullableGADShape) Set(val *GADShape)

func (*NullableGADShape) UnmarshalJSON

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

func (*NullableGADShape) Unset

func (v *NullableGADShape) Unset()

type NullableGNbId

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

func NewNullableGNbId

func NewNullableGNbId(val *GNbId) *NullableGNbId

func (NullableGNbId) Get

func (v NullableGNbId) Get() *GNbId

func (NullableGNbId) IsSet

func (v NullableGNbId) IsSet() bool

func (NullableGNbId) MarshalJSON

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

func (*NullableGNbId) Set

func (v *NullableGNbId) Set(val *GNbId)

func (*NullableGNbId) UnmarshalJSON

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

func (*NullableGNbId) Unset

func (v *NullableGNbId) Unset()

type NullableGeographicArea

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

func NewNullableGeographicArea

func NewNullableGeographicArea(val *GeographicArea) *NullableGeographicArea

func (NullableGeographicArea) Get

func (NullableGeographicArea) IsSet

func (v NullableGeographicArea) IsSet() bool

func (NullableGeographicArea) MarshalJSON

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

func (*NullableGeographicArea) Set

func (*NullableGeographicArea) UnmarshalJSON

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

func (*NullableGeographicArea) Unset

func (v *NullableGeographicArea) Unset()

type NullableGeographicalCoordinates

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

func (NullableGeographicalCoordinates) Get

func (NullableGeographicalCoordinates) IsSet

func (NullableGeographicalCoordinates) MarshalJSON

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

func (*NullableGeographicalCoordinates) Set

func (*NullableGeographicalCoordinates) UnmarshalJSON

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

func (*NullableGeographicalCoordinates) Unset

type NullableGlobalRanNodeId

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

func NewNullableGlobalRanNodeId

func NewNullableGlobalRanNodeId(val *GlobalRanNodeId) *NullableGlobalRanNodeId

func (NullableGlobalRanNodeId) Get

func (NullableGlobalRanNodeId) IsSet

func (v NullableGlobalRanNodeId) IsSet() bool

func (NullableGlobalRanNodeId) MarshalJSON

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

func (*NullableGlobalRanNodeId) Set

func (*NullableGlobalRanNodeId) UnmarshalJSON

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

func (*NullableGlobalRanNodeId) Unset

func (v *NullableGlobalRanNodeId) Unset()

type NullableHorizontalVelocity

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

func NewNullableHorizontalVelocity

func NewNullableHorizontalVelocity(val *HorizontalVelocity) *NullableHorizontalVelocity

func (NullableHorizontalVelocity) Get

func (NullableHorizontalVelocity) IsSet

func (v NullableHorizontalVelocity) IsSet() bool

func (NullableHorizontalVelocity) MarshalJSON

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

func (*NullableHorizontalVelocity) Set

func (*NullableHorizontalVelocity) UnmarshalJSON

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

func (*NullableHorizontalVelocity) Unset

func (v *NullableHorizontalVelocity) Unset()

type NullableHorizontalVelocityWithUncertainty

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

func (NullableHorizontalVelocityWithUncertainty) Get

func (NullableHorizontalVelocityWithUncertainty) IsSet

func (NullableHorizontalVelocityWithUncertainty) MarshalJSON

func (*NullableHorizontalVelocityWithUncertainty) Set

func (*NullableHorizontalVelocityWithUncertainty) UnmarshalJSON

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

func (*NullableHorizontalVelocityWithUncertainty) Unset

type NullableHorizontalWithVerticalVelocity

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

func (NullableHorizontalWithVerticalVelocity) Get

func (NullableHorizontalWithVerticalVelocity) IsSet

func (NullableHorizontalWithVerticalVelocity) MarshalJSON

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

func (*NullableHorizontalWithVerticalVelocity) Set

func (*NullableHorizontalWithVerticalVelocity) UnmarshalJSON

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

func (*NullableHorizontalWithVerticalVelocity) Unset

type NullableHorizontalWithVerticalVelocityAndUncertainty

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

func (NullableHorizontalWithVerticalVelocityAndUncertainty) Get

func (NullableHorizontalWithVerticalVelocityAndUncertainty) IsSet

func (NullableHorizontalWithVerticalVelocityAndUncertainty) MarshalJSON

func (*NullableHorizontalWithVerticalVelocityAndUncertainty) Set

func (*NullableHorizontalWithVerticalVelocityAndUncertainty) UnmarshalJSON

func (*NullableHorizontalWithVerticalVelocityAndUncertainty) Unset

type NullableIdleStatusInfo

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

func NewNullableIdleStatusInfo

func NewNullableIdleStatusInfo(val *IdleStatusInfo) *NullableIdleStatusInfo

func (NullableIdleStatusInfo) Get

func (NullableIdleStatusInfo) IsSet

func (v NullableIdleStatusInfo) IsSet() bool

func (NullableIdleStatusInfo) MarshalJSON

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

func (*NullableIdleStatusInfo) Set

func (*NullableIdleStatusInfo) UnmarshalJSON

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

func (*NullableIdleStatusInfo) Unset

func (v *NullableIdleStatusInfo) 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 NullableInterfaceIndication

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

func NewNullableInterfaceIndication

func NewNullableInterfaceIndication(val *InterfaceIndication) *NullableInterfaceIndication

func (NullableInterfaceIndication) Get

func (NullableInterfaceIndication) IsSet

func (NullableInterfaceIndication) MarshalJSON

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

func (*NullableInterfaceIndication) Set

func (*NullableInterfaceIndication) UnmarshalJSON

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

func (*NullableInterfaceIndication) Unset

func (v *NullableInterfaceIndication) Unset()

type NullableInvalidParam

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

func NewNullableInvalidParam

func NewNullableInvalidParam(val *InvalidParam) *NullableInvalidParam

func (NullableInvalidParam) Get

func (NullableInvalidParam) IsSet

func (v NullableInvalidParam) IsSet() bool

func (NullableInvalidParam) MarshalJSON

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

func (*NullableInvalidParam) Set

func (v *NullableInvalidParam) Set(val *InvalidParam)

func (*NullableInvalidParam) UnmarshalJSON

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

func (*NullableInvalidParam) Unset

func (v *NullableInvalidParam) Unset()

type NullableIpAddr

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

func NewNullableIpAddr

func NewNullableIpAddr(val *IpAddr) *NullableIpAddr

func (NullableIpAddr) Get

func (v NullableIpAddr) Get() *IpAddr

func (NullableIpAddr) IsSet

func (v NullableIpAddr) IsSet() bool

func (NullableIpAddr) MarshalJSON

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

func (*NullableIpAddr) Set

func (v *NullableIpAddr) Set(val *IpAddr)

func (*NullableIpAddr) UnmarshalJSON

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

func (*NullableIpAddr) Unset

func (v *NullableIpAddr) Unset()

type NullableIpv6Addr

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

func NewNullableIpv6Addr

func NewNullableIpv6Addr(val *Ipv6Addr) *NullableIpv6Addr

func (NullableIpv6Addr) Get

func (v NullableIpv6Addr) Get() *Ipv6Addr

func (NullableIpv6Addr) IsSet

func (v NullableIpv6Addr) IsSet() bool

func (NullableIpv6Addr) MarshalJSON

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

func (*NullableIpv6Addr) Set

func (v *NullableIpv6Addr) Set(val *Ipv6Addr)

func (*NullableIpv6Addr) UnmarshalJSON

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

func (*NullableIpv6Addr) Unset

func (v *NullableIpv6Addr) Unset()

type NullableIpv6Prefix

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

func NewNullableIpv6Prefix

func NewNullableIpv6Prefix(val *Ipv6Prefix) *NullableIpv6Prefix

func (NullableIpv6Prefix) Get

func (v NullableIpv6Prefix) Get() *Ipv6Prefix

func (NullableIpv6Prefix) IsSet

func (v NullableIpv6Prefix) IsSet() bool

func (NullableIpv6Prefix) MarshalJSON

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

func (*NullableIpv6Prefix) Set

func (v *NullableIpv6Prefix) Set(val *Ipv6Prefix)

func (*NullableIpv6Prefix) UnmarshalJSON

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

func (*NullableIpv6Prefix) Unset

func (v *NullableIpv6Prefix) Unset()

type NullableLcsQosClass

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

func NewNullableLcsQosClass

func NewNullableLcsQosClass(val *LcsQosClass) *NullableLcsQosClass

func (NullableLcsQosClass) Get

func (NullableLcsQosClass) IsSet

func (v NullableLcsQosClass) IsSet() bool

func (NullableLcsQosClass) MarshalJSON

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

func (*NullableLcsQosClass) Set

func (v *NullableLcsQosClass) Set(val *LcsQosClass)

func (*NullableLcsQosClass) UnmarshalJSON

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

func (*NullableLcsQosClass) Unset

func (v *NullableLcsQosClass) Unset()

type NullableLdrType

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

func NewNullableLdrType

func NewNullableLdrType(val *LdrType) *NullableLdrType

func (NullableLdrType) Get

func (v NullableLdrType) Get() *LdrType

func (NullableLdrType) IsSet

func (v NullableLdrType) IsSet() bool

func (NullableLdrType) MarshalJSON

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

func (*NullableLdrType) Set

func (v *NullableLdrType) Set(val *LdrType)

func (*NullableLdrType) UnmarshalJSON

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

func (*NullableLdrType) Unset

func (v *NullableLdrType) 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 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 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 NullableLocationArea

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

func NewNullableLocationArea

func NewNullableLocationArea(val *LocationArea) *NullableLocationArea

func (NullableLocationArea) Get

func (NullableLocationArea) IsSet

func (v NullableLocationArea) IsSet() bool

func (NullableLocationArea) MarshalJSON

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

func (*NullableLocationArea) Set

func (v *NullableLocationArea) Set(val *LocationArea)

func (*NullableLocationArea) UnmarshalJSON

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

func (*NullableLocationArea) Unset

func (v *NullableLocationArea) Unset()

type NullableLocationArea5G

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

func NewNullableLocationArea5G

func NewNullableLocationArea5G(val *LocationArea5G) *NullableLocationArea5G

func (NullableLocationArea5G) Get

func (NullableLocationArea5G) IsSet

func (v NullableLocationArea5G) IsSet() bool

func (NullableLocationArea5G) MarshalJSON

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

func (*NullableLocationArea5G) Set

func (*NullableLocationArea5G) UnmarshalJSON

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

func (*NullableLocationArea5G) Unset

func (v *NullableLocationArea5G) Unset()

type NullableLocationFailureCause

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

func NewNullableLocationFailureCause

func NewNullableLocationFailureCause(val *LocationFailureCause) *NullableLocationFailureCause

func (NullableLocationFailureCause) Get

func (NullableLocationFailureCause) IsSet

func (NullableLocationFailureCause) MarshalJSON

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

func (*NullableLocationFailureCause) Set

func (*NullableLocationFailureCause) UnmarshalJSON

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

func (*NullableLocationFailureCause) Unset

func (v *NullableLocationFailureCause) Unset()

type NullableLocationInfo

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

func NewNullableLocationInfo

func NewNullableLocationInfo(val *LocationInfo) *NullableLocationInfo

func (NullableLocationInfo) Get

func (NullableLocationInfo) IsSet

func (v NullableLocationInfo) IsSet() bool

func (NullableLocationInfo) MarshalJSON

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

func (*NullableLocationInfo) Set

func (v *NullableLocationInfo) Set(val *LocationInfo)

func (*NullableLocationInfo) UnmarshalJSON

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

func (*NullableLocationInfo) Unset

func (v *NullableLocationInfo) Unset()

type NullableLocationQoS

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

func NewNullableLocationQoS

func NewNullableLocationQoS(val *LocationQoS) *NullableLocationQoS

func (NullableLocationQoS) Get

func (NullableLocationQoS) IsSet

func (v NullableLocationQoS) IsSet() bool

func (NullableLocationQoS) MarshalJSON

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

func (*NullableLocationQoS) Set

func (v *NullableLocationQoS) Set(val *LocationQoS)

func (*NullableLocationQoS) UnmarshalJSON

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

func (*NullableLocationQoS) Unset

func (v *NullableLocationQoS) Unset()

type NullableLocationType

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

func NewNullableLocationType

func NewNullableLocationType(val *LocationType) *NullableLocationType

func (NullableLocationType) Get

func (NullableLocationType) IsSet

func (v NullableLocationType) IsSet() bool

func (NullableLocationType) MarshalJSON

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

func (*NullableLocationType) Set

func (v *NullableLocationType) Set(val *LocationType)

func (*NullableLocationType) UnmarshalJSON

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

func (*NullableLocationType) Unset

func (v *NullableLocationType) Unset()

type NullableMinorLocationQoS

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

func NewNullableMinorLocationQoS

func NewNullableMinorLocationQoS(val *MinorLocationQoS) *NullableMinorLocationQoS

func (NullableMinorLocationQoS) Get

func (NullableMinorLocationQoS) IsSet

func (v NullableMinorLocationQoS) IsSet() bool

func (NullableMinorLocationQoS) MarshalJSON

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

func (*NullableMinorLocationQoS) Set

func (*NullableMinorLocationQoS) UnmarshalJSON

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

func (*NullableMinorLocationQoS) Unset

func (v *NullableMinorLocationQoS) Unset()

type NullableMonitoringEventReport

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

func (NullableMonitoringEventReport) Get

func (NullableMonitoringEventReport) IsSet

func (NullableMonitoringEventReport) MarshalJSON

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

func (*NullableMonitoringEventReport) Set

func (*NullableMonitoringEventReport) UnmarshalJSON

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

func (*NullableMonitoringEventReport) Unset

func (v *NullableMonitoringEventReport) Unset()

type NullableMonitoringEventReports

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

func (NullableMonitoringEventReports) Get

func (NullableMonitoringEventReports) IsSet

func (NullableMonitoringEventReports) MarshalJSON

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

func (*NullableMonitoringEventReports) Set

func (*NullableMonitoringEventReports) UnmarshalJSON

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

func (*NullableMonitoringEventReports) Unset

func (v *NullableMonitoringEventReports) Unset()

type NullableMonitoringEventSubscription

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

func (NullableMonitoringEventSubscription) Get

func (NullableMonitoringEventSubscription) IsSet

func (NullableMonitoringEventSubscription) MarshalJSON

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

func (*NullableMonitoringEventSubscription) Set

func (*NullableMonitoringEventSubscription) UnmarshalJSON

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

func (*NullableMonitoringEventSubscription) Unset

type NullableMonitoringNotification

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

func (NullableMonitoringNotification) Get

func (NullableMonitoringNotification) IsSet

func (NullableMonitoringNotification) MarshalJSON

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

func (*NullableMonitoringNotification) Set

func (*NullableMonitoringNotification) UnmarshalJSON

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

func (*NullableMonitoringNotification) Unset

func (v *NullableMonitoringNotification) Unset()

type NullableMonitoringType

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

func NewNullableMonitoringType

func NewNullableMonitoringType(val *MonitoringType) *NullableMonitoringType

func (NullableMonitoringType) Get

func (NullableMonitoringType) IsSet

func (v NullableMonitoringType) IsSet() bool

func (NullableMonitoringType) MarshalJSON

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

func (*NullableMonitoringType) Set

func (*NullableMonitoringType) UnmarshalJSON

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

func (*NullableMonitoringType) Unset

func (v *NullableMonitoringType) 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 NullableNetworkAreaInfo

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

func NewNullableNetworkAreaInfo

func NewNullableNetworkAreaInfo(val *NetworkAreaInfo) *NullableNetworkAreaInfo

func (NullableNetworkAreaInfo) Get

func (NullableNetworkAreaInfo) IsSet

func (v NullableNetworkAreaInfo) IsSet() bool

func (NullableNetworkAreaInfo) MarshalJSON

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

func (*NullableNetworkAreaInfo) Set

func (*NullableNetworkAreaInfo) UnmarshalJSON

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

func (*NullableNetworkAreaInfo) Unset

func (v *NullableNetworkAreaInfo) 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 NullablePdnConnectionInformation

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

func (NullablePdnConnectionInformation) Get

func (NullablePdnConnectionInformation) IsSet

func (NullablePdnConnectionInformation) MarshalJSON

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

func (*NullablePdnConnectionInformation) Set

func (*NullablePdnConnectionInformation) UnmarshalJSON

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

func (*NullablePdnConnectionInformation) Unset

type NullablePdnConnectionStatus

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

func NewNullablePdnConnectionStatus

func NewNullablePdnConnectionStatus(val *PdnConnectionStatus) *NullablePdnConnectionStatus

func (NullablePdnConnectionStatus) Get

func (NullablePdnConnectionStatus) IsSet

func (NullablePdnConnectionStatus) MarshalJSON

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

func (*NullablePdnConnectionStatus) Set

func (*NullablePdnConnectionStatus) UnmarshalJSON

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

func (*NullablePdnConnectionStatus) Unset

func (v *NullablePdnConnectionStatus) Unset()

type NullablePdnType

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

func NewNullablePdnType

func NewNullablePdnType(val *PdnType) *NullablePdnType

func (NullablePdnType) Get

func (v NullablePdnType) Get() *PdnType

func (NullablePdnType) IsSet

func (v NullablePdnType) IsSet() bool

func (NullablePdnType) MarshalJSON

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

func (*NullablePdnType) Set

func (v *NullablePdnType) Set(val *PdnType)

func (*NullablePdnType) UnmarshalJSON

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

func (*NullablePdnType) Unset

func (v *NullablePdnType) 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 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 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 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 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 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 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 NullablePositioningMethod

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

func NewNullablePositioningMethod

func NewNullablePositioningMethod(val *PositioningMethod) *NullablePositioningMethod

func (NullablePositioningMethod) Get

func (NullablePositioningMethod) IsSet

func (v NullablePositioningMethod) IsSet() bool

func (NullablePositioningMethod) MarshalJSON

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

func (*NullablePositioningMethod) Set

func (*NullablePositioningMethod) UnmarshalJSON

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

func (*NullablePositioningMethod) Unset

func (v *NullablePositioningMethod) 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 NullableReachabilityType

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

func NewNullableReachabilityType

func NewNullableReachabilityType(val *ReachabilityType) *NullableReachabilityType

func (NullableReachabilityType) Get

func (NullableReachabilityType) IsSet

func (v NullableReachabilityType) IsSet() bool

func (NullableReachabilityType) MarshalJSON

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

func (*NullableReachabilityType) Set

func (*NullableReachabilityType) UnmarshalJSON

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

func (*NullableReachabilityType) Unset

func (v *NullableReachabilityType) 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 NullableResponseTime

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

func NewNullableResponseTime

func NewNullableResponseTime(val *ResponseTime) *NullableResponseTime

func (NullableResponseTime) Get

func (NullableResponseTime) IsSet

func (v NullableResponseTime) IsSet() bool

func (NullableResponseTime) MarshalJSON

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

func (*NullableResponseTime) Set

func (v *NullableResponseTime) Set(val *ResponseTime)

func (*NullableResponseTime) UnmarshalJSON

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

func (*NullableResponseTime) Unset

func (v *NullableResponseTime) Unset()

type NullableResultReason

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

func NewNullableResultReason

func NewNullableResultReason(val *ResultReason) *NullableResultReason

func (NullableResultReason) Get

func (NullableResultReason) IsSet

func (v NullableResultReason) IsSet() bool

func (NullableResultReason) MarshalJSON

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

func (*NullableResultReason) Set

func (v *NullableResultReason) Set(val *ResultReason)

func (*NullableResultReason) UnmarshalJSON

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

func (*NullableResultReason) Unset

func (v *NullableResultReason) 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 NullableSACRepFormat

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

func NewNullableSACRepFormat

func NewNullableSACRepFormat(val *SACRepFormat) *NullableSACRepFormat

func (NullableSACRepFormat) Get

func (NullableSACRepFormat) IsSet

func (v NullableSACRepFormat) IsSet() bool

func (NullableSACRepFormat) MarshalJSON

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

func (*NullableSACRepFormat) Set

func (v *NullableSACRepFormat) Set(val *SACRepFormat)

func (*NullableSACRepFormat) UnmarshalJSON

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

func (*NullableSACRepFormat) Unset

func (v *NullableSACRepFormat) Unset()

type NullableSnssai

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

func NewNullableSnssai

func NewNullableSnssai(val *Snssai) *NullableSnssai

func (NullableSnssai) Get

func (v NullableSnssai) Get() *Snssai

func (NullableSnssai) IsSet

func (v NullableSnssai) IsSet() bool

func (NullableSnssai) MarshalJSON

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

func (*NullableSnssai) Set

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

func (*NullableSnssai) UnmarshalJSON

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

func (*NullableSnssai) Unset

func (v *NullableSnssai) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableSubType

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

func NewNullableSubType

func NewNullableSubType(val *SubType) *NullableSubType

func (NullableSubType) Get

func (v NullableSubType) Get() *SubType

func (NullableSubType) IsSet

func (v NullableSubType) IsSet() bool

func (NullableSubType) MarshalJSON

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

func (*NullableSubType) Set

func (v *NullableSubType) Set(val *SubType)

func (*NullableSubType) UnmarshalJSON

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

func (*NullableSubType) Unset

func (v *NullableSubType) Unset()

type NullableSupportedGADShapes

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

func NewNullableSupportedGADShapes

func NewNullableSupportedGADShapes(val *SupportedGADShapes) *NullableSupportedGADShapes

func (NullableSupportedGADShapes) Get

func (NullableSupportedGADShapes) IsSet

func (v NullableSupportedGADShapes) IsSet() bool

func (NullableSupportedGADShapes) MarshalJSON

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

func (*NullableSupportedGADShapes) Set

func (*NullableSupportedGADShapes) UnmarshalJSON

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

func (*NullableSupportedGADShapes) Unset

func (v *NullableSupportedGADShapes) Unset()

type NullableTai

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

func NewNullableTai

func NewNullableTai(val *Tai) *NullableTai

func (NullableTai) Get

func (v NullableTai) Get() *Tai

func (NullableTai) IsSet

func (v NullableTai) IsSet() bool

func (NullableTai) MarshalJSON

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

func (*NullableTai) Set

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

func (*NullableTai) UnmarshalJSON

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

func (*NullableTai) Unset

func (v *NullableTai) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTimeWindow

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

func NewNullableTimeWindow

func NewNullableTimeWindow(val *TimeWindow) *NullableTimeWindow

func (NullableTimeWindow) Get

func (v NullableTimeWindow) Get() *TimeWindow

func (NullableTimeWindow) IsSet

func (v NullableTimeWindow) IsSet() bool

func (NullableTimeWindow) MarshalJSON

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

func (*NullableTimeWindow) Set

func (v *NullableTimeWindow) Set(val *TimeWindow)

func (*NullableTimeWindow) UnmarshalJSON

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

func (*NullableTimeWindow) Unset

func (v *NullableTimeWindow) Unset()

type NullableUavPolicy

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

func NewNullableUavPolicy

func NewNullableUavPolicy(val *UavPolicy) *NullableUavPolicy

func (NullableUavPolicy) Get

func (v NullableUavPolicy) Get() *UavPolicy

func (NullableUavPolicy) IsSet

func (v NullableUavPolicy) IsSet() bool

func (NullableUavPolicy) MarshalJSON

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

func (*NullableUavPolicy) Set

func (v *NullableUavPolicy) Set(val *UavPolicy)

func (*NullableUavPolicy) UnmarshalJSON

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

func (*NullableUavPolicy) Unset

func (v *NullableUavPolicy) Unset()

type NullableUcPurpose

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

func NewNullableUcPurpose

func NewNullableUcPurpose(val *UcPurpose) *NullableUcPurpose

func (NullableUcPurpose) Get

func (v NullableUcPurpose) Get() *UcPurpose

func (NullableUcPurpose) IsSet

func (v NullableUcPurpose) IsSet() bool

func (NullableUcPurpose) MarshalJSON

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

func (*NullableUcPurpose) Set

func (v *NullableUcPurpose) Set(val *UcPurpose)

func (*NullableUcPurpose) UnmarshalJSON

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

func (*NullableUcPurpose) Unset

func (v *NullableUcPurpose) Unset()

type NullableUePerLocationReport

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

func NewNullableUePerLocationReport

func NewNullableUePerLocationReport(val *UePerLocationReport) *NullableUePerLocationReport

func (NullableUePerLocationReport) Get

func (NullableUePerLocationReport) IsSet

func (NullableUePerLocationReport) MarshalJSON

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

func (*NullableUePerLocationReport) Set

func (*NullableUePerLocationReport) UnmarshalJSON

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

func (*NullableUePerLocationReport) Unset

func (v *NullableUePerLocationReport) Unset()

type NullableUncertaintyEllipse

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

func NewNullableUncertaintyEllipse

func NewNullableUncertaintyEllipse(val *UncertaintyEllipse) *NullableUncertaintyEllipse

func (NullableUncertaintyEllipse) Get

func (NullableUncertaintyEllipse) IsSet

func (v NullableUncertaintyEllipse) IsSet() bool

func (NullableUncertaintyEllipse) MarshalJSON

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

func (*NullableUncertaintyEllipse) Set

func (*NullableUncertaintyEllipse) UnmarshalJSON

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

func (*NullableUncertaintyEllipse) Unset

func (v *NullableUncertaintyEllipse) Unset()

type NullableUncertaintyEllipsoid

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

func NewNullableUncertaintyEllipsoid

func NewNullableUncertaintyEllipsoid(val *UncertaintyEllipsoid) *NullableUncertaintyEllipsoid

func (NullableUncertaintyEllipsoid) Get

func (NullableUncertaintyEllipsoid) IsSet

func (NullableUncertaintyEllipsoid) MarshalJSON

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

func (*NullableUncertaintyEllipsoid) Set

func (*NullableUncertaintyEllipsoid) UnmarshalJSON

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

func (*NullableUncertaintyEllipsoid) Unset

func (v *NullableUncertaintyEllipsoid) Unset()

type NullableVelocityEstimate

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

func NewNullableVelocityEstimate

func NewNullableVelocityEstimate(val *VelocityEstimate) *NullableVelocityEstimate

func (NullableVelocityEstimate) Get

func (NullableVelocityEstimate) IsSet

func (v NullableVelocityEstimate) IsSet() bool

func (NullableVelocityEstimate) MarshalJSON

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

func (*NullableVelocityEstimate) Set

func (*NullableVelocityEstimate) UnmarshalJSON

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

func (*NullableVelocityEstimate) Unset

func (v *NullableVelocityEstimate) Unset()

type NullableVelocityRequested

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

func NewNullableVelocityRequested

func NewNullableVelocityRequested(val *VelocityRequested) *NullableVelocityRequested

func (NullableVelocityRequested) Get

func (NullableVelocityRequested) IsSet

func (v NullableVelocityRequested) IsSet() bool

func (NullableVelocityRequested) MarshalJSON

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

func (*NullableVelocityRequested) Set

func (*NullableVelocityRequested) UnmarshalJSON

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

func (*NullableVelocityRequested) Unset

func (v *NullableVelocityRequested) Unset()

type NullableVerticalDirection

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

func NewNullableVerticalDirection

func NewNullableVerticalDirection(val *VerticalDirection) *NullableVerticalDirection

func (NullableVerticalDirection) Get

func (NullableVerticalDirection) IsSet

func (v NullableVerticalDirection) IsSet() bool

func (NullableVerticalDirection) MarshalJSON

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

func (*NullableVerticalDirection) Set

func (*NullableVerticalDirection) UnmarshalJSON

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

func (*NullableVerticalDirection) Unset

func (v *NullableVerticalDirection) Unset()

type NullableWebsockNotifConfig

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

func NewNullableWebsockNotifConfig

func NewNullableWebsockNotifConfig(val *WebsockNotifConfig) *NullableWebsockNotifConfig

func (NullableWebsockNotifConfig) Get

func (NullableWebsockNotifConfig) IsSet

func (v NullableWebsockNotifConfig) IsSet() bool

func (NullableWebsockNotifConfig) MarshalJSON

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

func (*NullableWebsockNotifConfig) Set

func (*NullableWebsockNotifConfig) UnmarshalJSON

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

func (*NullableWebsockNotifConfig) Unset

func (v *NullableWebsockNotifConfig) Unset()

type PatchItem

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

PatchItem it contains information on data to be changed.

func NewPatchItem

func NewPatchItem(op PatchOperation, path string) *PatchItem

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

func NewPatchItemWithDefaults

func NewPatchItemWithDefaults() *PatchItem

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

func (*PatchItem) GetFrom

func (o *PatchItem) GetFrom() string

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

func (*PatchItem) GetFromOk

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

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

func (*PatchItem) GetOp

func (o *PatchItem) GetOp() PatchOperation

GetOp returns the Op field value

func (*PatchItem) GetOpOk

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

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

func (*PatchItem) GetPath

func (o *PatchItem) GetPath() string

GetPath returns the Path field value

func (*PatchItem) GetPathOk

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

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

func (*PatchItem) GetValue

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

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

func (*PatchItem) GetValueOk

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

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

func (*PatchItem) HasFrom

func (o *PatchItem) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*PatchItem) HasValue

func (o *PatchItem) HasValue() bool

HasValue returns a boolean if a field has been set.

func (PatchItem) MarshalJSON

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

func (*PatchItem) SetFrom

func (o *PatchItem) SetFrom(v string)

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

func (*PatchItem) SetOp

func (o *PatchItem) SetOp(v PatchOperation)

SetOp sets field value

func (*PatchItem) SetPath

func (o *PatchItem) SetPath(v string)

SetPath sets field value

func (*PatchItem) SetValue

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

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

func (PatchItem) ToMap

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

func (*PatchItem) UnmarshalJSON

func (o *PatchItem) UnmarshalJSON(bytes []byte) (err error)

type PatchOperation

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

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 PdnConnectionInformation

type PdnConnectionInformation struct {
	Status PdnConnectionStatus `json:"status"`
	// Identify the APN, it is depending on the SCEF local configuration whether or not this attribute is sent to the SCS/AS.
	Apn          *string              `json:"apn,omitempty"`
	PdnType      PdnType              `json:"pdnType"`
	InterfaceInd *InterfaceIndication `json:"interfaceInd,omitempty"`
	// string identifying a Ipv4 address formatted in the \"dotted decimal\" notation as defined in IETF RFC 1166.
	Ipv4Addr  *string  `json:"ipv4Addr,omitempty"`
	Ipv6Addrs []string `json:"ipv6Addrs,omitempty"`
	MacAddrs  []string `json:"macAddrs,omitempty"`
}

PdnConnectionInformation Represents the PDN connection information of the UE.

func NewPdnConnectionInformation

func NewPdnConnectionInformation(status PdnConnectionStatus, pdnType PdnType) *PdnConnectionInformation

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

func NewPdnConnectionInformationWithDefaults

func NewPdnConnectionInformationWithDefaults() *PdnConnectionInformation

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

func (*PdnConnectionInformation) GetApn

func (o *PdnConnectionInformation) GetApn() string

GetApn returns the Apn field value if set, zero value otherwise.

func (*PdnConnectionInformation) GetApnOk

func (o *PdnConnectionInformation) GetApnOk() (*string, bool)

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

func (*PdnConnectionInformation) GetInterfaceInd

func (o *PdnConnectionInformation) GetInterfaceInd() InterfaceIndication

GetInterfaceInd returns the InterfaceInd field value if set, zero value otherwise.

func (*PdnConnectionInformation) GetInterfaceIndOk

func (o *PdnConnectionInformation) GetInterfaceIndOk() (*InterfaceIndication, bool)

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

func (*PdnConnectionInformation) GetIpv4Addr

func (o *PdnConnectionInformation) GetIpv4Addr() string

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

func (*PdnConnectionInformation) GetIpv4AddrOk

func (o *PdnConnectionInformation) 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 (*PdnConnectionInformation) GetIpv6Addrs

func (o *PdnConnectionInformation) GetIpv6Addrs() []string

GetIpv6Addrs returns the Ipv6Addrs field value if set, zero value otherwise.

func (*PdnConnectionInformation) GetIpv6AddrsOk

func (o *PdnConnectionInformation) GetIpv6AddrsOk() ([]string, bool)

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

func (*PdnConnectionInformation) GetMacAddrs

func (o *PdnConnectionInformation) GetMacAddrs() []string

GetMacAddrs returns the MacAddrs field value if set, zero value otherwise.

func (*PdnConnectionInformation) GetMacAddrsOk

func (o *PdnConnectionInformation) GetMacAddrsOk() ([]string, bool)

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

func (*PdnConnectionInformation) GetPdnType

func (o *PdnConnectionInformation) GetPdnType() PdnType

GetPdnType returns the PdnType field value

func (*PdnConnectionInformation) GetPdnTypeOk

func (o *PdnConnectionInformation) GetPdnTypeOk() (*PdnType, bool)

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

func (*PdnConnectionInformation) GetStatus

GetStatus returns the Status field value

func (*PdnConnectionInformation) GetStatusOk

func (o *PdnConnectionInformation) GetStatusOk() (*PdnConnectionStatus, bool)

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

func (*PdnConnectionInformation) HasApn

func (o *PdnConnectionInformation) HasApn() bool

HasApn returns a boolean if a field has been set.

func (*PdnConnectionInformation) HasInterfaceInd

func (o *PdnConnectionInformation) HasInterfaceInd() bool

HasInterfaceInd returns a boolean if a field has been set.

func (*PdnConnectionInformation) HasIpv4Addr

func (o *PdnConnectionInformation) HasIpv4Addr() bool

HasIpv4Addr returns a boolean if a field has been set.

func (*PdnConnectionInformation) HasIpv6Addrs

func (o *PdnConnectionInformation) HasIpv6Addrs() bool

HasIpv6Addrs returns a boolean if a field has been set.

func (*PdnConnectionInformation) HasMacAddrs

func (o *PdnConnectionInformation) HasMacAddrs() bool

HasMacAddrs returns a boolean if a field has been set.

func (PdnConnectionInformation) MarshalJSON

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

func (*PdnConnectionInformation) SetApn

func (o *PdnConnectionInformation) SetApn(v string)

SetApn gets a reference to the given string and assigns it to the Apn field.

func (*PdnConnectionInformation) SetInterfaceInd

func (o *PdnConnectionInformation) SetInterfaceInd(v InterfaceIndication)

SetInterfaceInd gets a reference to the given InterfaceIndication and assigns it to the InterfaceInd field.

func (*PdnConnectionInformation) SetIpv4Addr

func (o *PdnConnectionInformation) SetIpv4Addr(v string)

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

func (*PdnConnectionInformation) SetIpv6Addrs

func (o *PdnConnectionInformation) SetIpv6Addrs(v []string)

SetIpv6Addrs gets a reference to the given []string and assigns it to the Ipv6Addrs field.

func (*PdnConnectionInformation) SetMacAddrs

func (o *PdnConnectionInformation) SetMacAddrs(v []string)

SetMacAddrs gets a reference to the given []string and assigns it to the MacAddrs field.

func (*PdnConnectionInformation) SetPdnType

func (o *PdnConnectionInformation) SetPdnType(v PdnType)

SetPdnType sets field value

func (*PdnConnectionInformation) SetStatus

SetStatus sets field value

func (PdnConnectionInformation) ToMap

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

func (*PdnConnectionInformation) UnmarshalJSON

func (o *PdnConnectionInformation) UnmarshalJSON(bytes []byte) (err error)

type PdnConnectionStatus

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

PdnConnectionStatus Possible values are - CREATED: The PDN connection is created. - RELEASED: The PDN connection is released.

func (*PdnConnectionStatus) MarshalJSON

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

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

func (*PdnConnectionStatus) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type PdnType

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

PdnType Possible values are - IPV4: PDN connection of IPv4 type. - IPV6: PDN connection of IPv6 type. - IPV4V6: PDN connection of IPv4v6 type. - NON_IP: PDN connection of non-IP type. - ETHERNET: PDN connection of Ethernet type.

func (*PdnType) MarshalJSON

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

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

func (*PdnType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type PlmnId

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

PlmnId Represents the identifier of a PLMN.

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)

func (*PlmnId) UnmarshalJSON

func (o *PlmnId) UnmarshalJSON(bytes []byte) (err 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)

func (*PlmnId1) UnmarshalJSON

func (o *PlmnId1) UnmarshalJSON(bytes []byte) (err error)

type Point

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

Point Ellipsoid Point.

func NewPoint

func NewPoint(point GeographicalCoordinates, shape SupportedGADShapes) *Point

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

func NewPointWithDefaults

func NewPointWithDefaults() *Point

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

func (*Point) GetPoint

func (o *Point) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*Point) GetPointOk

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

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

func (Point) MarshalJSON

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

func (*Point) SetPoint

func (o *Point) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (Point) ToMap

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

func (*Point) UnmarshalJSON

func (o *Point) UnmarshalJSON(bytes []byte) (err 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)

func (*PointAltitude) UnmarshalJSON

func (o *PointAltitude) UnmarshalJSON(bytes []byte) (err 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)

func (*PointAltitudeUncertainty) UnmarshalJSON

func (o *PointAltitudeUncertainty) UnmarshalJSON(bytes []byte) (err 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)

func (*PointUncertaintyCircle) UnmarshalJSON

func (o *PointUncertaintyCircle) UnmarshalJSON(bytes []byte) (err 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)

func (*PointUncertaintyEllipse) UnmarshalJSON

func (o *PointUncertaintyEllipse) UnmarshalJSON(bytes []byte) (err 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)

func (*Polygon) UnmarshalJSON

func (o *Polygon) UnmarshalJSON(bytes []byte) (err error)

type PositioningMethod

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

PositioningMethod Indicates supported positioning methods.

func (*PositioningMethod) MarshalJSON

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

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

func (*PositioningMethod) UnmarshalJSON

func (dst *PositioningMethod) 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 IETF RFC 3986.
	Type *string `json:"type,omitempty"`
	// A short, human-readable summary of the problem type. It should not change from occurrence to occurrence of the problem.
	Title *string `json:"title,omitempty"`
	// The HTTP status code for this occurrence of the problem.
	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 IETF 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"`
	// Description of invalid parameters, for a request rejected due to invalid parameters.
	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"`
}

ProblemDetails Represents additional information and details on 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) 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) 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) 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) 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) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus 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) 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) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status 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 ReachabilityType

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

ReachabilityType Possible values are - SMS : The SCS/AS requests to be notified when the UE becomes reachable for sending SMS to the UE - DATA: The SCS/AS requests to be notified when the UE becomes reachable for sending downlink data to the UE

func (*ReachabilityType) MarshalJSON

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

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

func (*ReachabilityType) UnmarshalJSON

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

func (*RelativeCartesianLocation) UnmarshalJSON

func (o *RelativeCartesianLocation) UnmarshalJSON(bytes []byte) (err error)

type ResponseTime

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

ResponseTime Indicates acceptable delay of location request.

func (*ResponseTime) MarshalJSON

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

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

func (*ResponseTime) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ResultReason

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

ResultReason Possible values are - ROAMING_NOT_ALLOWED: Identifies the configuration parameters are not allowed by roaming agreement. - OTHER_REASON: Identifies the configuration parameters are not configured due to other reason.

func (*ResultReason) MarshalJSON

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

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

func (*ResultReason) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 SACRepFormat

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

SACRepFormat Indicates the NSAC reporting format.

func (*SACRepFormat) MarshalJSON

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

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

func (*SACRepFormat) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type Snssai

type Snssai struct {
	// Unsigned integer, within the range 0 to 255, representing the Slice/Service Type.  It indicates the expected Network Slice behaviour in terms of features and services. Values 0 to 127 correspond to the standardized SST range. Values 128 to 255 correspond  to the Operator-specific range. See clause 28.4.2 of 3GPP TS 23.003. Standardized values are defined in clause 5.15.2.2 of 3GPP TS 23.501.
	Sst int32 `json:"sst"`
	// 3-octet string, representing the Slice Differentiator, in hexadecimal representation. Each character in the string shall take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant character representing the 4 most significant bits of the SD shall appear first in the string, and the character representing the 4 least significant bit of the SD shall appear last in the string. This is an optional parameter that complements the Slice/Service type(s) to allow to  differentiate amongst multiple Network Slices of the same Slice/Service type. This IE shall be absent if no SD value is associated with the SST.
	Sd *string `json:"sd,omitempty"`
}

Snssai When Snssai needs to be converted to string (e.g. when used in maps as key), the string shall be composed of one to three digits \"sst\" optionally followed by \"-\" and 6 hexadecimal digits \"sd\".

func NewSnssai

func NewSnssai(sst int32) *Snssai

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

func NewSnssaiWithDefaults

func NewSnssaiWithDefaults() *Snssai

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

func (*Snssai) GetSd

func (o *Snssai) GetSd() string

GetSd returns the Sd field value if set, zero value otherwise.

func (*Snssai) GetSdOk

func (o *Snssai) GetSdOk() (*string, bool)

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

func (*Snssai) GetSst

func (o *Snssai) GetSst() int32

GetSst returns the Sst field value

func (*Snssai) GetSstOk

func (o *Snssai) GetSstOk() (*int32, bool)

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

func (*Snssai) HasSd

func (o *Snssai) HasSd() bool

HasSd returns a boolean if a field has been set.

func (Snssai) MarshalJSON

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

func (*Snssai) SetSd

func (o *Snssai) SetSd(v string)

SetSd gets a reference to the given string and assigns it to the Sd field.

func (*Snssai) SetSst

func (o *Snssai) SetSst(v int32)

SetSst sets field value

func (Snssai) ToMap

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

func (*Snssai) UnmarshalJSON

func (o *Snssai) UnmarshalJSON(bytes []byte) (err error)

type SubType

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

SubType Possible values are - AERIAL_UE: The UE has Aerial subscription.

func (*SubType) MarshalJSON

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

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

func (*SubType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type SupportedGADShapes

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

SupportedGADShapes Indicates supported GAD shapes.

func (*SupportedGADShapes) MarshalJSON

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

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

func (*SupportedGADShapes) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Tai

type Tai struct {
	PlmnId PlmnId1 `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 PlmnId1, 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() PlmnId1

GetPlmnId returns the PlmnId field value

func (*Tai) GetPlmnIdOk

func (o *Tai) GetPlmnIdOk() (*PlmnId1, 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 PlmnId1)

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)

func (*Tai) UnmarshalJSON

func (o *Tai) UnmarshalJSON(bytes []byte) (err error)

type TimeWindow

type TimeWindow struct {
	// string with format \"date-time\" as defined in OpenAPI.
	StartTime time.Time `json:"startTime"`
	// string with format \"date-time\" as defined in OpenAPI.
	StopTime time.Time `json:"stopTime"`
}

TimeWindow Represents a time window identified by a start time and a stop time.

func NewTimeWindow

func NewTimeWindow(startTime time.Time, stopTime time.Time) *TimeWindow

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

func NewTimeWindowWithDefaults

func NewTimeWindowWithDefaults() *TimeWindow

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

func (*TimeWindow) GetStartTime

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

GetStartTime returns the StartTime field value

func (*TimeWindow) GetStartTimeOk

func (o *TimeWindow) GetStartTimeOk() (*time.Time, bool)

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

func (*TimeWindow) GetStopTime

func (o *TimeWindow) GetStopTime() time.Time

GetStopTime returns the StopTime field value

func (*TimeWindow) GetStopTimeOk

func (o *TimeWindow) GetStopTimeOk() (*time.Time, bool)

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

func (TimeWindow) MarshalJSON

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

func (*TimeWindow) SetStartTime

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

SetStartTime sets field value

func (*TimeWindow) SetStopTime

func (o *TimeWindow) SetStopTime(v time.Time)

SetStopTime sets field value

func (TimeWindow) ToMap

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

func (*TimeWindow) UnmarshalJSON

func (o *TimeWindow) UnmarshalJSON(bytes []byte) (err error)

type UavPolicy

type UavPolicy struct {
	UavMoveInd bool `json:"uavMoveInd"`
	RevokeInd  bool `json:"revokeInd"`
}

UavPolicy Represents the policy information included in the UAV presence monitoring request.

func NewUavPolicy

func NewUavPolicy(uavMoveInd bool, revokeInd bool) *UavPolicy

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

func NewUavPolicyWithDefaults

func NewUavPolicyWithDefaults() *UavPolicy

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

func (*UavPolicy) GetRevokeInd

func (o *UavPolicy) GetRevokeInd() bool

GetRevokeInd returns the RevokeInd field value

func (*UavPolicy) GetRevokeIndOk

func (o *UavPolicy) GetRevokeIndOk() (*bool, bool)

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

func (*UavPolicy) GetUavMoveInd

func (o *UavPolicy) GetUavMoveInd() bool

GetUavMoveInd returns the UavMoveInd field value

func (*UavPolicy) GetUavMoveIndOk

func (o *UavPolicy) GetUavMoveIndOk() (*bool, bool)

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

func (UavPolicy) MarshalJSON

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

func (*UavPolicy) SetRevokeInd

func (o *UavPolicy) SetRevokeInd(v bool)

SetRevokeInd sets field value

func (*UavPolicy) SetUavMoveInd

func (o *UavPolicy) SetUavMoveInd(v bool)

SetUavMoveInd sets field value

func (UavPolicy) ToMap

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

func (*UavPolicy) UnmarshalJSON

func (o *UavPolicy) UnmarshalJSON(bytes []byte) (err error)

type UcPurpose

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

UcPurpose Indicates the purpose of the user consent.

func (*UcPurpose) MarshalJSON

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

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

func (*UcPurpose) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type UePerLocationReport

type UePerLocationReport struct {
	// Identifies the number of UEs.
	UeCount int32 `json:"ueCount"`
	// Each element uniquely identifies a user.
	ExternalIds []string `json:"externalIds,omitempty"`
	// Each element identifies the MS internal PSTN/ISDN number allocated for a UE.
	Msisdns []string `json:"msisdns,omitempty"`
	// Each element uniquely identifies a UAV.
	ServLevelDevIds []string `json:"servLevelDevIds,omitempty"`
}

UePerLocationReport Represents the number of UEs found at the indicated location.

func NewUePerLocationReport

func NewUePerLocationReport(ueCount int32) *UePerLocationReport

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

func NewUePerLocationReportWithDefaults

func NewUePerLocationReportWithDefaults() *UePerLocationReport

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

func (*UePerLocationReport) GetExternalIds

func (o *UePerLocationReport) GetExternalIds() []string

GetExternalIds returns the ExternalIds field value if set, zero value otherwise.

func (*UePerLocationReport) GetExternalIdsOk

func (o *UePerLocationReport) GetExternalIdsOk() ([]string, bool)

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

func (*UePerLocationReport) GetMsisdns

func (o *UePerLocationReport) GetMsisdns() []string

GetMsisdns returns the Msisdns field value if set, zero value otherwise.

func (*UePerLocationReport) GetMsisdnsOk

func (o *UePerLocationReport) GetMsisdnsOk() ([]string, bool)

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

func (*UePerLocationReport) GetServLevelDevIds

func (o *UePerLocationReport) GetServLevelDevIds() []string

GetServLevelDevIds returns the ServLevelDevIds field value if set, zero value otherwise.

func (*UePerLocationReport) GetServLevelDevIdsOk

func (o *UePerLocationReport) GetServLevelDevIdsOk() ([]string, bool)

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

func (*UePerLocationReport) GetUeCount

func (o *UePerLocationReport) GetUeCount() int32

GetUeCount returns the UeCount field value

func (*UePerLocationReport) GetUeCountOk

func (o *UePerLocationReport) GetUeCountOk() (*int32, bool)

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

func (*UePerLocationReport) HasExternalIds

func (o *UePerLocationReport) HasExternalIds() bool

HasExternalIds returns a boolean if a field has been set.

func (*UePerLocationReport) HasMsisdns

func (o *UePerLocationReport) HasMsisdns() bool

HasMsisdns returns a boolean if a field has been set.

func (*UePerLocationReport) HasServLevelDevIds

func (o *UePerLocationReport) HasServLevelDevIds() bool

HasServLevelDevIds returns a boolean if a field has been set.

func (UePerLocationReport) MarshalJSON

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

func (*UePerLocationReport) SetExternalIds

func (o *UePerLocationReport) SetExternalIds(v []string)

SetExternalIds gets a reference to the given []string and assigns it to the ExternalIds field.

func (*UePerLocationReport) SetMsisdns

func (o *UePerLocationReport) SetMsisdns(v []string)

SetMsisdns gets a reference to the given []string and assigns it to the Msisdns field.

func (*UePerLocationReport) SetServLevelDevIds

func (o *UePerLocationReport) SetServLevelDevIds(v []string)

SetServLevelDevIds gets a reference to the given []string and assigns it to the ServLevelDevIds field.

func (*UePerLocationReport) SetUeCount

func (o *UePerLocationReport) SetUeCount(v int32)

SetUeCount sets field value

func (UePerLocationReport) ToMap

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

func (*UePerLocationReport) UnmarshalJSON

func (o *UePerLocationReport) UnmarshalJSON(bytes []byte) (err error)

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)

func (*UncertaintyEllipse) UnmarshalJSON

func (o *UncertaintyEllipse) UnmarshalJSON(bytes []byte) (err 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)

func (*UncertaintyEllipsoid) UnmarshalJSON

func (o *UncertaintyEllipsoid) UnmarshalJSON(bytes []byte) (err error)

type VelocityEstimate

type VelocityEstimate struct {
	HorizontalVelocity                           *HorizontalVelocity
	HorizontalVelocityWithUncertainty            *HorizontalVelocityWithUncertainty
	HorizontalWithVerticalVelocity               *HorizontalWithVerticalVelocity
	HorizontalWithVerticalVelocityAndUncertainty *HorizontalWithVerticalVelocityAndUncertainty
}

VelocityEstimate - Velocity estimate.

func HorizontalVelocityAsVelocityEstimate

func HorizontalVelocityAsVelocityEstimate(v *HorizontalVelocity) VelocityEstimate

HorizontalVelocityAsVelocityEstimate is a convenience function that returns HorizontalVelocity wrapped in VelocityEstimate

func HorizontalVelocityWithUncertaintyAsVelocityEstimate

func HorizontalVelocityWithUncertaintyAsVelocityEstimate(v *HorizontalVelocityWithUncertainty) VelocityEstimate

HorizontalVelocityWithUncertaintyAsVelocityEstimate is a convenience function that returns HorizontalVelocityWithUncertainty wrapped in VelocityEstimate

func HorizontalWithVerticalVelocityAndUncertaintyAsVelocityEstimate

func HorizontalWithVerticalVelocityAndUncertaintyAsVelocityEstimate(v *HorizontalWithVerticalVelocityAndUncertainty) VelocityEstimate

HorizontalWithVerticalVelocityAndUncertaintyAsVelocityEstimate is a convenience function that returns HorizontalWithVerticalVelocityAndUncertainty wrapped in VelocityEstimate

func HorizontalWithVerticalVelocityAsVelocityEstimate

func HorizontalWithVerticalVelocityAsVelocityEstimate(v *HorizontalWithVerticalVelocity) VelocityEstimate

HorizontalWithVerticalVelocityAsVelocityEstimate is a convenience function that returns HorizontalWithVerticalVelocity wrapped in VelocityEstimate

func (*VelocityEstimate) GetActualInstance

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

Get the actual instance

func (VelocityEstimate) MarshalJSON

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

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

func (*VelocityEstimate) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type VelocityRequested

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

VelocityRequested Indicates velocity requirement.

func (*VelocityRequested) MarshalJSON

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

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

func (*VelocityRequested) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type VerticalDirection

type VerticalDirection string

VerticalDirection Indicates direction of vertical speed.

const (
	VERTICALDIRECTION_UPWARD   VerticalDirection = "UPWARD"
	VERTICALDIRECTION_DOWNWARD VerticalDirection = "DOWNWARD"
)

List of VerticalDirection

func NewVerticalDirectionFromValue

func NewVerticalDirectionFromValue(v string) (*VerticalDirection, error)

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

func (VerticalDirection) IsValid

func (v VerticalDirection) IsValid() bool

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

func (VerticalDirection) Ptr

Ptr returns reference to VerticalDirection value

func (*VerticalDirection) UnmarshalJSON

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

type WebsockNotifConfig

type WebsockNotifConfig struct {
	// string formatted according to IETF RFC 3986 identifying a referenced resource.
	WebsocketUri *string `json:"websocketUri,omitempty"`
	// Set by the SCS/AS to indicate that the Websocket delivery is requested.
	RequestWebsocketUri *bool `json:"requestWebsocketUri,omitempty"`
}

WebsockNotifConfig Represents the configuration information for the delivery of notifications over Websockets.

func NewWebsockNotifConfig

func NewWebsockNotifConfig() *WebsockNotifConfig

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

func NewWebsockNotifConfigWithDefaults

func NewWebsockNotifConfigWithDefaults() *WebsockNotifConfig

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

func (*WebsockNotifConfig) GetRequestWebsocketUri

func (o *WebsockNotifConfig) GetRequestWebsocketUri() bool

GetRequestWebsocketUri returns the RequestWebsocketUri field value if set, zero value otherwise.

func (*WebsockNotifConfig) GetRequestWebsocketUriOk

func (o *WebsockNotifConfig) GetRequestWebsocketUriOk() (*bool, bool)

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

func (*WebsockNotifConfig) GetWebsocketUri

func (o *WebsockNotifConfig) GetWebsocketUri() string

GetWebsocketUri returns the WebsocketUri field value if set, zero value otherwise.

func (*WebsockNotifConfig) GetWebsocketUriOk

func (o *WebsockNotifConfig) GetWebsocketUriOk() (*string, bool)

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

func (*WebsockNotifConfig) HasRequestWebsocketUri

func (o *WebsockNotifConfig) HasRequestWebsocketUri() bool

HasRequestWebsocketUri returns a boolean if a field has been set.

func (*WebsockNotifConfig) HasWebsocketUri

func (o *WebsockNotifConfig) HasWebsocketUri() bool

HasWebsocketUri returns a boolean if a field has been set.

func (WebsockNotifConfig) MarshalJSON

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

func (*WebsockNotifConfig) SetRequestWebsocketUri

func (o *WebsockNotifConfig) SetRequestWebsocketUri(v bool)

SetRequestWebsocketUri gets a reference to the given bool and assigns it to the RequestWebsocketUri field.

func (*WebsockNotifConfig) SetWebsocketUri

func (o *WebsockNotifConfig) SetWebsocketUri(v string)

SetWebsocketUri gets a reference to the given string and assigns it to the WebsocketUri field.

func (WebsockNotifConfig) ToMap

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