openapi_Namf_Location

package
v1.18.2 Latest Latest
Warning

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

Go to latest
Published: Apr 9, 2023 License: Apache-2.0 Imports: 21 Imported by: 0

README

Go API client for openapi_Namf_Location

AMF Location Service.
© 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1.3.0-alpha.1
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

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

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

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

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

ctx := context.WithValue(context.Background(), openapi_Namf_Location.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

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

Documentation for API Endpoints

All URIs are relative to https://example.com/namf-loc/v1

Class Method HTTP request Description
IndividualUEContextDocumentApi CancelLocation Post /{ueContextId}/cancel-pos-info Namf_Location CancelLocation service operation
IndividualUEContextDocumentApi ProvideLocationInfo Post /{ueContextId}/provide-loc-info Namf_Location ProvideLocationInfo service Operation
IndividualUEContextDocumentApi ProvidePositioningInfo Post /{ueContextId}/provide-pos-info Namf_Location ProvidePositioningInfo service Operation

Documentation For Models

Documentation For Authorization

oAuth2ClientCredentials
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • namf-loc: Access to the Namf_Location API

Example

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

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

import "golang.org/x/oauth2"

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

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var 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 added in v1.18.2

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	IndividualUEContextDocumentApi *IndividualUEContextDocumentApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Namf_Location API v1.3.0-alpha.1 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AccessTokenErr

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

AccessTokenErr Error returned in the access token response message

func NewAccessTokenErr

func NewAccessTokenErr(error_ string) *AccessTokenErr

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

func NewAccessTokenErrWithDefaults

func NewAccessTokenErrWithDefaults() *AccessTokenErr

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

func (*AccessTokenErr) GetError

func (o *AccessTokenErr) GetError() string

GetError returns the Error field value

func (*AccessTokenErr) GetErrorDescription

func (o *AccessTokenErr) GetErrorDescription() string

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

func (*AccessTokenErr) GetErrorDescriptionOk

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

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

func (*AccessTokenErr) GetErrorOk

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

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

func (*AccessTokenErr) GetErrorUri

func (o *AccessTokenErr) GetErrorUri() string

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

func (*AccessTokenErr) GetErrorUriOk

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

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

func (*AccessTokenErr) HasErrorDescription

func (o *AccessTokenErr) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*AccessTokenErr) HasErrorUri

func (o *AccessTokenErr) HasErrorUri() bool

HasErrorUri returns a boolean if a field has been set.

func (AccessTokenErr) MarshalJSON

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

func (*AccessTokenErr) SetError

func (o *AccessTokenErr) SetError(v string)

SetError sets field value

func (*AccessTokenErr) SetErrorDescription

func (o *AccessTokenErr) SetErrorDescription(v string)

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

func (*AccessTokenErr) SetErrorUri

func (o *AccessTokenErr) SetErrorUri(v string)

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

func (AccessTokenErr) ToMap

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

type AccessTokenReq

type AccessTokenReq struct {
	GrantType string `json:"grant_type"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	NfInstanceId string  `json:"nfInstanceId"`
	NfType       *NFType `json:"nfType,omitempty"`
	TargetNfType *NFType `json:"targetNfType,omitempty"`
	Scope        string  `json:"scope"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	TargetNfInstanceId  *string  `json:"targetNfInstanceId,omitempty"`
	RequesterPlmn       *PlmnId  `json:"requesterPlmn,omitempty"`
	RequesterPlmnList   []PlmnId `json:"requesterPlmnList,omitempty"`
	RequesterSnssaiList []Snssai `json:"requesterSnssaiList,omitempty"`
	// Fully Qualified Domain Name
	RequesterFqdn     *string     `json:"requesterFqdn,omitempty"`
	RequesterSnpnList []PlmnIdNid `json:"requesterSnpnList,omitempty"`
	TargetPlmn        *PlmnId     `json:"targetPlmn,omitempty"`
	TargetSnpn        *PlmnIdNid  `json:"targetSnpn,omitempty"`
	TargetSnssaiList  []Snssai    `json:"targetSnssaiList,omitempty"`
	TargetNsiList     []string    `json:"targetNsiList,omitempty"`
	// NF Set Identifier (see clause 28.12 of 3GPP TS 23.003), formatted as the following string \"set<Set ID>.<nftype>set.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.<NFType>set.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)  <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NFType> encoded as a value defined in Table 6.1.6.3.3-1 of 3GPP TS 29.510 but    with lower case characters <Set ID> encoded as a string of characters consisting of    alphabetic characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that    shall end with either an alphabetic character or a digit.
	TargetNfSetId *string `json:"targetNfSetId,omitempty"`
	// NF Service Set Identifier (see clause 28.12 of 3GPP TS 23.003) formatted as the following  string \"set<Set ID>.sn<Service Name>.nfi<NF Instance ID>.5gc.mnc<MNC>.mcc<MCC>\", or  \"set<SetID>.sn<ServiceName>.nfi<NFInstanceID>.5gc.nid<NID>.mnc<MNC>.mcc<MCC>\" with  <MCC> encoded as defined in clause 5.4.2 (\"Mcc\" data type definition)   <MNC> encoding the Mobile Network Code part of the PLMN, comprising 3 digits.    If there are only 2 significant digits in the MNC, one \"0\" digit shall be inserted    at the left side to fill the 3 digits coding of MNC.  Pattern: '^[0-9]{3}$' <NID> encoded as defined in clause 5.4.2 (\"Nid\" data type definition)  <NFInstanceId> encoded as defined in clause 5.3.2  <ServiceName> encoded as defined in 3GPP TS 29.510  <Set ID> encoded as a string of characters consisting of alphabetic    characters (A-Z and a-z), digits (0-9) and/or the hyphen (-) and that shall end    with either an alphabetic character or a digit.
	TargetNfServiceSetId *string `json:"targetNfServiceSetId,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	HnrfAccessTokenUri *string `json:"hnrfAccessTokenUri,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	SourceNfInstanceId *string `json:"sourceNfInstanceId,omitempty"`
}

AccessTokenReq Contains information related to the access token request

func NewAccessTokenReq

func NewAccessTokenReq(grantType string, nfInstanceId string, scope string) *AccessTokenReq

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

func NewAccessTokenReqWithDefaults

func NewAccessTokenReqWithDefaults() *AccessTokenReq

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

func (*AccessTokenReq) GetGrantType

func (o *AccessTokenReq) GetGrantType() string

GetGrantType returns the GrantType field value

func (*AccessTokenReq) GetGrantTypeOk

func (o *AccessTokenReq) GetGrantTypeOk() (*string, bool)

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

func (*AccessTokenReq) GetHnrfAccessTokenUri

func (o *AccessTokenReq) GetHnrfAccessTokenUri() string

GetHnrfAccessTokenUri returns the HnrfAccessTokenUri field value if set, zero value otherwise.

func (*AccessTokenReq) GetHnrfAccessTokenUriOk

func (o *AccessTokenReq) GetHnrfAccessTokenUriOk() (*string, bool)

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

func (*AccessTokenReq) GetNfInstanceId

func (o *AccessTokenReq) GetNfInstanceId() string

GetNfInstanceId returns the NfInstanceId field value

func (*AccessTokenReq) GetNfInstanceIdOk

func (o *AccessTokenReq) GetNfInstanceIdOk() (*string, bool)

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

func (*AccessTokenReq) GetNfType

func (o *AccessTokenReq) GetNfType() NFType

GetNfType returns the NfType field value if set, zero value otherwise.

func (*AccessTokenReq) GetNfTypeOk

func (o *AccessTokenReq) GetNfTypeOk() (*NFType, bool)

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

func (*AccessTokenReq) GetRequesterFqdn

func (o *AccessTokenReq) GetRequesterFqdn() string

GetRequesterFqdn returns the RequesterFqdn field value if set, zero value otherwise.

func (*AccessTokenReq) GetRequesterFqdnOk

func (o *AccessTokenReq) GetRequesterFqdnOk() (*string, bool)

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

func (*AccessTokenReq) GetRequesterPlmn

func (o *AccessTokenReq) GetRequesterPlmn() PlmnId

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

func (*AccessTokenReq) GetRequesterPlmnList

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

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

func (*AccessTokenReq) GetRequesterPlmnListOk

func (o *AccessTokenReq) GetRequesterPlmnListOk() ([]PlmnId, bool)

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

func (*AccessTokenReq) GetRequesterPlmnOk

func (o *AccessTokenReq) GetRequesterPlmnOk() (*PlmnId, bool)

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

func (*AccessTokenReq) GetRequesterSnpnList

func (o *AccessTokenReq) GetRequesterSnpnList() []PlmnIdNid

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

func (*AccessTokenReq) GetRequesterSnpnListOk

func (o *AccessTokenReq) GetRequesterSnpnListOk() ([]PlmnIdNid, bool)

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

func (*AccessTokenReq) GetRequesterSnssaiList

func (o *AccessTokenReq) GetRequesterSnssaiList() []Snssai

GetRequesterSnssaiList returns the RequesterSnssaiList field value if set, zero value otherwise.

func (*AccessTokenReq) GetRequesterSnssaiListOk

func (o *AccessTokenReq) GetRequesterSnssaiListOk() ([]Snssai, bool)

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

func (*AccessTokenReq) GetScope

func (o *AccessTokenReq) GetScope() string

GetScope returns the Scope field value

func (*AccessTokenReq) GetScopeOk

func (o *AccessTokenReq) GetScopeOk() (*string, bool)

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

func (*AccessTokenReq) GetSourceNfInstanceId

func (o *AccessTokenReq) GetSourceNfInstanceId() string

GetSourceNfInstanceId returns the SourceNfInstanceId field value if set, zero value otherwise.

func (*AccessTokenReq) GetSourceNfInstanceIdOk

func (o *AccessTokenReq) GetSourceNfInstanceIdOk() (*string, bool)

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

func (*AccessTokenReq) GetTargetNfInstanceId

func (o *AccessTokenReq) GetTargetNfInstanceId() string

GetTargetNfInstanceId returns the TargetNfInstanceId field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNfInstanceIdOk

func (o *AccessTokenReq) GetTargetNfInstanceIdOk() (*string, bool)

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

func (*AccessTokenReq) GetTargetNfServiceSetId

func (o *AccessTokenReq) GetTargetNfServiceSetId() string

GetTargetNfServiceSetId returns the TargetNfServiceSetId field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNfServiceSetIdOk

func (o *AccessTokenReq) GetTargetNfServiceSetIdOk() (*string, bool)

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

func (*AccessTokenReq) GetTargetNfSetId

func (o *AccessTokenReq) GetTargetNfSetId() string

GetTargetNfSetId returns the TargetNfSetId field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNfSetIdOk

func (o *AccessTokenReq) GetTargetNfSetIdOk() (*string, bool)

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

func (*AccessTokenReq) GetTargetNfType

func (o *AccessTokenReq) GetTargetNfType() NFType

GetTargetNfType returns the TargetNfType field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNfTypeOk

func (o *AccessTokenReq) GetTargetNfTypeOk() (*NFType, bool)

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

func (*AccessTokenReq) GetTargetNsiList

func (o *AccessTokenReq) GetTargetNsiList() []string

GetTargetNsiList returns the TargetNsiList field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetNsiListOk

func (o *AccessTokenReq) GetTargetNsiListOk() ([]string, bool)

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

func (*AccessTokenReq) GetTargetPlmn

func (o *AccessTokenReq) GetTargetPlmn() PlmnId

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

func (*AccessTokenReq) GetTargetPlmnOk

func (o *AccessTokenReq) GetTargetPlmnOk() (*PlmnId, bool)

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

func (*AccessTokenReq) GetTargetSnpn

func (o *AccessTokenReq) GetTargetSnpn() PlmnIdNid

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

func (*AccessTokenReq) GetTargetSnpnOk

func (o *AccessTokenReq) GetTargetSnpnOk() (*PlmnIdNid, bool)

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

func (*AccessTokenReq) GetTargetSnssaiList

func (o *AccessTokenReq) GetTargetSnssaiList() []Snssai

GetTargetSnssaiList returns the TargetSnssaiList field value if set, zero value otherwise.

func (*AccessTokenReq) GetTargetSnssaiListOk

func (o *AccessTokenReq) GetTargetSnssaiListOk() ([]Snssai, bool)

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

func (*AccessTokenReq) HasHnrfAccessTokenUri

func (o *AccessTokenReq) HasHnrfAccessTokenUri() bool

HasHnrfAccessTokenUri returns a boolean if a field has been set.

func (*AccessTokenReq) HasNfType

func (o *AccessTokenReq) HasNfType() bool

HasNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterFqdn

func (o *AccessTokenReq) HasRequesterFqdn() bool

HasRequesterFqdn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmn

func (o *AccessTokenReq) HasRequesterPlmn() bool

HasRequesterPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterPlmnList

func (o *AccessTokenReq) HasRequesterPlmnList() bool

HasRequesterPlmnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnpnList

func (o *AccessTokenReq) HasRequesterSnpnList() bool

HasRequesterSnpnList returns a boolean if a field has been set.

func (*AccessTokenReq) HasRequesterSnssaiList

func (o *AccessTokenReq) HasRequesterSnssaiList() bool

HasRequesterSnssaiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasSourceNfInstanceId

func (o *AccessTokenReq) HasSourceNfInstanceId() bool

HasSourceNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfInstanceId

func (o *AccessTokenReq) HasTargetNfInstanceId() bool

HasTargetNfInstanceId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfServiceSetId

func (o *AccessTokenReq) HasTargetNfServiceSetId() bool

HasTargetNfServiceSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfSetId

func (o *AccessTokenReq) HasTargetNfSetId() bool

HasTargetNfSetId returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNfType

func (o *AccessTokenReq) HasTargetNfType() bool

HasTargetNfType returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetNsiList

func (o *AccessTokenReq) HasTargetNsiList() bool

HasTargetNsiList returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetPlmn

func (o *AccessTokenReq) HasTargetPlmn() bool

HasTargetPlmn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnpn

func (o *AccessTokenReq) HasTargetSnpn() bool

HasTargetSnpn returns a boolean if a field has been set.

func (*AccessTokenReq) HasTargetSnssaiList

func (o *AccessTokenReq) HasTargetSnssaiList() bool

HasTargetSnssaiList returns a boolean if a field has been set.

func (AccessTokenReq) MarshalJSON

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

func (*AccessTokenReq) SetGrantType

func (o *AccessTokenReq) SetGrantType(v string)

SetGrantType sets field value

func (*AccessTokenReq) SetHnrfAccessTokenUri

func (o *AccessTokenReq) SetHnrfAccessTokenUri(v string)

SetHnrfAccessTokenUri gets a reference to the given string and assigns it to the HnrfAccessTokenUri field.

func (*AccessTokenReq) SetNfInstanceId

func (o *AccessTokenReq) SetNfInstanceId(v string)

SetNfInstanceId sets field value

func (*AccessTokenReq) SetNfType

func (o *AccessTokenReq) SetNfType(v NFType)

SetNfType gets a reference to the given NFType and assigns it to the NfType field.

func (*AccessTokenReq) SetRequesterFqdn

func (o *AccessTokenReq) SetRequesterFqdn(v string)

SetRequesterFqdn gets a reference to the given string and assigns it to the RequesterFqdn field.

func (*AccessTokenReq) SetRequesterPlmn

func (o *AccessTokenReq) SetRequesterPlmn(v PlmnId)

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

func (*AccessTokenReq) SetRequesterPlmnList

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

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

func (*AccessTokenReq) SetRequesterSnpnList

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

SetRequesterSnpnList gets a reference to the given []PlmnIdNid and assigns it to the RequesterSnpnList field.

func (*AccessTokenReq) SetRequesterSnssaiList

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

SetRequesterSnssaiList gets a reference to the given []Snssai and assigns it to the RequesterSnssaiList field.

func (*AccessTokenReq) SetScope

func (o *AccessTokenReq) SetScope(v string)

SetScope sets field value

func (*AccessTokenReq) SetSourceNfInstanceId

func (o *AccessTokenReq) SetSourceNfInstanceId(v string)

SetSourceNfInstanceId gets a reference to the given string and assigns it to the SourceNfInstanceId field.

func (*AccessTokenReq) SetTargetNfInstanceId

func (o *AccessTokenReq) SetTargetNfInstanceId(v string)

SetTargetNfInstanceId gets a reference to the given string and assigns it to the TargetNfInstanceId field.

func (*AccessTokenReq) SetTargetNfServiceSetId

func (o *AccessTokenReq) SetTargetNfServiceSetId(v string)

SetTargetNfServiceSetId gets a reference to the given string and assigns it to the TargetNfServiceSetId field.

func (*AccessTokenReq) SetTargetNfSetId

func (o *AccessTokenReq) SetTargetNfSetId(v string)

SetTargetNfSetId gets a reference to the given string and assigns it to the TargetNfSetId field.

func (*AccessTokenReq) SetTargetNfType

func (o *AccessTokenReq) SetTargetNfType(v NFType)

SetTargetNfType gets a reference to the given NFType and assigns it to the TargetNfType field.

func (*AccessTokenReq) SetTargetNsiList

func (o *AccessTokenReq) SetTargetNsiList(v []string)

SetTargetNsiList gets a reference to the given []string and assigns it to the TargetNsiList field.

func (*AccessTokenReq) SetTargetPlmn

func (o *AccessTokenReq) SetTargetPlmn(v PlmnId)

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

func (*AccessTokenReq) SetTargetSnpn

func (o *AccessTokenReq) SetTargetSnpn(v PlmnIdNid)

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

func (*AccessTokenReq) SetTargetSnssaiList

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

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

func (AccessTokenReq) ToMap

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

type AccuracyFulfilmentIndicator

type AccuracyFulfilmentIndicator struct {
	String *string
}

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 ApiCancelLocationRequest

type ApiCancelLocationRequest struct {
	ApiService *IndividualUEContextDocumentApiService
	// contains filtered or unexported fields
}

func (ApiCancelLocationRequest) CancelPosInfo

func (r ApiCancelLocationRequest) CancelPosInfo(cancelPosInfo CancelPosInfo) ApiCancelLocationRequest

func (ApiCancelLocationRequest) Execute

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

type ApiProvideLocationInfoRequest

type ApiProvideLocationInfoRequest struct {
	ApiService *IndividualUEContextDocumentApiService
	// contains filtered or unexported fields
}

func (ApiProvideLocationInfoRequest) Execute

func (ApiProvideLocationInfoRequest) RequestLocInfo

type ApiProvidePositioningInfoRequest

type ApiProvidePositioningInfoRequest struct {
	ApiService *IndividualUEContextDocumentApiService
	// contains filtered or unexported fields
}

func (ApiProvidePositioningInfoRequest) Execute

func (ApiProvidePositioningInfoRequest) RequestPosInfo

type AreaEventInfo

type AreaEventInfo struct {
	AreaDefinition []ReportingArea `json:"areaDefinition"`
	OccurrenceInfo *OccurrenceInfo `json:"occurrenceInfo,omitempty"`
	// Minimum interval between event reports.
	MinimumInterval *int32 `json:"minimumInterval,omitempty"`
	// Maximum interval between event reports.
	MaximumInterval *int32 `json:"maximumInterval,omitempty"`
	// Maximum time interval between consecutive evaluations by a UE of a trigger event.
	SamplingInterval *int32 `json:"samplingInterval,omitempty"`
	// Maximum duration of event reporting.
	ReportingDuration    *int32 `json:"reportingDuration,omitempty"`
	ReportingLocationReq *bool  `json:"reportingLocationReq,omitempty"`
}

AreaEventInfo Indicates the information of area based event reporting.

func NewAreaEventInfo

func NewAreaEventInfo(areaDefinition []ReportingArea) *AreaEventInfo

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

func NewAreaEventInfoWithDefaults

func NewAreaEventInfoWithDefaults() *AreaEventInfo

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

func (*AreaEventInfo) GetAreaDefinition

func (o *AreaEventInfo) GetAreaDefinition() []ReportingArea

GetAreaDefinition returns the AreaDefinition field value

func (*AreaEventInfo) GetAreaDefinitionOk

func (o *AreaEventInfo) GetAreaDefinitionOk() ([]ReportingArea, bool)

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

func (*AreaEventInfo) GetMaximumInterval

func (o *AreaEventInfo) GetMaximumInterval() int32

GetMaximumInterval returns the MaximumInterval field value if set, zero value otherwise.

func (*AreaEventInfo) GetMaximumIntervalOk

func (o *AreaEventInfo) GetMaximumIntervalOk() (*int32, bool)

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

func (*AreaEventInfo) GetMinimumInterval

func (o *AreaEventInfo) GetMinimumInterval() int32

GetMinimumInterval returns the MinimumInterval field value if set, zero value otherwise.

func (*AreaEventInfo) GetMinimumIntervalOk

func (o *AreaEventInfo) GetMinimumIntervalOk() (*int32, bool)

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

func (*AreaEventInfo) GetOccurrenceInfo

func (o *AreaEventInfo) GetOccurrenceInfo() OccurrenceInfo

GetOccurrenceInfo returns the OccurrenceInfo field value if set, zero value otherwise.

func (*AreaEventInfo) GetOccurrenceInfoOk

func (o *AreaEventInfo) GetOccurrenceInfoOk() (*OccurrenceInfo, bool)

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

func (*AreaEventInfo) GetReportingDuration

func (o *AreaEventInfo) GetReportingDuration() int32

GetReportingDuration returns the ReportingDuration field value if set, zero value otherwise.

func (*AreaEventInfo) GetReportingDurationOk

func (o *AreaEventInfo) GetReportingDurationOk() (*int32, bool)

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

func (*AreaEventInfo) GetReportingLocationReq

func (o *AreaEventInfo) GetReportingLocationReq() bool

GetReportingLocationReq returns the ReportingLocationReq field value if set, zero value otherwise.

func (*AreaEventInfo) GetReportingLocationReqOk

func (o *AreaEventInfo) GetReportingLocationReqOk() (*bool, bool)

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

func (*AreaEventInfo) GetSamplingInterval

func (o *AreaEventInfo) GetSamplingInterval() int32

GetSamplingInterval returns the SamplingInterval field value if set, zero value otherwise.

func (*AreaEventInfo) GetSamplingIntervalOk

func (o *AreaEventInfo) 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 (*AreaEventInfo) HasMaximumInterval

func (o *AreaEventInfo) HasMaximumInterval() bool

HasMaximumInterval returns a boolean if a field has been set.

func (*AreaEventInfo) HasMinimumInterval

func (o *AreaEventInfo) HasMinimumInterval() bool

HasMinimumInterval returns a boolean if a field has been set.

func (*AreaEventInfo) HasOccurrenceInfo

func (o *AreaEventInfo) HasOccurrenceInfo() bool

HasOccurrenceInfo returns a boolean if a field has been set.

func (*AreaEventInfo) HasReportingDuration

func (o *AreaEventInfo) HasReportingDuration() bool

HasReportingDuration returns a boolean if a field has been set.

func (*AreaEventInfo) HasReportingLocationReq

func (o *AreaEventInfo) HasReportingLocationReq() bool

HasReportingLocationReq returns a boolean if a field has been set.

func (*AreaEventInfo) HasSamplingInterval

func (o *AreaEventInfo) HasSamplingInterval() bool

HasSamplingInterval returns a boolean if a field has been set.

func (AreaEventInfo) MarshalJSON

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

func (*AreaEventInfo) SetAreaDefinition

func (o *AreaEventInfo) SetAreaDefinition(v []ReportingArea)

SetAreaDefinition sets field value

func (*AreaEventInfo) SetMaximumInterval

func (o *AreaEventInfo) SetMaximumInterval(v int32)

SetMaximumInterval gets a reference to the given int32 and assigns it to the MaximumInterval field.

func (*AreaEventInfo) SetMinimumInterval

func (o *AreaEventInfo) SetMinimumInterval(v int32)

SetMinimumInterval gets a reference to the given int32 and assigns it to the MinimumInterval field.

func (*AreaEventInfo) SetOccurrenceInfo

func (o *AreaEventInfo) SetOccurrenceInfo(v OccurrenceInfo)

SetOccurrenceInfo gets a reference to the given OccurrenceInfo and assigns it to the OccurrenceInfo field.

func (*AreaEventInfo) SetReportingDuration

func (o *AreaEventInfo) SetReportingDuration(v int32)

SetReportingDuration gets a reference to the given int32 and assigns it to the ReportingDuration field.

func (*AreaEventInfo) SetReportingLocationReq

func (o *AreaEventInfo) SetReportingLocationReq(v bool)

SetReportingLocationReq gets a reference to the given bool and assigns it to the ReportingLocationReq field.

func (*AreaEventInfo) SetSamplingInterval

func (o *AreaEventInfo) SetSamplingInterval(v int32)

SetSamplingInterval gets a reference to the given int32 and assigns it to the SamplingInterval field.

func (AreaEventInfo) ToMap

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

type BasicAuth

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

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

type CancelPosInfo

type CancelPosInfo struct {
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi string `json:"supi"`
	// String providing an URI formatted according to RFC 3986.
	HgmlcCallBackURI string `json:"hgmlcCallBackURI"`
	// LDR Reference.
	LdrReference string `json:"ldrReference"`
	// LMF identification.
	ServingLMFIdentification *string `json:"servingLMFIdentification,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"`
}

CancelPosInfo Data within a Cancel Location Request

func NewCancelPosInfo

func NewCancelPosInfo(supi string, hgmlcCallBackURI string, ldrReference string) *CancelPosInfo

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

func NewCancelPosInfoWithDefaults

func NewCancelPosInfoWithDefaults() *CancelPosInfo

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

func (*CancelPosInfo) GetHgmlcCallBackURI

func (o *CancelPosInfo) GetHgmlcCallBackURI() string

GetHgmlcCallBackURI returns the HgmlcCallBackURI field value

func (*CancelPosInfo) GetHgmlcCallBackURIOk

func (o *CancelPosInfo) GetHgmlcCallBackURIOk() (*string, bool)

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

func (*CancelPosInfo) GetLdrReference

func (o *CancelPosInfo) GetLdrReference() string

GetLdrReference returns the LdrReference field value

func (*CancelPosInfo) GetLdrReferenceOk

func (o *CancelPosInfo) GetLdrReferenceOk() (*string, bool)

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

func (*CancelPosInfo) GetServingLMFIdentification

func (o *CancelPosInfo) GetServingLMFIdentification() string

GetServingLMFIdentification returns the ServingLMFIdentification field value if set, zero value otherwise.

func (*CancelPosInfo) GetServingLMFIdentificationOk

func (o *CancelPosInfo) GetServingLMFIdentificationOk() (*string, bool)

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

func (*CancelPosInfo) GetSupi

func (o *CancelPosInfo) GetSupi() string

GetSupi returns the Supi field value

func (*CancelPosInfo) GetSupiOk

func (o *CancelPosInfo) GetSupiOk() (*string, bool)

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

func (*CancelPosInfo) GetSupportedFeatures

func (o *CancelPosInfo) GetSupportedFeatures() string

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

func (*CancelPosInfo) GetSupportedFeaturesOk

func (o *CancelPosInfo) 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 (*CancelPosInfo) HasServingLMFIdentification

func (o *CancelPosInfo) HasServingLMFIdentification() bool

HasServingLMFIdentification returns a boolean if a field has been set.

func (*CancelPosInfo) HasSupportedFeatures

func (o *CancelPosInfo) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (CancelPosInfo) MarshalJSON

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

func (*CancelPosInfo) SetHgmlcCallBackURI

func (o *CancelPosInfo) SetHgmlcCallBackURI(v string)

SetHgmlcCallBackURI sets field value

func (*CancelPosInfo) SetLdrReference

func (o *CancelPosInfo) SetLdrReference(v string)

SetLdrReference sets field value

func (*CancelPosInfo) SetServingLMFIdentification

func (o *CancelPosInfo) SetServingLMFIdentification(v string)

SetServingLMFIdentification gets a reference to the given string and assigns it to the ServingLMFIdentification field.

func (*CancelPosInfo) SetSupi

func (o *CancelPosInfo) SetSupi(v string)

SetSupi sets field value

func (*CancelPosInfo) SetSupportedFeatures

func (o *CancelPosInfo) SetSupportedFeatures(v string)

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

func (CancelPosInfo) ToMap

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

type CellGlobalId

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

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

func NewCellGlobalId

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

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

func NewCellGlobalIdWithDefaults

func NewCellGlobalIdWithDefaults() *CellGlobalId

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

func (*CellGlobalId) GetCellId

func (o *CellGlobalId) GetCellId() string

GetCellId returns the CellId field value

func (*CellGlobalId) GetCellIdOk

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

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

func (*CellGlobalId) GetLac

func (o *CellGlobalId) GetLac() string

GetLac returns the Lac field value

func (*CellGlobalId) GetLacOk

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

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

func (*CellGlobalId) GetPlmnId

func (o *CellGlobalId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*CellGlobalId) GetPlmnIdOk

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

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

func (CellGlobalId) MarshalJSON

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

func (*CellGlobalId) SetCellId

func (o *CellGlobalId) SetCellId(v string)

SetCellId sets field value

func (*CellGlobalId) SetLac

func (o *CellGlobalId) SetLac(v string)

SetLac sets field value

func (*CellGlobalId) SetPlmnId

func (o *CellGlobalId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (CellGlobalId) ToMap

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

type CivicAddress

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

CivicAddress Indicates a Civic address.

func NewCivicAddress

func NewCivicAddress() *CivicAddress

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

func NewCivicAddressWithDefaults

func NewCivicAddressWithDefaults() *CivicAddress

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

func (*CivicAddress) GetA1

func (o *CivicAddress) GetA1() string

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

func (*CivicAddress) GetA1Ok

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

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

func (*CivicAddress) GetA2

func (o *CivicAddress) GetA2() string

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

func (*CivicAddress) GetA2Ok

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

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

func (*CivicAddress) GetA3

func (o *CivicAddress) GetA3() string

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

func (*CivicAddress) GetA3Ok

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

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

func (*CivicAddress) GetA4

func (o *CivicAddress) GetA4() string

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

func (*CivicAddress) GetA4Ok

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

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

func (*CivicAddress) GetA5

func (o *CivicAddress) GetA5() string

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

func (*CivicAddress) GetA5Ok

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

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

func (*CivicAddress) GetA6

func (o *CivicAddress) GetA6() string

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

func (*CivicAddress) GetA6Ok

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

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

func (*CivicAddress) GetADDCODE

func (o *CivicAddress) GetADDCODE() string

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

func (*CivicAddress) GetADDCODEOk

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

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

func (*CivicAddress) GetBLD

func (o *CivicAddress) GetBLD() string

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

func (*CivicAddress) GetBLDOk

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

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

func (*CivicAddress) GetCountry

func (o *CivicAddress) GetCountry() string

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

func (*CivicAddress) GetCountryOk

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

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

func (*CivicAddress) GetFLR

func (o *CivicAddress) GetFLR() string

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

func (*CivicAddress) GetFLROk

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

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

func (*CivicAddress) GetHNO

func (o *CivicAddress) GetHNO() string

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

func (*CivicAddress) GetHNOOk

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

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

func (*CivicAddress) GetHNS

func (o *CivicAddress) GetHNS() string

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

func (*CivicAddress) GetHNSOk

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

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

func (*CivicAddress) GetLMK

func (o *CivicAddress) GetLMK() string

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

func (*CivicAddress) GetLMKOk

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

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

func (*CivicAddress) GetLOC

func (o *CivicAddress) GetLOC() string

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

func (*CivicAddress) GetLOCOk

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

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

func (*CivicAddress) GetMethod

func (o *CivicAddress) GetMethod() string

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

func (*CivicAddress) GetMethodOk

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

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

func (*CivicAddress) GetNAM

func (o *CivicAddress) GetNAM() string

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

func (*CivicAddress) GetNAMOk

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

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

func (*CivicAddress) GetPC

func (o *CivicAddress) GetPC() string

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

func (*CivicAddress) GetPCN

func (o *CivicAddress) GetPCN() string

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

func (*CivicAddress) GetPCNOk

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

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

func (*CivicAddress) GetPCOk

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

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

func (*CivicAddress) GetPLC

func (o *CivicAddress) GetPLC() string

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

func (*CivicAddress) GetPLCOk

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

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

func (*CivicAddress) GetPOBOX

func (o *CivicAddress) GetPOBOX() string

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

func (*CivicAddress) GetPOBOXOk

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

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

func (*CivicAddress) GetPOD

func (o *CivicAddress) GetPOD() string

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

func (*CivicAddress) GetPODOk

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

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

func (*CivicAddress) GetPOM

func (o *CivicAddress) GetPOM() string

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

func (*CivicAddress) GetPOMOk

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

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

func (*CivicAddress) GetPRD

func (o *CivicAddress) GetPRD() string

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

func (*CivicAddress) GetPRDOk

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

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

func (*CivicAddress) GetPRM

func (o *CivicAddress) GetPRM() string

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

func (*CivicAddress) GetPRMOk

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

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

func (*CivicAddress) GetProvidedBy

func (o *CivicAddress) GetProvidedBy() string

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

func (*CivicAddress) GetProvidedByOk

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

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

func (*CivicAddress) GetRD

func (o *CivicAddress) GetRD() string

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

func (*CivicAddress) GetRDBR

func (o *CivicAddress) GetRDBR() string

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

func (*CivicAddress) GetRDBROk

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

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

func (*CivicAddress) GetRDOk

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

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

func (*CivicAddress) GetRDSEC

func (o *CivicAddress) GetRDSEC() string

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

func (*CivicAddress) GetRDSECOk

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

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

func (*CivicAddress) GetRDSUBBR

func (o *CivicAddress) GetRDSUBBR() string

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

func (*CivicAddress) GetRDSUBBROk

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

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

func (*CivicAddress) GetROOM

func (o *CivicAddress) GetROOM() string

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

func (*CivicAddress) GetROOMOk

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

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

func (*CivicAddress) GetSEAT

func (o *CivicAddress) GetSEAT() string

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

func (*CivicAddress) GetSEATOk

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

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

func (*CivicAddress) GetSTS

func (o *CivicAddress) GetSTS() string

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

func (*CivicAddress) GetSTSOk

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

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

func (*CivicAddress) GetUNIT

func (o *CivicAddress) GetUNIT() string

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

func (*CivicAddress) GetUNITOk

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

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

func (*CivicAddress) GetUsageRules

func (o *CivicAddress) GetUsageRules() string

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

func (*CivicAddress) GetUsageRulesOk

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

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

func (*CivicAddress) HasA1

func (o *CivicAddress) HasA1() bool

HasA1 returns a boolean if a field has been set.

func (*CivicAddress) HasA2

func (o *CivicAddress) HasA2() bool

HasA2 returns a boolean if a field has been set.

func (*CivicAddress) HasA3

func (o *CivicAddress) HasA3() bool

HasA3 returns a boolean if a field has been set.

func (*CivicAddress) HasA4

func (o *CivicAddress) HasA4() bool

HasA4 returns a boolean if a field has been set.

func (*CivicAddress) HasA5

func (o *CivicAddress) HasA5() bool

HasA5 returns a boolean if a field has been set.

func (*CivicAddress) HasA6

func (o *CivicAddress) HasA6() bool

HasA6 returns a boolean if a field has been set.

func (*CivicAddress) HasADDCODE

func (o *CivicAddress) HasADDCODE() bool

HasADDCODE returns a boolean if a field has been set.

func (*CivicAddress) HasBLD

func (o *CivicAddress) HasBLD() bool

HasBLD returns a boolean if a field has been set.

func (*CivicAddress) HasCountry

func (o *CivicAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*CivicAddress) HasFLR

func (o *CivicAddress) HasFLR() bool

HasFLR returns a boolean if a field has been set.

func (*CivicAddress) HasHNO

func (o *CivicAddress) HasHNO() bool

HasHNO returns a boolean if a field has been set.

func (*CivicAddress) HasHNS

func (o *CivicAddress) HasHNS() bool

HasHNS returns a boolean if a field has been set.

func (*CivicAddress) HasLMK

func (o *CivicAddress) HasLMK() bool

HasLMK returns a boolean if a field has been set.

func (*CivicAddress) HasLOC

func (o *CivicAddress) HasLOC() bool

HasLOC returns a boolean if a field has been set.

func (*CivicAddress) HasMethod

func (o *CivicAddress) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*CivicAddress) HasNAM

func (o *CivicAddress) HasNAM() bool

HasNAM returns a boolean if a field has been set.

func (*CivicAddress) HasPC

func (o *CivicAddress) HasPC() bool

HasPC returns a boolean if a field has been set.

func (*CivicAddress) HasPCN

func (o *CivicAddress) HasPCN() bool

HasPCN returns a boolean if a field has been set.

func (*CivicAddress) HasPLC

func (o *CivicAddress) HasPLC() bool

HasPLC returns a boolean if a field has been set.

func (*CivicAddress) HasPOBOX

func (o *CivicAddress) HasPOBOX() bool

HasPOBOX returns a boolean if a field has been set.

func (*CivicAddress) HasPOD

func (o *CivicAddress) HasPOD() bool

HasPOD returns a boolean if a field has been set.

func (*CivicAddress) HasPOM

func (o *CivicAddress) HasPOM() bool

HasPOM returns a boolean if a field has been set.

func (*CivicAddress) HasPRD

func (o *CivicAddress) HasPRD() bool

HasPRD returns a boolean if a field has been set.

func (*CivicAddress) HasPRM

func (o *CivicAddress) HasPRM() bool

HasPRM returns a boolean if a field has been set.

func (*CivicAddress) HasProvidedBy

func (o *CivicAddress) HasProvidedBy() bool

HasProvidedBy returns a boolean if a field has been set.

func (*CivicAddress) HasRD

func (o *CivicAddress) HasRD() bool

HasRD returns a boolean if a field has been set.

func (*CivicAddress) HasRDBR

func (o *CivicAddress) HasRDBR() bool

HasRDBR returns a boolean if a field has been set.

func (*CivicAddress) HasRDSEC

func (o *CivicAddress) HasRDSEC() bool

HasRDSEC returns a boolean if a field has been set.

func (*CivicAddress) HasRDSUBBR

func (o *CivicAddress) HasRDSUBBR() bool

HasRDSUBBR returns a boolean if a field has been set.

func (*CivicAddress) HasROOM

func (o *CivicAddress) HasROOM() bool

HasROOM returns a boolean if a field has been set.

func (*CivicAddress) HasSEAT

func (o *CivicAddress) HasSEAT() bool

HasSEAT returns a boolean if a field has been set.

func (*CivicAddress) HasSTS

func (o *CivicAddress) HasSTS() bool

HasSTS returns a boolean if a field has been set.

func (*CivicAddress) HasUNIT

func (o *CivicAddress) HasUNIT() bool

HasUNIT returns a boolean if a field has been set.

func (*CivicAddress) HasUsageRules

func (o *CivicAddress) HasUsageRules() bool

HasUsageRules returns a boolean if a field has been set.

func (CivicAddress) MarshalJSON

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

func (*CivicAddress) SetA1

func (o *CivicAddress) SetA1(v string)

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

func (*CivicAddress) SetA2

func (o *CivicAddress) SetA2(v string)

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

func (*CivicAddress) SetA3

func (o *CivicAddress) SetA3(v string)

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

func (*CivicAddress) SetA4

func (o *CivicAddress) SetA4(v string)

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

func (*CivicAddress) SetA5

func (o *CivicAddress) SetA5(v string)

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

func (*CivicAddress) SetA6

func (o *CivicAddress) SetA6(v string)

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

func (*CivicAddress) SetADDCODE

func (o *CivicAddress) SetADDCODE(v string)

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

func (*CivicAddress) SetBLD

func (o *CivicAddress) SetBLD(v string)

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

func (*CivicAddress) SetCountry

func (o *CivicAddress) SetCountry(v string)

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

func (*CivicAddress) SetFLR

func (o *CivicAddress) SetFLR(v string)

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

func (*CivicAddress) SetHNO

func (o *CivicAddress) SetHNO(v string)

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

func (*CivicAddress) SetHNS

func (o *CivicAddress) SetHNS(v string)

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

func (*CivicAddress) SetLMK

func (o *CivicAddress) SetLMK(v string)

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

func (*CivicAddress) SetLOC

func (o *CivicAddress) SetLOC(v string)

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

func (*CivicAddress) SetMethod

func (o *CivicAddress) SetMethod(v string)

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

func (*CivicAddress) SetNAM

func (o *CivicAddress) SetNAM(v string)

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

func (*CivicAddress) SetPC

func (o *CivicAddress) SetPC(v string)

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

func (*CivicAddress) SetPCN

func (o *CivicAddress) SetPCN(v string)

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

func (*CivicAddress) SetPLC

func (o *CivicAddress) SetPLC(v string)

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

func (*CivicAddress) SetPOBOX

func (o *CivicAddress) SetPOBOX(v string)

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

func (*CivicAddress) SetPOD

func (o *CivicAddress) SetPOD(v string)

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

func (*CivicAddress) SetPOM

func (o *CivicAddress) SetPOM(v string)

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

func (*CivicAddress) SetPRD

func (o *CivicAddress) SetPRD(v string)

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

func (*CivicAddress) SetPRM

func (o *CivicAddress) SetPRM(v string)

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

func (*CivicAddress) SetProvidedBy

func (o *CivicAddress) SetProvidedBy(v string)

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

func (*CivicAddress) SetRD

func (o *CivicAddress) SetRD(v string)

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

func (*CivicAddress) SetRDBR

func (o *CivicAddress) SetRDBR(v string)

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

func (*CivicAddress) SetRDSEC

func (o *CivicAddress) SetRDSEC(v string)

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

func (*CivicAddress) SetRDSUBBR

func (o *CivicAddress) SetRDSUBBR(v string)

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

func (*CivicAddress) SetROOM

func (o *CivicAddress) SetROOM(v string)

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

func (*CivicAddress) SetSEAT

func (o *CivicAddress) SetSEAT(v string)

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

func (*CivicAddress) SetSTS

func (o *CivicAddress) SetSTS(v string)

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

func (*CivicAddress) SetUNIT

func (o *CivicAddress) SetUNIT(v string)

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

func (*CivicAddress) SetUsageRules

func (o *CivicAddress) SetUsageRules(v string)

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

func (CivicAddress) ToMap

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type Ecgi

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

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

func NewEcgi

func NewEcgi(plmnId PlmnId, eutraCellId string) *Ecgi

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

func NewEcgiWithDefaults

func NewEcgiWithDefaults() *Ecgi

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

func (*Ecgi) GetEutraCellId

func (o *Ecgi) GetEutraCellId() string

GetEutraCellId returns the EutraCellId field value

func (*Ecgi) GetEutraCellIdOk

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

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

func (*Ecgi) GetNid

func (o *Ecgi) GetNid() string

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

func (*Ecgi) GetNidOk

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

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

func (*Ecgi) GetPlmnId

func (o *Ecgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Ecgi) GetPlmnIdOk

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

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

func (*Ecgi) HasNid

func (o *Ecgi) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Ecgi) MarshalJSON

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

func (*Ecgi) SetEutraCellId

func (o *Ecgi) SetEutraCellId(v string)

SetEutraCellId sets field value

func (*Ecgi) SetNid

func (o *Ecgi) SetNid(v string)

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

func (*Ecgi) SetPlmnId

func (o *Ecgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Ecgi) ToMap

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

type EllipsoidArc

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

EllipsoidArc Ellipsoid Arc.

func NewEllipsoidArc

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

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

func NewEllipsoidArcWithDefaults

func NewEllipsoidArcWithDefaults() *EllipsoidArc

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

func (*EllipsoidArc) GetConfidence

func (o *EllipsoidArc) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*EllipsoidArc) GetConfidenceOk

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

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

func (*EllipsoidArc) GetIncludedAngle

func (o *EllipsoidArc) GetIncludedAngle() int32

GetIncludedAngle returns the IncludedAngle field value

func (*EllipsoidArc) GetIncludedAngleOk

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

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

func (*EllipsoidArc) GetInnerRadius

func (o *EllipsoidArc) GetInnerRadius() int32

GetInnerRadius returns the InnerRadius field value

func (*EllipsoidArc) GetInnerRadiusOk

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

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

func (*EllipsoidArc) GetOffsetAngle

func (o *EllipsoidArc) GetOffsetAngle() int32

GetOffsetAngle returns the OffsetAngle field value

func (*EllipsoidArc) GetOffsetAngleOk

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

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

func (*EllipsoidArc) GetPoint

func (o *EllipsoidArc) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*EllipsoidArc) GetPointOk

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

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

func (*EllipsoidArc) GetUncertaintyRadius

func (o *EllipsoidArc) GetUncertaintyRadius() float32

GetUncertaintyRadius returns the UncertaintyRadius field value

func (*EllipsoidArc) GetUncertaintyRadiusOk

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

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

func (EllipsoidArc) MarshalJSON

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

func (*EllipsoidArc) SetConfidence

func (o *EllipsoidArc) SetConfidence(v int32)

SetConfidence sets field value

func (*EllipsoidArc) SetIncludedAngle

func (o *EllipsoidArc) SetIncludedAngle(v int32)

SetIncludedAngle sets field value

func (*EllipsoidArc) SetInnerRadius

func (o *EllipsoidArc) SetInnerRadius(v int32)

SetInnerRadius sets field value

func (*EllipsoidArc) SetOffsetAngle

func (o *EllipsoidArc) SetOffsetAngle(v int32)

SetOffsetAngle sets field value

func (*EllipsoidArc) SetPoint

func (o *EllipsoidArc) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (*EllipsoidArc) SetUncertaintyRadius

func (o *EllipsoidArc) SetUncertaintyRadius(v float32)

SetUncertaintyRadius sets field value

func (EllipsoidArc) ToMap

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

type EllipsoidArcAllOf

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

EllipsoidArcAllOf struct for EllipsoidArcAllOf

func NewEllipsoidArcAllOf

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

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

func NewEllipsoidArcAllOfWithDefaults

func NewEllipsoidArcAllOfWithDefaults() *EllipsoidArcAllOf

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

func (*EllipsoidArcAllOf) GetConfidence

func (o *EllipsoidArcAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*EllipsoidArcAllOf) GetConfidenceOk

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

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

func (*EllipsoidArcAllOf) GetIncludedAngle

func (o *EllipsoidArcAllOf) GetIncludedAngle() int32

GetIncludedAngle returns the IncludedAngle field value

func (*EllipsoidArcAllOf) GetIncludedAngleOk

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

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

func (*EllipsoidArcAllOf) GetInnerRadius

func (o *EllipsoidArcAllOf) GetInnerRadius() int32

GetInnerRadius returns the InnerRadius field value

func (*EllipsoidArcAllOf) GetInnerRadiusOk

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

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

func (*EllipsoidArcAllOf) GetOffsetAngle

func (o *EllipsoidArcAllOf) GetOffsetAngle() int32

GetOffsetAngle returns the OffsetAngle field value

func (*EllipsoidArcAllOf) GetOffsetAngleOk

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

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

func (*EllipsoidArcAllOf) GetPoint

GetPoint returns the Point field value

func (*EllipsoidArcAllOf) GetPointOk

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

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

func (*EllipsoidArcAllOf) GetUncertaintyRadius

func (o *EllipsoidArcAllOf) GetUncertaintyRadius() float32

GetUncertaintyRadius returns the UncertaintyRadius field value

func (*EllipsoidArcAllOf) GetUncertaintyRadiusOk

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

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

func (EllipsoidArcAllOf) MarshalJSON

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

func (*EllipsoidArcAllOf) SetConfidence

func (o *EllipsoidArcAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*EllipsoidArcAllOf) SetIncludedAngle

func (o *EllipsoidArcAllOf) SetIncludedAngle(v int32)

SetIncludedAngle sets field value

func (*EllipsoidArcAllOf) SetInnerRadius

func (o *EllipsoidArcAllOf) SetInnerRadius(v int32)

SetInnerRadius sets field value

func (*EllipsoidArcAllOf) SetOffsetAngle

func (o *EllipsoidArcAllOf) SetOffsetAngle(v int32)

SetOffsetAngle sets field value

func (*EllipsoidArcAllOf) SetPoint

SetPoint sets field value

func (*EllipsoidArcAllOf) SetUncertaintyRadius

func (o *EllipsoidArcAllOf) SetUncertaintyRadius(v float32)

SetUncertaintyRadius sets field value

func (EllipsoidArcAllOf) ToMap

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

type EutraLocation

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

EutraLocation Contains the E-UTRA user location.

func NewEutraLocation

func NewEutraLocation(tai Tai, ecgi Ecgi) *EutraLocation

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

func NewEutraLocationWithDefaults

func NewEutraLocationWithDefaults() *EutraLocation

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

func (*EutraLocation) GetAgeOfLocationInformation

func (o *EutraLocation) GetAgeOfLocationInformation() int32

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

func (*EutraLocation) GetAgeOfLocationInformationOk

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

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

func (*EutraLocation) GetEcgi

func (o *EutraLocation) GetEcgi() Ecgi

GetEcgi returns the Ecgi field value

func (*EutraLocation) GetEcgiOk

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

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

func (*EutraLocation) GetGeodeticInformation

func (o *EutraLocation) GetGeodeticInformation() string

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

func (*EutraLocation) GetGeodeticInformationOk

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

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

func (*EutraLocation) GetGeographicalInformation

func (o *EutraLocation) GetGeographicalInformation() string

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

func (*EutraLocation) GetGeographicalInformationOk

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

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

func (*EutraLocation) GetGlobalENbId

func (o *EutraLocation) GetGlobalENbId() GlobalRanNodeId

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

func (*EutraLocation) GetGlobalENbIdOk

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

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

func (*EutraLocation) GetGlobalNgenbId

func (o *EutraLocation) GetGlobalNgenbId() GlobalRanNodeId

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

func (*EutraLocation) GetGlobalNgenbIdOk

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

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

func (*EutraLocation) GetIgnoreEcgi

func (o *EutraLocation) GetIgnoreEcgi() bool

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

func (*EutraLocation) GetIgnoreEcgiOk

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

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

func (*EutraLocation) GetIgnoreTai

func (o *EutraLocation) GetIgnoreTai() bool

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

func (*EutraLocation) GetIgnoreTaiOk

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

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

func (*EutraLocation) GetTai

func (o *EutraLocation) GetTai() Tai

GetTai returns the Tai field value

func (*EutraLocation) GetTaiOk

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

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

func (*EutraLocation) GetUeLocationTimestamp

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

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

func (*EutraLocation) GetUeLocationTimestampOk

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

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

func (*EutraLocation) HasAgeOfLocationInformation

func (o *EutraLocation) HasAgeOfLocationInformation() bool

HasAgeOfLocationInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGeodeticInformation

func (o *EutraLocation) HasGeodeticInformation() bool

HasGeodeticInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGeographicalInformation

func (o *EutraLocation) HasGeographicalInformation() bool

HasGeographicalInformation returns a boolean if a field has been set.

func (*EutraLocation) HasGlobalENbId

func (o *EutraLocation) HasGlobalENbId() bool

HasGlobalENbId returns a boolean if a field has been set.

func (*EutraLocation) HasGlobalNgenbId

func (o *EutraLocation) HasGlobalNgenbId() bool

HasGlobalNgenbId returns a boolean if a field has been set.

func (*EutraLocation) HasIgnoreEcgi

func (o *EutraLocation) HasIgnoreEcgi() bool

HasIgnoreEcgi returns a boolean if a field has been set.

func (*EutraLocation) HasIgnoreTai

func (o *EutraLocation) HasIgnoreTai() bool

HasIgnoreTai returns a boolean if a field has been set.

func (*EutraLocation) HasUeLocationTimestamp

func (o *EutraLocation) HasUeLocationTimestamp() bool

HasUeLocationTimestamp returns a boolean if a field has been set.

func (EutraLocation) MarshalJSON

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

func (*EutraLocation) SetAgeOfLocationInformation

func (o *EutraLocation) SetAgeOfLocationInformation(v int32)

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

func (*EutraLocation) SetEcgi

func (o *EutraLocation) SetEcgi(v Ecgi)

SetEcgi sets field value

func (*EutraLocation) SetGeodeticInformation

func (o *EutraLocation) SetGeodeticInformation(v string)

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

func (*EutraLocation) SetGeographicalInformation

func (o *EutraLocation) SetGeographicalInformation(v string)

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

func (*EutraLocation) SetGlobalENbId

func (o *EutraLocation) SetGlobalENbId(v GlobalRanNodeId)

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

func (*EutraLocation) SetGlobalNgenbId

func (o *EutraLocation) SetGlobalNgenbId(v GlobalRanNodeId)

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

func (*EutraLocation) SetIgnoreEcgi

func (o *EutraLocation) SetIgnoreEcgi(v bool)

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

func (*EutraLocation) SetIgnoreTai

func (o *EutraLocation) SetIgnoreTai(v bool)

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

func (*EutraLocation) SetTai

func (o *EutraLocation) SetTai(v Tai)

SetTai sets field value

func (*EutraLocation) SetUeLocationTimestamp

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

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

func (EutraLocation) ToMap

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

type ExternalClientType

type ExternalClientType struct {
	String *string
}

ExternalClientType Indicates types of External Clients.

func (*ExternalClientType) MarshalJSON

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

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

func (*ExternalClientType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type GADShape

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

GADShape Common base type for GAD shapes.

func NewGADShape

func NewGADShape(shape SupportedGADShapes) *GADShape

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

func NewGADShapeWithDefaults

func NewGADShapeWithDefaults() *GADShape

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

func (*GADShape) GetShape

func (o *GADShape) GetShape() SupportedGADShapes

GetShape returns the Shape field value

func (*GADShape) GetShapeOk

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

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

func (GADShape) MarshalJSON

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

func (*GADShape) SetShape

func (o *GADShape) SetShape(v SupportedGADShapes)

SetShape sets field value

func (GADShape) ToMap

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

type GNbId

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

GNbId Provides the G-NB identifier.

func NewGNbId

func NewGNbId(bitLength int32, gNBValue string) *GNbId

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

func NewGNbIdWithDefaults

func NewGNbIdWithDefaults() *GNbId

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

func (*GNbId) GetBitLength

func (o *GNbId) GetBitLength() int32

GetBitLength returns the BitLength field value

func (*GNbId) GetBitLengthOk

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

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

func (*GNbId) GetGNBValue

func (o *GNbId) GetGNBValue() string

GetGNBValue returns the GNBValue field value

func (*GNbId) GetGNBValueOk

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

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

func (GNbId) MarshalJSON

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

func (*GNbId) SetBitLength

func (o *GNbId) SetBitLength(v int32)

SetBitLength sets field value

func (*GNbId) SetGNBValue

func (o *GNbId) SetGNBValue(v string)

SetGNBValue sets field value

func (GNbId) ToMap

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

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GeographicArea

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

GeographicArea Geographic area specified by different shape.

func (*GeographicArea) MarshalJSON

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

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

func (*GeographicArea) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type GeographicalCoordinates

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

GeographicalCoordinates Geographical coordinates.

func NewGeographicalCoordinates

func NewGeographicalCoordinates(lon float64, lat float64) *GeographicalCoordinates

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

func NewGeographicalCoordinatesWithDefaults

func NewGeographicalCoordinatesWithDefaults() *GeographicalCoordinates

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

func (*GeographicalCoordinates) GetLat

func (o *GeographicalCoordinates) GetLat() float64

GetLat returns the Lat field value

func (*GeographicalCoordinates) GetLatOk

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

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

func (*GeographicalCoordinates) GetLon

func (o *GeographicalCoordinates) GetLon() float64

GetLon returns the Lon field value

func (*GeographicalCoordinates) GetLonOk

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

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

func (GeographicalCoordinates) MarshalJSON

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

func (*GeographicalCoordinates) SetLat

func (o *GeographicalCoordinates) SetLat(v float64)

SetLat sets field value

func (*GeographicalCoordinates) SetLon

func (o *GeographicalCoordinates) SetLon(v float64)

SetLon sets field value

func (GeographicalCoordinates) ToMap

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

type GeraLocation

type GeraLocation struct {
	Interface *interface{}
}

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

func InterfaceAsGeraLocation

func InterfaceAsGeraLocation(v *interface{}) GeraLocation

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

func (*GeraLocation) GetActualInstance

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

Get the actual instance

func (GeraLocation) MarshalJSON

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

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

func (*GeraLocation) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type GlobalRanNodeId

type GlobalRanNodeId struct {
	Interface *interface{}
}

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

func InterfaceAsGlobalRanNodeId

func InterfaceAsGlobalRanNodeId(v *interface{}) GlobalRanNodeId

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

func (*GlobalRanNodeId) GetActualInstance

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

Get the actual instance

func (GlobalRanNodeId) MarshalJSON

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

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

func (*GlobalRanNodeId) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type GnssId

type GnssId struct {
	String *string
}

GnssId Global Navigation Satellite System (GNSS) ID.

func (*GnssId) MarshalJSON

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

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

func (*GnssId) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type GnssPositioningMethodAndUsage

type GnssPositioningMethodAndUsage struct {
	Mode  PositioningMode `json:"mode"`
	Gnss  GnssId          `json:"gnss"`
	Usage Usage           `json:"usage"`
}

GnssPositioningMethodAndUsage Indicates the usage of a Global Navigation Satellite System (GNSS) positioning method.

func NewGnssPositioningMethodAndUsage

func NewGnssPositioningMethodAndUsage(mode PositioningMode, gnss GnssId, usage Usage) *GnssPositioningMethodAndUsage

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

func NewGnssPositioningMethodAndUsageWithDefaults

func NewGnssPositioningMethodAndUsageWithDefaults() *GnssPositioningMethodAndUsage

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

func (*GnssPositioningMethodAndUsage) GetGnss

GetGnss returns the Gnss field value

func (*GnssPositioningMethodAndUsage) GetGnssOk

func (o *GnssPositioningMethodAndUsage) GetGnssOk() (*GnssId, bool)

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

func (*GnssPositioningMethodAndUsage) GetMode

GetMode returns the Mode field value

func (*GnssPositioningMethodAndUsage) GetModeOk

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

func (*GnssPositioningMethodAndUsage) GetUsage

func (o *GnssPositioningMethodAndUsage) GetUsage() Usage

GetUsage returns the Usage field value

func (*GnssPositioningMethodAndUsage) GetUsageOk

func (o *GnssPositioningMethodAndUsage) GetUsageOk() (*Usage, bool)

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

func (GnssPositioningMethodAndUsage) MarshalJSON

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

func (*GnssPositioningMethodAndUsage) SetGnss

func (o *GnssPositioningMethodAndUsage) SetGnss(v GnssId)

SetGnss sets field value

func (*GnssPositioningMethodAndUsage) SetMode

SetMode sets field value

func (*GnssPositioningMethodAndUsage) SetUsage

func (o *GnssPositioningMethodAndUsage) SetUsage(v Usage)

SetUsage sets field value

func (GnssPositioningMethodAndUsage) ToMap

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

type Guami

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

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

func NewGuami

func NewGuami(plmnId PlmnIdNid, amfId string) *Guami

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

func NewGuamiWithDefaults

func NewGuamiWithDefaults() *Guami

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

func (*Guami) GetAmfId

func (o *Guami) GetAmfId() string

GetAmfId returns the AmfId field value

func (*Guami) GetAmfIdOk

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

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

func (*Guami) GetPlmnId

func (o *Guami) GetPlmnId() PlmnIdNid

GetPlmnId returns the PlmnId field value

func (*Guami) GetPlmnIdOk

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

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

func (Guami) MarshalJSON

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

func (*Guami) SetAmfId

func (o *Guami) SetAmfId(v string)

SetAmfId sets field value

func (*Guami) SetPlmnId

func (o *Guami) SetPlmnId(v PlmnIdNid)

SetPlmnId sets field value

func (Guami) ToMap

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

type HfcNodeId

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

HfcNodeId REpresents the HFC Node Identifer received over NGAP.

func NewHfcNodeId

func NewHfcNodeId(hfcNId string) *HfcNodeId

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

func NewHfcNodeIdWithDefaults

func NewHfcNodeIdWithDefaults() *HfcNodeId

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

func (*HfcNodeId) GetHfcNId

func (o *HfcNodeId) GetHfcNId() string

GetHfcNId returns the HfcNId field value

func (*HfcNodeId) GetHfcNIdOk

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

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

func (HfcNodeId) MarshalJSON

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

func (*HfcNodeId) SetHfcNId

func (o *HfcNodeId) SetHfcNId(v string)

SetHfcNId sets field value

func (HfcNodeId) ToMap

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

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

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)

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)

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)

type IndividualUEContextDocumentApiService

type IndividualUEContextDocumentApiService service

IndividualUEContextDocumentApiService IndividualUEContextDocumentApi service

func (*IndividualUEContextDocumentApiService) CancelLocation

CancelLocation Namf_Location CancelLocation service operation

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

func (*IndividualUEContextDocumentApiService) CancelLocationExecute

Execute executes the request

func (*IndividualUEContextDocumentApiService) ProvideLocationInfo

ProvideLocationInfo Namf_Location ProvideLocationInfo service Operation

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

func (*IndividualUEContextDocumentApiService) ProvideLocationInfoExecute

Execute executes the request

@return ProvideLocInfo

func (*IndividualUEContextDocumentApiService) ProvidePositioningInfo

ProvidePositioningInfo Namf_Location ProvidePositioningInfo service Operation

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

func (*IndividualUEContextDocumentApiService) ProvidePositioningInfoExecute

Execute executes the request

@return ProvidePosInfo

type InvalidParam

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

InvalidParam It contains an invalid parameter and a related description.

func NewInvalidParam

func NewInvalidParam(param string) *InvalidParam

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

func NewInvalidParamWithDefaults

func NewInvalidParamWithDefaults() *InvalidParam

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

func (*InvalidParam) GetParam

func (o *InvalidParam) GetParam() string

GetParam returns the Param field value

func (*InvalidParam) GetParamOk

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

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

func (*InvalidParam) GetReason

func (o *InvalidParam) GetReason() string

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

func (*InvalidParam) GetReasonOk

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

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

func (*InvalidParam) HasReason

func (o *InvalidParam) HasReason() bool

HasReason returns a boolean if a field has been set.

func (InvalidParam) MarshalJSON

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

func (*InvalidParam) SetParam

func (o *InvalidParam) SetParam(v string)

SetParam sets field value

func (*InvalidParam) SetReason

func (o *InvalidParam) SetReason(v string)

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

func (InvalidParam) ToMap

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

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

type LcsPriority struct {
	String *string
}

LcsPriority Indicates priority of the LCS client.

func (*LcsPriority) MarshalJSON

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

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

func (*LcsPriority) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LcsQosClass

type LcsQosClass struct {
	String *string
}

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 LcsServiceAuth

type LcsServiceAuth struct {
	String *string
}

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

func (*LcsServiceAuth) MarshalJSON

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

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

func (*LcsServiceAuth) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LdrType

type LdrType struct {
	String *string
}

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 LineType

type LineType struct {
	String *string
}

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

func (*LineType) MarshalJSON

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

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

func (*LineType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Local2dPointUncertaintyEllipse

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

Local2dPointUncertaintyEllipse Local 2D point with uncertainty ellipse

func NewLocal2dPointUncertaintyEllipse

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

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

func NewLocal2dPointUncertaintyEllipseWithDefaults

func NewLocal2dPointUncertaintyEllipseWithDefaults() *Local2dPointUncertaintyEllipse

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

func (*Local2dPointUncertaintyEllipse) GetConfidence

func (o *Local2dPointUncertaintyEllipse) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local2dPointUncertaintyEllipse) GetConfidenceOk

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

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

func (*Local2dPointUncertaintyEllipse) GetLocalOrigin

func (o *Local2dPointUncertaintyEllipse) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local2dPointUncertaintyEllipse) GetLocalOriginOk

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

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

func (*Local2dPointUncertaintyEllipse) GetPoint

GetPoint returns the Point field value

func (*Local2dPointUncertaintyEllipse) GetPointOk

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

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipse) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipseOk

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

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

func (Local2dPointUncertaintyEllipse) MarshalJSON

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

func (*Local2dPointUncertaintyEllipse) SetConfidence

func (o *Local2dPointUncertaintyEllipse) SetConfidence(v int32)

SetConfidence sets field value

func (*Local2dPointUncertaintyEllipse) SetLocalOrigin

func (o *Local2dPointUncertaintyEllipse) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local2dPointUncertaintyEllipse) SetPoint

SetPoint sets field value

func (*Local2dPointUncertaintyEllipse) SetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipse) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (Local2dPointUncertaintyEllipse) ToMap

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

type Local2dPointUncertaintyEllipseAllOf

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

Local2dPointUncertaintyEllipseAllOf struct for Local2dPointUncertaintyEllipseAllOf

func NewLocal2dPointUncertaintyEllipseAllOf

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

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

func NewLocal2dPointUncertaintyEllipseAllOfWithDefaults

func NewLocal2dPointUncertaintyEllipseAllOfWithDefaults() *Local2dPointUncertaintyEllipseAllOf

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

func (*Local2dPointUncertaintyEllipseAllOf) GetConfidence

func (o *Local2dPointUncertaintyEllipseAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local2dPointUncertaintyEllipseAllOf) GetConfidenceOk

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

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

func (*Local2dPointUncertaintyEllipseAllOf) GetLocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local2dPointUncertaintyEllipseAllOf) GetLocalOriginOk

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

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

func (*Local2dPointUncertaintyEllipseAllOf) GetPoint

GetPoint returns the Point field value

func (*Local2dPointUncertaintyEllipseAllOf) GetPointOk

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

func (*Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipseOk

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

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

func (Local2dPointUncertaintyEllipseAllOf) MarshalJSON

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

func (*Local2dPointUncertaintyEllipseAllOf) SetConfidence

func (o *Local2dPointUncertaintyEllipseAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*Local2dPointUncertaintyEllipseAllOf) SetLocalOrigin

func (o *Local2dPointUncertaintyEllipseAllOf) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local2dPointUncertaintyEllipseAllOf) SetPoint

SetPoint sets field value

func (*Local2dPointUncertaintyEllipseAllOf) SetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipseAllOf) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (Local2dPointUncertaintyEllipseAllOf) ToMap

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

type Local3dPointUncertaintyEllipsoid

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

Local3dPointUncertaintyEllipsoid Local 3D point with uncertainty ellipsoid

func NewLocal3dPointUncertaintyEllipsoid

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

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

func NewLocal3dPointUncertaintyEllipsoidWithDefaults

func NewLocal3dPointUncertaintyEllipsoidWithDefaults() *Local3dPointUncertaintyEllipsoid

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

func (*Local3dPointUncertaintyEllipsoid) GetConfidence

func (o *Local3dPointUncertaintyEllipsoid) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local3dPointUncertaintyEllipsoid) GetConfidenceOk

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

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

func (*Local3dPointUncertaintyEllipsoid) GetLocalOrigin

func (o *Local3dPointUncertaintyEllipsoid) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local3dPointUncertaintyEllipsoid) GetLocalOriginOk

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

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

func (*Local3dPointUncertaintyEllipsoid) GetPoint

GetPoint returns the Point field value

func (*Local3dPointUncertaintyEllipsoid) GetPointOk

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

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid() UncertaintyEllipsoid

GetUncertaintyEllipsoid returns the UncertaintyEllipsoid field value

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoidOk

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

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

func (Local3dPointUncertaintyEllipsoid) MarshalJSON

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

func (*Local3dPointUncertaintyEllipsoid) SetConfidence

func (o *Local3dPointUncertaintyEllipsoid) SetConfidence(v int32)

SetConfidence sets field value

func (*Local3dPointUncertaintyEllipsoid) SetLocalOrigin

func (o *Local3dPointUncertaintyEllipsoid) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local3dPointUncertaintyEllipsoid) SetPoint

SetPoint sets field value

func (*Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid(v UncertaintyEllipsoid)

SetUncertaintyEllipsoid sets field value

func (Local3dPointUncertaintyEllipsoid) ToMap

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

type Local3dPointUncertaintyEllipsoidAllOf

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

Local3dPointUncertaintyEllipsoidAllOf struct for Local3dPointUncertaintyEllipsoidAllOf

func NewLocal3dPointUncertaintyEllipsoidAllOf

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

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

func NewLocal3dPointUncertaintyEllipsoidAllOfWithDefaults

func NewLocal3dPointUncertaintyEllipsoidAllOfWithDefaults() *Local3dPointUncertaintyEllipsoidAllOf

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

func (*Local3dPointUncertaintyEllipsoidAllOf) GetConfidence

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetConfidenceOk

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

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

func (*Local3dPointUncertaintyEllipsoidAllOf) GetLocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetLocalOriginOk

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

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

func (*Local3dPointUncertaintyEllipsoidAllOf) GetPoint

GetPoint returns the Point field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetPointOk

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

func (*Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoid() UncertaintyEllipsoid

GetUncertaintyEllipsoid returns the UncertaintyEllipsoid field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoidOk

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

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

func (Local3dPointUncertaintyEllipsoidAllOf) MarshalJSON

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

func (*Local3dPointUncertaintyEllipsoidAllOf) SetConfidence

func (o *Local3dPointUncertaintyEllipsoidAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*Local3dPointUncertaintyEllipsoidAllOf) SetLocalOrigin

SetLocalOrigin sets field value

func (*Local3dPointUncertaintyEllipsoidAllOf) SetPoint

SetPoint sets field value

func (*Local3dPointUncertaintyEllipsoidAllOf) SetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoidAllOf) SetUncertaintyEllipsoid(v UncertaintyEllipsoid)

SetUncertaintyEllipsoid sets field value

func (Local3dPointUncertaintyEllipsoidAllOf) ToMap

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

type LocalArea

type LocalArea struct {
	Local2dPointUncertaintyEllipse   *Local2dPointUncertaintyEllipse
	Local3dPointUncertaintyEllipsoid *Local3dPointUncertaintyEllipsoid
}

LocalArea - Local area specified by different shape

func Local2dPointUncertaintyEllipseAsLocalArea

func Local2dPointUncertaintyEllipseAsLocalArea(v *Local2dPointUncertaintyEllipse) LocalArea

Local2dPointUncertaintyEllipseAsLocalArea is a convenience function that returns Local2dPointUncertaintyEllipse wrapped in LocalArea

func Local3dPointUncertaintyEllipsoidAsLocalArea

func Local3dPointUncertaintyEllipsoidAsLocalArea(v *Local3dPointUncertaintyEllipsoid) LocalArea

Local3dPointUncertaintyEllipsoidAsLocalArea is a convenience function that returns Local3dPointUncertaintyEllipsoid wrapped in LocalArea

func (*LocalArea) GetActualInstance

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

Get the actual instance

func (LocalArea) MarshalJSON

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

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

func (*LocalArea) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type LocalOrigin

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

LocalOrigin Indicates a Local origin in a reference system

func NewLocalOrigin

func NewLocalOrigin() *LocalOrigin

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

func NewLocalOriginWithDefaults

func NewLocalOriginWithDefaults() *LocalOrigin

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

func (*LocalOrigin) GetCoordinateId

func (o *LocalOrigin) GetCoordinateId() string

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

func (*LocalOrigin) GetCoordinateIdOk

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

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

func (*LocalOrigin) GetPoint

func (o *LocalOrigin) GetPoint() GeographicalCoordinates

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

func (*LocalOrigin) GetPointOk

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

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

func (*LocalOrigin) HasCoordinateId

func (o *LocalOrigin) HasCoordinateId() bool

HasCoordinateId returns a boolean if a field has been set.

func (*LocalOrigin) HasPoint

func (o *LocalOrigin) HasPoint() bool

HasPoint returns a boolean if a field has been set.

func (LocalOrigin) MarshalJSON

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

func (*LocalOrigin) SetCoordinateId

func (o *LocalOrigin) SetCoordinateId(v string)

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

func (*LocalOrigin) SetPoint

func (o *LocalOrigin) SetPoint(v GeographicalCoordinates)

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

func (LocalOrigin) ToMap

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

type LocationAreaId

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

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

func NewLocationAreaId

func NewLocationAreaId(plmnId PlmnId, lac string) *LocationAreaId

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

func NewLocationAreaIdWithDefaults

func NewLocationAreaIdWithDefaults() *LocationAreaId

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

func (*LocationAreaId) GetLac

func (o *LocationAreaId) GetLac() string

GetLac returns the Lac field value

func (*LocationAreaId) GetLacOk

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

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

func (*LocationAreaId) GetPlmnId

func (o *LocationAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*LocationAreaId) GetPlmnIdOk

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

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

func (LocationAreaId) MarshalJSON

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

func (*LocationAreaId) SetLac

func (o *LocationAreaId) SetLac(v string)

SetLac sets field value

func (*LocationAreaId) SetPlmnId

func (o *LocationAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (LocationAreaId) ToMap

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

type LocationEvent

type LocationEvent struct {
	String *string
}

LocationEvent Type of events initiating location procedures

func (*LocationEvent) MarshalJSON

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

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

func (*LocationEvent) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type LocationPrivacyVerResult

type LocationPrivacyVerResult struct {
	String *string
}

LocationPrivacyVerResult The result of location privacy verification by UE

func (*LocationPrivacyVerResult) MarshalJSON

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

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

func (*LocationPrivacyVerResult) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

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 {
	String *string
}

LocationType Type of location measurement requested

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 MotionEventInfo

type MotionEventInfo struct {
	// Minimum straight line distance moved by a UE to trigger a motion event report.
	LinearDistance int32           `json:"linearDistance"`
	OccurrenceInfo *OccurrenceInfo `json:"occurrenceInfo,omitempty"`
	// Minimum interval between event reports.
	MinimumInterval *int32 `json:"minimumInterval,omitempty"`
	// Maximum interval between event reports.
	MaximumInterval *int32 `json:"maximumInterval,omitempty"`
	// Maximum time interval between consecutive evaluations by a UE of a trigger event.
	SamplingInterval *int32 `json:"samplingInterval,omitempty"`
	// Maximum duration of event reporting.
	ReportingDuration    *int32 `json:"reportingDuration,omitempty"`
	ReportingLocationReq *bool  `json:"reportingLocationReq,omitempty"`
}

MotionEventInfo Indicates the information of motion based event reporting.

func NewMotionEventInfo

func NewMotionEventInfo(linearDistance int32) *MotionEventInfo

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

func NewMotionEventInfoWithDefaults

func NewMotionEventInfoWithDefaults() *MotionEventInfo

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

func (*MotionEventInfo) GetLinearDistance

func (o *MotionEventInfo) GetLinearDistance() int32

GetLinearDistance returns the LinearDistance field value

func (*MotionEventInfo) GetLinearDistanceOk

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

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

func (*MotionEventInfo) GetMaximumInterval

func (o *MotionEventInfo) GetMaximumInterval() int32

GetMaximumInterval returns the MaximumInterval field value if set, zero value otherwise.

func (*MotionEventInfo) GetMaximumIntervalOk

func (o *MotionEventInfo) GetMaximumIntervalOk() (*int32, bool)

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

func (*MotionEventInfo) GetMinimumInterval

func (o *MotionEventInfo) GetMinimumInterval() int32

GetMinimumInterval returns the MinimumInterval field value if set, zero value otherwise.

func (*MotionEventInfo) GetMinimumIntervalOk

func (o *MotionEventInfo) GetMinimumIntervalOk() (*int32, bool)

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

func (*MotionEventInfo) GetOccurrenceInfo

func (o *MotionEventInfo) GetOccurrenceInfo() OccurrenceInfo

GetOccurrenceInfo returns the OccurrenceInfo field value if set, zero value otherwise.

func (*MotionEventInfo) GetOccurrenceInfoOk

func (o *MotionEventInfo) GetOccurrenceInfoOk() (*OccurrenceInfo, bool)

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

func (*MotionEventInfo) GetReportingDuration

func (o *MotionEventInfo) GetReportingDuration() int32

GetReportingDuration returns the ReportingDuration field value if set, zero value otherwise.

func (*MotionEventInfo) GetReportingDurationOk

func (o *MotionEventInfo) GetReportingDurationOk() (*int32, bool)

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

func (*MotionEventInfo) GetReportingLocationReq

func (o *MotionEventInfo) GetReportingLocationReq() bool

GetReportingLocationReq returns the ReportingLocationReq field value if set, zero value otherwise.

func (*MotionEventInfo) GetReportingLocationReqOk

func (o *MotionEventInfo) GetReportingLocationReqOk() (*bool, bool)

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

func (*MotionEventInfo) GetSamplingInterval

func (o *MotionEventInfo) GetSamplingInterval() int32

GetSamplingInterval returns the SamplingInterval field value if set, zero value otherwise.

func (*MotionEventInfo) GetSamplingIntervalOk

func (o *MotionEventInfo) 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 (*MotionEventInfo) HasMaximumInterval

func (o *MotionEventInfo) HasMaximumInterval() bool

HasMaximumInterval returns a boolean if a field has been set.

func (*MotionEventInfo) HasMinimumInterval

func (o *MotionEventInfo) HasMinimumInterval() bool

HasMinimumInterval returns a boolean if a field has been set.

func (*MotionEventInfo) HasOccurrenceInfo

func (o *MotionEventInfo) HasOccurrenceInfo() bool

HasOccurrenceInfo returns a boolean if a field has been set.

func (*MotionEventInfo) HasReportingDuration

func (o *MotionEventInfo) HasReportingDuration() bool

HasReportingDuration returns a boolean if a field has been set.

func (*MotionEventInfo) HasReportingLocationReq

func (o *MotionEventInfo) HasReportingLocationReq() bool

HasReportingLocationReq returns a boolean if a field has been set.

func (*MotionEventInfo) HasSamplingInterval

func (o *MotionEventInfo) HasSamplingInterval() bool

HasSamplingInterval returns a boolean if a field has been set.

func (MotionEventInfo) MarshalJSON

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

func (*MotionEventInfo) SetLinearDistance

func (o *MotionEventInfo) SetLinearDistance(v int32)

SetLinearDistance sets field value

func (*MotionEventInfo) SetMaximumInterval

func (o *MotionEventInfo) SetMaximumInterval(v int32)

SetMaximumInterval gets a reference to the given int32 and assigns it to the MaximumInterval field.

func (*MotionEventInfo) SetMinimumInterval

func (o *MotionEventInfo) SetMinimumInterval(v int32)

SetMinimumInterval gets a reference to the given int32 and assigns it to the MinimumInterval field.

func (*MotionEventInfo) SetOccurrenceInfo

func (o *MotionEventInfo) SetOccurrenceInfo(v OccurrenceInfo)

SetOccurrenceInfo gets a reference to the given OccurrenceInfo and assigns it to the OccurrenceInfo field.

func (*MotionEventInfo) SetReportingDuration

func (o *MotionEventInfo) SetReportingDuration(v int32)

SetReportingDuration gets a reference to the given int32 and assigns it to the ReportingDuration field.

func (*MotionEventInfo) SetReportingLocationReq

func (o *MotionEventInfo) SetReportingLocationReq(v bool)

SetReportingLocationReq gets a reference to the given bool and assigns it to the ReportingLocationReq field.

func (*MotionEventInfo) SetSamplingInterval

func (o *MotionEventInfo) SetSamplingInterval(v int32)

SetSamplingInterval gets a reference to the given int32 and assigns it to the SamplingInterval field.

func (MotionEventInfo) ToMap

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

type N3gaLocation

type N3gaLocation struct {
	N3gppTai *Tai `json:"n3gppTai,omitempty"`
	// This IE shall contain the N3IWF identifier received over NGAP and shall be encoded as a  string of hexadecimal characters. Each character in the string shall take a value of \"0\"  to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant  character representing the 4 most significant bits of the N3IWF ID shall appear first in  the string, and the character representing the 4 least significant bit of the N3IWF ID  shall appear last in the string.
	N3IwfId *string `json:"n3IwfId,omitempty"`
	// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
	UeIpv4Addr *string   `json:"ueIpv4Addr,omitempty"`
	UeIpv6Addr *Ipv6Addr `json:"ueIpv6Addr,omitempty"`
	// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
	PortNumber *int32             `json:"portNumber,omitempty"`
	Protocol   *TransportProtocol `json:"protocol,omitempty"`
	TnapId     *TnapId            `json:"tnapId,omitempty"`
	TwapId     *TwapId            `json:"twapId,omitempty"`
	HfcNodeId  *HfcNodeId         `json:"hfcNodeId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	Gli            *string   `json:"gli,omitempty"`
	W5gbanLineType *LineType `json:"w5gbanLineType,omitempty"`
	// Global Cable Identifier uniquely identifying the connection between the 5G-CRG or FN-CRG to the 5GS. See clause 28.15.4 of 3GPP TS 23.003. This shall be encoded as a string per clause 28.15.4 of 3GPP TS 23.003, and compliant with the syntax specified  in clause 2.2  of IETF RFC 7542 for the username part of a NAI. The GCI value is specified in CableLabs WR-TR-5WWC-ARCH.
	Gci *string `json:"gci,omitempty"`
}

N3gaLocation Contains the Non-3GPP access user location.

func NewN3gaLocation

func NewN3gaLocation() *N3gaLocation

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

func NewN3gaLocationWithDefaults

func NewN3gaLocationWithDefaults() *N3gaLocation

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

func (*N3gaLocation) GetGci

func (o *N3gaLocation) GetGci() string

GetGci returns the Gci field value if set, zero value otherwise.

func (*N3gaLocation) GetGciOk

func (o *N3gaLocation) GetGciOk() (*string, bool)

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

func (*N3gaLocation) GetGli

func (o *N3gaLocation) GetGli() string

GetGli returns the Gli field value if set, zero value otherwise.

func (*N3gaLocation) GetGliOk

func (o *N3gaLocation) GetGliOk() (*string, bool)

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

func (*N3gaLocation) GetHfcNodeId

func (o *N3gaLocation) GetHfcNodeId() HfcNodeId

GetHfcNodeId returns the HfcNodeId field value if set, zero value otherwise.

func (*N3gaLocation) GetHfcNodeIdOk

func (o *N3gaLocation) GetHfcNodeIdOk() (*HfcNodeId, bool)

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

func (*N3gaLocation) GetN3IwfId

func (o *N3gaLocation) GetN3IwfId() string

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

func (*N3gaLocation) GetN3IwfIdOk

func (o *N3gaLocation) GetN3IwfIdOk() (*string, bool)

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

func (*N3gaLocation) GetN3gppTai

func (o *N3gaLocation) GetN3gppTai() Tai

GetN3gppTai returns the N3gppTai field value if set, zero value otherwise.

func (*N3gaLocation) GetN3gppTaiOk

func (o *N3gaLocation) GetN3gppTaiOk() (*Tai, bool)

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

func (*N3gaLocation) GetPortNumber

func (o *N3gaLocation) GetPortNumber() int32

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

func (*N3gaLocation) GetPortNumberOk

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

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

func (*N3gaLocation) GetProtocol

func (o *N3gaLocation) GetProtocol() TransportProtocol

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*N3gaLocation) GetProtocolOk

func (o *N3gaLocation) GetProtocolOk() (*TransportProtocol, bool)

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

func (*N3gaLocation) GetTnapId

func (o *N3gaLocation) GetTnapId() TnapId

GetTnapId returns the TnapId field value if set, zero value otherwise.

func (*N3gaLocation) GetTnapIdOk

func (o *N3gaLocation) GetTnapIdOk() (*TnapId, bool)

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

func (*N3gaLocation) GetTwapId

func (o *N3gaLocation) GetTwapId() TwapId

GetTwapId returns the TwapId field value if set, zero value otherwise.

func (*N3gaLocation) GetTwapIdOk

func (o *N3gaLocation) GetTwapIdOk() (*TwapId, bool)

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

func (*N3gaLocation) GetUeIpv4Addr

func (o *N3gaLocation) GetUeIpv4Addr() string

GetUeIpv4Addr returns the UeIpv4Addr field value if set, zero value otherwise.

func (*N3gaLocation) GetUeIpv4AddrOk

func (o *N3gaLocation) GetUeIpv4AddrOk() (*string, bool)

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

func (*N3gaLocation) GetUeIpv6Addr

func (o *N3gaLocation) GetUeIpv6Addr() Ipv6Addr

GetUeIpv6Addr returns the UeIpv6Addr field value if set, zero value otherwise.

func (*N3gaLocation) GetUeIpv6AddrOk

func (o *N3gaLocation) GetUeIpv6AddrOk() (*Ipv6Addr, bool)

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

func (*N3gaLocation) GetW5gbanLineType

func (o *N3gaLocation) GetW5gbanLineType() LineType

GetW5gbanLineType returns the W5gbanLineType field value if set, zero value otherwise.

func (*N3gaLocation) GetW5gbanLineTypeOk

func (o *N3gaLocation) GetW5gbanLineTypeOk() (*LineType, bool)

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

func (*N3gaLocation) HasGci

func (o *N3gaLocation) HasGci() bool

HasGci returns a boolean if a field has been set.

func (*N3gaLocation) HasGli

func (o *N3gaLocation) HasGli() bool

HasGli returns a boolean if a field has been set.

func (*N3gaLocation) HasHfcNodeId

func (o *N3gaLocation) HasHfcNodeId() bool

HasHfcNodeId returns a boolean if a field has been set.

func (*N3gaLocation) HasN3IwfId

func (o *N3gaLocation) HasN3IwfId() bool

HasN3IwfId returns a boolean if a field has been set.

func (*N3gaLocation) HasN3gppTai

func (o *N3gaLocation) HasN3gppTai() bool

HasN3gppTai returns a boolean if a field has been set.

func (*N3gaLocation) HasPortNumber

func (o *N3gaLocation) HasPortNumber() bool

HasPortNumber returns a boolean if a field has been set.

func (*N3gaLocation) HasProtocol

func (o *N3gaLocation) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*N3gaLocation) HasTnapId

func (o *N3gaLocation) HasTnapId() bool

HasTnapId returns a boolean if a field has been set.

func (*N3gaLocation) HasTwapId

func (o *N3gaLocation) HasTwapId() bool

HasTwapId returns a boolean if a field has been set.

func (*N3gaLocation) HasUeIpv4Addr

func (o *N3gaLocation) HasUeIpv4Addr() bool

HasUeIpv4Addr returns a boolean if a field has been set.

func (*N3gaLocation) HasUeIpv6Addr

func (o *N3gaLocation) HasUeIpv6Addr() bool

HasUeIpv6Addr returns a boolean if a field has been set.

func (*N3gaLocation) HasW5gbanLineType

func (o *N3gaLocation) HasW5gbanLineType() bool

HasW5gbanLineType returns a boolean if a field has been set.

func (N3gaLocation) MarshalJSON

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

func (*N3gaLocation) SetGci

func (o *N3gaLocation) SetGci(v string)

SetGci gets a reference to the given string and assigns it to the Gci field.

func (*N3gaLocation) SetGli

func (o *N3gaLocation) SetGli(v string)

SetGli gets a reference to the given string and assigns it to the Gli field.

func (*N3gaLocation) SetHfcNodeId

func (o *N3gaLocation) SetHfcNodeId(v HfcNodeId)

SetHfcNodeId gets a reference to the given HfcNodeId and assigns it to the HfcNodeId field.

func (*N3gaLocation) SetN3IwfId

func (o *N3gaLocation) SetN3IwfId(v string)

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

func (*N3gaLocation) SetN3gppTai

func (o *N3gaLocation) SetN3gppTai(v Tai)

SetN3gppTai gets a reference to the given Tai and assigns it to the N3gppTai field.

func (*N3gaLocation) SetPortNumber

func (o *N3gaLocation) SetPortNumber(v int32)

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

func (*N3gaLocation) SetProtocol

func (o *N3gaLocation) SetProtocol(v TransportProtocol)

SetProtocol gets a reference to the given TransportProtocol and assigns it to the Protocol field.

func (*N3gaLocation) SetTnapId

func (o *N3gaLocation) SetTnapId(v TnapId)

SetTnapId gets a reference to the given TnapId and assigns it to the TnapId field.

func (*N3gaLocation) SetTwapId

func (o *N3gaLocation) SetTwapId(v TwapId)

SetTwapId gets a reference to the given TwapId and assigns it to the TwapId field.

func (*N3gaLocation) SetUeIpv4Addr

func (o *N3gaLocation) SetUeIpv4Addr(v string)

SetUeIpv4Addr gets a reference to the given string and assigns it to the UeIpv4Addr field.

func (*N3gaLocation) SetUeIpv6Addr

func (o *N3gaLocation) SetUeIpv6Addr(v Ipv6Addr)

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

func (*N3gaLocation) SetW5gbanLineType

func (o *N3gaLocation) SetW5gbanLineType(v LineType)

SetW5gbanLineType gets a reference to the given LineType and assigns it to the W5gbanLineType field.

func (N3gaLocation) ToMap

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

type NFType

type NFType struct {
	String *string
}

NFType NF types known to NRF

func (*NFType) MarshalJSON

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

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

func (*NFType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type Ncgi

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

Ncgi Contains the NCGI (NR Cell Global Identity), as described in 3GPP 23.003

func NewNcgi

func NewNcgi(plmnId PlmnId, nrCellId string) *Ncgi

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

func NewNcgiWithDefaults

func NewNcgiWithDefaults() *Ncgi

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

func (*Ncgi) GetNid

func (o *Ncgi) GetNid() string

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

func (*Ncgi) GetNidOk

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

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

func (*Ncgi) GetNrCellId

func (o *Ncgi) GetNrCellId() string

GetNrCellId returns the NrCellId field value

func (*Ncgi) GetNrCellIdOk

func (o *Ncgi) GetNrCellIdOk() (*string, bool)

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

func (*Ncgi) GetPlmnId

func (o *Ncgi) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Ncgi) GetPlmnIdOk

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

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

func (*Ncgi) HasNid

func (o *Ncgi) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Ncgi) MarshalJSON

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

func (*Ncgi) SetNid

func (o *Ncgi) SetNid(v string)

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

func (*Ncgi) SetNrCellId

func (o *Ncgi) SetNrCellId(v string)

SetNrCellId sets field value

func (*Ncgi) SetPlmnId

func (o *Ncgi) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (Ncgi) ToMap

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

type NotifiedPosInfo

type NotifiedPosInfo struct {
	LocationEvent LocationEvent `json:"locationEvent"`
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,omitempty"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi *string `json:"gpsi,omitempty"`
	// String representing a Permanent Equipment Identifier that may contain - an IMEI or IMEISV, as  specified in clause 6.2 of 3GPP TS 23.003; a MAC address for a 5G-RG or FN-RG via  wireline  access, with an indication that this address cannot be trusted for regulatory purpose if this  address cannot be used as an Equipment Identifier of the FN-RG, as specified in clause 4.7.7  of 3GPP TS23.316. Examples are imei-012345678901234 or imeisv-0123456789012345.
	Pei                   *string         `json:"pei,omitempty"`
	LocationEstimate      *GeographicArea `json:"locationEstimate,omitempty"`
	LocalLocationEstimate *LocalArea      `json:"localLocationEstimate,omitempty"`
	// Indicates value of the age of the location estimate.
	AgeOfLocationEstimate *int32 `json:"ageOfLocationEstimate,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	TimestampOfLocationEstimate *time.Time                      `json:"timestampOfLocationEstimate,omitempty"`
	VelocityEstimate            *VelocityEstimate               `json:"velocityEstimate,omitempty"`
	PositioningDataList         []PositioningMethodAndUsage     `json:"positioningDataList,omitempty"`
	GnssPositioningDataList     []GnssPositioningMethodAndUsage `json:"gnssPositioningDataList,omitempty"`
	Ecgi                        *Ecgi                           `json:"ecgi,omitempty"`
	Ncgi                        *Ncgi                           `json:"ncgi,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	ServingNode *string `json:"servingNode,omitempty"`
	// Fully Qualified Domain Name
	TargetMmeName *string `json:"targetMmeName,omitempty"`
	// Fully Qualified Domain Name
	TargetMmeRealm *string       `json:"targetMmeRealm,omitempty"`
	UtranSrvccInd  *bool         `json:"utranSrvccInd,omitempty"`
	CivicAddress   *CivicAddress `json:"civicAddress,omitempty"`
	// Specifies the measured uncompensated atmospheric pressure.
	BarometricPressure *int32 `json:"barometricPressure,omitempty"`
	// Indicates value of altitude.
	Altitude *float64 `json:"altitude,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	HgmlcCallBackURI *string `json:"hgmlcCallBackURI,omitempty"`
	// LDR Reference.
	LdrReference *string `json:"ldrReference,omitempty"`
	// LMF identification.
	ServingLMFIdentification *string           `json:"servingLMFIdentification,omitempty"`
	TerminationCause         *TerminationCause `json:"terminationCause,omitempty"`
	AchievedQos              *MinorLocationQoS `json:"achievedQos,omitempty"`
	MscServerId              *string           `json:"mscServerId,omitempty"`
}

NotifiedPosInfo Data within EventNotify notification

func NewNotifiedPosInfo

func NewNotifiedPosInfo(locationEvent LocationEvent) *NotifiedPosInfo

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

func NewNotifiedPosInfoWithDefaults

func NewNotifiedPosInfoWithDefaults() *NotifiedPosInfo

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

func (*NotifiedPosInfo) GetAchievedQos

func (o *NotifiedPosInfo) GetAchievedQos() MinorLocationQoS

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

func (*NotifiedPosInfo) GetAchievedQosOk

func (o *NotifiedPosInfo) 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 (*NotifiedPosInfo) GetAgeOfLocationEstimate

func (o *NotifiedPosInfo) GetAgeOfLocationEstimate() int32

GetAgeOfLocationEstimate returns the AgeOfLocationEstimate field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetAgeOfLocationEstimateOk

func (o *NotifiedPosInfo) GetAgeOfLocationEstimateOk() (*int32, bool)

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

func (*NotifiedPosInfo) GetAltitude

func (o *NotifiedPosInfo) GetAltitude() float64

GetAltitude returns the Altitude field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetAltitudeOk

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

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

func (*NotifiedPosInfo) GetBarometricPressure

func (o *NotifiedPosInfo) GetBarometricPressure() int32

GetBarometricPressure returns the BarometricPressure field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetBarometricPressureOk

func (o *NotifiedPosInfo) GetBarometricPressureOk() (*int32, bool)

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

func (*NotifiedPosInfo) GetCivicAddress

func (o *NotifiedPosInfo) GetCivicAddress() CivicAddress

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

func (*NotifiedPosInfo) GetCivicAddressOk

func (o *NotifiedPosInfo) 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 (*NotifiedPosInfo) GetEcgi

func (o *NotifiedPosInfo) GetEcgi() Ecgi

GetEcgi returns the Ecgi field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetEcgiOk

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

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

func (*NotifiedPosInfo) GetGnssPositioningDataList

func (o *NotifiedPosInfo) GetGnssPositioningDataList() []GnssPositioningMethodAndUsage

GetGnssPositioningDataList returns the GnssPositioningDataList field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetGnssPositioningDataListOk

func (o *NotifiedPosInfo) GetGnssPositioningDataListOk() ([]GnssPositioningMethodAndUsage, bool)

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

func (*NotifiedPosInfo) GetGpsi

func (o *NotifiedPosInfo) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetGpsiOk

func (o *NotifiedPosInfo) GetGpsiOk() (*string, bool)

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

func (*NotifiedPosInfo) GetHgmlcCallBackURI

func (o *NotifiedPosInfo) GetHgmlcCallBackURI() string

GetHgmlcCallBackURI returns the HgmlcCallBackURI field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetHgmlcCallBackURIOk

func (o *NotifiedPosInfo) GetHgmlcCallBackURIOk() (*string, bool)

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

func (*NotifiedPosInfo) GetLdrReference

func (o *NotifiedPosInfo) GetLdrReference() string

GetLdrReference returns the LdrReference field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetLdrReferenceOk

func (o *NotifiedPosInfo) GetLdrReferenceOk() (*string, bool)

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

func (*NotifiedPosInfo) GetLocalLocationEstimate

func (o *NotifiedPosInfo) GetLocalLocationEstimate() LocalArea

GetLocalLocationEstimate returns the LocalLocationEstimate field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetLocalLocationEstimateOk

func (o *NotifiedPosInfo) GetLocalLocationEstimateOk() (*LocalArea, bool)

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

func (*NotifiedPosInfo) GetLocationEstimate

func (o *NotifiedPosInfo) GetLocationEstimate() GeographicArea

GetLocationEstimate returns the LocationEstimate field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetLocationEstimateOk

func (o *NotifiedPosInfo) GetLocationEstimateOk() (*GeographicArea, bool)

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

func (*NotifiedPosInfo) GetLocationEvent

func (o *NotifiedPosInfo) GetLocationEvent() LocationEvent

GetLocationEvent returns the LocationEvent field value

func (*NotifiedPosInfo) GetLocationEventOk

func (o *NotifiedPosInfo) GetLocationEventOk() (*LocationEvent, bool)

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

func (*NotifiedPosInfo) GetMscServerId

func (o *NotifiedPosInfo) GetMscServerId() string

GetMscServerId returns the MscServerId field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetMscServerIdOk

func (o *NotifiedPosInfo) GetMscServerIdOk() (*string, bool)

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

func (*NotifiedPosInfo) GetNcgi

func (o *NotifiedPosInfo) GetNcgi() Ncgi

GetNcgi returns the Ncgi field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetNcgiOk

func (o *NotifiedPosInfo) GetNcgiOk() (*Ncgi, bool)

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

func (*NotifiedPosInfo) GetPei

func (o *NotifiedPosInfo) GetPei() string

GetPei returns the Pei field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetPeiOk

func (o *NotifiedPosInfo) GetPeiOk() (*string, bool)

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

func (*NotifiedPosInfo) GetPositioningDataList

func (o *NotifiedPosInfo) GetPositioningDataList() []PositioningMethodAndUsage

GetPositioningDataList returns the PositioningDataList field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetPositioningDataListOk

func (o *NotifiedPosInfo) GetPositioningDataListOk() ([]PositioningMethodAndUsage, bool)

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

func (*NotifiedPosInfo) GetServingLMFIdentification

func (o *NotifiedPosInfo) GetServingLMFIdentification() string

GetServingLMFIdentification returns the ServingLMFIdentification field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetServingLMFIdentificationOk

func (o *NotifiedPosInfo) GetServingLMFIdentificationOk() (*string, bool)

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

func (*NotifiedPosInfo) GetServingNode

func (o *NotifiedPosInfo) GetServingNode() string

GetServingNode returns the ServingNode field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetServingNodeOk

func (o *NotifiedPosInfo) GetServingNodeOk() (*string, bool)

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

func (*NotifiedPosInfo) GetSupi

func (o *NotifiedPosInfo) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetSupiOk

func (o *NotifiedPosInfo) GetSupiOk() (*string, bool)

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

func (*NotifiedPosInfo) GetTargetMmeName

func (o *NotifiedPosInfo) GetTargetMmeName() string

GetTargetMmeName returns the TargetMmeName field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetTargetMmeNameOk

func (o *NotifiedPosInfo) GetTargetMmeNameOk() (*string, bool)

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

func (*NotifiedPosInfo) GetTargetMmeRealm

func (o *NotifiedPosInfo) GetTargetMmeRealm() string

GetTargetMmeRealm returns the TargetMmeRealm field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetTargetMmeRealmOk

func (o *NotifiedPosInfo) GetTargetMmeRealmOk() (*string, bool)

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

func (*NotifiedPosInfo) GetTerminationCause

func (o *NotifiedPosInfo) GetTerminationCause() TerminationCause

GetTerminationCause returns the TerminationCause field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetTerminationCauseOk

func (o *NotifiedPosInfo) GetTerminationCauseOk() (*TerminationCause, bool)

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

func (*NotifiedPosInfo) GetTimestampOfLocationEstimate

func (o *NotifiedPosInfo) GetTimestampOfLocationEstimate() time.Time

GetTimestampOfLocationEstimate returns the TimestampOfLocationEstimate field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetTimestampOfLocationEstimateOk

func (o *NotifiedPosInfo) GetTimestampOfLocationEstimateOk() (*time.Time, bool)

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

func (*NotifiedPosInfo) GetUtranSrvccInd

func (o *NotifiedPosInfo) GetUtranSrvccInd() bool

GetUtranSrvccInd returns the UtranSrvccInd field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetUtranSrvccIndOk

func (o *NotifiedPosInfo) GetUtranSrvccIndOk() (*bool, bool)

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

func (*NotifiedPosInfo) GetVelocityEstimate

func (o *NotifiedPosInfo) GetVelocityEstimate() VelocityEstimate

GetVelocityEstimate returns the VelocityEstimate field value if set, zero value otherwise.

func (*NotifiedPosInfo) GetVelocityEstimateOk

func (o *NotifiedPosInfo) GetVelocityEstimateOk() (*VelocityEstimate, bool)

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

func (*NotifiedPosInfo) HasAchievedQos

func (o *NotifiedPosInfo) HasAchievedQos() bool

HasAchievedQos returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasAgeOfLocationEstimate

func (o *NotifiedPosInfo) HasAgeOfLocationEstimate() bool

HasAgeOfLocationEstimate returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasAltitude

func (o *NotifiedPosInfo) HasAltitude() bool

HasAltitude returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasBarometricPressure

func (o *NotifiedPosInfo) HasBarometricPressure() bool

HasBarometricPressure returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasCivicAddress

func (o *NotifiedPosInfo) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasEcgi

func (o *NotifiedPosInfo) HasEcgi() bool

HasEcgi returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasGnssPositioningDataList

func (o *NotifiedPosInfo) HasGnssPositioningDataList() bool

HasGnssPositioningDataList returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasGpsi

func (o *NotifiedPosInfo) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasHgmlcCallBackURI

func (o *NotifiedPosInfo) HasHgmlcCallBackURI() bool

HasHgmlcCallBackURI returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasLdrReference

func (o *NotifiedPosInfo) HasLdrReference() bool

HasLdrReference returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasLocalLocationEstimate

func (o *NotifiedPosInfo) HasLocalLocationEstimate() bool

HasLocalLocationEstimate returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasLocationEstimate

func (o *NotifiedPosInfo) HasLocationEstimate() bool

HasLocationEstimate returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasMscServerId

func (o *NotifiedPosInfo) HasMscServerId() bool

HasMscServerId returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasNcgi

func (o *NotifiedPosInfo) HasNcgi() bool

HasNcgi returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasPei

func (o *NotifiedPosInfo) HasPei() bool

HasPei returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasPositioningDataList

func (o *NotifiedPosInfo) HasPositioningDataList() bool

HasPositioningDataList returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasServingLMFIdentification

func (o *NotifiedPosInfo) HasServingLMFIdentification() bool

HasServingLMFIdentification returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasServingNode

func (o *NotifiedPosInfo) HasServingNode() bool

HasServingNode returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasSupi

func (o *NotifiedPosInfo) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasTargetMmeName

func (o *NotifiedPosInfo) HasTargetMmeName() bool

HasTargetMmeName returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasTargetMmeRealm

func (o *NotifiedPosInfo) HasTargetMmeRealm() bool

HasTargetMmeRealm returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasTerminationCause

func (o *NotifiedPosInfo) HasTerminationCause() bool

HasTerminationCause returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasTimestampOfLocationEstimate

func (o *NotifiedPosInfo) HasTimestampOfLocationEstimate() bool

HasTimestampOfLocationEstimate returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasUtranSrvccInd

func (o *NotifiedPosInfo) HasUtranSrvccInd() bool

HasUtranSrvccInd returns a boolean if a field has been set.

func (*NotifiedPosInfo) HasVelocityEstimate

func (o *NotifiedPosInfo) HasVelocityEstimate() bool

HasVelocityEstimate returns a boolean if a field has been set.

func (NotifiedPosInfo) MarshalJSON

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

func (*NotifiedPosInfo) SetAchievedQos

func (o *NotifiedPosInfo) SetAchievedQos(v MinorLocationQoS)

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

func (*NotifiedPosInfo) SetAgeOfLocationEstimate

func (o *NotifiedPosInfo) SetAgeOfLocationEstimate(v int32)

SetAgeOfLocationEstimate gets a reference to the given int32 and assigns it to the AgeOfLocationEstimate field.

func (*NotifiedPosInfo) SetAltitude

func (o *NotifiedPosInfo) SetAltitude(v float64)

SetAltitude gets a reference to the given float64 and assigns it to the Altitude field.

func (*NotifiedPosInfo) SetBarometricPressure

func (o *NotifiedPosInfo) SetBarometricPressure(v int32)

SetBarometricPressure gets a reference to the given int32 and assigns it to the BarometricPressure field.

func (*NotifiedPosInfo) SetCivicAddress

func (o *NotifiedPosInfo) SetCivicAddress(v CivicAddress)

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

func (*NotifiedPosInfo) SetEcgi

func (o *NotifiedPosInfo) SetEcgi(v Ecgi)

SetEcgi gets a reference to the given Ecgi and assigns it to the Ecgi field.

func (*NotifiedPosInfo) SetGnssPositioningDataList

func (o *NotifiedPosInfo) SetGnssPositioningDataList(v []GnssPositioningMethodAndUsage)

SetGnssPositioningDataList gets a reference to the given []GnssPositioningMethodAndUsage and assigns it to the GnssPositioningDataList field.

func (*NotifiedPosInfo) SetGpsi

func (o *NotifiedPosInfo) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*NotifiedPosInfo) SetHgmlcCallBackURI

func (o *NotifiedPosInfo) SetHgmlcCallBackURI(v string)

SetHgmlcCallBackURI gets a reference to the given string and assigns it to the HgmlcCallBackURI field.

func (*NotifiedPosInfo) SetLdrReference

func (o *NotifiedPosInfo) SetLdrReference(v string)

SetLdrReference gets a reference to the given string and assigns it to the LdrReference field.

func (*NotifiedPosInfo) SetLocalLocationEstimate

func (o *NotifiedPosInfo) SetLocalLocationEstimate(v LocalArea)

SetLocalLocationEstimate gets a reference to the given LocalArea and assigns it to the LocalLocationEstimate field.

func (*NotifiedPosInfo) SetLocationEstimate

func (o *NotifiedPosInfo) SetLocationEstimate(v GeographicArea)

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

func (*NotifiedPosInfo) SetLocationEvent

func (o *NotifiedPosInfo) SetLocationEvent(v LocationEvent)

SetLocationEvent sets field value

func (*NotifiedPosInfo) SetMscServerId

func (o *NotifiedPosInfo) SetMscServerId(v string)

SetMscServerId gets a reference to the given string and assigns it to the MscServerId field.

func (*NotifiedPosInfo) SetNcgi

func (o *NotifiedPosInfo) SetNcgi(v Ncgi)

SetNcgi gets a reference to the given Ncgi and assigns it to the Ncgi field.

func (*NotifiedPosInfo) SetPei

func (o *NotifiedPosInfo) SetPei(v string)

SetPei gets a reference to the given string and assigns it to the Pei field.

func (*NotifiedPosInfo) SetPositioningDataList

func (o *NotifiedPosInfo) SetPositioningDataList(v []PositioningMethodAndUsage)

SetPositioningDataList gets a reference to the given []PositioningMethodAndUsage and assigns it to the PositioningDataList field.

func (*NotifiedPosInfo) SetServingLMFIdentification

func (o *NotifiedPosInfo) SetServingLMFIdentification(v string)

SetServingLMFIdentification gets a reference to the given string and assigns it to the ServingLMFIdentification field.

func (*NotifiedPosInfo) SetServingNode

func (o *NotifiedPosInfo) SetServingNode(v string)

SetServingNode gets a reference to the given string and assigns it to the ServingNode field.

func (*NotifiedPosInfo) SetSupi

func (o *NotifiedPosInfo) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (*NotifiedPosInfo) SetTargetMmeName

func (o *NotifiedPosInfo) SetTargetMmeName(v string)

SetTargetMmeName gets a reference to the given string and assigns it to the TargetMmeName field.

func (*NotifiedPosInfo) SetTargetMmeRealm

func (o *NotifiedPosInfo) SetTargetMmeRealm(v string)

SetTargetMmeRealm gets a reference to the given string and assigns it to the TargetMmeRealm field.

func (*NotifiedPosInfo) SetTerminationCause

func (o *NotifiedPosInfo) SetTerminationCause(v TerminationCause)

SetTerminationCause gets a reference to the given TerminationCause and assigns it to the TerminationCause field.

func (*NotifiedPosInfo) SetTimestampOfLocationEstimate

func (o *NotifiedPosInfo) SetTimestampOfLocationEstimate(v time.Time)

SetTimestampOfLocationEstimate gets a reference to the given time.Time and assigns it to the TimestampOfLocationEstimate field.

func (*NotifiedPosInfo) SetUtranSrvccInd

func (o *NotifiedPosInfo) SetUtranSrvccInd(v bool)

SetUtranSrvccInd gets a reference to the given bool and assigns it to the UtranSrvccInd field.

func (*NotifiedPosInfo) SetVelocityEstimate

func (o *NotifiedPosInfo) SetVelocityEstimate(v VelocityEstimate)

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

func (NotifiedPosInfo) ToMap

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

type NrLocation

type NrLocation struct {
	Tai        Tai   `json:"tai"`
	Ncgi       Ncgi  `json:"ncgi"`
	IgnoreNcgi *bool `json:"ignoreNcgi,omitempty"`
	// The value represents the elapsed time in minutes since the last network contact of the mobile station. Value \"0\" indicates that the location information was obtained after a successful paging procedure for Active Location Retrieval when the UE is in idle mode or after a successful  NG-RAN location reporting procedure with the eNB when the UE is in connected mode. Any other value than \"0\" indicates that the location information is the last known one. See 3GPP TS 29.002 clause 17.7.8.
	AgeOfLocationInformation *int32 `json:"ageOfLocationInformation,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	UeLocationTimestamp *time.Time `json:"ueLocationTimestamp,omitempty"`
	// Refer to geographical Information. See 3GPP TS 23.032 clause 7.3.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeographicalInformation *string `json:"geographicalInformation,omitempty"`
	// Refers to Calling Geodetic Location. See ITU-T Recommendation Q.763 (1999) [24] clause 3.88.2. Only the description of an ellipsoid point with uncertainty circle is allowed to be used.
	GeodeticInformation *string          `json:"geodeticInformation,omitempty"`
	GlobalGnbId         *GlobalRanNodeId `json:"globalGnbId,omitempty"`
}

NrLocation Contains the NR user location.

func NewNrLocation

func NewNrLocation(tai Tai, ncgi Ncgi) *NrLocation

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

func NewNrLocationWithDefaults

func NewNrLocationWithDefaults() *NrLocation

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

func (*NrLocation) GetAgeOfLocationInformation

func (o *NrLocation) GetAgeOfLocationInformation() int32

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

func (*NrLocation) GetAgeOfLocationInformationOk

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

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

func (*NrLocation) GetGeodeticInformation

func (o *NrLocation) GetGeodeticInformation() string

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

func (*NrLocation) GetGeodeticInformationOk

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

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

func (*NrLocation) GetGeographicalInformation

func (o *NrLocation) GetGeographicalInformation() string

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

func (*NrLocation) GetGeographicalInformationOk

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

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

func (*NrLocation) GetGlobalGnbId

func (o *NrLocation) GetGlobalGnbId() GlobalRanNodeId

GetGlobalGnbId returns the GlobalGnbId field value if set, zero value otherwise.

func (*NrLocation) GetGlobalGnbIdOk

func (o *NrLocation) GetGlobalGnbIdOk() (*GlobalRanNodeId, bool)

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

func (*NrLocation) GetIgnoreNcgi

func (o *NrLocation) GetIgnoreNcgi() bool

GetIgnoreNcgi returns the IgnoreNcgi field value if set, zero value otherwise.

func (*NrLocation) GetIgnoreNcgiOk

func (o *NrLocation) GetIgnoreNcgiOk() (*bool, bool)

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

func (*NrLocation) GetNcgi

func (o *NrLocation) GetNcgi() Ncgi

GetNcgi returns the Ncgi field value

func (*NrLocation) GetNcgiOk

func (o *NrLocation) GetNcgiOk() (*Ncgi, bool)

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

func (*NrLocation) GetTai

func (o *NrLocation) GetTai() Tai

GetTai returns the Tai field value

func (*NrLocation) GetTaiOk

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

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

func (*NrLocation) GetUeLocationTimestamp

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

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

func (*NrLocation) GetUeLocationTimestampOk

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

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

func (*NrLocation) HasAgeOfLocationInformation

func (o *NrLocation) HasAgeOfLocationInformation() bool

HasAgeOfLocationInformation returns a boolean if a field has been set.

func (*NrLocation) HasGeodeticInformation

func (o *NrLocation) HasGeodeticInformation() bool

HasGeodeticInformation returns a boolean if a field has been set.

func (*NrLocation) HasGeographicalInformation

func (o *NrLocation) HasGeographicalInformation() bool

HasGeographicalInformation returns a boolean if a field has been set.

func (*NrLocation) HasGlobalGnbId

func (o *NrLocation) HasGlobalGnbId() bool

HasGlobalGnbId returns a boolean if a field has been set.

func (*NrLocation) HasIgnoreNcgi

func (o *NrLocation) HasIgnoreNcgi() bool

HasIgnoreNcgi returns a boolean if a field has been set.

func (*NrLocation) HasUeLocationTimestamp

func (o *NrLocation) HasUeLocationTimestamp() bool

HasUeLocationTimestamp returns a boolean if a field has been set.

func (NrLocation) MarshalJSON

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

func (*NrLocation) SetAgeOfLocationInformation

func (o *NrLocation) SetAgeOfLocationInformation(v int32)

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

func (*NrLocation) SetGeodeticInformation

func (o *NrLocation) SetGeodeticInformation(v string)

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

func (*NrLocation) SetGeographicalInformation

func (o *NrLocation) SetGeographicalInformation(v string)

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

func (*NrLocation) SetGlobalGnbId

func (o *NrLocation) SetGlobalGnbId(v GlobalRanNodeId)

SetGlobalGnbId gets a reference to the given GlobalRanNodeId and assigns it to the GlobalGnbId field.

func (*NrLocation) SetIgnoreNcgi

func (o *NrLocation) SetIgnoreNcgi(v bool)

SetIgnoreNcgi gets a reference to the given bool and assigns it to the IgnoreNcgi field.

func (*NrLocation) SetNcgi

func (o *NrLocation) SetNcgi(v Ncgi)

SetNcgi sets field value

func (*NrLocation) SetTai

func (o *NrLocation) SetTai(v Tai)

SetTai sets field value

func (*NrLocation) SetUeLocationTimestamp

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

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

func (NrLocation) ToMap

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

type NullableAccessTokenErr

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

func NewNullableAccessTokenErr

func NewNullableAccessTokenErr(val *AccessTokenErr) *NullableAccessTokenErr

func (NullableAccessTokenErr) Get

func (NullableAccessTokenErr) IsSet

func (v NullableAccessTokenErr) IsSet() bool

func (NullableAccessTokenErr) MarshalJSON

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

func (*NullableAccessTokenErr) Set

func (*NullableAccessTokenErr) UnmarshalJSON

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

func (*NullableAccessTokenErr) Unset

func (v *NullableAccessTokenErr) Unset()

type NullableAccessTokenReq

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

func NewNullableAccessTokenReq

func NewNullableAccessTokenReq(val *AccessTokenReq) *NullableAccessTokenReq

func (NullableAccessTokenReq) Get

func (NullableAccessTokenReq) IsSet

func (v NullableAccessTokenReq) IsSet() bool

func (NullableAccessTokenReq) MarshalJSON

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

func (*NullableAccessTokenReq) Set

func (*NullableAccessTokenReq) UnmarshalJSON

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

func (*NullableAccessTokenReq) Unset

func (v *NullableAccessTokenReq) Unset()

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

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

func NewNullableAreaEventInfo

func NewNullableAreaEventInfo(val *AreaEventInfo) *NullableAreaEventInfo

func (NullableAreaEventInfo) Get

func (NullableAreaEventInfo) IsSet

func (v NullableAreaEventInfo) IsSet() bool

func (NullableAreaEventInfo) MarshalJSON

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

func (*NullableAreaEventInfo) Set

func (v *NullableAreaEventInfo) Set(val *AreaEventInfo)

func (*NullableAreaEventInfo) UnmarshalJSON

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

func (*NullableAreaEventInfo) Unset

func (v *NullableAreaEventInfo) 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 NullableCancelPosInfo

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

func NewNullableCancelPosInfo

func NewNullableCancelPosInfo(val *CancelPosInfo) *NullableCancelPosInfo

func (NullableCancelPosInfo) Get

func (NullableCancelPosInfo) IsSet

func (v NullableCancelPosInfo) IsSet() bool

func (NullableCancelPosInfo) MarshalJSON

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

func (*NullableCancelPosInfo) Set

func (v *NullableCancelPosInfo) Set(val *CancelPosInfo)

func (*NullableCancelPosInfo) UnmarshalJSON

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

func (*NullableCancelPosInfo) Unset

func (v *NullableCancelPosInfo) Unset()

type NullableCellGlobalId

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

func NewNullableCellGlobalId

func NewNullableCellGlobalId(val *CellGlobalId) *NullableCellGlobalId

func (NullableCellGlobalId) Get

func (NullableCellGlobalId) IsSet

func (v NullableCellGlobalId) IsSet() bool

func (NullableCellGlobalId) MarshalJSON

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

func (*NullableCellGlobalId) Set

func (v *NullableCellGlobalId) Set(val *CellGlobalId)

func (*NullableCellGlobalId) UnmarshalJSON

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

func (*NullableCellGlobalId) Unset

func (v *NullableCellGlobalId) Unset()

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

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

func NewNullableEllipsoidArcAllOf

func NewNullableEllipsoidArcAllOf(val *EllipsoidArcAllOf) *NullableEllipsoidArcAllOf

func (NullableEllipsoidArcAllOf) Get

func (NullableEllipsoidArcAllOf) IsSet

func (v NullableEllipsoidArcAllOf) IsSet() bool

func (NullableEllipsoidArcAllOf) MarshalJSON

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

func (*NullableEllipsoidArcAllOf) Set

func (*NullableEllipsoidArcAllOf) UnmarshalJSON

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

func (*NullableEllipsoidArcAllOf) Unset

func (v *NullableEllipsoidArcAllOf) Unset()

type NullableEutraLocation

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

func NewNullableEutraLocation

func NewNullableEutraLocation(val *EutraLocation) *NullableEutraLocation

func (NullableEutraLocation) Get

func (NullableEutraLocation) IsSet

func (v NullableEutraLocation) IsSet() bool

func (NullableEutraLocation) MarshalJSON

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

func (*NullableEutraLocation) Set

func (v *NullableEutraLocation) Set(val *EutraLocation)

func (*NullableEutraLocation) UnmarshalJSON

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

func (*NullableEutraLocation) Unset

func (v *NullableEutraLocation) Unset()

type NullableExternalClientType

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

func NewNullableExternalClientType

func NewNullableExternalClientType(val *ExternalClientType) *NullableExternalClientType

func (NullableExternalClientType) Get

func (NullableExternalClientType) IsSet

func (v NullableExternalClientType) IsSet() bool

func (NullableExternalClientType) MarshalJSON

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

func (*NullableExternalClientType) Set

func (*NullableExternalClientType) UnmarshalJSON

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

func (*NullableExternalClientType) Unset

func (v *NullableExternalClientType) 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 NullableGeraLocation

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

func NewNullableGeraLocation

func NewNullableGeraLocation(val *GeraLocation) *NullableGeraLocation

func (NullableGeraLocation) Get

func (NullableGeraLocation) IsSet

func (v NullableGeraLocation) IsSet() bool

func (NullableGeraLocation) MarshalJSON

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

func (*NullableGeraLocation) Set

func (v *NullableGeraLocation) Set(val *GeraLocation)

func (*NullableGeraLocation) UnmarshalJSON

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

func (*NullableGeraLocation) Unset

func (v *NullableGeraLocation) Unset()

type NullableGlobalRanNodeId

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

func NewNullableGlobalRanNodeId

func NewNullableGlobalRanNodeId(val *GlobalRanNodeId) *NullableGlobalRanNodeId

func (NullableGlobalRanNodeId) Get

func (NullableGlobalRanNodeId) IsSet

func (v NullableGlobalRanNodeId) IsSet() bool

func (NullableGlobalRanNodeId) MarshalJSON

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

func (*NullableGlobalRanNodeId) Set

func (*NullableGlobalRanNodeId) UnmarshalJSON

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

func (*NullableGlobalRanNodeId) Unset

func (v *NullableGlobalRanNodeId) Unset()

type NullableGnssId

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

func NewNullableGnssId

func NewNullableGnssId(val *GnssId) *NullableGnssId

func (NullableGnssId) Get

func (v NullableGnssId) Get() *GnssId

func (NullableGnssId) IsSet

func (v NullableGnssId) IsSet() bool

func (NullableGnssId) MarshalJSON

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

func (*NullableGnssId) Set

func (v *NullableGnssId) Set(val *GnssId)

func (*NullableGnssId) UnmarshalJSON

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

func (*NullableGnssId) Unset

func (v *NullableGnssId) Unset()

type NullableGnssPositioningMethodAndUsage

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

func (NullableGnssPositioningMethodAndUsage) Get

func (NullableGnssPositioningMethodAndUsage) IsSet

func (NullableGnssPositioningMethodAndUsage) MarshalJSON

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

func (*NullableGnssPositioningMethodAndUsage) Set

func (*NullableGnssPositioningMethodAndUsage) UnmarshalJSON

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

func (*NullableGnssPositioningMethodAndUsage) Unset

type NullableGuami

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

func NewNullableGuami

func NewNullableGuami(val *Guami) *NullableGuami

func (NullableGuami) Get

func (v NullableGuami) Get() *Guami

func (NullableGuami) IsSet

func (v NullableGuami) IsSet() bool

func (NullableGuami) MarshalJSON

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

func (*NullableGuami) Set

func (v *NullableGuami) Set(val *Guami)

func (*NullableGuami) UnmarshalJSON

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

func (*NullableGuami) Unset

func (v *NullableGuami) Unset()

type NullableHfcNodeId

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

func NewNullableHfcNodeId

func NewNullableHfcNodeId(val *HfcNodeId) *NullableHfcNodeId

func (NullableHfcNodeId) Get

func (v NullableHfcNodeId) Get() *HfcNodeId

func (NullableHfcNodeId) IsSet

func (v NullableHfcNodeId) IsSet() bool

func (NullableHfcNodeId) MarshalJSON

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

func (*NullableHfcNodeId) Set

func (v *NullableHfcNodeId) Set(val *HfcNodeId)

func (*NullableHfcNodeId) UnmarshalJSON

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

func (*NullableHfcNodeId) Unset

func (v *NullableHfcNodeId) Unset()

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

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInvalidParam

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

func NewNullableInvalidParam

func NewNullableInvalidParam(val *InvalidParam) *NullableInvalidParam

func (NullableInvalidParam) Get

func (NullableInvalidParam) IsSet

func (v NullableInvalidParam) IsSet() bool

func (NullableInvalidParam) MarshalJSON

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

func (*NullableInvalidParam) Set

func (v *NullableInvalidParam) Set(val *InvalidParam)

func (*NullableInvalidParam) UnmarshalJSON

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

func (*NullableInvalidParam) Unset

func (v *NullableInvalidParam) Unset()

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

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

func NewNullableLcsPriority

func NewNullableLcsPriority(val *LcsPriority) *NullableLcsPriority

func (NullableLcsPriority) Get

func (NullableLcsPriority) IsSet

func (v NullableLcsPriority) IsSet() bool

func (NullableLcsPriority) MarshalJSON

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

func (*NullableLcsPriority) Set

func (v *NullableLcsPriority) Set(val *LcsPriority)

func (*NullableLcsPriority) UnmarshalJSON

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

func (*NullableLcsPriority) Unset

func (v *NullableLcsPriority) 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 NullableLcsServiceAuth

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

func NewNullableLcsServiceAuth

func NewNullableLcsServiceAuth(val *LcsServiceAuth) *NullableLcsServiceAuth

func (NullableLcsServiceAuth) Get

func (NullableLcsServiceAuth) IsSet

func (v NullableLcsServiceAuth) IsSet() bool

func (NullableLcsServiceAuth) MarshalJSON

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

func (*NullableLcsServiceAuth) Set

func (*NullableLcsServiceAuth) UnmarshalJSON

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

func (*NullableLcsServiceAuth) Unset

func (v *NullableLcsServiceAuth) Unset()

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

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

func NewNullableLineType

func NewNullableLineType(val *LineType) *NullableLineType

func (NullableLineType) Get

func (v NullableLineType) Get() *LineType

func (NullableLineType) IsSet

func (v NullableLineType) IsSet() bool

func (NullableLineType) MarshalJSON

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

func (*NullableLineType) Set

func (v *NullableLineType) Set(val *LineType)

func (*NullableLineType) UnmarshalJSON

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

func (*NullableLineType) Unset

func (v *NullableLineType) Unset()

type NullableLocal2dPointUncertaintyEllipse

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

func (NullableLocal2dPointUncertaintyEllipse) Get

func (NullableLocal2dPointUncertaintyEllipse) IsSet

func (NullableLocal2dPointUncertaintyEllipse) MarshalJSON

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

func (*NullableLocal2dPointUncertaintyEllipse) Set

func (*NullableLocal2dPointUncertaintyEllipse) UnmarshalJSON

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

func (*NullableLocal2dPointUncertaintyEllipse) Unset

type NullableLocal2dPointUncertaintyEllipseAllOf

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

func (NullableLocal2dPointUncertaintyEllipseAllOf) Get

func (NullableLocal2dPointUncertaintyEllipseAllOf) IsSet

func (NullableLocal2dPointUncertaintyEllipseAllOf) MarshalJSON

func (*NullableLocal2dPointUncertaintyEllipseAllOf) Set

func (*NullableLocal2dPointUncertaintyEllipseAllOf) UnmarshalJSON

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

func (*NullableLocal2dPointUncertaintyEllipseAllOf) Unset

type NullableLocal3dPointUncertaintyEllipsoid

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

func (NullableLocal3dPointUncertaintyEllipsoid) Get

func (NullableLocal3dPointUncertaintyEllipsoid) IsSet

func (NullableLocal3dPointUncertaintyEllipsoid) MarshalJSON

func (*NullableLocal3dPointUncertaintyEllipsoid) Set

func (*NullableLocal3dPointUncertaintyEllipsoid) UnmarshalJSON

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

func (*NullableLocal3dPointUncertaintyEllipsoid) Unset

type NullableLocal3dPointUncertaintyEllipsoidAllOf

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

func (NullableLocal3dPointUncertaintyEllipsoidAllOf) Get

func (NullableLocal3dPointUncertaintyEllipsoidAllOf) IsSet

func (NullableLocal3dPointUncertaintyEllipsoidAllOf) MarshalJSON

func (*NullableLocal3dPointUncertaintyEllipsoidAllOf) Set

func (*NullableLocal3dPointUncertaintyEllipsoidAllOf) UnmarshalJSON

func (*NullableLocal3dPointUncertaintyEllipsoidAllOf) Unset

type NullableLocalArea

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

func NewNullableLocalArea

func NewNullableLocalArea(val *LocalArea) *NullableLocalArea

func (NullableLocalArea) Get

func (v NullableLocalArea) Get() *LocalArea

func (NullableLocalArea) IsSet

func (v NullableLocalArea) IsSet() bool

func (NullableLocalArea) MarshalJSON

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

func (*NullableLocalArea) Set

func (v *NullableLocalArea) Set(val *LocalArea)

func (*NullableLocalArea) UnmarshalJSON

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

func (*NullableLocalArea) Unset

func (v *NullableLocalArea) Unset()

type NullableLocalOrigin

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

func NewNullableLocalOrigin

func NewNullableLocalOrigin(val *LocalOrigin) *NullableLocalOrigin

func (NullableLocalOrigin) Get

func (NullableLocalOrigin) IsSet

func (v NullableLocalOrigin) IsSet() bool

func (NullableLocalOrigin) MarshalJSON

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

func (*NullableLocalOrigin) Set

func (v *NullableLocalOrigin) Set(val *LocalOrigin)

func (*NullableLocalOrigin) UnmarshalJSON

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

func (*NullableLocalOrigin) Unset

func (v *NullableLocalOrigin) Unset()

type NullableLocationAreaId

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

func NewNullableLocationAreaId

func NewNullableLocationAreaId(val *LocationAreaId) *NullableLocationAreaId

func (NullableLocationAreaId) Get

func (NullableLocationAreaId) IsSet

func (v NullableLocationAreaId) IsSet() bool

func (NullableLocationAreaId) MarshalJSON

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

func (*NullableLocationAreaId) Set

func (*NullableLocationAreaId) UnmarshalJSON

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

func (*NullableLocationAreaId) Unset

func (v *NullableLocationAreaId) Unset()

type NullableLocationEvent

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

func NewNullableLocationEvent

func NewNullableLocationEvent(val *LocationEvent) *NullableLocationEvent

func (NullableLocationEvent) Get

func (NullableLocationEvent) IsSet

func (v NullableLocationEvent) IsSet() bool

func (NullableLocationEvent) MarshalJSON

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

func (*NullableLocationEvent) Set

func (v *NullableLocationEvent) Set(val *LocationEvent)

func (*NullableLocationEvent) UnmarshalJSON

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

func (*NullableLocationEvent) Unset

func (v *NullableLocationEvent) Unset()

type NullableLocationPrivacyVerResult

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

func (NullableLocationPrivacyVerResult) Get

func (NullableLocationPrivacyVerResult) IsSet

func (NullableLocationPrivacyVerResult) MarshalJSON

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

func (*NullableLocationPrivacyVerResult) Set

func (*NullableLocationPrivacyVerResult) UnmarshalJSON

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

func (*NullableLocationPrivacyVerResult) 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 NullableMotionEventInfo

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

func NewNullableMotionEventInfo

func NewNullableMotionEventInfo(val *MotionEventInfo) *NullableMotionEventInfo

func (NullableMotionEventInfo) Get

func (NullableMotionEventInfo) IsSet

func (v NullableMotionEventInfo) IsSet() bool

func (NullableMotionEventInfo) MarshalJSON

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

func (*NullableMotionEventInfo) Set

func (*NullableMotionEventInfo) UnmarshalJSON

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

func (*NullableMotionEventInfo) Unset

func (v *NullableMotionEventInfo) Unset()

type NullableN3gaLocation

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

func NewNullableN3gaLocation

func NewNullableN3gaLocation(val *N3gaLocation) *NullableN3gaLocation

func (NullableN3gaLocation) Get

func (NullableN3gaLocation) IsSet

func (v NullableN3gaLocation) IsSet() bool

func (NullableN3gaLocation) MarshalJSON

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

func (*NullableN3gaLocation) Set

func (v *NullableN3gaLocation) Set(val *N3gaLocation)

func (*NullableN3gaLocation) UnmarshalJSON

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

func (*NullableN3gaLocation) Unset

func (v *NullableN3gaLocation) Unset()

type NullableNFType

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

func NewNullableNFType

func NewNullableNFType(val *NFType) *NullableNFType

func (NullableNFType) Get

func (v NullableNFType) Get() *NFType

func (NullableNFType) IsSet

func (v NullableNFType) IsSet() bool

func (NullableNFType) MarshalJSON

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

func (*NullableNFType) Set

func (v *NullableNFType) Set(val *NFType)

func (*NullableNFType) UnmarshalJSON

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

func (*NullableNFType) Unset

func (v *NullableNFType) Unset()

type NullableNcgi

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

func NewNullableNcgi

func NewNullableNcgi(val *Ncgi) *NullableNcgi

func (NullableNcgi) Get

func (v NullableNcgi) Get() *Ncgi

func (NullableNcgi) IsSet

func (v NullableNcgi) IsSet() bool

func (NullableNcgi) MarshalJSON

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

func (*NullableNcgi) Set

func (v *NullableNcgi) Set(val *Ncgi)

func (*NullableNcgi) UnmarshalJSON

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

func (*NullableNcgi) Unset

func (v *NullableNcgi) Unset()

type NullableNotifiedPosInfo

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

func NewNullableNotifiedPosInfo

func NewNullableNotifiedPosInfo(val *NotifiedPosInfo) *NullableNotifiedPosInfo

func (NullableNotifiedPosInfo) Get

func (NullableNotifiedPosInfo) IsSet

func (v NullableNotifiedPosInfo) IsSet() bool

func (NullableNotifiedPosInfo) MarshalJSON

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

func (*NullableNotifiedPosInfo) Set

func (*NullableNotifiedPosInfo) UnmarshalJSON

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

func (*NullableNotifiedPosInfo) Unset

func (v *NullableNotifiedPosInfo) Unset()

type NullableNrLocation

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

func NewNullableNrLocation

func NewNullableNrLocation(val *NrLocation) *NullableNrLocation

func (NullableNrLocation) Get

func (v NullableNrLocation) Get() *NrLocation

func (NullableNrLocation) IsSet

func (v NullableNrLocation) IsSet() bool

func (NullableNrLocation) MarshalJSON

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

func (*NullableNrLocation) Set

func (v *NullableNrLocation) Set(val *NrLocation)

func (*NullableNrLocation) UnmarshalJSON

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

func (*NullableNrLocation) Unset

func (v *NullableNrLocation) Unset()

type NullableOccurrenceInfo

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

func NewNullableOccurrenceInfo

func NewNullableOccurrenceInfo(val *OccurrenceInfo) *NullableOccurrenceInfo

func (NullableOccurrenceInfo) Get

func (NullableOccurrenceInfo) IsSet

func (v NullableOccurrenceInfo) IsSet() bool

func (NullableOccurrenceInfo) MarshalJSON

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

func (*NullableOccurrenceInfo) Set

func (*NullableOccurrenceInfo) UnmarshalJSON

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

func (*NullableOccurrenceInfo) Unset

func (v *NullableOccurrenceInfo) Unset()

type NullablePeriodicEventInfo

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

func NewNullablePeriodicEventInfo

func NewNullablePeriodicEventInfo(val *PeriodicEventInfo) *NullablePeriodicEventInfo

func (NullablePeriodicEventInfo) Get

func (NullablePeriodicEventInfo) IsSet

func (v NullablePeriodicEventInfo) IsSet() bool

func (NullablePeriodicEventInfo) MarshalJSON

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

func (*NullablePeriodicEventInfo) Set

func (*NullablePeriodicEventInfo) UnmarshalJSON

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

func (*NullablePeriodicEventInfo) Unset

func (v *NullablePeriodicEventInfo) Unset()

type NullablePlmnId

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

func NewNullablePlmnId

func NewNullablePlmnId(val *PlmnId) *NullablePlmnId

func (NullablePlmnId) Get

func (v NullablePlmnId) Get() *PlmnId

func (NullablePlmnId) IsSet

func (v NullablePlmnId) IsSet() bool

func (NullablePlmnId) MarshalJSON

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

func (*NullablePlmnId) Set

func (v *NullablePlmnId) Set(val *PlmnId)

func (*NullablePlmnId) UnmarshalJSON

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

func (*NullablePlmnId) Unset

func (v *NullablePlmnId) Unset()

type NullablePlmnIdNid

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

func NewNullablePlmnIdNid

func NewNullablePlmnIdNid(val *PlmnIdNid) *NullablePlmnIdNid

func (NullablePlmnIdNid) Get

func (v NullablePlmnIdNid) Get() *PlmnIdNid

func (NullablePlmnIdNid) IsSet

func (v NullablePlmnIdNid) IsSet() bool

func (NullablePlmnIdNid) MarshalJSON

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

func (*NullablePlmnIdNid) Set

func (v *NullablePlmnIdNid) Set(val *PlmnIdNid)

func (*NullablePlmnIdNid) UnmarshalJSON

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

func (*NullablePlmnIdNid) Unset

func (v *NullablePlmnIdNid) Unset()

type NullablePoint

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

func NewNullablePoint

func NewNullablePoint(val *Point) *NullablePoint

func (NullablePoint) Get

func (v NullablePoint) Get() *Point

func (NullablePoint) IsSet

func (v NullablePoint) IsSet() bool

func (NullablePoint) MarshalJSON

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

func (*NullablePoint) Set

func (v *NullablePoint) Set(val *Point)

func (*NullablePoint) UnmarshalJSON

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

func (*NullablePoint) Unset

func (v *NullablePoint) Unset()

type NullablePointAllOf

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

func NewNullablePointAllOf

func NewNullablePointAllOf(val *PointAllOf) *NullablePointAllOf

func (NullablePointAllOf) Get

func (v NullablePointAllOf) Get() *PointAllOf

func (NullablePointAllOf) IsSet

func (v NullablePointAllOf) IsSet() bool

func (NullablePointAllOf) MarshalJSON

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

func (*NullablePointAllOf) Set

func (v *NullablePointAllOf) Set(val *PointAllOf)

func (*NullablePointAllOf) UnmarshalJSON

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

func (*NullablePointAllOf) Unset

func (v *NullablePointAllOf) Unset()

type NullablePointAltitude

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

func NewNullablePointAltitude

func NewNullablePointAltitude(val *PointAltitude) *NullablePointAltitude

func (NullablePointAltitude) Get

func (NullablePointAltitude) IsSet

func (v NullablePointAltitude) IsSet() bool

func (NullablePointAltitude) MarshalJSON

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

func (*NullablePointAltitude) Set

func (v *NullablePointAltitude) Set(val *PointAltitude)

func (*NullablePointAltitude) UnmarshalJSON

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

func (*NullablePointAltitude) Unset

func (v *NullablePointAltitude) Unset()

type NullablePointAltitudeAllOf

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

func NewNullablePointAltitudeAllOf

func NewNullablePointAltitudeAllOf(val *PointAltitudeAllOf) *NullablePointAltitudeAllOf

func (NullablePointAltitudeAllOf) Get

func (NullablePointAltitudeAllOf) IsSet

func (v NullablePointAltitudeAllOf) IsSet() bool

func (NullablePointAltitudeAllOf) MarshalJSON

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

func (*NullablePointAltitudeAllOf) Set

func (*NullablePointAltitudeAllOf) UnmarshalJSON

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

func (*NullablePointAltitudeAllOf) Unset

func (v *NullablePointAltitudeAllOf) Unset()

type NullablePointAltitudeUncertainty

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

func (NullablePointAltitudeUncertainty) Get

func (NullablePointAltitudeUncertainty) IsSet

func (NullablePointAltitudeUncertainty) MarshalJSON

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

func (*NullablePointAltitudeUncertainty) Set

func (*NullablePointAltitudeUncertainty) UnmarshalJSON

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

func (*NullablePointAltitudeUncertainty) Unset

type NullablePointAltitudeUncertaintyAllOf

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

func (NullablePointAltitudeUncertaintyAllOf) Get

func (NullablePointAltitudeUncertaintyAllOf) IsSet

func (NullablePointAltitudeUncertaintyAllOf) MarshalJSON

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

func (*NullablePointAltitudeUncertaintyAllOf) Set

func (*NullablePointAltitudeUncertaintyAllOf) UnmarshalJSON

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

func (*NullablePointAltitudeUncertaintyAllOf) Unset

type NullablePointUncertaintyCircle

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

func (NullablePointUncertaintyCircle) Get

func (NullablePointUncertaintyCircle) IsSet

func (NullablePointUncertaintyCircle) MarshalJSON

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

func (*NullablePointUncertaintyCircle) Set

func (*NullablePointUncertaintyCircle) UnmarshalJSON

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

func (*NullablePointUncertaintyCircle) Unset

func (v *NullablePointUncertaintyCircle) Unset()

type NullablePointUncertaintyCircleAllOf

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

func (NullablePointUncertaintyCircleAllOf) Get

func (NullablePointUncertaintyCircleAllOf) IsSet

func (NullablePointUncertaintyCircleAllOf) MarshalJSON

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

func (*NullablePointUncertaintyCircleAllOf) Set

func (*NullablePointUncertaintyCircleAllOf) UnmarshalJSON

func (v *NullablePointUncertaintyCircleAllOf) UnmarshalJSON(src []byte) error

func (*NullablePointUncertaintyCircleAllOf) Unset

type NullablePointUncertaintyEllipse

type NullablePointUncertaintyEllipse struct {
	// contains filtered or unexported fields
}

func (NullablePointUncertaintyEllipse) Get

func (NullablePointUncertaintyEllipse) IsSet

func (NullablePointUncertaintyEllipse) MarshalJSON

func (v NullablePointUncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*NullablePointUncertaintyEllipse) Set

func (*NullablePointUncertaintyEllipse) UnmarshalJSON

func (v *NullablePointUncertaintyEllipse) UnmarshalJSON(src []byte) error

func (*NullablePointUncertaintyEllipse) Unset

type NullablePointUncertaintyEllipseAllOf

type NullablePointUncertaintyEllipseAllOf struct {
	// contains filtered or unexported fields
}

func (NullablePointUncertaintyEllipseAllOf) Get

func (NullablePointUncertaintyEllipseAllOf) IsSet

func (NullablePointUncertaintyEllipseAllOf) MarshalJSON

func (v NullablePointUncertaintyEllipseAllOf) MarshalJSON() ([]byte, error)

func (*NullablePointUncertaintyEllipseAllOf) Set

func (*NullablePointUncertaintyEllipseAllOf) UnmarshalJSON

func (v *NullablePointUncertaintyEllipseAllOf) UnmarshalJSON(src []byte) error

func (*NullablePointUncertaintyEllipseAllOf) Unset

type NullablePolygon

type NullablePolygon struct {
	// contains filtered or unexported fields
}

func NewNullablePolygon

func NewNullablePolygon(val *Polygon) *NullablePolygon

func (NullablePolygon) Get

func (v NullablePolygon) Get() *Polygon

func (NullablePolygon) IsSet

func (v NullablePolygon) IsSet() bool

func (NullablePolygon) MarshalJSON

func (v NullablePolygon) MarshalJSON() ([]byte, error)

func (*NullablePolygon) Set

func (v *NullablePolygon) Set(val *Polygon)

func (*NullablePolygon) UnmarshalJSON

func (v *NullablePolygon) UnmarshalJSON(src []byte) error

func (*NullablePolygon) Unset

func (v *NullablePolygon) Unset()

type NullablePolygonAllOf

type NullablePolygonAllOf struct {
	// contains filtered or unexported fields
}

func NewNullablePolygonAllOf

func NewNullablePolygonAllOf(val *PolygonAllOf) *NullablePolygonAllOf

func (NullablePolygonAllOf) Get

func (NullablePolygonAllOf) IsSet

func (v NullablePolygonAllOf) IsSet() bool

func (NullablePolygonAllOf) MarshalJSON

func (v NullablePolygonAllOf) MarshalJSON() ([]byte, error)

func (*NullablePolygonAllOf) Set

func (v *NullablePolygonAllOf) Set(val *PolygonAllOf)

func (*NullablePolygonAllOf) UnmarshalJSON

func (v *NullablePolygonAllOf) UnmarshalJSON(src []byte) error

func (*NullablePolygonAllOf) Unset

func (v *NullablePolygonAllOf) Unset()

type 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 NullablePositioningMethodAndUsage

type NullablePositioningMethodAndUsage struct {
	// contains filtered or unexported fields
}

func (NullablePositioningMethodAndUsage) Get

func (NullablePositioningMethodAndUsage) IsSet

func (NullablePositioningMethodAndUsage) MarshalJSON

func (v NullablePositioningMethodAndUsage) MarshalJSON() ([]byte, error)

func (*NullablePositioningMethodAndUsage) Set

func (*NullablePositioningMethodAndUsage) UnmarshalJSON

func (v *NullablePositioningMethodAndUsage) UnmarshalJSON(src []byte) error

func (*NullablePositioningMethodAndUsage) Unset

type NullablePositioningMode

type NullablePositioningMode struct {
	// contains filtered or unexported fields
}

func NewNullablePositioningMode

func NewNullablePositioningMode(val *PositioningMode) *NullablePositioningMode

func (NullablePositioningMode) Get

func (NullablePositioningMode) IsSet

func (v NullablePositioningMode) IsSet() bool

func (NullablePositioningMode) MarshalJSON

func (v NullablePositioningMode) MarshalJSON() ([]byte, error)

func (*NullablePositioningMode) Set

func (*NullablePositioningMode) UnmarshalJSON

func (v *NullablePositioningMode) UnmarshalJSON(src []byte) error

func (*NullablePositioningMode) Unset

func (v *NullablePositioningMode) 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 NullableProvideLocInfo

type NullableProvideLocInfo struct {
	// contains filtered or unexported fields
}

func NewNullableProvideLocInfo

func NewNullableProvideLocInfo(val *ProvideLocInfo) *NullableProvideLocInfo

func (NullableProvideLocInfo) Get

func (NullableProvideLocInfo) IsSet

func (v NullableProvideLocInfo) IsSet() bool

func (NullableProvideLocInfo) MarshalJSON

func (v NullableProvideLocInfo) MarshalJSON() ([]byte, error)

func (*NullableProvideLocInfo) Set

func (*NullableProvideLocInfo) UnmarshalJSON

func (v *NullableProvideLocInfo) UnmarshalJSON(src []byte) error

func (*NullableProvideLocInfo) Unset

func (v *NullableProvideLocInfo) Unset()

type NullableProvidePosInfo

type NullableProvidePosInfo struct {
	// contains filtered or unexported fields
}

func NewNullableProvidePosInfo

func NewNullableProvidePosInfo(val *ProvidePosInfo) *NullableProvidePosInfo

func (NullableProvidePosInfo) Get

func (NullableProvidePosInfo) IsSet

func (v NullableProvidePosInfo) IsSet() bool

func (NullableProvidePosInfo) MarshalJSON

func (v NullableProvidePosInfo) MarshalJSON() ([]byte, error)

func (*NullableProvidePosInfo) Set

func (*NullableProvidePosInfo) UnmarshalJSON

func (v *NullableProvidePosInfo) UnmarshalJSON(src []byte) error

func (*NullableProvidePosInfo) Unset

func (v *NullableProvidePosInfo) Unset()

type NullableRatType

type NullableRatType struct {
	// contains filtered or unexported fields
}

func NewNullableRatType

func NewNullableRatType(val *RatType) *NullableRatType

func (NullableRatType) Get

func (v NullableRatType) Get() *RatType

func (NullableRatType) IsSet

func (v NullableRatType) IsSet() bool

func (NullableRatType) MarshalJSON

func (v NullableRatType) MarshalJSON() ([]byte, error)

func (*NullableRatType) Set

func (v *NullableRatType) Set(val *RatType)

func (*NullableRatType) UnmarshalJSON

func (v *NullableRatType) UnmarshalJSON(src []byte) error

func (*NullableRatType) Unset

func (v *NullableRatType) Unset()

type NullableRedirectResponse

type NullableRedirectResponse struct {
	// contains filtered or unexported fields
}

func NewNullableRedirectResponse

func NewNullableRedirectResponse(val *RedirectResponse) *NullableRedirectResponse

func (NullableRedirectResponse) Get

func (NullableRedirectResponse) IsSet

func (v NullableRedirectResponse) IsSet() bool

func (NullableRedirectResponse) MarshalJSON

func (v NullableRedirectResponse) MarshalJSON() ([]byte, error)

func (*NullableRedirectResponse) Set

func (*NullableRedirectResponse) UnmarshalJSON

func (v *NullableRedirectResponse) UnmarshalJSON(src []byte) error

func (*NullableRedirectResponse) Unset

func (v *NullableRedirectResponse) Unset()

type 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 NullableReportingArea

type NullableReportingArea struct {
	// contains filtered or unexported fields
}

func NewNullableReportingArea

func NewNullableReportingArea(val *ReportingArea) *NullableReportingArea

func (NullableReportingArea) Get

func (NullableReportingArea) IsSet

func (v NullableReportingArea) IsSet() bool

func (NullableReportingArea) MarshalJSON

func (v NullableReportingArea) MarshalJSON() ([]byte, error)

func (*NullableReportingArea) Set

func (v *NullableReportingArea) Set(val *ReportingArea)

func (*NullableReportingArea) UnmarshalJSON

func (v *NullableReportingArea) UnmarshalJSON(src []byte) error

func (*NullableReportingArea) Unset

func (v *NullableReportingArea) Unset()

type NullableReportingAreaType

type NullableReportingAreaType struct {
	// contains filtered or unexported fields
}

func NewNullableReportingAreaType

func NewNullableReportingAreaType(val *ReportingAreaType) *NullableReportingAreaType

func (NullableReportingAreaType) Get

func (NullableReportingAreaType) IsSet

func (v NullableReportingAreaType) IsSet() bool

func (NullableReportingAreaType) MarshalJSON

func (v NullableReportingAreaType) MarshalJSON() ([]byte, error)

func (*NullableReportingAreaType) Set

func (*NullableReportingAreaType) UnmarshalJSON

func (v *NullableReportingAreaType) UnmarshalJSON(src []byte) error

func (*NullableReportingAreaType) Unset

func (v *NullableReportingAreaType) Unset()

type NullableRequestLocInfo

type NullableRequestLocInfo struct {
	// contains filtered or unexported fields
}

func NewNullableRequestLocInfo

func NewNullableRequestLocInfo(val *RequestLocInfo) *NullableRequestLocInfo

func (NullableRequestLocInfo) Get

func (NullableRequestLocInfo) IsSet

func (v NullableRequestLocInfo) IsSet() bool

func (NullableRequestLocInfo) MarshalJSON

func (v NullableRequestLocInfo) MarshalJSON() ([]byte, error)

func (*NullableRequestLocInfo) Set

func (*NullableRequestLocInfo) UnmarshalJSON

func (v *NullableRequestLocInfo) UnmarshalJSON(src []byte) error

func (*NullableRequestLocInfo) Unset

func (v *NullableRequestLocInfo) Unset()

type NullableRequestPosInfo

type NullableRequestPosInfo struct {
	// contains filtered or unexported fields
}

func NewNullableRequestPosInfo

func NewNullableRequestPosInfo(val *RequestPosInfo) *NullableRequestPosInfo

func (NullableRequestPosInfo) Get

func (NullableRequestPosInfo) IsSet

func (v NullableRequestPosInfo) IsSet() bool

func (NullableRequestPosInfo) MarshalJSON

func (v NullableRequestPosInfo) MarshalJSON() ([]byte, error)

func (*NullableRequestPosInfo) Set

func (*NullableRequestPosInfo) UnmarshalJSON

func (v *NullableRequestPosInfo) UnmarshalJSON(src []byte) error

func (*NullableRequestPosInfo) Unset

func (v *NullableRequestPosInfo) 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 NullableRoutingAreaId

type NullableRoutingAreaId struct {
	// contains filtered or unexported fields
}

func NewNullableRoutingAreaId

func NewNullableRoutingAreaId(val *RoutingAreaId) *NullableRoutingAreaId

func (NullableRoutingAreaId) Get

func (NullableRoutingAreaId) IsSet

func (v NullableRoutingAreaId) IsSet() bool

func (NullableRoutingAreaId) MarshalJSON

func (v NullableRoutingAreaId) MarshalJSON() ([]byte, error)

func (*NullableRoutingAreaId) Set

func (v *NullableRoutingAreaId) Set(val *RoutingAreaId)

func (*NullableRoutingAreaId) UnmarshalJSON

func (v *NullableRoutingAreaId) UnmarshalJSON(src []byte) error

func (*NullableRoutingAreaId) Unset

func (v *NullableRoutingAreaId) Unset()

type NullableServiceAreaId

type NullableServiceAreaId struct {
	// contains filtered or unexported fields
}

func NewNullableServiceAreaId

func NewNullableServiceAreaId(val *ServiceAreaId) *NullableServiceAreaId

func (NullableServiceAreaId) Get

func (NullableServiceAreaId) IsSet

func (v NullableServiceAreaId) IsSet() bool

func (NullableServiceAreaId) MarshalJSON

func (v NullableServiceAreaId) MarshalJSON() ([]byte, error)

func (*NullableServiceAreaId) Set

func (v *NullableServiceAreaId) Set(val *ServiceAreaId)

func (*NullableServiceAreaId) UnmarshalJSON

func (v *NullableServiceAreaId) UnmarshalJSON(src []byte) error

func (*NullableServiceAreaId) Unset

func (v *NullableServiceAreaId) Unset()

type 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 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 NullableTerminationCause

type NullableTerminationCause struct {
	// contains filtered or unexported fields
}

func NewNullableTerminationCause

func NewNullableTerminationCause(val *TerminationCause) *NullableTerminationCause

func (NullableTerminationCause) Get

func (NullableTerminationCause) IsSet

func (v NullableTerminationCause) IsSet() bool

func (NullableTerminationCause) MarshalJSON

func (v NullableTerminationCause) MarshalJSON() ([]byte, error)

func (*NullableTerminationCause) Set

func (*NullableTerminationCause) UnmarshalJSON

func (v *NullableTerminationCause) UnmarshalJSON(src []byte) error

func (*NullableTerminationCause) Unset

func (v *NullableTerminationCause) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTnapId

type NullableTnapId struct {
	// contains filtered or unexported fields
}

func NewNullableTnapId

func NewNullableTnapId(val *TnapId) *NullableTnapId

func (NullableTnapId) Get

func (v NullableTnapId) Get() *TnapId

func (NullableTnapId) IsSet

func (v NullableTnapId) IsSet() bool

func (NullableTnapId) MarshalJSON

func (v NullableTnapId) MarshalJSON() ([]byte, error)

func (*NullableTnapId) Set

func (v *NullableTnapId) Set(val *TnapId)

func (*NullableTnapId) UnmarshalJSON

func (v *NullableTnapId) UnmarshalJSON(src []byte) error

func (*NullableTnapId) Unset

func (v *NullableTnapId) Unset()

type NullableTransportProtocol

type NullableTransportProtocol struct {
	// contains filtered or unexported fields
}

func NewNullableTransportProtocol

func NewNullableTransportProtocol(val *TransportProtocol) *NullableTransportProtocol

func (NullableTransportProtocol) Get

func (NullableTransportProtocol) IsSet

func (v NullableTransportProtocol) IsSet() bool

func (NullableTransportProtocol) MarshalJSON

func (v NullableTransportProtocol) MarshalJSON() ([]byte, error)

func (*NullableTransportProtocol) Set

func (*NullableTransportProtocol) UnmarshalJSON

func (v *NullableTransportProtocol) UnmarshalJSON(src []byte) error

func (*NullableTransportProtocol) Unset

func (v *NullableTransportProtocol) Unset()

type NullableTwapId

type NullableTwapId struct {
	// contains filtered or unexported fields
}

func NewNullableTwapId

func NewNullableTwapId(val *TwapId) *NullableTwapId

func (NullableTwapId) Get

func (v NullableTwapId) Get() *TwapId

func (NullableTwapId) IsSet

func (v NullableTwapId) IsSet() bool

func (NullableTwapId) MarshalJSON

func (v NullableTwapId) MarshalJSON() ([]byte, error)

func (*NullableTwapId) Set

func (v *NullableTwapId) Set(val *TwapId)

func (*NullableTwapId) UnmarshalJSON

func (v *NullableTwapId) UnmarshalJSON(src []byte) error

func (*NullableTwapId) Unset

func (v *NullableTwapId) Unset()

type NullableUePrivacyRequirements

type NullableUePrivacyRequirements struct {
	// contains filtered or unexported fields
}

func (NullableUePrivacyRequirements) Get

func (NullableUePrivacyRequirements) IsSet

func (NullableUePrivacyRequirements) MarshalJSON

func (v NullableUePrivacyRequirements) MarshalJSON() ([]byte, error)

func (*NullableUePrivacyRequirements) Set

func (*NullableUePrivacyRequirements) UnmarshalJSON

func (v *NullableUePrivacyRequirements) UnmarshalJSON(src []byte) error

func (*NullableUePrivacyRequirements) Unset

func (v *NullableUePrivacyRequirements) 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 NullableUsage

type NullableUsage struct {
	// contains filtered or unexported fields
}

func NewNullableUsage

func NewNullableUsage(val *Usage) *NullableUsage

func (NullableUsage) Get

func (v NullableUsage) Get() *Usage

func (NullableUsage) IsSet

func (v NullableUsage) IsSet() bool

func (NullableUsage) MarshalJSON

func (v NullableUsage) MarshalJSON() ([]byte, error)

func (*NullableUsage) Set

func (v *NullableUsage) Set(val *Usage)

func (*NullableUsage) UnmarshalJSON

func (v *NullableUsage) UnmarshalJSON(src []byte) error

func (*NullableUsage) Unset

func (v *NullableUsage) Unset()

type NullableUserLocation

type NullableUserLocation struct {
	// contains filtered or unexported fields
}

func NewNullableUserLocation

func NewNullableUserLocation(val *UserLocation) *NullableUserLocation

func (NullableUserLocation) Get

func (NullableUserLocation) IsSet

func (v NullableUserLocation) IsSet() bool

func (NullableUserLocation) MarshalJSON

func (v NullableUserLocation) MarshalJSON() ([]byte, error)

func (*NullableUserLocation) Set

func (v *NullableUserLocation) Set(val *UserLocation)

func (*NullableUserLocation) UnmarshalJSON

func (v *NullableUserLocation) UnmarshalJSON(src []byte) error

func (*NullableUserLocation) Unset

func (v *NullableUserLocation) Unset()

type NullableUtraLocation

type NullableUtraLocation struct {
	// contains filtered or unexported fields
}

func NewNullableUtraLocation

func NewNullableUtraLocation(val *UtraLocation) *NullableUtraLocation

func (NullableUtraLocation) Get

func (NullableUtraLocation) IsSet

func (v NullableUtraLocation) IsSet() bool

func (NullableUtraLocation) MarshalJSON

func (v NullableUtraLocation) MarshalJSON() ([]byte, error)

func (*NullableUtraLocation) Set

func (v *NullableUtraLocation) Set(val *UtraLocation)

func (*NullableUtraLocation) UnmarshalJSON

func (v *NullableUtraLocation) UnmarshalJSON(src []byte) error

func (*NullableUtraLocation) Unset

func (v *NullableUtraLocation) Unset()

type 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 OccurrenceInfo

type OccurrenceInfo struct {
	String *string
}

OccurrenceInfo Specifies occurrence of event reporting.

func (*OccurrenceInfo) MarshalJSON

func (src *OccurrenceInfo) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*OccurrenceInfo) UnmarshalJSON

func (dst *OccurrenceInfo) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type PeriodicEventInfo

type PeriodicEventInfo struct {
	// Number of required periodic event reports.
	ReportingAmount int32 `json:"reportingAmount"`
	// Event reporting periodic interval.
	ReportingInterval int32 `json:"reportingInterval"`
}

PeriodicEventInfo Indicates the information of periodic event reporting.

func NewPeriodicEventInfo

func NewPeriodicEventInfo(reportingAmount int32, reportingInterval int32) *PeriodicEventInfo

NewPeriodicEventInfo instantiates a new PeriodicEventInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPeriodicEventInfoWithDefaults

func NewPeriodicEventInfoWithDefaults() *PeriodicEventInfo

NewPeriodicEventInfoWithDefaults instantiates a new PeriodicEventInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PeriodicEventInfo) GetReportingAmount

func (o *PeriodicEventInfo) GetReportingAmount() int32

GetReportingAmount returns the ReportingAmount field value

func (*PeriodicEventInfo) GetReportingAmountOk

func (o *PeriodicEventInfo) GetReportingAmountOk() (*int32, bool)

GetReportingAmountOk returns a tuple with the ReportingAmount field value and a boolean to check if the value has been set.

func (*PeriodicEventInfo) GetReportingInterval

func (o *PeriodicEventInfo) GetReportingInterval() int32

GetReportingInterval returns the ReportingInterval field value

func (*PeriodicEventInfo) GetReportingIntervalOk

func (o *PeriodicEventInfo) GetReportingIntervalOk() (*int32, bool)

GetReportingIntervalOk returns a tuple with the ReportingInterval field value and a boolean to check if the value has been set.

func (PeriodicEventInfo) MarshalJSON

func (o PeriodicEventInfo) MarshalJSON() ([]byte, error)

func (*PeriodicEventInfo) SetReportingAmount

func (o *PeriodicEventInfo) SetReportingAmount(v int32)

SetReportingAmount sets field value

func (*PeriodicEventInfo) SetReportingInterval

func (o *PeriodicEventInfo) SetReportingInterval(v int32)

SetReportingInterval sets field value

func (PeriodicEventInfo) ToMap

func (o PeriodicEventInfo) ToMap() (map[string]interface{}, error)

type PlmnId

type PlmnId struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
}

PlmnId When PlmnId needs to be converted to string (e.g. when used in maps as key), the string shall be composed of three digits \"mcc\" followed by \"-\" and two or three digits \"mnc\".

func NewPlmnId

func NewPlmnId(mcc string, mnc string) *PlmnId

NewPlmnId instantiates a new PlmnId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPlmnIdWithDefaults

func NewPlmnIdWithDefaults() *PlmnId

NewPlmnIdWithDefaults instantiates a new PlmnId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PlmnId) GetMcc

func (o *PlmnId) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnId) GetMccOk

func (o *PlmnId) GetMccOk() (*string, bool)

GetMccOk returns a tuple with the Mcc field value and a boolean to check if the value has been set.

func (*PlmnId) GetMnc

func (o *PlmnId) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnId) GetMncOk

func (o *PlmnId) GetMncOk() (*string, bool)

GetMncOk returns a tuple with the Mnc field value and a boolean to check if the value has been set.

func (PlmnId) MarshalJSON

func (o PlmnId) MarshalJSON() ([]byte, error)

func (*PlmnId) SetMcc

func (o *PlmnId) SetMcc(v string)

SetMcc sets field value

func (*PlmnId) SetMnc

func (o *PlmnId) SetMnc(v string)

SetMnc sets field value

func (PlmnId) ToMap

func (o PlmnId) ToMap() (map[string]interface{}, error)

type PlmnIdNid

type PlmnIdNid struct {
	// Mobile Country Code part of the PLMN, comprising 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mcc string `json:"mcc"`
	// Mobile Network Code part of the PLMN, comprising 2 or 3 digits, as defined in clause 9.3.3.5 of 3GPP TS 38.413.
	Mnc string `json:"mnc"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

PlmnIdNid Contains the serving core network operator PLMN ID and, for an SNPN, the NID that together with the PLMN ID identifies the SNPN.

func NewPlmnIdNid

func NewPlmnIdNid(mcc string, mnc string) *PlmnIdNid

NewPlmnIdNid instantiates a new PlmnIdNid object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPlmnIdNidWithDefaults

func NewPlmnIdNidWithDefaults() *PlmnIdNid

NewPlmnIdNidWithDefaults instantiates a new PlmnIdNid object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PlmnIdNid) GetMcc

func (o *PlmnIdNid) GetMcc() string

GetMcc returns the Mcc field value

func (*PlmnIdNid) GetMccOk

func (o *PlmnIdNid) GetMccOk() (*string, bool)

GetMccOk returns a tuple with the Mcc field value and a boolean to check if the value has been set.

func (*PlmnIdNid) GetMnc

func (o *PlmnIdNid) GetMnc() string

GetMnc returns the Mnc field value

func (*PlmnIdNid) GetMncOk

func (o *PlmnIdNid) GetMncOk() (*string, bool)

GetMncOk returns a tuple with the Mnc field value and a boolean to check if the value has been set.

func (*PlmnIdNid) GetNid

func (o *PlmnIdNid) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*PlmnIdNid) GetNidOk

func (o *PlmnIdNid) GetNidOk() (*string, bool)

GetNidOk returns a tuple with the Nid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PlmnIdNid) HasNid

func (o *PlmnIdNid) HasNid() bool

HasNid returns a boolean if a field has been set.

func (PlmnIdNid) MarshalJSON

func (o PlmnIdNid) MarshalJSON() ([]byte, error)

func (*PlmnIdNid) SetMcc

func (o *PlmnIdNid) SetMcc(v string)

SetMcc sets field value

func (*PlmnIdNid) SetMnc

func (o *PlmnIdNid) SetMnc(v string)

SetMnc sets field value

func (*PlmnIdNid) SetNid

func (o *PlmnIdNid) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (PlmnIdNid) ToMap

func (o PlmnIdNid) ToMap() (map[string]interface{}, error)

type Point

type Point struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
}

Point Ellipsoid Point.

func NewPoint

func NewPoint(point GeographicalCoordinates, shape SupportedGADShapes) *Point

NewPoint instantiates a new Point object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointWithDefaults

func NewPointWithDefaults() *Point

NewPointWithDefaults instantiates a new Point object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Point) GetPoint

func (o *Point) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*Point) GetPointOk

func (o *Point) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (Point) MarshalJSON

func (o Point) MarshalJSON() ([]byte, error)

func (*Point) SetPoint

func (o *Point) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (Point) ToMap

func (o Point) ToMap() (map[string]interface{}, error)

type PointAllOf

type PointAllOf struct {
	Point GeographicalCoordinates `json:"point"`
}

PointAllOf struct for PointAllOf

func NewPointAllOf

func NewPointAllOf(point GeographicalCoordinates) *PointAllOf

NewPointAllOf instantiates a new PointAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointAllOfWithDefaults

func NewPointAllOfWithDefaults() *PointAllOf

NewPointAllOfWithDefaults instantiates a new PointAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointAllOf) GetPoint

func (o *PointAllOf) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*PointAllOf) GetPointOk

func (o *PointAllOf) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (PointAllOf) MarshalJSON

func (o PointAllOf) MarshalJSON() ([]byte, error)

func (*PointAllOf) SetPoint

func (o *PointAllOf) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (PointAllOf) ToMap

func (o PointAllOf) ToMap() (map[string]interface{}, error)

type PointAltitude

type PointAltitude struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude float64 `json:"altitude"`
}

PointAltitude Ellipsoid point with altitude.

func NewPointAltitude

func NewPointAltitude(point GeographicalCoordinates, altitude float64, shape SupportedGADShapes) *PointAltitude

NewPointAltitude instantiates a new PointAltitude object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointAltitudeWithDefaults

func NewPointAltitudeWithDefaults() *PointAltitude

NewPointAltitudeWithDefaults instantiates a new PointAltitude object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointAltitude) GetAltitude

func (o *PointAltitude) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitude) GetAltitudeOk

func (o *PointAltitude) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitude) GetPoint

func (o *PointAltitude) GetPoint() GeographicalCoordinates

GetPoint returns the Point field value

func (*PointAltitude) GetPointOk

func (o *PointAltitude) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (PointAltitude) MarshalJSON

func (o PointAltitude) MarshalJSON() ([]byte, error)

func (*PointAltitude) SetAltitude

func (o *PointAltitude) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitude) SetPoint

func (o *PointAltitude) SetPoint(v GeographicalCoordinates)

SetPoint sets field value

func (PointAltitude) ToMap

func (o PointAltitude) ToMap() (map[string]interface{}, error)

type PointAltitudeAllOf

type PointAltitudeAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude float64 `json:"altitude"`
}

PointAltitudeAllOf struct for PointAltitudeAllOf

func NewPointAltitudeAllOf

func NewPointAltitudeAllOf(point GeographicalCoordinates, altitude float64) *PointAltitudeAllOf

NewPointAltitudeAllOf instantiates a new PointAltitudeAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointAltitudeAllOfWithDefaults

func NewPointAltitudeAllOfWithDefaults() *PointAltitudeAllOf

NewPointAltitudeAllOfWithDefaults instantiates a new PointAltitudeAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointAltitudeAllOf) GetAltitude

func (o *PointAltitudeAllOf) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitudeAllOf) GetAltitudeOk

func (o *PointAltitudeAllOf) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitudeAllOf) GetPoint

GetPoint returns the Point field value

func (*PointAltitudeAllOf) GetPointOk

func (o *PointAltitudeAllOf) GetPointOk() (*GeographicalCoordinates, bool)

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (PointAltitudeAllOf) MarshalJSON

func (o PointAltitudeAllOf) MarshalJSON() ([]byte, error)

func (*PointAltitudeAllOf) SetAltitude

func (o *PointAltitudeAllOf) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitudeAllOf) SetPoint

SetPoint sets field value

func (PointAltitudeAllOf) ToMap

func (o PointAltitudeAllOf) ToMap() (map[string]interface{}, error)

type PointAltitudeUncertainty

type PointAltitudeUncertainty struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude           float64            `json:"altitude"`
	UncertaintyEllipse UncertaintyEllipse `json:"uncertaintyEllipse"`
	// Indicates value of uncertainty.
	UncertaintyAltitude float32 `json:"uncertaintyAltitude"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointAltitudeUncertainty Ellipsoid point with altitude and uncertainty ellipsoid.

func NewPointAltitudeUncertainty

func NewPointAltitudeUncertainty(point GeographicalCoordinates, altitude float64, uncertaintyEllipse UncertaintyEllipse, uncertaintyAltitude float32, confidence int32, shape SupportedGADShapes) *PointAltitudeUncertainty

NewPointAltitudeUncertainty instantiates a new PointAltitudeUncertainty object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointAltitudeUncertaintyWithDefaults

func NewPointAltitudeUncertaintyWithDefaults() *PointAltitudeUncertainty

NewPointAltitudeUncertaintyWithDefaults instantiates a new PointAltitudeUncertainty object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointAltitudeUncertainty) GetAltitude

func (o *PointAltitudeUncertainty) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitudeUncertainty) GetAltitudeOk

func (o *PointAltitudeUncertainty) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetConfidence

func (o *PointAltitudeUncertainty) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointAltitudeUncertainty) GetConfidenceOk

func (o *PointAltitudeUncertainty) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetPoint

GetPoint returns the Point field value

func (*PointAltitudeUncertainty) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetUncertaintyAltitude

func (o *PointAltitudeUncertainty) GetUncertaintyAltitude() float32

GetUncertaintyAltitude returns the UncertaintyAltitude field value

func (*PointAltitudeUncertainty) GetUncertaintyAltitudeOk

func (o *PointAltitudeUncertainty) GetUncertaintyAltitudeOk() (*float32, bool)

GetUncertaintyAltitudeOk returns a tuple with the UncertaintyAltitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertainty) GetUncertaintyEllipse

func (o *PointAltitudeUncertainty) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointAltitudeUncertainty) GetUncertaintyEllipseOk

func (o *PointAltitudeUncertainty) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointAltitudeUncertainty) MarshalJSON

func (o PointAltitudeUncertainty) MarshalJSON() ([]byte, error)

func (*PointAltitudeUncertainty) SetAltitude

func (o *PointAltitudeUncertainty) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitudeUncertainty) SetConfidence

func (o *PointAltitudeUncertainty) SetConfidence(v int32)

SetConfidence sets field value

func (*PointAltitudeUncertainty) SetPoint

SetPoint sets field value

func (*PointAltitudeUncertainty) SetUncertaintyAltitude

func (o *PointAltitudeUncertainty) SetUncertaintyAltitude(v float32)

SetUncertaintyAltitude sets field value

func (*PointAltitudeUncertainty) SetUncertaintyEllipse

func (o *PointAltitudeUncertainty) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointAltitudeUncertainty) ToMap

func (o PointAltitudeUncertainty) ToMap() (map[string]interface{}, error)

type PointAltitudeUncertaintyAllOf

type PointAltitudeUncertaintyAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of altitude.
	Altitude           float64            `json:"altitude"`
	UncertaintyEllipse UncertaintyEllipse `json:"uncertaintyEllipse"`
	// Indicates value of uncertainty.
	UncertaintyAltitude float32 `json:"uncertaintyAltitude"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointAltitudeUncertaintyAllOf struct for PointAltitudeUncertaintyAllOf

func NewPointAltitudeUncertaintyAllOf

func NewPointAltitudeUncertaintyAllOf(point GeographicalCoordinates, altitude float64, uncertaintyEllipse UncertaintyEllipse, uncertaintyAltitude float32, confidence int32) *PointAltitudeUncertaintyAllOf

NewPointAltitudeUncertaintyAllOf instantiates a new PointAltitudeUncertaintyAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointAltitudeUncertaintyAllOfWithDefaults

func NewPointAltitudeUncertaintyAllOfWithDefaults() *PointAltitudeUncertaintyAllOf

NewPointAltitudeUncertaintyAllOfWithDefaults instantiates a new PointAltitudeUncertaintyAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointAltitudeUncertaintyAllOf) GetAltitude

func (o *PointAltitudeUncertaintyAllOf) GetAltitude() float64

GetAltitude returns the Altitude field value

func (*PointAltitudeUncertaintyAllOf) GetAltitudeOk

func (o *PointAltitudeUncertaintyAllOf) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertaintyAllOf) GetConfidence

func (o *PointAltitudeUncertaintyAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointAltitudeUncertaintyAllOf) GetConfidenceOk

func (o *PointAltitudeUncertaintyAllOf) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertaintyAllOf) GetPoint

GetPoint returns the Point field value

func (*PointAltitudeUncertaintyAllOf) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyAltitude

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyAltitude() float32

GetUncertaintyAltitude returns the UncertaintyAltitude field value

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyAltitudeOk

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyAltitudeOk() (*float32, bool)

GetUncertaintyAltitudeOk returns a tuple with the UncertaintyAltitude field value and a boolean to check if the value has been set.

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyEllipse

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointAltitudeUncertaintyAllOf) GetUncertaintyEllipseOk

func (o *PointAltitudeUncertaintyAllOf) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointAltitudeUncertaintyAllOf) MarshalJSON

func (o PointAltitudeUncertaintyAllOf) MarshalJSON() ([]byte, error)

func (*PointAltitudeUncertaintyAllOf) SetAltitude

func (o *PointAltitudeUncertaintyAllOf) SetAltitude(v float64)

SetAltitude sets field value

func (*PointAltitudeUncertaintyAllOf) SetConfidence

func (o *PointAltitudeUncertaintyAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*PointAltitudeUncertaintyAllOf) SetPoint

SetPoint sets field value

func (*PointAltitudeUncertaintyAllOf) SetUncertaintyAltitude

func (o *PointAltitudeUncertaintyAllOf) SetUncertaintyAltitude(v float32)

SetUncertaintyAltitude sets field value

func (*PointAltitudeUncertaintyAllOf) SetUncertaintyEllipse

func (o *PointAltitudeUncertaintyAllOf) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointAltitudeUncertaintyAllOf) ToMap

func (o PointAltitudeUncertaintyAllOf) ToMap() (map[string]interface{}, error)

type PointUncertaintyCircle

type PointUncertaintyCircle struct {
	GADShape
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of uncertainty.
	Uncertainty float32 `json:"uncertainty"`
}

PointUncertaintyCircle Ellipsoid point with uncertainty circle.

func NewPointUncertaintyCircle

func NewPointUncertaintyCircle(point GeographicalCoordinates, uncertainty float32, shape SupportedGADShapes) *PointUncertaintyCircle

NewPointUncertaintyCircle instantiates a new PointUncertaintyCircle object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointUncertaintyCircleWithDefaults

func NewPointUncertaintyCircleWithDefaults() *PointUncertaintyCircle

NewPointUncertaintyCircleWithDefaults instantiates a new PointUncertaintyCircle object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointUncertaintyCircle) GetPoint

GetPoint returns the Point field value

func (*PointUncertaintyCircle) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyCircle) GetUncertainty

func (o *PointUncertaintyCircle) GetUncertainty() float32

GetUncertainty returns the Uncertainty field value

func (*PointUncertaintyCircle) GetUncertaintyOk

func (o *PointUncertaintyCircle) GetUncertaintyOk() (*float32, bool)

GetUncertaintyOk returns a tuple with the Uncertainty field value and a boolean to check if the value has been set.

func (PointUncertaintyCircle) MarshalJSON

func (o PointUncertaintyCircle) MarshalJSON() ([]byte, error)

func (*PointUncertaintyCircle) SetPoint

SetPoint sets field value

func (*PointUncertaintyCircle) SetUncertainty

func (o *PointUncertaintyCircle) SetUncertainty(v float32)

SetUncertainty sets field value

func (PointUncertaintyCircle) ToMap

func (o PointUncertaintyCircle) ToMap() (map[string]interface{}, error)

type PointUncertaintyCircleAllOf

type PointUncertaintyCircleAllOf struct {
	Point GeographicalCoordinates `json:"point"`
	// Indicates value of uncertainty.
	Uncertainty float32 `json:"uncertainty"`
}

PointUncertaintyCircleAllOf struct for PointUncertaintyCircleAllOf

func NewPointUncertaintyCircleAllOf

func NewPointUncertaintyCircleAllOf(point GeographicalCoordinates, uncertainty float32) *PointUncertaintyCircleAllOf

NewPointUncertaintyCircleAllOf instantiates a new PointUncertaintyCircleAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointUncertaintyCircleAllOfWithDefaults

func NewPointUncertaintyCircleAllOfWithDefaults() *PointUncertaintyCircleAllOf

NewPointUncertaintyCircleAllOfWithDefaults instantiates a new PointUncertaintyCircleAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointUncertaintyCircleAllOf) GetPoint

GetPoint returns the Point field value

func (*PointUncertaintyCircleAllOf) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyCircleAllOf) GetUncertainty

func (o *PointUncertaintyCircleAllOf) GetUncertainty() float32

GetUncertainty returns the Uncertainty field value

func (*PointUncertaintyCircleAllOf) GetUncertaintyOk

func (o *PointUncertaintyCircleAllOf) GetUncertaintyOk() (*float32, bool)

GetUncertaintyOk returns a tuple with the Uncertainty field value and a boolean to check if the value has been set.

func (PointUncertaintyCircleAllOf) MarshalJSON

func (o PointUncertaintyCircleAllOf) MarshalJSON() ([]byte, error)

func (*PointUncertaintyCircleAllOf) SetPoint

SetPoint sets field value

func (*PointUncertaintyCircleAllOf) SetUncertainty

func (o *PointUncertaintyCircleAllOf) SetUncertainty(v float32)

SetUncertainty sets field value

func (PointUncertaintyCircleAllOf) ToMap

func (o PointUncertaintyCircleAllOf) ToMap() (map[string]interface{}, error)

type PointUncertaintyEllipse

type PointUncertaintyEllipse struct {
	GADShape
	Point              GeographicalCoordinates `json:"point"`
	UncertaintyEllipse UncertaintyEllipse      `json:"uncertaintyEllipse"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointUncertaintyEllipse Ellipsoid point with uncertainty ellipse.

func NewPointUncertaintyEllipse

func NewPointUncertaintyEllipse(point GeographicalCoordinates, uncertaintyEllipse UncertaintyEllipse, confidence int32, shape SupportedGADShapes) *PointUncertaintyEllipse

NewPointUncertaintyEllipse instantiates a new PointUncertaintyEllipse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointUncertaintyEllipseWithDefaults

func NewPointUncertaintyEllipseWithDefaults() *PointUncertaintyEllipse

NewPointUncertaintyEllipseWithDefaults instantiates a new PointUncertaintyEllipse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointUncertaintyEllipse) GetConfidence

func (o *PointUncertaintyEllipse) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointUncertaintyEllipse) GetConfidenceOk

func (o *PointUncertaintyEllipse) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipse) GetPoint

GetPoint returns the Point field value

func (*PointUncertaintyEllipse) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipse) GetUncertaintyEllipse

func (o *PointUncertaintyEllipse) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointUncertaintyEllipse) GetUncertaintyEllipseOk

func (o *PointUncertaintyEllipse) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointUncertaintyEllipse) MarshalJSON

func (o PointUncertaintyEllipse) MarshalJSON() ([]byte, error)

func (*PointUncertaintyEllipse) SetConfidence

func (o *PointUncertaintyEllipse) SetConfidence(v int32)

SetConfidence sets field value

func (*PointUncertaintyEllipse) SetPoint

SetPoint sets field value

func (*PointUncertaintyEllipse) SetUncertaintyEllipse

func (o *PointUncertaintyEllipse) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointUncertaintyEllipse) ToMap

func (o PointUncertaintyEllipse) ToMap() (map[string]interface{}, error)

type PointUncertaintyEllipseAllOf

type PointUncertaintyEllipseAllOf struct {
	Point              GeographicalCoordinates `json:"point"`
	UncertaintyEllipse UncertaintyEllipse      `json:"uncertaintyEllipse"`
	// Indicates value of confidence.
	Confidence int32 `json:"confidence"`
}

PointUncertaintyEllipseAllOf struct for PointUncertaintyEllipseAllOf

func NewPointUncertaintyEllipseAllOf

func NewPointUncertaintyEllipseAllOf(point GeographicalCoordinates, uncertaintyEllipse UncertaintyEllipse, confidence int32) *PointUncertaintyEllipseAllOf

NewPointUncertaintyEllipseAllOf instantiates a new PointUncertaintyEllipseAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPointUncertaintyEllipseAllOfWithDefaults

func NewPointUncertaintyEllipseAllOfWithDefaults() *PointUncertaintyEllipseAllOf

NewPointUncertaintyEllipseAllOfWithDefaults instantiates a new PointUncertaintyEllipseAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PointUncertaintyEllipseAllOf) GetConfidence

func (o *PointUncertaintyEllipseAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*PointUncertaintyEllipseAllOf) GetConfidenceOk

func (o *PointUncertaintyEllipseAllOf) GetConfidenceOk() (*int32, bool)

GetConfidenceOk returns a tuple with the Confidence field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipseAllOf) GetPoint

GetPoint returns the Point field value

func (*PointUncertaintyEllipseAllOf) GetPointOk

GetPointOk returns a tuple with the Point field value and a boolean to check if the value has been set.

func (*PointUncertaintyEllipseAllOf) GetUncertaintyEllipse

func (o *PointUncertaintyEllipseAllOf) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*PointUncertaintyEllipseAllOf) GetUncertaintyEllipseOk

func (o *PointUncertaintyEllipseAllOf) GetUncertaintyEllipseOk() (*UncertaintyEllipse, bool)

GetUncertaintyEllipseOk returns a tuple with the UncertaintyEllipse field value and a boolean to check if the value has been set.

func (PointUncertaintyEllipseAllOf) MarshalJSON

func (o PointUncertaintyEllipseAllOf) MarshalJSON() ([]byte, error)

func (*PointUncertaintyEllipseAllOf) SetConfidence

func (o *PointUncertaintyEllipseAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*PointUncertaintyEllipseAllOf) SetPoint

SetPoint sets field value

func (*PointUncertaintyEllipseAllOf) SetUncertaintyEllipse

func (o *PointUncertaintyEllipseAllOf) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (PointUncertaintyEllipseAllOf) ToMap

func (o PointUncertaintyEllipseAllOf) ToMap() (map[string]interface{}, error)

type Polygon

type Polygon struct {
	GADShape
	// List of points.
	PointList []GeographicalCoordinates `json:"pointList"`
}

Polygon Polygon.

func NewPolygon

func NewPolygon(pointList []GeographicalCoordinates, shape SupportedGADShapes) *Polygon

NewPolygon instantiates a new Polygon object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPolygonWithDefaults

func NewPolygonWithDefaults() *Polygon

NewPolygonWithDefaults instantiates a new Polygon object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Polygon) GetPointList

func (o *Polygon) GetPointList() []GeographicalCoordinates

GetPointList returns the PointList field value

func (*Polygon) GetPointListOk

func (o *Polygon) GetPointListOk() ([]GeographicalCoordinates, bool)

GetPointListOk returns a tuple with the PointList field value and a boolean to check if the value has been set.

func (Polygon) MarshalJSON

func (o Polygon) MarshalJSON() ([]byte, error)

func (*Polygon) SetPointList

func (o *Polygon) SetPointList(v []GeographicalCoordinates)

SetPointList sets field value

func (Polygon) ToMap

func (o Polygon) ToMap() (map[string]interface{}, error)

type PolygonAllOf

type PolygonAllOf struct {
	// List of points.
	PointList []GeographicalCoordinates `json:"pointList"`
}

PolygonAllOf struct for PolygonAllOf

func NewPolygonAllOf

func NewPolygonAllOf(pointList []GeographicalCoordinates) *PolygonAllOf

NewPolygonAllOf instantiates a new PolygonAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPolygonAllOfWithDefaults

func NewPolygonAllOfWithDefaults() *PolygonAllOf

NewPolygonAllOfWithDefaults instantiates a new PolygonAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PolygonAllOf) GetPointList

func (o *PolygonAllOf) GetPointList() []GeographicalCoordinates

GetPointList returns the PointList field value

func (*PolygonAllOf) GetPointListOk

func (o *PolygonAllOf) GetPointListOk() ([]GeographicalCoordinates, bool)

GetPointListOk returns a tuple with the PointList field value and a boolean to check if the value has been set.

func (PolygonAllOf) MarshalJSON

func (o PolygonAllOf) MarshalJSON() ([]byte, error)

func (*PolygonAllOf) SetPointList

func (o *PolygonAllOf) SetPointList(v []GeographicalCoordinates)

SetPointList sets field value

func (PolygonAllOf) ToMap

func (o PolygonAllOf) ToMap() (map[string]interface{}, error)

type PositioningMethod

type PositioningMethod struct {
	String *string
}

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 PositioningMethodAndUsage

type PositioningMethodAndUsage struct {
	Method     PositioningMethod `json:"method"`
	Mode       PositioningMode   `json:"mode"`
	Usage      Usage             `json:"usage"`
	MethodCode *int32            `json:"methodCode,omitempty"`
}

PositioningMethodAndUsage Indicates the usage of a positioning method.

func NewPositioningMethodAndUsage

func NewPositioningMethodAndUsage(method PositioningMethod, mode PositioningMode, usage Usage) *PositioningMethodAndUsage

NewPositioningMethodAndUsage instantiates a new PositioningMethodAndUsage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPositioningMethodAndUsageWithDefaults

func NewPositioningMethodAndUsageWithDefaults() *PositioningMethodAndUsage

NewPositioningMethodAndUsageWithDefaults instantiates a new PositioningMethodAndUsage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PositioningMethodAndUsage) GetMethod

GetMethod returns the Method field value

func (*PositioningMethodAndUsage) GetMethodCode

func (o *PositioningMethodAndUsage) GetMethodCode() int32

GetMethodCode returns the MethodCode field value if set, zero value otherwise.

func (*PositioningMethodAndUsage) GetMethodCodeOk

func (o *PositioningMethodAndUsage) GetMethodCodeOk() (*int32, bool)

GetMethodCodeOk returns a tuple with the MethodCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PositioningMethodAndUsage) GetMethodOk

func (o *PositioningMethodAndUsage) GetMethodOk() (*PositioningMethod, bool)

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*PositioningMethodAndUsage) GetMode

GetMode returns the Mode field value

func (*PositioningMethodAndUsage) GetModeOk

func (o *PositioningMethodAndUsage) GetModeOk() (*PositioningMode, bool)

GetModeOk returns a tuple with the Mode field value and a boolean to check if the value has been set.

func (*PositioningMethodAndUsage) GetUsage

func (o *PositioningMethodAndUsage) GetUsage() Usage

GetUsage returns the Usage field value

func (*PositioningMethodAndUsage) GetUsageOk

func (o *PositioningMethodAndUsage) GetUsageOk() (*Usage, bool)

GetUsageOk returns a tuple with the Usage field value and a boolean to check if the value has been set.

func (*PositioningMethodAndUsage) HasMethodCode

func (o *PositioningMethodAndUsage) HasMethodCode() bool

HasMethodCode returns a boolean if a field has been set.

func (PositioningMethodAndUsage) MarshalJSON

func (o PositioningMethodAndUsage) MarshalJSON() ([]byte, error)

func (*PositioningMethodAndUsage) SetMethod

SetMethod sets field value

func (*PositioningMethodAndUsage) SetMethodCode

func (o *PositioningMethodAndUsage) SetMethodCode(v int32)

SetMethodCode gets a reference to the given int32 and assigns it to the MethodCode field.

func (*PositioningMethodAndUsage) SetMode

SetMode sets field value

func (*PositioningMethodAndUsage) SetUsage

func (o *PositioningMethodAndUsage) SetUsage(v Usage)

SetUsage sets field value

func (PositioningMethodAndUsage) ToMap

func (o PositioningMethodAndUsage) ToMap() (map[string]interface{}, error)

type PositioningMode

type PositioningMode struct {
	String *string
}

PositioningMode Indicates supported modes used for positioning method.

func (*PositioningMode) MarshalJSON

func (src *PositioningMode) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PositioningMode) UnmarshalJSON

func (dst *PositioningMode) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ProblemDetails

type ProblemDetails struct {
	// String providing an URI formatted according to RFC 3986.
	Type   *string `json:"type,omitempty"`
	Title  *string `json:"title,omitempty"`
	Status *int32  `json:"status,omitempty"`
	// A human-readable explanation specific to this occurrence of the problem.
	Detail *string `json:"detail,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	Instance *string `json:"instance,omitempty"`
	// A machine-readable application error cause specific to this occurrence of the problem.  This IE should be present and provide application-related error information, if available.
	Cause         *string        `json:"cause,omitempty"`
	InvalidParams []InvalidParam `json:"invalidParams,omitempty"`
	// A string used to indicate the features supported by an API that is used as defined in clause  6.6 in 3GPP TS 29.500. The string shall contain a bitmask indicating supported features in  hexadecimal representation Each character in the string shall take a value of \"0\" to \"9\",  \"a\" to \"f\" or \"A\" to \"F\" and shall represent the support of 4 features as described in  table 5.2.2-3. The most significant character representing the highest-numbered features shall  appear first in the string, and the character representing features 1 to 4 shall appear last  in the string. The list of features and their numbering (starting with 1) are defined  separately for each API. If the string contains a lower number of characters than there are  defined features for an API, all features that would be represented by characters that are not  present in the string are not supported.
	SupportedFeatures  *string         `json:"supportedFeatures,omitempty"`
	AccessTokenError   *AccessTokenErr `json:"accessTokenError,omitempty"`
	AccessTokenRequest *AccessTokenReq `json:"accessTokenRequest,omitempty"`
	// Fully Qualified Domain Name
	NrfId                *string  `json:"nrfId,omitempty"`
	SupportedApiVersions []string `json:"supportedApiVersions,omitempty"`
}

ProblemDetails Provides additional information in an error response.

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

NewProblemDetails instantiates a new ProblemDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

NewProblemDetailsWithDefaults instantiates a new ProblemDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProblemDetails) GetAccessTokenError

func (o *ProblemDetails) GetAccessTokenError() AccessTokenErr

GetAccessTokenError returns the AccessTokenError field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenErrorOk

func (o *ProblemDetails) GetAccessTokenErrorOk() (*AccessTokenErr, bool)

GetAccessTokenErrorOk returns a tuple with the AccessTokenError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetAccessTokenRequest

func (o *ProblemDetails) GetAccessTokenRequest() AccessTokenReq

GetAccessTokenRequest returns the AccessTokenRequest field value if set, zero value otherwise.

func (*ProblemDetails) GetAccessTokenRequestOk

func (o *ProblemDetails) GetAccessTokenRequestOk() (*AccessTokenReq, bool)

GetAccessTokenRequestOk returns a tuple with the AccessTokenRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetCause

func (o *ProblemDetails) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*ProblemDetails) GetCauseOk

func (o *ProblemDetails) GetCauseOk() (*string, bool)

GetCauseOk returns a tuple with the Cause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ProblemDetails) GetDetailOk

func (o *ProblemDetails) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise.

func (*ProblemDetails) GetInstanceOk

func (o *ProblemDetails) GetInstanceOk() (*string, bool)

GetInstanceOk returns a tuple with the Instance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetInvalidParams

func (o *ProblemDetails) GetInvalidParams() []InvalidParam

GetInvalidParams returns the InvalidParams field value if set, zero value otherwise.

func (*ProblemDetails) GetInvalidParamsOk

func (o *ProblemDetails) GetInvalidParamsOk() ([]InvalidParam, bool)

GetInvalidParamsOk returns a tuple with the InvalidParams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetNrfId

func (o *ProblemDetails) GetNrfId() string

GetNrfId returns the NrfId field value if set, zero value otherwise.

func (*ProblemDetails) GetNrfIdOk

func (o *ProblemDetails) GetNrfIdOk() (*string, bool)

GetNrfIdOk returns a tuple with the NrfId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ProblemDetails) GetStatusOk

func (o *ProblemDetails) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetSupportedApiVersions

func (o *ProblemDetails) GetSupportedApiVersions() []string

GetSupportedApiVersions returns the SupportedApiVersions field value if set, zero value otherwise.

func (*ProblemDetails) GetSupportedApiVersionsOk

func (o *ProblemDetails) GetSupportedApiVersionsOk() ([]string, bool)

GetSupportedApiVersionsOk returns a tuple with the SupportedApiVersions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetSupportedFeatures

func (o *ProblemDetails) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*ProblemDetails) GetSupportedFeaturesOk

func (o *ProblemDetails) GetSupportedFeaturesOk() (*string, bool)

GetSupportedFeaturesOk returns a tuple with the SupportedFeatures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ProblemDetails) GetTitleOk

func (o *ProblemDetails) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProblemDetails) GetTypeOk

func (o *ProblemDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProblemDetails) HasAccessTokenError

func (o *ProblemDetails) HasAccessTokenError() bool

HasAccessTokenError returns a boolean if a field has been set.

func (*ProblemDetails) HasAccessTokenRequest

func (o *ProblemDetails) HasAccessTokenRequest() bool

HasAccessTokenRequest returns a boolean if a field has been set.

func (*ProblemDetails) HasCause

func (o *ProblemDetails) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasInvalidParams

func (o *ProblemDetails) HasInvalidParams() bool

HasInvalidParams returns a boolean if a field has been set.

func (*ProblemDetails) HasNrfId

func (o *ProblemDetails) HasNrfId() bool

HasNrfId returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedApiVersions

func (o *ProblemDetails) HasSupportedApiVersions() bool

HasSupportedApiVersions returns a boolean if a field has been set.

func (*ProblemDetails) HasSupportedFeatures

func (o *ProblemDetails) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

func (o ProblemDetails) MarshalJSON() ([]byte, error)

func (*ProblemDetails) SetAccessTokenError

func (o *ProblemDetails) SetAccessTokenError(v AccessTokenErr)

SetAccessTokenError gets a reference to the given AccessTokenErr and assigns it to the AccessTokenError field.

func (*ProblemDetails) SetAccessTokenRequest

func (o *ProblemDetails) SetAccessTokenRequest(v AccessTokenReq)

SetAccessTokenRequest gets a reference to the given AccessTokenReq and assigns it to the AccessTokenRequest field.

func (*ProblemDetails) SetCause

func (o *ProblemDetails) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given string and assigns it to the Instance field.

func (*ProblemDetails) SetInvalidParams

func (o *ProblemDetails) SetInvalidParams(v []InvalidParam)

SetInvalidParams gets a reference to the given []InvalidParam and assigns it to the InvalidParams field.

func (*ProblemDetails) SetNrfId

func (o *ProblemDetails) SetNrfId(v string)

SetNrfId gets a reference to the given string and assigns it to the NrfId field.

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*ProblemDetails) SetSupportedApiVersions

func (o *ProblemDetails) SetSupportedApiVersions(v []string)

SetSupportedApiVersions gets a reference to the given []string and assigns it to the SupportedApiVersions field.

func (*ProblemDetails) SetSupportedFeatures

func (o *ProblemDetails) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ProblemDetails) ToMap

func (o ProblemDetails) ToMap() (map[string]interface{}, error)

type ProvideLocInfo

type ProvideLocInfo struct {
	CurrentLoc         *bool           `json:"currentLoc,omitempty"`
	Location           *UserLocation   `json:"location,omitempty"`
	AdditionalLocation *UserLocation   `json:"additionalLocation,omitempty"`
	GeoInfo            *GeographicArea `json:"geoInfo,omitempty"`
	// Indicates value of the age of the location estimate.
	LocationAge *int32   `json:"locationAge,omitempty"`
	RatType     *RatType `json:"ratType,omitempty"`
	// String with format \"time-numoffset\" optionally appended by \"daylightSavingTime\", where  - \"time-numoffset\" shall represent the time zone adjusted for daylight saving time and be    encoded as time-numoffset as defined in clause 5.6 of IETF RFC 3339;  - \"daylightSavingTime\" shall represent the adjustment that has been made and shall be    encoded as \"+1\" or \"+2\" for a +1 or +2 hours adjustment.   The example is for 8 hours behind UTC, +1 hour adjustment for Daylight Saving Time.
	Timezone *string `json:"timezone,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"`
	OldGuami          *Guami  `json:"oldGuami,omitempty"`
}

ProvideLocInfo Data within Provide Location Information Response

func NewProvideLocInfo

func NewProvideLocInfo() *ProvideLocInfo

NewProvideLocInfo instantiates a new ProvideLocInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProvideLocInfoWithDefaults

func NewProvideLocInfoWithDefaults() *ProvideLocInfo

NewProvideLocInfoWithDefaults instantiates a new ProvideLocInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProvideLocInfo) GetAdditionalLocation

func (o *ProvideLocInfo) GetAdditionalLocation() UserLocation

GetAdditionalLocation returns the AdditionalLocation field value if set, zero value otherwise.

func (*ProvideLocInfo) GetAdditionalLocationOk

func (o *ProvideLocInfo) GetAdditionalLocationOk() (*UserLocation, bool)

GetAdditionalLocationOk returns a tuple with the AdditionalLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvideLocInfo) GetCurrentLoc

func (o *ProvideLocInfo) GetCurrentLoc() bool

GetCurrentLoc returns the CurrentLoc field value if set, zero value otherwise.

func (*ProvideLocInfo) GetCurrentLocOk

func (o *ProvideLocInfo) GetCurrentLocOk() (*bool, bool)

GetCurrentLocOk returns a tuple with the CurrentLoc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvideLocInfo) GetGeoInfo

func (o *ProvideLocInfo) GetGeoInfo() GeographicArea

GetGeoInfo returns the GeoInfo field value if set, zero value otherwise.

func (*ProvideLocInfo) GetGeoInfoOk

func (o *ProvideLocInfo) GetGeoInfoOk() (*GeographicArea, bool)

GetGeoInfoOk returns a tuple with the GeoInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvideLocInfo) GetLocation

func (o *ProvideLocInfo) GetLocation() UserLocation

GetLocation returns the Location field value if set, zero value otherwise.

func (*ProvideLocInfo) GetLocationAge

func (o *ProvideLocInfo) GetLocationAge() int32

GetLocationAge returns the LocationAge field value if set, zero value otherwise.

func (*ProvideLocInfo) GetLocationAgeOk

func (o *ProvideLocInfo) GetLocationAgeOk() (*int32, bool)

GetLocationAgeOk returns a tuple with the LocationAge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvideLocInfo) GetLocationOk

func (o *ProvideLocInfo) GetLocationOk() (*UserLocation, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvideLocInfo) GetOldGuami

func (o *ProvideLocInfo) GetOldGuami() Guami

GetOldGuami returns the OldGuami field value if set, zero value otherwise.

func (*ProvideLocInfo) GetOldGuamiOk

func (o *ProvideLocInfo) GetOldGuamiOk() (*Guami, bool)

GetOldGuamiOk returns a tuple with the OldGuami field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvideLocInfo) GetRatType

func (o *ProvideLocInfo) GetRatType() RatType

GetRatType returns the RatType field value if set, zero value otherwise.

func (*ProvideLocInfo) GetRatTypeOk

func (o *ProvideLocInfo) GetRatTypeOk() (*RatType, bool)

GetRatTypeOk returns a tuple with the RatType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvideLocInfo) GetSupportedFeatures

func (o *ProvideLocInfo) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*ProvideLocInfo) GetSupportedFeaturesOk

func (o *ProvideLocInfo) 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 (*ProvideLocInfo) GetTimezone

func (o *ProvideLocInfo) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*ProvideLocInfo) GetTimezoneOk

func (o *ProvideLocInfo) GetTimezoneOk() (*string, bool)

GetTimezoneOk returns a tuple with the Timezone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvideLocInfo) HasAdditionalLocation

func (o *ProvideLocInfo) HasAdditionalLocation() bool

HasAdditionalLocation returns a boolean if a field has been set.

func (*ProvideLocInfo) HasCurrentLoc

func (o *ProvideLocInfo) HasCurrentLoc() bool

HasCurrentLoc returns a boolean if a field has been set.

func (*ProvideLocInfo) HasGeoInfo

func (o *ProvideLocInfo) HasGeoInfo() bool

HasGeoInfo returns a boolean if a field has been set.

func (*ProvideLocInfo) HasLocation

func (o *ProvideLocInfo) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*ProvideLocInfo) HasLocationAge

func (o *ProvideLocInfo) HasLocationAge() bool

HasLocationAge returns a boolean if a field has been set.

func (*ProvideLocInfo) HasOldGuami

func (o *ProvideLocInfo) HasOldGuami() bool

HasOldGuami returns a boolean if a field has been set.

func (*ProvideLocInfo) HasRatType

func (o *ProvideLocInfo) HasRatType() bool

HasRatType returns a boolean if a field has been set.

func (*ProvideLocInfo) HasSupportedFeatures

func (o *ProvideLocInfo) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProvideLocInfo) HasTimezone

func (o *ProvideLocInfo) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (ProvideLocInfo) MarshalJSON

func (o ProvideLocInfo) MarshalJSON() ([]byte, error)

func (*ProvideLocInfo) SetAdditionalLocation

func (o *ProvideLocInfo) SetAdditionalLocation(v UserLocation)

SetAdditionalLocation gets a reference to the given UserLocation and assigns it to the AdditionalLocation field.

func (*ProvideLocInfo) SetCurrentLoc

func (o *ProvideLocInfo) SetCurrentLoc(v bool)

SetCurrentLoc gets a reference to the given bool and assigns it to the CurrentLoc field.

func (*ProvideLocInfo) SetGeoInfo

func (o *ProvideLocInfo) SetGeoInfo(v GeographicArea)

SetGeoInfo gets a reference to the given GeographicArea and assigns it to the GeoInfo field.

func (*ProvideLocInfo) SetLocation

func (o *ProvideLocInfo) SetLocation(v UserLocation)

SetLocation gets a reference to the given UserLocation and assigns it to the Location field.

func (*ProvideLocInfo) SetLocationAge

func (o *ProvideLocInfo) SetLocationAge(v int32)

SetLocationAge gets a reference to the given int32 and assigns it to the LocationAge field.

func (*ProvideLocInfo) SetOldGuami

func (o *ProvideLocInfo) SetOldGuami(v Guami)

SetOldGuami gets a reference to the given Guami and assigns it to the OldGuami field.

func (*ProvideLocInfo) SetRatType

func (o *ProvideLocInfo) SetRatType(v RatType)

SetRatType gets a reference to the given RatType and assigns it to the RatType field.

func (*ProvideLocInfo) SetSupportedFeatures

func (o *ProvideLocInfo) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*ProvideLocInfo) SetTimezone

func (o *ProvideLocInfo) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (ProvideLocInfo) ToMap

func (o ProvideLocInfo) ToMap() (map[string]interface{}, error)

type ProvidePosInfo

type ProvidePosInfo struct {
	LocationEstimate            *GeographicArea              `json:"locationEstimate,omitempty"`
	LocalLocationEstimate       *LocalArea                   `json:"localLocationEstimate,omitempty"`
	AccuracyFulfilmentIndicator *AccuracyFulfilmentIndicator `json:"accuracyFulfilmentIndicator,omitempty"`
	// Indicates value of the age of the location estimate.
	AgeOfLocationEstimate *int32 `json:"ageOfLocationEstimate,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	TimestampOfLocationEstimate *time.Time                      `json:"timestampOfLocationEstimate,omitempty"`
	VelocityEstimate            *VelocityEstimate               `json:"velocityEstimate,omitempty"`
	PositioningDataList         []PositioningMethodAndUsage     `json:"positioningDataList,omitempty"`
	GnssPositioningDataList     []GnssPositioningMethodAndUsage `json:"gnssPositioningDataList,omitempty"`
	Ecgi                        *Ecgi                           `json:"ecgi,omitempty"`
	Ncgi                        *Ncgi                           `json:"ncgi,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	TargetServingNode *string `json:"targetServingNode,omitempty"`
	// Fully Qualified Domain Name
	TargetMmeName *string `json:"targetMmeName,omitempty"`
	// Fully Qualified Domain Name
	TargetMmeRealm *string       `json:"targetMmeRealm,omitempty"`
	UtranSrvccInd  *bool         `json:"utranSrvccInd,omitempty"`
	CivicAddress   *CivicAddress `json:"civicAddress,omitempty"`
	// Specifies the measured uncompensated atmospheric pressure.
	BarometricPressure *int32 `json:"barometricPressure,omitempty"`
	// Indicates value of altitude.
	Altitude *float64 `json:"altitude,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"`
	// LMF identification.
	ServingLMFIdentification *string                   `json:"servingLMFIdentification,omitempty"`
	LocationPrivacyVerResult *LocationPrivacyVerResult `json:"locationPrivacyVerResult,omitempty"`
	AchievedQos              *MinorLocationQoS         `json:"achievedQos,omitempty"`
}

ProvidePosInfo Data within Provide Positioning Information Response

func NewProvidePosInfo

func NewProvidePosInfo() *ProvidePosInfo

NewProvidePosInfo instantiates a new ProvidePosInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProvidePosInfoWithDefaults

func NewProvidePosInfoWithDefaults() *ProvidePosInfo

NewProvidePosInfoWithDefaults instantiates a new ProvidePosInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProvidePosInfo) GetAccuracyFulfilmentIndicator

func (o *ProvidePosInfo) GetAccuracyFulfilmentIndicator() AccuracyFulfilmentIndicator

GetAccuracyFulfilmentIndicator returns the AccuracyFulfilmentIndicator field value if set, zero value otherwise.

func (*ProvidePosInfo) GetAccuracyFulfilmentIndicatorOk

func (o *ProvidePosInfo) GetAccuracyFulfilmentIndicatorOk() (*AccuracyFulfilmentIndicator, bool)

GetAccuracyFulfilmentIndicatorOk returns a tuple with the AccuracyFulfilmentIndicator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetAchievedQos

func (o *ProvidePosInfo) GetAchievedQos() MinorLocationQoS

GetAchievedQos returns the AchievedQos field value if set, zero value otherwise.

func (*ProvidePosInfo) GetAchievedQosOk

func (o *ProvidePosInfo) 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 (*ProvidePosInfo) GetAgeOfLocationEstimate

func (o *ProvidePosInfo) GetAgeOfLocationEstimate() int32

GetAgeOfLocationEstimate returns the AgeOfLocationEstimate field value if set, zero value otherwise.

func (*ProvidePosInfo) GetAgeOfLocationEstimateOk

func (o *ProvidePosInfo) GetAgeOfLocationEstimateOk() (*int32, bool)

GetAgeOfLocationEstimateOk returns a tuple with the AgeOfLocationEstimate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetAltitude

func (o *ProvidePosInfo) GetAltitude() float64

GetAltitude returns the Altitude field value if set, zero value otherwise.

func (*ProvidePosInfo) GetAltitudeOk

func (o *ProvidePosInfo) GetAltitudeOk() (*float64, bool)

GetAltitudeOk returns a tuple with the Altitude field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetBarometricPressure

func (o *ProvidePosInfo) GetBarometricPressure() int32

GetBarometricPressure returns the BarometricPressure field value if set, zero value otherwise.

func (*ProvidePosInfo) GetBarometricPressureOk

func (o *ProvidePosInfo) GetBarometricPressureOk() (*int32, bool)

GetBarometricPressureOk returns a tuple with the BarometricPressure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetCivicAddress

func (o *ProvidePosInfo) GetCivicAddress() CivicAddress

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*ProvidePosInfo) GetCivicAddressOk

func (o *ProvidePosInfo) 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 (*ProvidePosInfo) GetEcgi

func (o *ProvidePosInfo) GetEcgi() Ecgi

GetEcgi returns the Ecgi field value if set, zero value otherwise.

func (*ProvidePosInfo) GetEcgiOk

func (o *ProvidePosInfo) GetEcgiOk() (*Ecgi, bool)

GetEcgiOk returns a tuple with the Ecgi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetGnssPositioningDataList

func (o *ProvidePosInfo) GetGnssPositioningDataList() []GnssPositioningMethodAndUsage

GetGnssPositioningDataList returns the GnssPositioningDataList field value if set, zero value otherwise.

func (*ProvidePosInfo) GetGnssPositioningDataListOk

func (o *ProvidePosInfo) GetGnssPositioningDataListOk() ([]GnssPositioningMethodAndUsage, bool)

GetGnssPositioningDataListOk returns a tuple with the GnssPositioningDataList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetLocalLocationEstimate

func (o *ProvidePosInfo) GetLocalLocationEstimate() LocalArea

GetLocalLocationEstimate returns the LocalLocationEstimate field value if set, zero value otherwise.

func (*ProvidePosInfo) GetLocalLocationEstimateOk

func (o *ProvidePosInfo) GetLocalLocationEstimateOk() (*LocalArea, bool)

GetLocalLocationEstimateOk returns a tuple with the LocalLocationEstimate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetLocationEstimate

func (o *ProvidePosInfo) GetLocationEstimate() GeographicArea

GetLocationEstimate returns the LocationEstimate field value if set, zero value otherwise.

func (*ProvidePosInfo) GetLocationEstimateOk

func (o *ProvidePosInfo) GetLocationEstimateOk() (*GeographicArea, bool)

GetLocationEstimateOk returns a tuple with the LocationEstimate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetLocationPrivacyVerResult

func (o *ProvidePosInfo) GetLocationPrivacyVerResult() LocationPrivacyVerResult

GetLocationPrivacyVerResult returns the LocationPrivacyVerResult field value if set, zero value otherwise.

func (*ProvidePosInfo) GetLocationPrivacyVerResultOk

func (o *ProvidePosInfo) GetLocationPrivacyVerResultOk() (*LocationPrivacyVerResult, bool)

GetLocationPrivacyVerResultOk returns a tuple with the LocationPrivacyVerResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetNcgi

func (o *ProvidePosInfo) GetNcgi() Ncgi

GetNcgi returns the Ncgi field value if set, zero value otherwise.

func (*ProvidePosInfo) GetNcgiOk

func (o *ProvidePosInfo) GetNcgiOk() (*Ncgi, bool)

GetNcgiOk returns a tuple with the Ncgi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetPositioningDataList

func (o *ProvidePosInfo) GetPositioningDataList() []PositioningMethodAndUsage

GetPositioningDataList returns the PositioningDataList field value if set, zero value otherwise.

func (*ProvidePosInfo) GetPositioningDataListOk

func (o *ProvidePosInfo) GetPositioningDataListOk() ([]PositioningMethodAndUsage, bool)

GetPositioningDataListOk returns a tuple with the PositioningDataList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetServingLMFIdentification

func (o *ProvidePosInfo) GetServingLMFIdentification() string

GetServingLMFIdentification returns the ServingLMFIdentification field value if set, zero value otherwise.

func (*ProvidePosInfo) GetServingLMFIdentificationOk

func (o *ProvidePosInfo) GetServingLMFIdentificationOk() (*string, bool)

GetServingLMFIdentificationOk returns a tuple with the ServingLMFIdentification field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetSupportedFeatures

func (o *ProvidePosInfo) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*ProvidePosInfo) GetSupportedFeaturesOk

func (o *ProvidePosInfo) 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 (*ProvidePosInfo) GetTargetMmeName

func (o *ProvidePosInfo) GetTargetMmeName() string

GetTargetMmeName returns the TargetMmeName field value if set, zero value otherwise.

func (*ProvidePosInfo) GetTargetMmeNameOk

func (o *ProvidePosInfo) GetTargetMmeNameOk() (*string, bool)

GetTargetMmeNameOk returns a tuple with the TargetMmeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetTargetMmeRealm

func (o *ProvidePosInfo) GetTargetMmeRealm() string

GetTargetMmeRealm returns the TargetMmeRealm field value if set, zero value otherwise.

func (*ProvidePosInfo) GetTargetMmeRealmOk

func (o *ProvidePosInfo) GetTargetMmeRealmOk() (*string, bool)

GetTargetMmeRealmOk returns a tuple with the TargetMmeRealm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetTargetServingNode

func (o *ProvidePosInfo) GetTargetServingNode() string

GetTargetServingNode returns the TargetServingNode field value if set, zero value otherwise.

func (*ProvidePosInfo) GetTargetServingNodeOk

func (o *ProvidePosInfo) GetTargetServingNodeOk() (*string, bool)

GetTargetServingNodeOk returns a tuple with the TargetServingNode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetTimestampOfLocationEstimate

func (o *ProvidePosInfo) GetTimestampOfLocationEstimate() time.Time

GetTimestampOfLocationEstimate returns the TimestampOfLocationEstimate field value if set, zero value otherwise.

func (*ProvidePosInfo) GetTimestampOfLocationEstimateOk

func (o *ProvidePosInfo) GetTimestampOfLocationEstimateOk() (*time.Time, bool)

GetTimestampOfLocationEstimateOk returns a tuple with the TimestampOfLocationEstimate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetUtranSrvccInd

func (o *ProvidePosInfo) GetUtranSrvccInd() bool

GetUtranSrvccInd returns the UtranSrvccInd field value if set, zero value otherwise.

func (*ProvidePosInfo) GetUtranSrvccIndOk

func (o *ProvidePosInfo) GetUtranSrvccIndOk() (*bool, bool)

GetUtranSrvccIndOk returns a tuple with the UtranSrvccInd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) GetVelocityEstimate

func (o *ProvidePosInfo) GetVelocityEstimate() VelocityEstimate

GetVelocityEstimate returns the VelocityEstimate field value if set, zero value otherwise.

func (*ProvidePosInfo) GetVelocityEstimateOk

func (o *ProvidePosInfo) GetVelocityEstimateOk() (*VelocityEstimate, bool)

GetVelocityEstimateOk returns a tuple with the VelocityEstimate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProvidePosInfo) HasAccuracyFulfilmentIndicator

func (o *ProvidePosInfo) HasAccuracyFulfilmentIndicator() bool

HasAccuracyFulfilmentIndicator returns a boolean if a field has been set.

func (*ProvidePosInfo) HasAchievedQos

func (o *ProvidePosInfo) HasAchievedQos() bool

HasAchievedQos returns a boolean if a field has been set.

func (*ProvidePosInfo) HasAgeOfLocationEstimate

func (o *ProvidePosInfo) HasAgeOfLocationEstimate() bool

HasAgeOfLocationEstimate returns a boolean if a field has been set.

func (*ProvidePosInfo) HasAltitude

func (o *ProvidePosInfo) HasAltitude() bool

HasAltitude returns a boolean if a field has been set.

func (*ProvidePosInfo) HasBarometricPressure

func (o *ProvidePosInfo) HasBarometricPressure() bool

HasBarometricPressure returns a boolean if a field has been set.

func (*ProvidePosInfo) HasCivicAddress

func (o *ProvidePosInfo) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (*ProvidePosInfo) HasEcgi

func (o *ProvidePosInfo) HasEcgi() bool

HasEcgi returns a boolean if a field has been set.

func (*ProvidePosInfo) HasGnssPositioningDataList

func (o *ProvidePosInfo) HasGnssPositioningDataList() bool

HasGnssPositioningDataList returns a boolean if a field has been set.

func (*ProvidePosInfo) HasLocalLocationEstimate

func (o *ProvidePosInfo) HasLocalLocationEstimate() bool

HasLocalLocationEstimate returns a boolean if a field has been set.

func (*ProvidePosInfo) HasLocationEstimate

func (o *ProvidePosInfo) HasLocationEstimate() bool

HasLocationEstimate returns a boolean if a field has been set.

func (*ProvidePosInfo) HasLocationPrivacyVerResult

func (o *ProvidePosInfo) HasLocationPrivacyVerResult() bool

HasLocationPrivacyVerResult returns a boolean if a field has been set.

func (*ProvidePosInfo) HasNcgi

func (o *ProvidePosInfo) HasNcgi() bool

HasNcgi returns a boolean if a field has been set.

func (*ProvidePosInfo) HasPositioningDataList

func (o *ProvidePosInfo) HasPositioningDataList() bool

HasPositioningDataList returns a boolean if a field has been set.

func (*ProvidePosInfo) HasServingLMFIdentification

func (o *ProvidePosInfo) HasServingLMFIdentification() bool

HasServingLMFIdentification returns a boolean if a field has been set.

func (*ProvidePosInfo) HasSupportedFeatures

func (o *ProvidePosInfo) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*ProvidePosInfo) HasTargetMmeName

func (o *ProvidePosInfo) HasTargetMmeName() bool

HasTargetMmeName returns a boolean if a field has been set.

func (*ProvidePosInfo) HasTargetMmeRealm

func (o *ProvidePosInfo) HasTargetMmeRealm() bool

HasTargetMmeRealm returns a boolean if a field has been set.

func (*ProvidePosInfo) HasTargetServingNode

func (o *ProvidePosInfo) HasTargetServingNode() bool

HasTargetServingNode returns a boolean if a field has been set.

func (*ProvidePosInfo) HasTimestampOfLocationEstimate

func (o *ProvidePosInfo) HasTimestampOfLocationEstimate() bool

HasTimestampOfLocationEstimate returns a boolean if a field has been set.

func (*ProvidePosInfo) HasUtranSrvccInd

func (o *ProvidePosInfo) HasUtranSrvccInd() bool

HasUtranSrvccInd returns a boolean if a field has been set.

func (*ProvidePosInfo) HasVelocityEstimate

func (o *ProvidePosInfo) HasVelocityEstimate() bool

HasVelocityEstimate returns a boolean if a field has been set.

func (ProvidePosInfo) MarshalJSON

func (o ProvidePosInfo) MarshalJSON() ([]byte, error)

func (*ProvidePosInfo) SetAccuracyFulfilmentIndicator

func (o *ProvidePosInfo) SetAccuracyFulfilmentIndicator(v AccuracyFulfilmentIndicator)

SetAccuracyFulfilmentIndicator gets a reference to the given AccuracyFulfilmentIndicator and assigns it to the AccuracyFulfilmentIndicator field.

func (*ProvidePosInfo) SetAchievedQos

func (o *ProvidePosInfo) SetAchievedQos(v MinorLocationQoS)

SetAchievedQos gets a reference to the given MinorLocationQoS and assigns it to the AchievedQos field.

func (*ProvidePosInfo) SetAgeOfLocationEstimate

func (o *ProvidePosInfo) SetAgeOfLocationEstimate(v int32)

SetAgeOfLocationEstimate gets a reference to the given int32 and assigns it to the AgeOfLocationEstimate field.

func (*ProvidePosInfo) SetAltitude

func (o *ProvidePosInfo) SetAltitude(v float64)

SetAltitude gets a reference to the given float64 and assigns it to the Altitude field.

func (*ProvidePosInfo) SetBarometricPressure

func (o *ProvidePosInfo) SetBarometricPressure(v int32)

SetBarometricPressure gets a reference to the given int32 and assigns it to the BarometricPressure field.

func (*ProvidePosInfo) SetCivicAddress

func (o *ProvidePosInfo) SetCivicAddress(v CivicAddress)

SetCivicAddress gets a reference to the given CivicAddress and assigns it to the CivicAddress field.

func (*ProvidePosInfo) SetEcgi

func (o *ProvidePosInfo) SetEcgi(v Ecgi)

SetEcgi gets a reference to the given Ecgi and assigns it to the Ecgi field.

func (*ProvidePosInfo) SetGnssPositioningDataList

func (o *ProvidePosInfo) SetGnssPositioningDataList(v []GnssPositioningMethodAndUsage)

SetGnssPositioningDataList gets a reference to the given []GnssPositioningMethodAndUsage and assigns it to the GnssPositioningDataList field.

func (*ProvidePosInfo) SetLocalLocationEstimate

func (o *ProvidePosInfo) SetLocalLocationEstimate(v LocalArea)

SetLocalLocationEstimate gets a reference to the given LocalArea and assigns it to the LocalLocationEstimate field.

func (*ProvidePosInfo) SetLocationEstimate

func (o *ProvidePosInfo) SetLocationEstimate(v GeographicArea)

SetLocationEstimate gets a reference to the given GeographicArea and assigns it to the LocationEstimate field.

func (*ProvidePosInfo) SetLocationPrivacyVerResult

func (o *ProvidePosInfo) SetLocationPrivacyVerResult(v LocationPrivacyVerResult)

SetLocationPrivacyVerResult gets a reference to the given LocationPrivacyVerResult and assigns it to the LocationPrivacyVerResult field.

func (*ProvidePosInfo) SetNcgi

func (o *ProvidePosInfo) SetNcgi(v Ncgi)

SetNcgi gets a reference to the given Ncgi and assigns it to the Ncgi field.

func (*ProvidePosInfo) SetPositioningDataList

func (o *ProvidePosInfo) SetPositioningDataList(v []PositioningMethodAndUsage)

SetPositioningDataList gets a reference to the given []PositioningMethodAndUsage and assigns it to the PositioningDataList field.

func (*ProvidePosInfo) SetServingLMFIdentification

func (o *ProvidePosInfo) SetServingLMFIdentification(v string)

SetServingLMFIdentification gets a reference to the given string and assigns it to the ServingLMFIdentification field.

func (*ProvidePosInfo) SetSupportedFeatures

func (o *ProvidePosInfo) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*ProvidePosInfo) SetTargetMmeName

func (o *ProvidePosInfo) SetTargetMmeName(v string)

SetTargetMmeName gets a reference to the given string and assigns it to the TargetMmeName field.

func (*ProvidePosInfo) SetTargetMmeRealm

func (o *ProvidePosInfo) SetTargetMmeRealm(v string)

SetTargetMmeRealm gets a reference to the given string and assigns it to the TargetMmeRealm field.

func (*ProvidePosInfo) SetTargetServingNode

func (o *ProvidePosInfo) SetTargetServingNode(v string)

SetTargetServingNode gets a reference to the given string and assigns it to the TargetServingNode field.

func (*ProvidePosInfo) SetTimestampOfLocationEstimate

func (o *ProvidePosInfo) SetTimestampOfLocationEstimate(v time.Time)

SetTimestampOfLocationEstimate gets a reference to the given time.Time and assigns it to the TimestampOfLocationEstimate field.

func (*ProvidePosInfo) SetUtranSrvccInd

func (o *ProvidePosInfo) SetUtranSrvccInd(v bool)

SetUtranSrvccInd gets a reference to the given bool and assigns it to the UtranSrvccInd field.

func (*ProvidePosInfo) SetVelocityEstimate

func (o *ProvidePosInfo) SetVelocityEstimate(v VelocityEstimate)

SetVelocityEstimate gets a reference to the given VelocityEstimate and assigns it to the VelocityEstimate field.

func (ProvidePosInfo) ToMap

func (o ProvidePosInfo) ToMap() (map[string]interface{}, error)

type RatType

type RatType struct {
	String *string
}

RatType Indicates the radio access used.

func (*RatType) MarshalJSON

func (src *RatType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*RatType) UnmarshalJSON

func (dst *RatType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RedirectResponse

type RedirectResponse struct {
	Cause *string `json:"cause,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetScp *string `json:"targetScp,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	TargetSepp *string `json:"targetSepp,omitempty"`
}

RedirectResponse The response shall include a Location header field containing a different URI (pointing to a different URI of an other service instance), or the same URI if a request is redirected to the same target resource via a different SCP.

func NewRedirectResponse

func NewRedirectResponse() *RedirectResponse

NewRedirectResponse instantiates a new RedirectResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRedirectResponseWithDefaults

func NewRedirectResponseWithDefaults() *RedirectResponse

NewRedirectResponseWithDefaults instantiates a new RedirectResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RedirectResponse) GetCause

func (o *RedirectResponse) GetCause() string

GetCause returns the Cause field value if set, zero value otherwise.

func (*RedirectResponse) GetCauseOk

func (o *RedirectResponse) GetCauseOk() (*string, bool)

GetCauseOk returns a tuple with the Cause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectResponse) GetTargetScp

func (o *RedirectResponse) GetTargetScp() string

GetTargetScp returns the TargetScp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetScpOk

func (o *RedirectResponse) GetTargetScpOk() (*string, bool)

GetTargetScpOk returns a tuple with the TargetScp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectResponse) GetTargetSepp

func (o *RedirectResponse) GetTargetSepp() string

GetTargetSepp returns the TargetSepp field value if set, zero value otherwise.

func (*RedirectResponse) GetTargetSeppOk

func (o *RedirectResponse) GetTargetSeppOk() (*string, bool)

GetTargetSeppOk returns a tuple with the TargetSepp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedirectResponse) HasCause

func (o *RedirectResponse) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetScp

func (o *RedirectResponse) HasTargetScp() bool

HasTargetScp returns a boolean if a field has been set.

func (*RedirectResponse) HasTargetSepp

func (o *RedirectResponse) HasTargetSepp() bool

HasTargetSepp returns a boolean if a field has been set.

func (RedirectResponse) MarshalJSON

func (o RedirectResponse) MarshalJSON() ([]byte, error)

func (*RedirectResponse) SetCause

func (o *RedirectResponse) SetCause(v string)

SetCause gets a reference to the given string and assigns it to the Cause field.

func (*RedirectResponse) SetTargetScp

func (o *RedirectResponse) SetTargetScp(v string)

SetTargetScp gets a reference to the given string and assigns it to the TargetScp field.

func (*RedirectResponse) SetTargetSepp

func (o *RedirectResponse) SetTargetSepp(v string)

SetTargetSepp gets a reference to the given string and assigns it to the TargetSepp field.

func (RedirectResponse) ToMap

func (o RedirectResponse) ToMap() (map[string]interface{}, error)

type RelativeCartesianLocation

type RelativeCartesianLocation struct {
	// string with format 'float' as defined in OpenAPI.
	X float32 `json:"x"`
	// string with format 'float' as defined in OpenAPI.
	Y float32 `json:"y"`
	// string with format 'float' as defined in OpenAPI.
	Z *float32 `json:"z,omitempty"`
}

RelativeCartesianLocation Relative Cartesian Location

func NewRelativeCartesianLocation

func NewRelativeCartesianLocation(x float32, y float32) *RelativeCartesianLocation

NewRelativeCartesianLocation instantiates a new RelativeCartesianLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRelativeCartesianLocationWithDefaults

func NewRelativeCartesianLocationWithDefaults() *RelativeCartesianLocation

NewRelativeCartesianLocationWithDefaults instantiates a new RelativeCartesianLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RelativeCartesianLocation) GetX

GetX returns the X field value

func (*RelativeCartesianLocation) GetXOk

func (o *RelativeCartesianLocation) GetXOk() (*float32, bool)

GetXOk returns a tuple with the X field value and a boolean to check if the value has been set.

func (*RelativeCartesianLocation) GetY

GetY returns the Y field value

func (*RelativeCartesianLocation) GetYOk

func (o *RelativeCartesianLocation) GetYOk() (*float32, bool)

GetYOk returns a tuple with the Y field value and a boolean to check if the value has been set.

func (*RelativeCartesianLocation) GetZ

GetZ returns the Z field value if set, zero value otherwise.

func (*RelativeCartesianLocation) GetZOk

func (o *RelativeCartesianLocation) GetZOk() (*float32, bool)

GetZOk returns a tuple with the Z field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RelativeCartesianLocation) HasZ

func (o *RelativeCartesianLocation) HasZ() bool

HasZ returns a boolean if a field has been set.

func (RelativeCartesianLocation) MarshalJSON

func (o RelativeCartesianLocation) MarshalJSON() ([]byte, error)

func (*RelativeCartesianLocation) SetX

SetX sets field value

func (*RelativeCartesianLocation) SetY

SetY sets field value

func (*RelativeCartesianLocation) SetZ

SetZ gets a reference to the given float32 and assigns it to the Z field.

func (RelativeCartesianLocation) ToMap

func (o RelativeCartesianLocation) ToMap() (map[string]interface{}, error)

type ReportingArea

type ReportingArea struct {
	AreaType ReportingAreaType `json:"areaType"`
	Tai      *Tai              `json:"tai,omitempty"`
	Ecgi     *Ecgi             `json:"ecgi,omitempty"`
	Ncgi     *Ncgi             `json:"ncgi,omitempty"`
}

ReportingArea Indicates an area for event reporting.

func NewReportingArea

func NewReportingArea(areaType ReportingAreaType) *ReportingArea

NewReportingArea instantiates a new ReportingArea object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReportingAreaWithDefaults

func NewReportingAreaWithDefaults() *ReportingArea

NewReportingAreaWithDefaults instantiates a new ReportingArea object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReportingArea) GetAreaType

func (o *ReportingArea) GetAreaType() ReportingAreaType

GetAreaType returns the AreaType field value

func (*ReportingArea) GetAreaTypeOk

func (o *ReportingArea) GetAreaTypeOk() (*ReportingAreaType, bool)

GetAreaTypeOk returns a tuple with the AreaType field value and a boolean to check if the value has been set.

func (*ReportingArea) GetEcgi

func (o *ReportingArea) GetEcgi() Ecgi

GetEcgi returns the Ecgi field value if set, zero value otherwise.

func (*ReportingArea) GetEcgiOk

func (o *ReportingArea) GetEcgiOk() (*Ecgi, bool)

GetEcgiOk returns a tuple with the Ecgi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingArea) GetNcgi

func (o *ReportingArea) GetNcgi() Ncgi

GetNcgi returns the Ncgi field value if set, zero value otherwise.

func (*ReportingArea) GetNcgiOk

func (o *ReportingArea) GetNcgiOk() (*Ncgi, bool)

GetNcgiOk returns a tuple with the Ncgi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingArea) GetTai

func (o *ReportingArea) GetTai() Tai

GetTai returns the Tai field value if set, zero value otherwise.

func (*ReportingArea) GetTaiOk

func (o *ReportingArea) GetTaiOk() (*Tai, bool)

GetTaiOk returns a tuple with the Tai field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReportingArea) HasEcgi

func (o *ReportingArea) HasEcgi() bool

HasEcgi returns a boolean if a field has been set.

func (*ReportingArea) HasNcgi

func (o *ReportingArea) HasNcgi() bool

HasNcgi returns a boolean if a field has been set.

func (*ReportingArea) HasTai

func (o *ReportingArea) HasTai() bool

HasTai returns a boolean if a field has been set.

func (ReportingArea) MarshalJSON

func (o ReportingArea) MarshalJSON() ([]byte, error)

func (*ReportingArea) SetAreaType

func (o *ReportingArea) SetAreaType(v ReportingAreaType)

SetAreaType sets field value

func (*ReportingArea) SetEcgi

func (o *ReportingArea) SetEcgi(v Ecgi)

SetEcgi gets a reference to the given Ecgi and assigns it to the Ecgi field.

func (*ReportingArea) SetNcgi

func (o *ReportingArea) SetNcgi(v Ncgi)

SetNcgi gets a reference to the given Ncgi and assigns it to the Ncgi field.

func (*ReportingArea) SetTai

func (o *ReportingArea) SetTai(v Tai)

SetTai gets a reference to the given Tai and assigns it to the Tai field.

func (ReportingArea) ToMap

func (o ReportingArea) ToMap() (map[string]interface{}, error)

type ReportingAreaType

type ReportingAreaType struct {
	String *string
}

ReportingAreaType Indicates type of event reporting area.

func (*ReportingAreaType) MarshalJSON

func (src *ReportingAreaType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ReportingAreaType) UnmarshalJSON

func (dst *ReportingAreaType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type RequestLocInfo

type RequestLocInfo struct {
	Req5gsLoc     *bool `json:"req5gsLoc,omitempty"`
	ReqCurrentLoc *bool `json:"reqCurrentLoc,omitempty"`
	ReqRatType    *bool `json:"reqRatType,omitempty"`
	ReqTimeZone   *bool `json:"reqTimeZone,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"`
}

RequestLocInfo Data within Provide Location Information Request

func NewRequestLocInfo

func NewRequestLocInfo() *RequestLocInfo

NewRequestLocInfo instantiates a new RequestLocInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRequestLocInfoWithDefaults

func NewRequestLocInfoWithDefaults() *RequestLocInfo

NewRequestLocInfoWithDefaults instantiates a new RequestLocInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RequestLocInfo) GetReq5gsLoc

func (o *RequestLocInfo) GetReq5gsLoc() bool

GetReq5gsLoc returns the Req5gsLoc field value if set, zero value otherwise.

func (*RequestLocInfo) GetReq5gsLocOk

func (o *RequestLocInfo) GetReq5gsLocOk() (*bool, bool)

GetReq5gsLocOk returns a tuple with the Req5gsLoc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestLocInfo) GetReqCurrentLoc

func (o *RequestLocInfo) GetReqCurrentLoc() bool

GetReqCurrentLoc returns the ReqCurrentLoc field value if set, zero value otherwise.

func (*RequestLocInfo) GetReqCurrentLocOk

func (o *RequestLocInfo) GetReqCurrentLocOk() (*bool, bool)

GetReqCurrentLocOk returns a tuple with the ReqCurrentLoc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestLocInfo) GetReqRatType

func (o *RequestLocInfo) GetReqRatType() bool

GetReqRatType returns the ReqRatType field value if set, zero value otherwise.

func (*RequestLocInfo) GetReqRatTypeOk

func (o *RequestLocInfo) GetReqRatTypeOk() (*bool, bool)

GetReqRatTypeOk returns a tuple with the ReqRatType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestLocInfo) GetReqTimeZone

func (o *RequestLocInfo) GetReqTimeZone() bool

GetReqTimeZone returns the ReqTimeZone field value if set, zero value otherwise.

func (*RequestLocInfo) GetReqTimeZoneOk

func (o *RequestLocInfo) GetReqTimeZoneOk() (*bool, bool)

GetReqTimeZoneOk returns a tuple with the ReqTimeZone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestLocInfo) GetSupportedFeatures

func (o *RequestLocInfo) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*RequestLocInfo) GetSupportedFeaturesOk

func (o *RequestLocInfo) 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 (*RequestLocInfo) HasReq5gsLoc

func (o *RequestLocInfo) HasReq5gsLoc() bool

HasReq5gsLoc returns a boolean if a field has been set.

func (*RequestLocInfo) HasReqCurrentLoc

func (o *RequestLocInfo) HasReqCurrentLoc() bool

HasReqCurrentLoc returns a boolean if a field has been set.

func (*RequestLocInfo) HasReqRatType

func (o *RequestLocInfo) HasReqRatType() bool

HasReqRatType returns a boolean if a field has been set.

func (*RequestLocInfo) HasReqTimeZone

func (o *RequestLocInfo) HasReqTimeZone() bool

HasReqTimeZone returns a boolean if a field has been set.

func (*RequestLocInfo) HasSupportedFeatures

func (o *RequestLocInfo) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (RequestLocInfo) MarshalJSON

func (o RequestLocInfo) MarshalJSON() ([]byte, error)

func (*RequestLocInfo) SetReq5gsLoc

func (o *RequestLocInfo) SetReq5gsLoc(v bool)

SetReq5gsLoc gets a reference to the given bool and assigns it to the Req5gsLoc field.

func (*RequestLocInfo) SetReqCurrentLoc

func (o *RequestLocInfo) SetReqCurrentLoc(v bool)

SetReqCurrentLoc gets a reference to the given bool and assigns it to the ReqCurrentLoc field.

func (*RequestLocInfo) SetReqRatType

func (o *RequestLocInfo) SetReqRatType(v bool)

SetReqRatType gets a reference to the given bool and assigns it to the ReqRatType field.

func (*RequestLocInfo) SetReqTimeZone

func (o *RequestLocInfo) SetReqTimeZone(v bool)

SetReqTimeZone gets a reference to the given bool and assigns it to the ReqTimeZone field.

func (*RequestLocInfo) SetSupportedFeatures

func (o *RequestLocInfo) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (RequestLocInfo) ToMap

func (o RequestLocInfo) ToMap() (map[string]interface{}, error)

type RequestPosInfo

type RequestPosInfo struct {
	LcsClientType ExternalClientType `json:"lcsClientType"`
	LcsLocation   LocationType       `json:"lcsLocation"`
	// String identifying a Supi that shall contain either an IMSI, a network specific identifier, a Global Cable Identifier (GCI) or a Global Line Identifier (GLI) as specified in clause  2.2A of 3GPP TS 23.003. It shall be formatted as follows  - for an IMSI \"imsi-<imsi>\", where <imsi> shall be formatted according to clause 2.2    of 3GPP TS 23.003 that describes an IMSI.  - for a network specific identifier \"nai-<nai>, where <nai> shall be formatted    according to clause 28.7.2 of 3GPP TS 23.003 that describes an NAI.  - for a GCI \"gci-<gci>\", where <gci> shall be formatted according to clause 28.15.2    of 3GPP TS 23.003.  - for a GLI \"gli-<gli>\", where <gli> shall be formatted according to clause 28.16.2 of    3GPP TS 23.003.To enable that the value is used as part of an URI, the string shall    only contain characters allowed according to the \"lower-with-hyphen\" naming convention    defined in 3GPP TS 29.501.
	Supi *string `json:"supi,omitempty"`
	// String identifying a Gpsi shall contain either an External Id or an MSISDN.  It shall be formatted as follows -External Identifier= \"extid-'extid', where 'extid'  shall be formatted according to clause 19.7.2 of 3GPP TS 23.003 that describes an  External Identifier.
	Gpsi                       *string              `json:"gpsi,omitempty"`
	Priority                   *LcsPriority         `json:"priority,omitempty"`
	LcsQoS                     *LocationQoS         `json:"lcsQoS,omitempty"`
	VelocityRequested          *VelocityRequested   `json:"velocityRequested,omitempty"`
	LcsSupportedGADShapes      *SupportedGADShapes  `json:"lcsSupportedGADShapes,omitempty"`
	AdditionalLcsSuppGADShapes []SupportedGADShapes `json:"additionalLcsSuppGADShapes,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	LocationNotificationUri *string `json:"locationNotificationUri,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"`
	OldGuami          *Guami  `json:"oldGuami,omitempty"`
	// String representing a Permanent Equipment Identifier that may contain - an IMEI or IMEISV, as  specified in clause 6.2 of 3GPP TS 23.003; a MAC address for a 5G-RG or FN-RG via  wireline  access, with an indication that this address cannot be trusted for regulatory purpose if this  address cannot be used as an Equipment Identifier of the FN-RG, as specified in clause 4.7.7  of 3GPP TS23.316. Examples are imei-012345678901234 or imeisv-0123456789012345.
	Pei *string `json:"pei,omitempty"`
	// LCS service type.
	LcsServiceType *int32   `json:"lcsServiceType,omitempty"`
	LdrType        *LdrType `json:"ldrType,omitempty"`
	// String providing an URI formatted according to RFC 3986.
	HgmlcCallBackURI *string `json:"hgmlcCallBackURI,omitempty"`
	// LDR Reference.
	LdrReference      *string            `json:"ldrReference,omitempty"`
	PeriodicEventInfo *PeriodicEventInfo `json:"periodicEventInfo,omitempty"`
	AreaEventInfo     *AreaEventInfo     `json:"areaEventInfo,omitempty"`
	MotionEventInfo   *MotionEventInfo   `json:"motionEventInfo,omitempty"`
	// Contains the external client identification
	ExternalClientIdentification *string `json:"externalClientIdentification,omitempty"`
	// String uniquely identifying a NF instance. The format of the NF Instance ID shall be a  Universally Unique Identifier (UUID) version 4, as described in IETF RFC 4122.
	AfID *string `json:"afID,omitempty"`
	// Contains the codeword
	CodeWord              *string                `json:"codeWord,omitempty"`
	UePrivacyRequirements *UePrivacyRequirements `json:"uePrivacyRequirements,omitempty"`
	// string with format 'date-time' as defined in OpenAPI.
	ScheduledLocTime *time.Time `json:"scheduledLocTime,omitempty"`
	ReliableLocReq   *bool      `json:"reliableLocReq,omitempty"`
}

RequestPosInfo Data within Provide Positioning Information Request

func NewRequestPosInfo

func NewRequestPosInfo(lcsClientType ExternalClientType, lcsLocation LocationType) *RequestPosInfo

NewRequestPosInfo instantiates a new RequestPosInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRequestPosInfoWithDefaults

func NewRequestPosInfoWithDefaults() *RequestPosInfo

NewRequestPosInfoWithDefaults instantiates a new RequestPosInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RequestPosInfo) GetAdditionalLcsSuppGADShapes

func (o *RequestPosInfo) GetAdditionalLcsSuppGADShapes() []SupportedGADShapes

GetAdditionalLcsSuppGADShapes returns the AdditionalLcsSuppGADShapes field value if set, zero value otherwise.

func (*RequestPosInfo) GetAdditionalLcsSuppGADShapesOk

func (o *RequestPosInfo) GetAdditionalLcsSuppGADShapesOk() ([]SupportedGADShapes, bool)

GetAdditionalLcsSuppGADShapesOk returns a tuple with the AdditionalLcsSuppGADShapes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetAfID

func (o *RequestPosInfo) GetAfID() string

GetAfID returns the AfID field value if set, zero value otherwise.

func (*RequestPosInfo) GetAfIDOk

func (o *RequestPosInfo) GetAfIDOk() (*string, bool)

GetAfIDOk returns a tuple with the AfID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetAreaEventInfo

func (o *RequestPosInfo) GetAreaEventInfo() AreaEventInfo

GetAreaEventInfo returns the AreaEventInfo field value if set, zero value otherwise.

func (*RequestPosInfo) GetAreaEventInfoOk

func (o *RequestPosInfo) GetAreaEventInfoOk() (*AreaEventInfo, bool)

GetAreaEventInfoOk returns a tuple with the AreaEventInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetCodeWord

func (o *RequestPosInfo) GetCodeWord() string

GetCodeWord returns the CodeWord field value if set, zero value otherwise.

func (*RequestPosInfo) GetCodeWordOk

func (o *RequestPosInfo) 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 (*RequestPosInfo) GetExternalClientIdentification

func (o *RequestPosInfo) GetExternalClientIdentification() string

GetExternalClientIdentification returns the ExternalClientIdentification field value if set, zero value otherwise.

func (*RequestPosInfo) GetExternalClientIdentificationOk

func (o *RequestPosInfo) GetExternalClientIdentificationOk() (*string, bool)

GetExternalClientIdentificationOk returns a tuple with the ExternalClientIdentification field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetGpsi

func (o *RequestPosInfo) GetGpsi() string

GetGpsi returns the Gpsi field value if set, zero value otherwise.

func (*RequestPosInfo) GetGpsiOk

func (o *RequestPosInfo) GetGpsiOk() (*string, bool)

GetGpsiOk returns a tuple with the Gpsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetHgmlcCallBackURI

func (o *RequestPosInfo) GetHgmlcCallBackURI() string

GetHgmlcCallBackURI returns the HgmlcCallBackURI field value if set, zero value otherwise.

func (*RequestPosInfo) GetHgmlcCallBackURIOk

func (o *RequestPosInfo) GetHgmlcCallBackURIOk() (*string, bool)

GetHgmlcCallBackURIOk returns a tuple with the HgmlcCallBackURI field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetLcsClientType

func (o *RequestPosInfo) GetLcsClientType() ExternalClientType

GetLcsClientType returns the LcsClientType field value

func (*RequestPosInfo) GetLcsClientTypeOk

func (o *RequestPosInfo) GetLcsClientTypeOk() (*ExternalClientType, bool)

GetLcsClientTypeOk returns a tuple with the LcsClientType field value and a boolean to check if the value has been set.

func (*RequestPosInfo) GetLcsLocation

func (o *RequestPosInfo) GetLcsLocation() LocationType

GetLcsLocation returns the LcsLocation field value

func (*RequestPosInfo) GetLcsLocationOk

func (o *RequestPosInfo) GetLcsLocationOk() (*LocationType, bool)

GetLcsLocationOk returns a tuple with the LcsLocation field value and a boolean to check if the value has been set.

func (*RequestPosInfo) GetLcsQoS

func (o *RequestPosInfo) GetLcsQoS() LocationQoS

GetLcsQoS returns the LcsQoS field value if set, zero value otherwise.

func (*RequestPosInfo) GetLcsQoSOk

func (o *RequestPosInfo) GetLcsQoSOk() (*LocationQoS, bool)

GetLcsQoSOk returns a tuple with the LcsQoS field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetLcsServiceType

func (o *RequestPosInfo) GetLcsServiceType() int32

GetLcsServiceType returns the LcsServiceType field value if set, zero value otherwise.

func (*RequestPosInfo) GetLcsServiceTypeOk

func (o *RequestPosInfo) GetLcsServiceTypeOk() (*int32, bool)

GetLcsServiceTypeOk returns a tuple with the LcsServiceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetLcsSupportedGADShapes

func (o *RequestPosInfo) GetLcsSupportedGADShapes() SupportedGADShapes

GetLcsSupportedGADShapes returns the LcsSupportedGADShapes field value if set, zero value otherwise.

func (*RequestPosInfo) GetLcsSupportedGADShapesOk

func (o *RequestPosInfo) GetLcsSupportedGADShapesOk() (*SupportedGADShapes, bool)

GetLcsSupportedGADShapesOk returns a tuple with the LcsSupportedGADShapes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetLdrReference

func (o *RequestPosInfo) GetLdrReference() string

GetLdrReference returns the LdrReference field value if set, zero value otherwise.

func (*RequestPosInfo) GetLdrReferenceOk

func (o *RequestPosInfo) GetLdrReferenceOk() (*string, bool)

GetLdrReferenceOk returns a tuple with the LdrReference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetLdrType

func (o *RequestPosInfo) GetLdrType() LdrType

GetLdrType returns the LdrType field value if set, zero value otherwise.

func (*RequestPosInfo) GetLdrTypeOk

func (o *RequestPosInfo) 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 (*RequestPosInfo) GetLocationNotificationUri

func (o *RequestPosInfo) GetLocationNotificationUri() string

GetLocationNotificationUri returns the LocationNotificationUri field value if set, zero value otherwise.

func (*RequestPosInfo) GetLocationNotificationUriOk

func (o *RequestPosInfo) GetLocationNotificationUriOk() (*string, bool)

GetLocationNotificationUriOk returns a tuple with the LocationNotificationUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetMotionEventInfo

func (o *RequestPosInfo) GetMotionEventInfo() MotionEventInfo

GetMotionEventInfo returns the MotionEventInfo field value if set, zero value otherwise.

func (*RequestPosInfo) GetMotionEventInfoOk

func (o *RequestPosInfo) GetMotionEventInfoOk() (*MotionEventInfo, bool)

GetMotionEventInfoOk returns a tuple with the MotionEventInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetOldGuami

func (o *RequestPosInfo) GetOldGuami() Guami

GetOldGuami returns the OldGuami field value if set, zero value otherwise.

func (*RequestPosInfo) GetOldGuamiOk

func (o *RequestPosInfo) GetOldGuamiOk() (*Guami, bool)

GetOldGuamiOk returns a tuple with the OldGuami field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetPei

func (o *RequestPosInfo) GetPei() string

GetPei returns the Pei field value if set, zero value otherwise.

func (*RequestPosInfo) GetPeiOk

func (o *RequestPosInfo) GetPeiOk() (*string, bool)

GetPeiOk returns a tuple with the Pei field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetPeriodicEventInfo

func (o *RequestPosInfo) GetPeriodicEventInfo() PeriodicEventInfo

GetPeriodicEventInfo returns the PeriodicEventInfo field value if set, zero value otherwise.

func (*RequestPosInfo) GetPeriodicEventInfoOk

func (o *RequestPosInfo) GetPeriodicEventInfoOk() (*PeriodicEventInfo, bool)

GetPeriodicEventInfoOk returns a tuple with the PeriodicEventInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetPriority

func (o *RequestPosInfo) GetPriority() LcsPriority

GetPriority returns the Priority field value if set, zero value otherwise.

func (*RequestPosInfo) GetPriorityOk

func (o *RequestPosInfo) GetPriorityOk() (*LcsPriority, bool)

GetPriorityOk returns a tuple with the Priority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetReliableLocReq

func (o *RequestPosInfo) GetReliableLocReq() bool

GetReliableLocReq returns the ReliableLocReq field value if set, zero value otherwise.

func (*RequestPosInfo) GetReliableLocReqOk

func (o *RequestPosInfo) GetReliableLocReqOk() (*bool, bool)

GetReliableLocReqOk returns a tuple with the ReliableLocReq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetScheduledLocTime

func (o *RequestPosInfo) GetScheduledLocTime() time.Time

GetScheduledLocTime returns the ScheduledLocTime field value if set, zero value otherwise.

func (*RequestPosInfo) GetScheduledLocTimeOk

func (o *RequestPosInfo) GetScheduledLocTimeOk() (*time.Time, bool)

GetScheduledLocTimeOk returns a tuple with the ScheduledLocTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetSupi

func (o *RequestPosInfo) GetSupi() string

GetSupi returns the Supi field value if set, zero value otherwise.

func (*RequestPosInfo) GetSupiOk

func (o *RequestPosInfo) GetSupiOk() (*string, bool)

GetSupiOk returns a tuple with the Supi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetSupportedFeatures

func (o *RequestPosInfo) GetSupportedFeatures() string

GetSupportedFeatures returns the SupportedFeatures field value if set, zero value otherwise.

func (*RequestPosInfo) GetSupportedFeaturesOk

func (o *RequestPosInfo) 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 (*RequestPosInfo) GetUePrivacyRequirements

func (o *RequestPosInfo) GetUePrivacyRequirements() UePrivacyRequirements

GetUePrivacyRequirements returns the UePrivacyRequirements field value if set, zero value otherwise.

func (*RequestPosInfo) GetUePrivacyRequirementsOk

func (o *RequestPosInfo) GetUePrivacyRequirementsOk() (*UePrivacyRequirements, bool)

GetUePrivacyRequirementsOk returns a tuple with the UePrivacyRequirements field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPosInfo) GetVelocityRequested

func (o *RequestPosInfo) GetVelocityRequested() VelocityRequested

GetVelocityRequested returns the VelocityRequested field value if set, zero value otherwise.

func (*RequestPosInfo) GetVelocityRequestedOk

func (o *RequestPosInfo) 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 (*RequestPosInfo) HasAdditionalLcsSuppGADShapes

func (o *RequestPosInfo) HasAdditionalLcsSuppGADShapes() bool

HasAdditionalLcsSuppGADShapes returns a boolean if a field has been set.

func (*RequestPosInfo) HasAfID

func (o *RequestPosInfo) HasAfID() bool

HasAfID returns a boolean if a field has been set.

func (*RequestPosInfo) HasAreaEventInfo

func (o *RequestPosInfo) HasAreaEventInfo() bool

HasAreaEventInfo returns a boolean if a field has been set.

func (*RequestPosInfo) HasCodeWord

func (o *RequestPosInfo) HasCodeWord() bool

HasCodeWord returns a boolean if a field has been set.

func (*RequestPosInfo) HasExternalClientIdentification

func (o *RequestPosInfo) HasExternalClientIdentification() bool

HasExternalClientIdentification returns a boolean if a field has been set.

func (*RequestPosInfo) HasGpsi

func (o *RequestPosInfo) HasGpsi() bool

HasGpsi returns a boolean if a field has been set.

func (*RequestPosInfo) HasHgmlcCallBackURI

func (o *RequestPosInfo) HasHgmlcCallBackURI() bool

HasHgmlcCallBackURI returns a boolean if a field has been set.

func (*RequestPosInfo) HasLcsQoS

func (o *RequestPosInfo) HasLcsQoS() bool

HasLcsQoS returns a boolean if a field has been set.

func (*RequestPosInfo) HasLcsServiceType

func (o *RequestPosInfo) HasLcsServiceType() bool

HasLcsServiceType returns a boolean if a field has been set.

func (*RequestPosInfo) HasLcsSupportedGADShapes

func (o *RequestPosInfo) HasLcsSupportedGADShapes() bool

HasLcsSupportedGADShapes returns a boolean if a field has been set.

func (*RequestPosInfo) HasLdrReference

func (o *RequestPosInfo) HasLdrReference() bool

HasLdrReference returns a boolean if a field has been set.

func (*RequestPosInfo) HasLdrType

func (o *RequestPosInfo) HasLdrType() bool

HasLdrType returns a boolean if a field has been set.

func (*RequestPosInfo) HasLocationNotificationUri

func (o *RequestPosInfo) HasLocationNotificationUri() bool

HasLocationNotificationUri returns a boolean if a field has been set.

func (*RequestPosInfo) HasMotionEventInfo

func (o *RequestPosInfo) HasMotionEventInfo() bool

HasMotionEventInfo returns a boolean if a field has been set.

func (*RequestPosInfo) HasOldGuami

func (o *RequestPosInfo) HasOldGuami() bool

HasOldGuami returns a boolean if a field has been set.

func (*RequestPosInfo) HasPei

func (o *RequestPosInfo) HasPei() bool

HasPei returns a boolean if a field has been set.

func (*RequestPosInfo) HasPeriodicEventInfo

func (o *RequestPosInfo) HasPeriodicEventInfo() bool

HasPeriodicEventInfo returns a boolean if a field has been set.

func (*RequestPosInfo) HasPriority

func (o *RequestPosInfo) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*RequestPosInfo) HasReliableLocReq

func (o *RequestPosInfo) HasReliableLocReq() bool

HasReliableLocReq returns a boolean if a field has been set.

func (*RequestPosInfo) HasScheduledLocTime

func (o *RequestPosInfo) HasScheduledLocTime() bool

HasScheduledLocTime returns a boolean if a field has been set.

func (*RequestPosInfo) HasSupi

func (o *RequestPosInfo) HasSupi() bool

HasSupi returns a boolean if a field has been set.

func (*RequestPosInfo) HasSupportedFeatures

func (o *RequestPosInfo) HasSupportedFeatures() bool

HasSupportedFeatures returns a boolean if a field has been set.

func (*RequestPosInfo) HasUePrivacyRequirements

func (o *RequestPosInfo) HasUePrivacyRequirements() bool

HasUePrivacyRequirements returns a boolean if a field has been set.

func (*RequestPosInfo) HasVelocityRequested

func (o *RequestPosInfo) HasVelocityRequested() bool

HasVelocityRequested returns a boolean if a field has been set.

func (RequestPosInfo) MarshalJSON

func (o RequestPosInfo) MarshalJSON() ([]byte, error)

func (*RequestPosInfo) SetAdditionalLcsSuppGADShapes

func (o *RequestPosInfo) SetAdditionalLcsSuppGADShapes(v []SupportedGADShapes)

SetAdditionalLcsSuppGADShapes gets a reference to the given []SupportedGADShapes and assigns it to the AdditionalLcsSuppGADShapes field.

func (*RequestPosInfo) SetAfID

func (o *RequestPosInfo) SetAfID(v string)

SetAfID gets a reference to the given string and assigns it to the AfID field.

func (*RequestPosInfo) SetAreaEventInfo

func (o *RequestPosInfo) SetAreaEventInfo(v AreaEventInfo)

SetAreaEventInfo gets a reference to the given AreaEventInfo and assigns it to the AreaEventInfo field.

func (*RequestPosInfo) SetCodeWord

func (o *RequestPosInfo) SetCodeWord(v string)

SetCodeWord gets a reference to the given string and assigns it to the CodeWord field.

func (*RequestPosInfo) SetExternalClientIdentification

func (o *RequestPosInfo) SetExternalClientIdentification(v string)

SetExternalClientIdentification gets a reference to the given string and assigns it to the ExternalClientIdentification field.

func (*RequestPosInfo) SetGpsi

func (o *RequestPosInfo) SetGpsi(v string)

SetGpsi gets a reference to the given string and assigns it to the Gpsi field.

func (*RequestPosInfo) SetHgmlcCallBackURI

func (o *RequestPosInfo) SetHgmlcCallBackURI(v string)

SetHgmlcCallBackURI gets a reference to the given string and assigns it to the HgmlcCallBackURI field.

func (*RequestPosInfo) SetLcsClientType

func (o *RequestPosInfo) SetLcsClientType(v ExternalClientType)

SetLcsClientType sets field value

func (*RequestPosInfo) SetLcsLocation

func (o *RequestPosInfo) SetLcsLocation(v LocationType)

SetLcsLocation sets field value

func (*RequestPosInfo) SetLcsQoS

func (o *RequestPosInfo) SetLcsQoS(v LocationQoS)

SetLcsQoS gets a reference to the given LocationQoS and assigns it to the LcsQoS field.

func (*RequestPosInfo) SetLcsServiceType

func (o *RequestPosInfo) SetLcsServiceType(v int32)

SetLcsServiceType gets a reference to the given int32 and assigns it to the LcsServiceType field.

func (*RequestPosInfo) SetLcsSupportedGADShapes

func (o *RequestPosInfo) SetLcsSupportedGADShapes(v SupportedGADShapes)

SetLcsSupportedGADShapes gets a reference to the given SupportedGADShapes and assigns it to the LcsSupportedGADShapes field.

func (*RequestPosInfo) SetLdrReference

func (o *RequestPosInfo) SetLdrReference(v string)

SetLdrReference gets a reference to the given string and assigns it to the LdrReference field.

func (*RequestPosInfo) SetLdrType

func (o *RequestPosInfo) SetLdrType(v LdrType)

SetLdrType gets a reference to the given LdrType and assigns it to the LdrType field.

func (*RequestPosInfo) SetLocationNotificationUri

func (o *RequestPosInfo) SetLocationNotificationUri(v string)

SetLocationNotificationUri gets a reference to the given string and assigns it to the LocationNotificationUri field.

func (*RequestPosInfo) SetMotionEventInfo

func (o *RequestPosInfo) SetMotionEventInfo(v MotionEventInfo)

SetMotionEventInfo gets a reference to the given MotionEventInfo and assigns it to the MotionEventInfo field.

func (*RequestPosInfo) SetOldGuami

func (o *RequestPosInfo) SetOldGuami(v Guami)

SetOldGuami gets a reference to the given Guami and assigns it to the OldGuami field.

func (*RequestPosInfo) SetPei

func (o *RequestPosInfo) SetPei(v string)

SetPei gets a reference to the given string and assigns it to the Pei field.

func (*RequestPosInfo) SetPeriodicEventInfo

func (o *RequestPosInfo) SetPeriodicEventInfo(v PeriodicEventInfo)

SetPeriodicEventInfo gets a reference to the given PeriodicEventInfo and assigns it to the PeriodicEventInfo field.

func (*RequestPosInfo) SetPriority

func (o *RequestPosInfo) SetPriority(v LcsPriority)

SetPriority gets a reference to the given LcsPriority and assigns it to the Priority field.

func (*RequestPosInfo) SetReliableLocReq

func (o *RequestPosInfo) SetReliableLocReq(v bool)

SetReliableLocReq gets a reference to the given bool and assigns it to the ReliableLocReq field.

func (*RequestPosInfo) SetScheduledLocTime

func (o *RequestPosInfo) SetScheduledLocTime(v time.Time)

SetScheduledLocTime gets a reference to the given time.Time and assigns it to the ScheduledLocTime field.

func (*RequestPosInfo) SetSupi

func (o *RequestPosInfo) SetSupi(v string)

SetSupi gets a reference to the given string and assigns it to the Supi field.

func (*RequestPosInfo) SetSupportedFeatures

func (o *RequestPosInfo) SetSupportedFeatures(v string)

SetSupportedFeatures gets a reference to the given string and assigns it to the SupportedFeatures field.

func (*RequestPosInfo) SetUePrivacyRequirements

func (o *RequestPosInfo) SetUePrivacyRequirements(v UePrivacyRequirements)

SetUePrivacyRequirements gets a reference to the given UePrivacyRequirements and assigns it to the UePrivacyRequirements field.

func (*RequestPosInfo) SetVelocityRequested

func (o *RequestPosInfo) SetVelocityRequested(v VelocityRequested)

SetVelocityRequested gets a reference to the given VelocityRequested and assigns it to the VelocityRequested field.

func (RequestPosInfo) ToMap

func (o RequestPosInfo) ToMap() (map[string]interface{}, error)

type ResponseTime

type ResponseTime struct {
	String *string
}

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 RoutingAreaId

type RoutingAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code
	Lac string `json:"lac"`
	// Routing Area Code
	Rac string `json:"rac"`
}

RoutingAreaId Contains a Routing Area Identification as defined in 3GPP TS 23.003, clause 4.2.

func NewRoutingAreaId

func NewRoutingAreaId(plmnId PlmnId, lac string, rac string) *RoutingAreaId

NewRoutingAreaId instantiates a new RoutingAreaId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRoutingAreaIdWithDefaults

func NewRoutingAreaIdWithDefaults() *RoutingAreaId

NewRoutingAreaIdWithDefaults instantiates a new RoutingAreaId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RoutingAreaId) GetLac

func (o *RoutingAreaId) GetLac() string

GetLac returns the Lac field value

func (*RoutingAreaId) GetLacOk

func (o *RoutingAreaId) GetLacOk() (*string, bool)

GetLacOk returns a tuple with the Lac field value and a boolean to check if the value has been set.

func (*RoutingAreaId) GetPlmnId

func (o *RoutingAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*RoutingAreaId) GetPlmnIdOk

func (o *RoutingAreaId) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*RoutingAreaId) GetRac

func (o *RoutingAreaId) GetRac() string

GetRac returns the Rac field value

func (*RoutingAreaId) GetRacOk

func (o *RoutingAreaId) GetRacOk() (*string, bool)

GetRacOk returns a tuple with the Rac field value and a boolean to check if the value has been set.

func (RoutingAreaId) MarshalJSON

func (o RoutingAreaId) MarshalJSON() ([]byte, error)

func (*RoutingAreaId) SetLac

func (o *RoutingAreaId) SetLac(v string)

SetLac sets field value

func (*RoutingAreaId) SetPlmnId

func (o *RoutingAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*RoutingAreaId) SetRac

func (o *RoutingAreaId) SetRac(v string)

SetRac sets field value

func (RoutingAreaId) ToMap

func (o RoutingAreaId) ToMap() (map[string]interface{}, error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type ServiceAreaId

type ServiceAreaId struct {
	PlmnId PlmnId `json:"plmnId"`
	// Location Area Code.
	Lac string `json:"lac"`
	// Service Area Code.
	Sac string `json:"sac"`
}

ServiceAreaId Contains a Service Area Identifier as defined in 3GPP TS 23.003, clause 12.5.

func NewServiceAreaId

func NewServiceAreaId(plmnId PlmnId, lac string, sac string) *ServiceAreaId

NewServiceAreaId instantiates a new ServiceAreaId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceAreaIdWithDefaults

func NewServiceAreaIdWithDefaults() *ServiceAreaId

NewServiceAreaIdWithDefaults instantiates a new ServiceAreaId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceAreaId) GetLac

func (o *ServiceAreaId) GetLac() string

GetLac returns the Lac field value

func (*ServiceAreaId) GetLacOk

func (o *ServiceAreaId) GetLacOk() (*string, bool)

GetLacOk returns a tuple with the Lac field value and a boolean to check if the value has been set.

func (*ServiceAreaId) GetPlmnId

func (o *ServiceAreaId) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*ServiceAreaId) GetPlmnIdOk

func (o *ServiceAreaId) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*ServiceAreaId) GetSac

func (o *ServiceAreaId) GetSac() string

GetSac returns the Sac field value

func (*ServiceAreaId) GetSacOk

func (o *ServiceAreaId) GetSacOk() (*string, bool)

GetSacOk returns a tuple with the Sac field value and a boolean to check if the value has been set.

func (ServiceAreaId) MarshalJSON

func (o ServiceAreaId) MarshalJSON() ([]byte, error)

func (*ServiceAreaId) SetLac

func (o *ServiceAreaId) SetLac(v string)

SetLac sets field value

func (*ServiceAreaId) SetPlmnId

func (o *ServiceAreaId) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*ServiceAreaId) SetSac

func (o *ServiceAreaId) SetSac(v string)

SetSac sets field value

func (ServiceAreaId) ToMap

func (o ServiceAreaId) ToMap() (map[string]interface{}, error)

type Snssai

type Snssai struct {
	// Unsigned integer, within the range 0 to 255, representing the Slice/Service Type.  It indicates the expected Network Slice behaviour in terms of features and services. Values 0 to 127 correspond to the standardized SST range. Values 128 to 255 correspond  to the Operator-specific range. See clause 28.4.2 of 3GPP TS 23.003. Standardized values are defined in clause 5.15.2.2 of 3GPP TS 23.501.
	Sst int32 `json:"sst"`
	// 3-octet string, representing the Slice Differentiator, in hexadecimal representation. Each character in the string shall take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant character representing the 4 most significant bits of the SD shall appear first in the string, and the character representing the 4 least significant bit of the SD shall appear last in the string. This is an optional parameter that complements the Slice/Service type(s) to allow to  differentiate amongst multiple Network Slices of the same Slice/Service type. This IE shall be absent if no SD value is associated with the SST.
	Sd *string `json:"sd,omitempty"`
}

Snssai When Snssai needs to be converted to string (e.g. when used in maps as key), the string shall be composed of one to three digits \"sst\" optionally followed by \"-\" and 6 hexadecimal digits \"sd\".

func NewSnssai

func NewSnssai(sst int32) *Snssai

NewSnssai instantiates a new Snssai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSnssaiWithDefaults

func NewSnssaiWithDefaults() *Snssai

NewSnssaiWithDefaults instantiates a new Snssai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Snssai) GetSd

func (o *Snssai) GetSd() string

GetSd returns the Sd field value if set, zero value otherwise.

func (*Snssai) GetSdOk

func (o *Snssai) GetSdOk() (*string, bool)

GetSdOk returns a tuple with the Sd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Snssai) GetSst

func (o *Snssai) GetSst() int32

GetSst returns the Sst field value

func (*Snssai) GetSstOk

func (o *Snssai) GetSstOk() (*int32, bool)

GetSstOk returns a tuple with the Sst field value and a boolean to check if the value has been set.

func (*Snssai) HasSd

func (o *Snssai) HasSd() bool

HasSd returns a boolean if a field has been set.

func (Snssai) MarshalJSON

func (o Snssai) MarshalJSON() ([]byte, error)

func (*Snssai) SetSd

func (o *Snssai) SetSd(v string)

SetSd gets a reference to the given string and assigns it to the Sd field.

func (*Snssai) SetSst

func (o *Snssai) SetSst(v int32)

SetSst sets field value

func (Snssai) ToMap

func (o Snssai) ToMap() (map[string]interface{}, error)

type SupportedGADShapes

type SupportedGADShapes struct {
	String *string
}

SupportedGADShapes Indicates supported GAD shapes.

func (*SupportedGADShapes) MarshalJSON

func (src *SupportedGADShapes) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SupportedGADShapes) UnmarshalJSON

func (dst *SupportedGADShapes) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type Tai

type Tai struct {
	PlmnId PlmnId `json:"plmnId"`
	// 2 or 3-octet string identifying a tracking area code as specified in clause 9.3.3.10  of 3GPP TS 38.413, in hexadecimal representation. Each character in the string shall  take a value of \"0\" to \"9\", \"a\" to \"f\" or \"A\" to \"F\" and shall represent 4 bits. The most significant character representing the 4 most significant bits of the TAC shall  appear first in the string, and the character representing the 4 least significant bit  of the TAC shall appear last in the string.
	Tac string `json:"tac"`
	// This represents the Network Identifier, which together with a PLMN ID is used to identify an SNPN (see 3GPP TS 23.003 and 3GPP TS 23.501 clause 5.30.2.1).
	Nid *string `json:"nid,omitempty"`
}

Tai Contains the tracking area identity as described in 3GPP 23.003

func NewTai

func NewTai(plmnId PlmnId, tac string) *Tai

NewTai instantiates a new Tai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaiWithDefaults

func NewTaiWithDefaults() *Tai

NewTaiWithDefaults instantiates a new Tai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Tai) GetNid

func (o *Tai) GetNid() string

GetNid returns the Nid field value if set, zero value otherwise.

func (*Tai) GetNidOk

func (o *Tai) GetNidOk() (*string, bool)

GetNidOk returns a tuple with the Nid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tai) GetPlmnId

func (o *Tai) GetPlmnId() PlmnId

GetPlmnId returns the PlmnId field value

func (*Tai) GetPlmnIdOk

func (o *Tai) GetPlmnIdOk() (*PlmnId, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value and a boolean to check if the value has been set.

func (*Tai) GetTac

func (o *Tai) GetTac() string

GetTac returns the Tac field value

func (*Tai) GetTacOk

func (o *Tai) GetTacOk() (*string, bool)

GetTacOk returns a tuple with the Tac field value and a boolean to check if the value has been set.

func (*Tai) HasNid

func (o *Tai) HasNid() bool

HasNid returns a boolean if a field has been set.

func (Tai) MarshalJSON

func (o Tai) MarshalJSON() ([]byte, error)

func (*Tai) SetNid

func (o *Tai) SetNid(v string)

SetNid gets a reference to the given string and assigns it to the Nid field.

func (*Tai) SetPlmnId

func (o *Tai) SetPlmnId(v PlmnId)

SetPlmnId sets field value

func (*Tai) SetTac

func (o *Tai) SetTac(v string)

SetTac sets field value

func (Tai) ToMap

func (o Tai) ToMap() (map[string]interface{}, error)

type TerminationCause

type TerminationCause struct {
	String *string
}

TerminationCause Specifies causes of event reporting termination.

func (*TerminationCause) MarshalJSON

func (src *TerminationCause) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TerminationCause) UnmarshalJSON

func (dst *TerminationCause) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TnapId

type TnapId struct {
	// This IE shall be present if the UE is accessing the 5GC via a trusted WLAN access network.When present, it shall contain the SSID of the access point to which the UE is attached, that is received over NGAP,  see IEEE Std 802.11-2012.
	SsId *string `json:"ssId,omitempty"`
	// When present, it shall contain the BSSID of the access point to which the UE is attached, that is received over NGAP, see IEEE Std 802.11-2012.
	BssId *string `json:"bssId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	CivicAddress *string `json:"civicAddress,omitempty"`
}

TnapId Contain the TNAP Identifier see clause5.6.2 of 3GPP TS 23.501.

func NewTnapId

func NewTnapId() *TnapId

NewTnapId instantiates a new TnapId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTnapIdWithDefaults

func NewTnapIdWithDefaults() *TnapId

NewTnapIdWithDefaults instantiates a new TnapId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TnapId) GetBssId

func (o *TnapId) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*TnapId) GetBssIdOk

func (o *TnapId) GetBssIdOk() (*string, bool)

GetBssIdOk returns a tuple with the BssId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) GetCivicAddress

func (o *TnapId) GetCivicAddress() string

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*TnapId) GetCivicAddressOk

func (o *TnapId) GetCivicAddressOk() (*string, bool)

GetCivicAddressOk returns a tuple with the CivicAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) GetSsId

func (o *TnapId) GetSsId() string

GetSsId returns the SsId field value if set, zero value otherwise.

func (*TnapId) GetSsIdOk

func (o *TnapId) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TnapId) HasBssId

func (o *TnapId) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*TnapId) HasCivicAddress

func (o *TnapId) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (*TnapId) HasSsId

func (o *TnapId) HasSsId() bool

HasSsId returns a boolean if a field has been set.

func (TnapId) MarshalJSON

func (o TnapId) MarshalJSON() ([]byte, error)

func (*TnapId) SetBssId

func (o *TnapId) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*TnapId) SetCivicAddress

func (o *TnapId) SetCivicAddress(v string)

SetCivicAddress gets a reference to the given string and assigns it to the CivicAddress field.

func (*TnapId) SetSsId

func (o *TnapId) SetSsId(v string)

SetSsId gets a reference to the given string and assigns it to the SsId field.

func (TnapId) ToMap

func (o TnapId) ToMap() (map[string]interface{}, error)

type TransportProtocol

type TransportProtocol struct {
	String *string
}

TransportProtocol Possible values are: - UDP: User Datagram Protocol. - TCP: Transmission Control Protocol.

func (*TransportProtocol) MarshalJSON

func (src *TransportProtocol) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TransportProtocol) UnmarshalJSON

func (dst *TransportProtocol) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type TwapId

type TwapId struct {
	// This IE shall contain the SSID of the access point to which the UE is attached, that is received over NGAP, see IEEE Std 802.11-2012.
	SsId string `json:"ssId"`
	// When present, it shall contain the BSSID of the access point to which the UE is attached, for trusted WLAN access, see IEEE Std 802.11-2012.
	BssId *string `json:"bssId,omitempty"`
	// string with format 'bytes' as defined in OpenAPI
	CivicAddress *string `json:"civicAddress,omitempty"`
}

TwapId Contain the TWAP Identifier as defined in clause 4.2.8.5.3 of 3GPP TS 23.501 or the WLAN location information as defined in clause 4.5.7.2.8 of 3GPP TS 23.402.

func NewTwapId

func NewTwapId(ssId string) *TwapId

NewTwapId instantiates a new TwapId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTwapIdWithDefaults

func NewTwapIdWithDefaults() *TwapId

NewTwapIdWithDefaults instantiates a new TwapId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TwapId) GetBssId

func (o *TwapId) GetBssId() string

GetBssId returns the BssId field value if set, zero value otherwise.

func (*TwapId) GetBssIdOk

func (o *TwapId) GetBssIdOk() (*string, bool)

GetBssIdOk returns a tuple with the BssId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwapId) GetCivicAddress

func (o *TwapId) GetCivicAddress() string

GetCivicAddress returns the CivicAddress field value if set, zero value otherwise.

func (*TwapId) GetCivicAddressOk

func (o *TwapId) GetCivicAddressOk() (*string, bool)

GetCivicAddressOk returns a tuple with the CivicAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TwapId) GetSsId

func (o *TwapId) GetSsId() string

GetSsId returns the SsId field value

func (*TwapId) GetSsIdOk

func (o *TwapId) GetSsIdOk() (*string, bool)

GetSsIdOk returns a tuple with the SsId field value and a boolean to check if the value has been set.

func (*TwapId) HasBssId

func (o *TwapId) HasBssId() bool

HasBssId returns a boolean if a field has been set.

func (*TwapId) HasCivicAddress

func (o *TwapId) HasCivicAddress() bool

HasCivicAddress returns a boolean if a field has been set.

func (TwapId) MarshalJSON

func (o TwapId) MarshalJSON() ([]byte, error)

func (*TwapId) SetBssId

func (o *TwapId) SetBssId(v string)

SetBssId gets a reference to the given string and assigns it to the BssId field.

func (*TwapId) SetCivicAddress

func (o *TwapId) SetCivicAddress(v string)

SetCivicAddress gets a reference to the given string and assigns it to the CivicAddress field.

func (*TwapId) SetSsId

func (o *TwapId) SetSsId(v string)

SetSsId sets field value

func (TwapId) ToMap

func (o TwapId) ToMap() (map[string]interface{}, error)

type UePrivacyRequirements

type UePrivacyRequirements struct {
	LcsServiceAuthInfo *LcsServiceAuth `json:"lcsServiceAuthInfo,omitempty"`
	CodeWordCheck      *bool           `json:"codeWordCheck,omitempty"`
}

UePrivacyRequirements UE privacy requirements from (H)GMLC to the serving AMF or VGMLC(in the roaming case) for the target UE

func NewUePrivacyRequirements

func NewUePrivacyRequirements() *UePrivacyRequirements

NewUePrivacyRequirements instantiates a new UePrivacyRequirements object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUePrivacyRequirementsWithDefaults

func NewUePrivacyRequirementsWithDefaults() *UePrivacyRequirements

NewUePrivacyRequirementsWithDefaults instantiates a new UePrivacyRequirements object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UePrivacyRequirements) GetCodeWordCheck

func (o *UePrivacyRequirements) GetCodeWordCheck() bool

GetCodeWordCheck returns the CodeWordCheck field value if set, zero value otherwise.

func (*UePrivacyRequirements) GetCodeWordCheckOk

func (o *UePrivacyRequirements) GetCodeWordCheckOk() (*bool, bool)

GetCodeWordCheckOk returns a tuple with the CodeWordCheck field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UePrivacyRequirements) GetLcsServiceAuthInfo

func (o *UePrivacyRequirements) GetLcsServiceAuthInfo() LcsServiceAuth

GetLcsServiceAuthInfo returns the LcsServiceAuthInfo field value if set, zero value otherwise.

func (*UePrivacyRequirements) GetLcsServiceAuthInfoOk

func (o *UePrivacyRequirements) GetLcsServiceAuthInfoOk() (*LcsServiceAuth, bool)

GetLcsServiceAuthInfoOk returns a tuple with the LcsServiceAuthInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UePrivacyRequirements) HasCodeWordCheck

func (o *UePrivacyRequirements) HasCodeWordCheck() bool

HasCodeWordCheck returns a boolean if a field has been set.

func (*UePrivacyRequirements) HasLcsServiceAuthInfo

func (o *UePrivacyRequirements) HasLcsServiceAuthInfo() bool

HasLcsServiceAuthInfo returns a boolean if a field has been set.

func (UePrivacyRequirements) MarshalJSON

func (o UePrivacyRequirements) MarshalJSON() ([]byte, error)

func (*UePrivacyRequirements) SetCodeWordCheck

func (o *UePrivacyRequirements) SetCodeWordCheck(v bool)

SetCodeWordCheck gets a reference to the given bool and assigns it to the CodeWordCheck field.

func (*UePrivacyRequirements) SetLcsServiceAuthInfo

func (o *UePrivacyRequirements) SetLcsServiceAuthInfo(v LcsServiceAuth)

SetLcsServiceAuthInfo gets a reference to the given LcsServiceAuth and assigns it to the LcsServiceAuthInfo field.

func (UePrivacyRequirements) ToMap

func (o UePrivacyRequirements) ToMap() (map[string]interface{}, 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)

type UncertaintyEllipsoid

type UncertaintyEllipsoid struct {
	// Indicates value of uncertainty.
	SemiMajor float32 `json:"semiMajor"`
	// Indicates value of uncertainty.
	SemiMinor float32 `json:"semiMinor"`
	// Indicates value of uncertainty.
	Vertical float32 `json:"vertical"`
	// Indicates value of orientation angle.
	OrientationMajor int32 `json:"orientationMajor"`
}

UncertaintyEllipsoid Ellipsoid with uncertainty

func NewUncertaintyEllipsoid

func NewUncertaintyEllipsoid(semiMajor float32, semiMinor float32, vertical float32, orientationMajor int32) *UncertaintyEllipsoid

NewUncertaintyEllipsoid instantiates a new UncertaintyEllipsoid object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUncertaintyEllipsoidWithDefaults

func NewUncertaintyEllipsoidWithDefaults() *UncertaintyEllipsoid

NewUncertaintyEllipsoidWithDefaults instantiates a new UncertaintyEllipsoid object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UncertaintyEllipsoid) GetOrientationMajor

func (o *UncertaintyEllipsoid) GetOrientationMajor() int32

GetOrientationMajor returns the OrientationMajor field value

func (*UncertaintyEllipsoid) GetOrientationMajorOk

func (o *UncertaintyEllipsoid) GetOrientationMajorOk() (*int32, bool)

GetOrientationMajorOk returns a tuple with the OrientationMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetSemiMajor

func (o *UncertaintyEllipsoid) GetSemiMajor() float32

GetSemiMajor returns the SemiMajor field value

func (*UncertaintyEllipsoid) GetSemiMajorOk

func (o *UncertaintyEllipsoid) GetSemiMajorOk() (*float32, bool)

GetSemiMajorOk returns a tuple with the SemiMajor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetSemiMinor

func (o *UncertaintyEllipsoid) GetSemiMinor() float32

GetSemiMinor returns the SemiMinor field value

func (*UncertaintyEllipsoid) GetSemiMinorOk

func (o *UncertaintyEllipsoid) GetSemiMinorOk() (*float32, bool)

GetSemiMinorOk returns a tuple with the SemiMinor field value and a boolean to check if the value has been set.

func (*UncertaintyEllipsoid) GetVertical

func (o *UncertaintyEllipsoid) GetVertical() float32

GetVertical returns the Vertical field value

func (*UncertaintyEllipsoid) GetVerticalOk

func (o *UncertaintyEllipsoid) GetVerticalOk() (*float32, bool)

GetVerticalOk returns a tuple with the Vertical field value and a boolean to check if the value has been set.

func (UncertaintyEllipsoid) MarshalJSON

func (o UncertaintyEllipsoid) MarshalJSON() ([]byte, error)

func (*UncertaintyEllipsoid) SetOrientationMajor

func (o *UncertaintyEllipsoid) SetOrientationMajor(v int32)

SetOrientationMajor sets field value

func (*UncertaintyEllipsoid) SetSemiMajor

func (o *UncertaintyEllipsoid) SetSemiMajor(v float32)

SetSemiMajor sets field value

func (*UncertaintyEllipsoid) SetSemiMinor

func (o *UncertaintyEllipsoid) SetSemiMinor(v float32)

SetSemiMinor sets field value

func (*UncertaintyEllipsoid) SetVertical

func (o *UncertaintyEllipsoid) SetVertical(v float32)

SetVertical sets field value

func (UncertaintyEllipsoid) ToMap

func (o UncertaintyEllipsoid) ToMap() (map[string]interface{}, error)

type Usage

type Usage struct {
	String *string
}

Usage Indicates usage made of the location measurement.

func (*Usage) MarshalJSON

func (src *Usage) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Usage) UnmarshalJSON

func (dst *Usage) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type UserLocation

type UserLocation struct {
	EutraLocation *EutraLocation `json:"eutraLocation,omitempty"`
	NrLocation    *NrLocation    `json:"nrLocation,omitempty"`
	N3gaLocation  *N3gaLocation  `json:"n3gaLocation,omitempty"`
	UtraLocation  *UtraLocation  `json:"utraLocation,omitempty"`
	GeraLocation  *GeraLocation  `json:"geraLocation,omitempty"`
}

UserLocation At least one of eutraLocation, nrLocation and n3gaLocation shall be present. Several of them may be present.

func NewUserLocation

func NewUserLocation() *UserLocation

NewUserLocation instantiates a new UserLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserLocationWithDefaults

func NewUserLocationWithDefaults() *UserLocation

NewUserLocationWithDefaults instantiates a new UserLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserLocation) GetEutraLocation

func (o *UserLocation) GetEutraLocation() EutraLocation

GetEutraLocation returns the EutraLocation field value if set, zero value otherwise.

func (*UserLocation) GetEutraLocationOk

func (o *UserLocation) GetEutraLocationOk() (*EutraLocation, bool)

GetEutraLocationOk returns a tuple with the EutraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetGeraLocation

func (o *UserLocation) GetGeraLocation() GeraLocation

GetGeraLocation returns the GeraLocation field value if set, zero value otherwise.

func (*UserLocation) GetGeraLocationOk

func (o *UserLocation) GetGeraLocationOk() (*GeraLocation, bool)

GetGeraLocationOk returns a tuple with the GeraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetN3gaLocation

func (o *UserLocation) GetN3gaLocation() N3gaLocation

GetN3gaLocation returns the N3gaLocation field value if set, zero value otherwise.

func (*UserLocation) GetN3gaLocationOk

func (o *UserLocation) GetN3gaLocationOk() (*N3gaLocation, bool)

GetN3gaLocationOk returns a tuple with the N3gaLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetNrLocation

func (o *UserLocation) GetNrLocation() NrLocation

GetNrLocation returns the NrLocation field value if set, zero value otherwise.

func (*UserLocation) GetNrLocationOk

func (o *UserLocation) GetNrLocationOk() (*NrLocation, bool)

GetNrLocationOk returns a tuple with the NrLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) GetUtraLocation

func (o *UserLocation) GetUtraLocation() UtraLocation

GetUtraLocation returns the UtraLocation field value if set, zero value otherwise.

func (*UserLocation) GetUtraLocationOk

func (o *UserLocation) GetUtraLocationOk() (*UtraLocation, bool)

GetUtraLocationOk returns a tuple with the UtraLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserLocation) HasEutraLocation

func (o *UserLocation) HasEutraLocation() bool

HasEutraLocation returns a boolean if a field has been set.

func (*UserLocation) HasGeraLocation

func (o *UserLocation) HasGeraLocation() bool

HasGeraLocation returns a boolean if a field has been set.

func (*UserLocation) HasN3gaLocation

func (o *UserLocation) HasN3gaLocation() bool

HasN3gaLocation returns a boolean if a field has been set.

func (*UserLocation) HasNrLocation

func (o *UserLocation) HasNrLocation() bool

HasNrLocation returns a boolean if a field has been set.

func (*UserLocation) HasUtraLocation

func (o *UserLocation) HasUtraLocation() bool

HasUtraLocation returns a boolean if a field has been set.

func (UserLocation) MarshalJSON

func (o UserLocation) MarshalJSON() ([]byte, error)

func (*UserLocation) SetEutraLocation

func (o *UserLocation) SetEutraLocation(v EutraLocation)

SetEutraLocation gets a reference to the given EutraLocation and assigns it to the EutraLocation field.

func (*UserLocation) SetGeraLocation

func (o *UserLocation) SetGeraLocation(v GeraLocation)

SetGeraLocation gets a reference to the given GeraLocation and assigns it to the GeraLocation field.

func (*UserLocation) SetN3gaLocation

func (o *UserLocation) SetN3gaLocation(v N3gaLocation)

SetN3gaLocation gets a reference to the given N3gaLocation and assigns it to the N3gaLocation field.

func (*UserLocation) SetNrLocation

func (o *UserLocation) SetNrLocation(v NrLocation)

SetNrLocation gets a reference to the given NrLocation and assigns it to the NrLocation field.

func (*UserLocation) SetUtraLocation

func (o *UserLocation) SetUtraLocation(v UtraLocation)

SetUtraLocation gets a reference to the given UtraLocation and assigns it to the UtraLocation field.

func (UserLocation) ToMap

func (o UserLocation) ToMap() (map[string]interface{}, error)

type UtraLocation

type UtraLocation struct {
	Interface *interface{}
}

UtraLocation - Exactly one of cgi, sai or lai shall be present.

func InterfaceAsUtraLocation

func InterfaceAsUtraLocation(v *interface{}) UtraLocation

interface{}AsUtraLocation is a convenience function that returns interface{} wrapped in UtraLocation

func (*UtraLocation) GetActualInstance

func (obj *UtraLocation) GetActualInstance() interface{}

Get the actual instance

func (UtraLocation) MarshalJSON

func (src UtraLocation) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UtraLocation) UnmarshalJSON

func (dst *UtraLocation) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type 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 {
	String *string
}

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 (
	UPWARD   VerticalDirection = "UPWARD"
	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

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL