openapi_M1_EventDataProcessingProvisioning

package
v1.18.2 Latest Latest
Warning

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

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

README

Go API client for openapi_M1_EventDataProcessingProvisioning

5GMS AF M1 Event Data Processing Provisioning API © 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: 2.0.0
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

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

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

Documentation for API Endpoints

All URIs are relative to https://example.com/3gpp-m1/v2

Class Method HTTP request Description
DefaultApi CreateEventDataProcessingConfiguration Post /provisioning-sessions/{provisioningSessionId}/event-data-processing-configurations Supply an Event Data Processing Configuration for the specified Provisioning Session
DefaultApi DestroyEventDataProcessingConfiguration Delete /provisioning-sessions/{provisioningSessionId}/event-data-processing-configurations/{eventDataProcessingConfigurationId} Destroy the specified Event Data Processing Configuration of the specified Provisioning Session
DefaultApi PatchEventDataProcessingConfiguration Patch /provisioning-sessions/{provisioningSessionId}/event-data-processing-configurations/{eventDataProcessingConfigurationId} Patch the specified Event Data Processing Configuration for the specified Provisioning Session
DefaultApi RetrieveEventDataProcessingConfiguration Get /provisioning-sessions/{provisioningSessionId}/event-data-processing-configurations/{eventDataProcessingConfigurationId} Retrieve the specified Event Data Processing Configuration of the specified Provisioning Session
DefaultApi UpdateEventDataProcessingConfiguration Put /provisioning-sessions/{provisioningSessionId}/event-data-processing-configurations/{eventDataProcessingConfigurationId} Update the specified Event Data Processing Configuration for the specified Provisioning Session

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

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 {
	DefaultApi *DefaultApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the M1_EventDataProcessingProvisioning API v2.0.0 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 AfEvent

type AfEvent struct {
	String *string
}

AfEvent Represents Application Events.

func (*AfEvent) MarshalJSON

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

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

func (*AfEvent) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type ApiCreateEventDataProcessingConfigurationRequest

type ApiCreateEventDataProcessingConfigurationRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiCreateEventDataProcessingConfigurationRequest) EventDataProcessingConfiguration

A JSON representation of a Event Data Processing Configuration

func (ApiCreateEventDataProcessingConfigurationRequest) Execute

type ApiDestroyEventDataProcessingConfigurationRequest

type ApiDestroyEventDataProcessingConfigurationRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiDestroyEventDataProcessingConfigurationRequest) Execute

type ApiPatchEventDataProcessingConfigurationRequest

type ApiPatchEventDataProcessingConfigurationRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiPatchEventDataProcessingConfigurationRequest) EventDataProcessingConfiguration

A JSON representation of a Event Data Processing Configuration

func (ApiPatchEventDataProcessingConfigurationRequest) Execute

type ApiRetrieveEventDataProcessingConfigurationRequest

type ApiRetrieveEventDataProcessingConfigurationRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiRetrieveEventDataProcessingConfigurationRequest) Execute

type ApiUpdateEventDataProcessingConfigurationRequest

type ApiUpdateEventDataProcessingConfigurationRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiUpdateEventDataProcessingConfigurationRequest) EventDataProcessingConfiguration

A JSON representation of a Event Data Processing Configuration

func (ApiUpdateEventDataProcessingConfigurationRequest) Execute

type BasicAuth

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

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

type CivicAddress

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

CivicAddress Indicates a Civic address.

func NewCivicAddress

func NewCivicAddress() *CivicAddress

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

func NewCivicAddressWithDefaults

func NewCivicAddressWithDefaults() *CivicAddress

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

func (*CivicAddress) GetA1

func (o *CivicAddress) GetA1() string

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

func (*CivicAddress) GetA1Ok

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

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

func (*CivicAddress) GetA2

func (o *CivicAddress) GetA2() string

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

func (*CivicAddress) GetA2Ok

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

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

func (*CivicAddress) GetA3

func (o *CivicAddress) GetA3() string

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

func (*CivicAddress) GetA3Ok

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

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

func (*CivicAddress) GetA4

func (o *CivicAddress) GetA4() string

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

func (*CivicAddress) GetA4Ok

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

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

func (*CivicAddress) GetA5

func (o *CivicAddress) GetA5() string

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

func (*CivicAddress) GetA5Ok

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

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

func (*CivicAddress) GetA6

func (o *CivicAddress) GetA6() string

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

func (*CivicAddress) GetA6Ok

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

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

func (*CivicAddress) GetADDCODE

func (o *CivicAddress) GetADDCODE() string

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

func (*CivicAddress) GetADDCODEOk

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

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

func (*CivicAddress) GetBLD

func (o *CivicAddress) GetBLD() string

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

func (*CivicAddress) GetBLDOk

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

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

func (*CivicAddress) GetCountry

func (o *CivicAddress) GetCountry() string

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

func (*CivicAddress) GetCountryOk

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

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

func (*CivicAddress) GetFLR

func (o *CivicAddress) GetFLR() string

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

func (*CivicAddress) GetFLROk

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

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

func (*CivicAddress) GetHNO

func (o *CivicAddress) GetHNO() string

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

func (*CivicAddress) GetHNOOk

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

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

func (*CivicAddress) GetHNS

func (o *CivicAddress) GetHNS() string

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

func (*CivicAddress) GetHNSOk

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

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

func (*CivicAddress) GetLMK

func (o *CivicAddress) GetLMK() string

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

func (*CivicAddress) GetLMKOk

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

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

func (*CivicAddress) GetLOC

func (o *CivicAddress) GetLOC() string

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

func (*CivicAddress) GetLOCOk

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

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

func (*CivicAddress) GetMethod

func (o *CivicAddress) GetMethod() string

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

func (*CivicAddress) GetMethodOk

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

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

func (*CivicAddress) GetNAM

func (o *CivicAddress) GetNAM() string

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

func (*CivicAddress) GetNAMOk

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

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

func (*CivicAddress) GetPC

func (o *CivicAddress) GetPC() string

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

func (*CivicAddress) GetPCN

func (o *CivicAddress) GetPCN() string

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

func (*CivicAddress) GetPCNOk

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

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

func (*CivicAddress) GetPCOk

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

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

func (*CivicAddress) GetPLC

func (o *CivicAddress) GetPLC() string

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

func (*CivicAddress) GetPLCOk

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

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

func (*CivicAddress) GetPOBOX

func (o *CivicAddress) GetPOBOX() string

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

func (*CivicAddress) GetPOBOXOk

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

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

func (*CivicAddress) GetPOD

func (o *CivicAddress) GetPOD() string

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

func (*CivicAddress) GetPODOk

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

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

func (*CivicAddress) GetPOM

func (o *CivicAddress) GetPOM() string

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

func (*CivicAddress) GetPOMOk

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

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

func (*CivicAddress) GetPRD

func (o *CivicAddress) GetPRD() string

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

func (*CivicAddress) GetPRDOk

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

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

func (*CivicAddress) GetPRM

func (o *CivicAddress) GetPRM() string

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

func (*CivicAddress) GetPRMOk

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

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

func (*CivicAddress) GetProvidedBy

func (o *CivicAddress) GetProvidedBy() string

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

func (*CivicAddress) GetProvidedByOk

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

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

func (*CivicAddress) GetRD

func (o *CivicAddress) GetRD() string

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

func (*CivicAddress) GetRDBR

func (o *CivicAddress) GetRDBR() string

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

func (*CivicAddress) GetRDBROk

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

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

func (*CivicAddress) GetRDOk

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

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

func (*CivicAddress) GetRDSEC

func (o *CivicAddress) GetRDSEC() string

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

func (*CivicAddress) GetRDSECOk

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

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

func (*CivicAddress) GetRDSUBBR

func (o *CivicAddress) GetRDSUBBR() string

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

func (*CivicAddress) GetRDSUBBROk

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

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

func (*CivicAddress) GetROOM

func (o *CivicAddress) GetROOM() string

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

func (*CivicAddress) GetROOMOk

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

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

func (*CivicAddress) GetSEAT

func (o *CivicAddress) GetSEAT() string

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

func (*CivicAddress) GetSEATOk

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

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

func (*CivicAddress) GetSTS

func (o *CivicAddress) GetSTS() string

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

func (*CivicAddress) GetSTSOk

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

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

func (*CivicAddress) GetUNIT

func (o *CivicAddress) GetUNIT() string

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

func (*CivicAddress) GetUNITOk

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

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

func (*CivicAddress) GetUsageRules

func (o *CivicAddress) GetUsageRules() string

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

func (*CivicAddress) GetUsageRulesOk

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

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

func (*CivicAddress) HasA1

func (o *CivicAddress) HasA1() bool

HasA1 returns a boolean if a field has been set.

func (*CivicAddress) HasA2

func (o *CivicAddress) HasA2() bool

HasA2 returns a boolean if a field has been set.

func (*CivicAddress) HasA3

func (o *CivicAddress) HasA3() bool

HasA3 returns a boolean if a field has been set.

func (*CivicAddress) HasA4

func (o *CivicAddress) HasA4() bool

HasA4 returns a boolean if a field has been set.

func (*CivicAddress) HasA5

func (o *CivicAddress) HasA5() bool

HasA5 returns a boolean if a field has been set.

func (*CivicAddress) HasA6

func (o *CivicAddress) HasA6() bool

HasA6 returns a boolean if a field has been set.

func (*CivicAddress) HasADDCODE

func (o *CivicAddress) HasADDCODE() bool

HasADDCODE returns a boolean if a field has been set.

func (*CivicAddress) HasBLD

func (o *CivicAddress) HasBLD() bool

HasBLD returns a boolean if a field has been set.

func (*CivicAddress) HasCountry

func (o *CivicAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*CivicAddress) HasFLR

func (o *CivicAddress) HasFLR() bool

HasFLR returns a boolean if a field has been set.

func (*CivicAddress) HasHNO

func (o *CivicAddress) HasHNO() bool

HasHNO returns a boolean if a field has been set.

func (*CivicAddress) HasHNS

func (o *CivicAddress) HasHNS() bool

HasHNS returns a boolean if a field has been set.

func (*CivicAddress) HasLMK

func (o *CivicAddress) HasLMK() bool

HasLMK returns a boolean if a field has been set.

func (*CivicAddress) HasLOC

func (o *CivicAddress) HasLOC() bool

HasLOC returns a boolean if a field has been set.

func (*CivicAddress) HasMethod

func (o *CivicAddress) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*CivicAddress) HasNAM

func (o *CivicAddress) HasNAM() bool

HasNAM returns a boolean if a field has been set.

func (*CivicAddress) HasPC

func (o *CivicAddress) HasPC() bool

HasPC returns a boolean if a field has been set.

func (*CivicAddress) HasPCN

func (o *CivicAddress) HasPCN() bool

HasPCN returns a boolean if a field has been set.

func (*CivicAddress) HasPLC

func (o *CivicAddress) HasPLC() bool

HasPLC returns a boolean if a field has been set.

func (*CivicAddress) HasPOBOX

func (o *CivicAddress) HasPOBOX() bool

HasPOBOX returns a boolean if a field has been set.

func (*CivicAddress) HasPOD

func (o *CivicAddress) HasPOD() bool

HasPOD returns a boolean if a field has been set.

func (*CivicAddress) HasPOM

func (o *CivicAddress) HasPOM() bool

HasPOM returns a boolean if a field has been set.

func (*CivicAddress) HasPRD

func (o *CivicAddress) HasPRD() bool

HasPRD returns a boolean if a field has been set.

func (*CivicAddress) HasPRM

func (o *CivicAddress) HasPRM() bool

HasPRM returns a boolean if a field has been set.

func (*CivicAddress) HasProvidedBy

func (o *CivicAddress) HasProvidedBy() bool

HasProvidedBy returns a boolean if a field has been set.

func (*CivicAddress) HasRD

func (o *CivicAddress) HasRD() bool

HasRD returns a boolean if a field has been set.

func (*CivicAddress) HasRDBR

func (o *CivicAddress) HasRDBR() bool

HasRDBR returns a boolean if a field has been set.

func (*CivicAddress) HasRDSEC

func (o *CivicAddress) HasRDSEC() bool

HasRDSEC returns a boolean if a field has been set.

func (*CivicAddress) HasRDSUBBR

func (o *CivicAddress) HasRDSUBBR() bool

HasRDSUBBR returns a boolean if a field has been set.

func (*CivicAddress) HasROOM

func (o *CivicAddress) HasROOM() bool

HasROOM returns a boolean if a field has been set.

func (*CivicAddress) HasSEAT

func (o *CivicAddress) HasSEAT() bool

HasSEAT returns a boolean if a field has been set.

func (*CivicAddress) HasSTS

func (o *CivicAddress) HasSTS() bool

HasSTS returns a boolean if a field has been set.

func (*CivicAddress) HasUNIT

func (o *CivicAddress) HasUNIT() bool

HasUNIT returns a boolean if a field has been set.

func (*CivicAddress) HasUsageRules

func (o *CivicAddress) HasUsageRules() bool

HasUsageRules returns a boolean if a field has been set.

func (CivicAddress) MarshalJSON

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

func (*CivicAddress) SetA1

func (o *CivicAddress) SetA1(v string)

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

func (*CivicAddress) SetA2

func (o *CivicAddress) SetA2(v string)

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

func (*CivicAddress) SetA3

func (o *CivicAddress) SetA3(v string)

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

func (*CivicAddress) SetA4

func (o *CivicAddress) SetA4(v string)

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

func (*CivicAddress) SetA5

func (o *CivicAddress) SetA5(v string)

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

func (*CivicAddress) SetA6

func (o *CivicAddress) SetA6(v string)

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

func (*CivicAddress) SetADDCODE

func (o *CivicAddress) SetADDCODE(v string)

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

func (*CivicAddress) SetBLD

func (o *CivicAddress) SetBLD(v string)

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

func (*CivicAddress) SetCountry

func (o *CivicAddress) SetCountry(v string)

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

func (*CivicAddress) SetFLR

func (o *CivicAddress) SetFLR(v string)

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

func (*CivicAddress) SetHNO

func (o *CivicAddress) SetHNO(v string)

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

func (*CivicAddress) SetHNS

func (o *CivicAddress) SetHNS(v string)

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

func (*CivicAddress) SetLMK

func (o *CivicAddress) SetLMK(v string)

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

func (*CivicAddress) SetLOC

func (o *CivicAddress) SetLOC(v string)

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

func (*CivicAddress) SetMethod

func (o *CivicAddress) SetMethod(v string)

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

func (*CivicAddress) SetNAM

func (o *CivicAddress) SetNAM(v string)

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

func (*CivicAddress) SetPC

func (o *CivicAddress) SetPC(v string)

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

func (*CivicAddress) SetPCN

func (o *CivicAddress) SetPCN(v string)

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

func (*CivicAddress) SetPLC

func (o *CivicAddress) SetPLC(v string)

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

func (*CivicAddress) SetPOBOX

func (o *CivicAddress) SetPOBOX(v string)

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

func (*CivicAddress) SetPOD

func (o *CivicAddress) SetPOD(v string)

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

func (*CivicAddress) SetPOM

func (o *CivicAddress) SetPOM(v string)

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

func (*CivicAddress) SetPRD

func (o *CivicAddress) SetPRD(v string)

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

func (*CivicAddress) SetPRM

func (o *CivicAddress) SetPRM(v string)

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

func (*CivicAddress) SetProvidedBy

func (o *CivicAddress) SetProvidedBy(v string)

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

func (*CivicAddress) SetRD

func (o *CivicAddress) SetRD(v string)

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

func (*CivicAddress) SetRDBR

func (o *CivicAddress) SetRDBR(v string)

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

func (*CivicAddress) SetRDSEC

func (o *CivicAddress) SetRDSEC(v string)

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

func (*CivicAddress) SetRDSUBBR

func (o *CivicAddress) SetRDSUBBR(v string)

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

func (*CivicAddress) SetROOM

func (o *CivicAddress) SetROOM(v string)

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

func (*CivicAddress) SetSEAT

func (o *CivicAddress) SetSEAT(v string)

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

func (*CivicAddress) SetSTS

func (o *CivicAddress) SetSTS(v string)

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

func (*CivicAddress) SetUNIT

func (o *CivicAddress) SetUNIT(v string)

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

func (*CivicAddress) SetUsageRules

func (o *CivicAddress) SetUsageRules(v string)

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

func (CivicAddress) ToMap

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

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

type DataAccessProfile struct {
	DataAccessProfileId        string                                       `json:"dataAccessProfileId"`
	TargetEventConsumerTypes   []EventConsumerType                          `json:"targetEventConsumerTypes"`
	Parameters                 []string                                     `json:"parameters"`
	TimeAccessRestrictions     *DataAccessProfileTimeAccessRestrictions     `json:"timeAccessRestrictions,omitempty"`
	UserAccessRestrictions     *DataAccessProfileUserAccessRestrictions     `json:"userAccessRestrictions,omitempty"`
	LocationAccessRestrictions *DataAccessProfileLocationAccessRestrictions `json:"locationAccessRestrictions,omitempty"`
}

DataAccessProfile A data access profile.

func NewDataAccessProfile

func NewDataAccessProfile(dataAccessProfileId string, targetEventConsumerTypes []EventConsumerType, parameters []string) *DataAccessProfile

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

func NewDataAccessProfileWithDefaults

func NewDataAccessProfileWithDefaults() *DataAccessProfile

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

func (*DataAccessProfile) GetDataAccessProfileId

func (o *DataAccessProfile) GetDataAccessProfileId() string

GetDataAccessProfileId returns the DataAccessProfileId field value

func (*DataAccessProfile) GetDataAccessProfileIdOk

func (o *DataAccessProfile) GetDataAccessProfileIdOk() (*string, bool)

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

func (*DataAccessProfile) GetLocationAccessRestrictions

func (o *DataAccessProfile) GetLocationAccessRestrictions() DataAccessProfileLocationAccessRestrictions

GetLocationAccessRestrictions returns the LocationAccessRestrictions field value if set, zero value otherwise.

func (*DataAccessProfile) GetLocationAccessRestrictionsOk

func (o *DataAccessProfile) GetLocationAccessRestrictionsOk() (*DataAccessProfileLocationAccessRestrictions, bool)

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

func (*DataAccessProfile) GetParameters

func (o *DataAccessProfile) GetParameters() []string

GetParameters returns the Parameters field value

func (*DataAccessProfile) GetParametersOk

func (o *DataAccessProfile) GetParametersOk() ([]string, bool)

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

func (*DataAccessProfile) GetTargetEventConsumerTypes

func (o *DataAccessProfile) GetTargetEventConsumerTypes() []EventConsumerType

GetTargetEventConsumerTypes returns the TargetEventConsumerTypes field value

func (*DataAccessProfile) GetTargetEventConsumerTypesOk

func (o *DataAccessProfile) GetTargetEventConsumerTypesOk() ([]EventConsumerType, bool)

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

func (*DataAccessProfile) GetTimeAccessRestrictions

func (o *DataAccessProfile) GetTimeAccessRestrictions() DataAccessProfileTimeAccessRestrictions

GetTimeAccessRestrictions returns the TimeAccessRestrictions field value if set, zero value otherwise.

func (*DataAccessProfile) GetTimeAccessRestrictionsOk

func (o *DataAccessProfile) GetTimeAccessRestrictionsOk() (*DataAccessProfileTimeAccessRestrictions, bool)

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

func (*DataAccessProfile) GetUserAccessRestrictions

func (o *DataAccessProfile) GetUserAccessRestrictions() DataAccessProfileUserAccessRestrictions

GetUserAccessRestrictions returns the UserAccessRestrictions field value if set, zero value otherwise.

func (*DataAccessProfile) GetUserAccessRestrictionsOk

func (o *DataAccessProfile) GetUserAccessRestrictionsOk() (*DataAccessProfileUserAccessRestrictions, bool)

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

func (*DataAccessProfile) HasLocationAccessRestrictions

func (o *DataAccessProfile) HasLocationAccessRestrictions() bool

HasLocationAccessRestrictions returns a boolean if a field has been set.

func (*DataAccessProfile) HasTimeAccessRestrictions

func (o *DataAccessProfile) HasTimeAccessRestrictions() bool

HasTimeAccessRestrictions returns a boolean if a field has been set.

func (*DataAccessProfile) HasUserAccessRestrictions

func (o *DataAccessProfile) HasUserAccessRestrictions() bool

HasUserAccessRestrictions returns a boolean if a field has been set.

func (DataAccessProfile) MarshalJSON

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

func (*DataAccessProfile) SetDataAccessProfileId

func (o *DataAccessProfile) SetDataAccessProfileId(v string)

SetDataAccessProfileId sets field value

func (*DataAccessProfile) SetLocationAccessRestrictions

func (o *DataAccessProfile) SetLocationAccessRestrictions(v DataAccessProfileLocationAccessRestrictions)

SetLocationAccessRestrictions gets a reference to the given DataAccessProfileLocationAccessRestrictions and assigns it to the LocationAccessRestrictions field.

func (*DataAccessProfile) SetParameters

func (o *DataAccessProfile) SetParameters(v []string)

SetParameters sets field value

func (*DataAccessProfile) SetTargetEventConsumerTypes

func (o *DataAccessProfile) SetTargetEventConsumerTypes(v []EventConsumerType)

SetTargetEventConsumerTypes sets field value

func (*DataAccessProfile) SetTimeAccessRestrictions

func (o *DataAccessProfile) SetTimeAccessRestrictions(v DataAccessProfileTimeAccessRestrictions)

SetTimeAccessRestrictions gets a reference to the given DataAccessProfileTimeAccessRestrictions and assigns it to the TimeAccessRestrictions field.

func (*DataAccessProfile) SetUserAccessRestrictions

func (o *DataAccessProfile) SetUserAccessRestrictions(v DataAccessProfileUserAccessRestrictions)

SetUserAccessRestrictions gets a reference to the given DataAccessProfileUserAccessRestrictions and assigns it to the UserAccessRestrictions field.

func (DataAccessProfile) ToMap

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

type DataAccessProfileLocationAccessRestrictions

type DataAccessProfileLocationAccessRestrictions struct {
	LocationAreas        []LocationArea5G              `json:"locationAreas"`
	AggregationFunctions []DataAggregationFunctionType `json:"aggregationFunctions"`
}

DataAccessProfileLocationAccessRestrictions struct for DataAccessProfileLocationAccessRestrictions

func NewDataAccessProfileLocationAccessRestrictions

func NewDataAccessProfileLocationAccessRestrictions(locationAreas []LocationArea5G, aggregationFunctions []DataAggregationFunctionType) *DataAccessProfileLocationAccessRestrictions

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

func NewDataAccessProfileLocationAccessRestrictionsWithDefaults

func NewDataAccessProfileLocationAccessRestrictionsWithDefaults() *DataAccessProfileLocationAccessRestrictions

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

func (*DataAccessProfileLocationAccessRestrictions) GetAggregationFunctions

GetAggregationFunctions returns the AggregationFunctions field value

func (*DataAccessProfileLocationAccessRestrictions) GetAggregationFunctionsOk

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

func (*DataAccessProfileLocationAccessRestrictions) GetLocationAreas

GetLocationAreas returns the LocationAreas field value

func (*DataAccessProfileLocationAccessRestrictions) GetLocationAreasOk

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

func (DataAccessProfileLocationAccessRestrictions) MarshalJSON

func (*DataAccessProfileLocationAccessRestrictions) SetAggregationFunctions

SetAggregationFunctions sets field value

func (*DataAccessProfileLocationAccessRestrictions) SetLocationAreas

SetLocationAreas sets field value

func (DataAccessProfileLocationAccessRestrictions) ToMap

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

type DataAccessProfileTimeAccessRestrictions

type DataAccessProfileTimeAccessRestrictions struct {
	// indicating a time in seconds.
	Duration             int32                         `json:"duration"`
	AggregationFunctions []DataAggregationFunctionType `json:"aggregationFunctions"`
}

DataAccessProfileTimeAccessRestrictions struct for DataAccessProfileTimeAccessRestrictions

func NewDataAccessProfileTimeAccessRestrictions

func NewDataAccessProfileTimeAccessRestrictions(duration int32, aggregationFunctions []DataAggregationFunctionType) *DataAccessProfileTimeAccessRestrictions

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

func NewDataAccessProfileTimeAccessRestrictionsWithDefaults

func NewDataAccessProfileTimeAccessRestrictionsWithDefaults() *DataAccessProfileTimeAccessRestrictions

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

func (*DataAccessProfileTimeAccessRestrictions) GetAggregationFunctions

GetAggregationFunctions returns the AggregationFunctions field value

func (*DataAccessProfileTimeAccessRestrictions) GetAggregationFunctionsOk

func (o *DataAccessProfileTimeAccessRestrictions) GetAggregationFunctionsOk() ([]DataAggregationFunctionType, bool)

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

func (*DataAccessProfileTimeAccessRestrictions) GetDuration

GetDuration returns the Duration field value

func (*DataAccessProfileTimeAccessRestrictions) GetDurationOk

func (o *DataAccessProfileTimeAccessRestrictions) GetDurationOk() (*int32, bool)

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

func (DataAccessProfileTimeAccessRestrictions) MarshalJSON

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

func (*DataAccessProfileTimeAccessRestrictions) SetAggregationFunctions

SetAggregationFunctions sets field value

func (*DataAccessProfileTimeAccessRestrictions) SetDuration

SetDuration sets field value

func (DataAccessProfileTimeAccessRestrictions) ToMap

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

type DataAccessProfileUserAccessRestrictions

type DataAccessProfileUserAccessRestrictions struct {
	GroupIds             []string                                              `json:"groupIds"`
	UserIds              []DataAccessProfileUserAccessRestrictionsUserIdsInner `json:"userIds"`
	AggregationFunctions []DataAggregationFunctionType                         `json:"aggregationFunctions"`
}

DataAccessProfileUserAccessRestrictions struct for DataAccessProfileUserAccessRestrictions

func NewDataAccessProfileUserAccessRestrictions

func NewDataAccessProfileUserAccessRestrictions(groupIds []string, userIds []DataAccessProfileUserAccessRestrictionsUserIdsInner, aggregationFunctions []DataAggregationFunctionType) *DataAccessProfileUserAccessRestrictions

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

func NewDataAccessProfileUserAccessRestrictionsWithDefaults

func NewDataAccessProfileUserAccessRestrictionsWithDefaults() *DataAccessProfileUserAccessRestrictions

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

func (*DataAccessProfileUserAccessRestrictions) GetAggregationFunctions

GetAggregationFunctions returns the AggregationFunctions field value

func (*DataAccessProfileUserAccessRestrictions) GetAggregationFunctionsOk

func (o *DataAccessProfileUserAccessRestrictions) GetAggregationFunctionsOk() ([]DataAggregationFunctionType, bool)

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

func (*DataAccessProfileUserAccessRestrictions) GetGroupIds

GetGroupIds returns the GroupIds field value

func (*DataAccessProfileUserAccessRestrictions) GetGroupIdsOk

func (o *DataAccessProfileUserAccessRestrictions) GetGroupIdsOk() ([]string, bool)

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

func (*DataAccessProfileUserAccessRestrictions) GetUserIds

GetUserIds returns the UserIds field value

func (*DataAccessProfileUserAccessRestrictions) GetUserIdsOk

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

func (DataAccessProfileUserAccessRestrictions) MarshalJSON

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

func (*DataAccessProfileUserAccessRestrictions) SetAggregationFunctions

SetAggregationFunctions sets field value

func (*DataAccessProfileUserAccessRestrictions) SetGroupIds

func (o *DataAccessProfileUserAccessRestrictions) SetGroupIds(v []string)

SetGroupIds sets field value

func (*DataAccessProfileUserAccessRestrictions) SetUserIds

SetUserIds sets field value

func (DataAccessProfileUserAccessRestrictions) ToMap

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

type DataAccessProfileUserAccessRestrictionsUserIdsInner

type DataAccessProfileUserAccessRestrictionsUserIdsInner struct {
	String *string
}

DataAccessProfileUserAccessRestrictionsUserIdsInner struct for DataAccessProfileUserAccessRestrictionsUserIdsInner

func (*DataAccessProfileUserAccessRestrictionsUserIdsInner) MarshalJSON

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

func (*DataAccessProfileUserAccessRestrictionsUserIdsInner) UnmarshalJSON

Unmarshal JSON data into any of the pointers in the struct

type DataAggregationFunctionType

type DataAggregationFunctionType struct {
	String *string
}

DataAggregationFunctionType The type of data aggregation function.

func (*DataAggregationFunctionType) MarshalJSON

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

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

func (*DataAggregationFunctionType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type DefaultApiService

type DefaultApiService service

DefaultApiService DefaultApi service

func (*DefaultApiService) CreateEventDataProcessingConfiguration

func (a *DefaultApiService) CreateEventDataProcessingConfiguration(ctx context.Context, provisioningSessionId string) ApiCreateEventDataProcessingConfigurationRequest

CreateEventDataProcessingConfiguration Supply an Event Data Processing Configuration for the specified Provisioning Session

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param provisioningSessionId The resource identifier of an existing Provisioning Session.
@return ApiCreateEventDataProcessingConfigurationRequest

func (*DefaultApiService) CreateEventDataProcessingConfigurationExecute

func (a *DefaultApiService) CreateEventDataProcessingConfigurationExecute(r ApiCreateEventDataProcessingConfigurationRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) DestroyEventDataProcessingConfiguration

func (a *DefaultApiService) DestroyEventDataProcessingConfiguration(ctx context.Context, provisioningSessionId string, eventDataProcessingConfigurationId string) ApiDestroyEventDataProcessingConfigurationRequest

DestroyEventDataProcessingConfiguration Destroy the specified Event Data Processing Configuration of the specified Provisioning Session

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param provisioningSessionId The resource identifier of an existing Provisioning Session.
@param eventDataProcessingConfigurationId The resource identifier of an Event Data Processing Configuration.
@return ApiDestroyEventDataProcessingConfigurationRequest

func (*DefaultApiService) DestroyEventDataProcessingConfigurationExecute

func (a *DefaultApiService) DestroyEventDataProcessingConfigurationExecute(r ApiDestroyEventDataProcessingConfigurationRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) PatchEventDataProcessingConfiguration

func (a *DefaultApiService) PatchEventDataProcessingConfiguration(ctx context.Context, provisioningSessionId string, eventDataProcessingConfigurationId string) ApiPatchEventDataProcessingConfigurationRequest

PatchEventDataProcessingConfiguration Patch the specified Event Data Processing Configuration for the specified Provisioning Session

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param provisioningSessionId The resource identifier of an existing Provisioning Session.
@param eventDataProcessingConfigurationId The resource identifier of an Event Data Processing Configuration.
@return ApiPatchEventDataProcessingConfigurationRequest

func (*DefaultApiService) PatchEventDataProcessingConfigurationExecute

Execute executes the request

@return EventDataProcessingConfiguration

func (*DefaultApiService) RetrieveEventDataProcessingConfiguration

func (a *DefaultApiService) RetrieveEventDataProcessingConfiguration(ctx context.Context, provisioningSessionId string, eventDataProcessingConfigurationId string) ApiRetrieveEventDataProcessingConfigurationRequest

RetrieveEventDataProcessingConfiguration Retrieve the specified Event Data Processing Configuration of the specified Provisioning Session

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param provisioningSessionId The resource identifier of an existing Provisioning Session.
@param eventDataProcessingConfigurationId The resource identifier of an Event Data Processing Configuration.
@return ApiRetrieveEventDataProcessingConfigurationRequest

func (*DefaultApiService) RetrieveEventDataProcessingConfigurationExecute

Execute executes the request

@return EventDataProcessingConfiguration

func (*DefaultApiService) UpdateEventDataProcessingConfiguration

func (a *DefaultApiService) UpdateEventDataProcessingConfiguration(ctx context.Context, provisioningSessionId string, eventDataProcessingConfigurationId string) ApiUpdateEventDataProcessingConfigurationRequest

UpdateEventDataProcessingConfiguration Update the specified Event Data Processing Configuration for the specified Provisioning Session

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param provisioningSessionId The resource identifier of an existing Provisioning Session.
@param eventDataProcessingConfigurationId The resource identifier of an Event Data Processing Configuration.
@return ApiUpdateEventDataProcessingConfigurationRequest

func (*DefaultApiService) UpdateEventDataProcessingConfigurationExecute

func (a *DefaultApiService) UpdateEventDataProcessingConfigurationExecute(r ApiUpdateEventDataProcessingConfigurationRequest) (*http.Response, error)

Execute executes the request

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 EventConsumerType

type EventConsumerType struct {
	String *string
}

EventConsumerType The type of event consumer.

func (*EventConsumerType) MarshalJSON

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

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

func (*EventConsumerType) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type EventDataProcessingConfiguration

type EventDataProcessingConfiguration struct {
	// String chosen by the 5GMS AF to serve as an identifier in a resource URI.
	EventDataProcessingConfigurationId string  `json:"eventDataProcessingConfigurationId"`
	EventId                            AfEvent `json:"eventId"`
	// Uniform Resource Locator, comforming with the URI Generic Syntax specified in IETF RFC 3986.
	AuthorizationUrl   *string             `json:"authorizationUrl,omitempty"`
	DataAccessProfiles []DataAccessProfile `json:"dataAccessProfiles"`
}

EventDataProcessingConfiguration A representation of an Event Data Processing Configuration resource.

func NewEventDataProcessingConfiguration

func NewEventDataProcessingConfiguration(eventDataProcessingConfigurationId string, eventId AfEvent, dataAccessProfiles []DataAccessProfile) *EventDataProcessingConfiguration

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

func NewEventDataProcessingConfigurationWithDefaults

func NewEventDataProcessingConfigurationWithDefaults() *EventDataProcessingConfiguration

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

func (*EventDataProcessingConfiguration) GetAuthorizationUrl

func (o *EventDataProcessingConfiguration) GetAuthorizationUrl() string

GetAuthorizationUrl returns the AuthorizationUrl field value if set, zero value otherwise.

func (*EventDataProcessingConfiguration) GetAuthorizationUrlOk

func (o *EventDataProcessingConfiguration) GetAuthorizationUrlOk() (*string, bool)

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

func (*EventDataProcessingConfiguration) GetDataAccessProfiles

func (o *EventDataProcessingConfiguration) GetDataAccessProfiles() []DataAccessProfile

GetDataAccessProfiles returns the DataAccessProfiles field value

func (*EventDataProcessingConfiguration) GetDataAccessProfilesOk

func (o *EventDataProcessingConfiguration) GetDataAccessProfilesOk() ([]DataAccessProfile, bool)

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

func (*EventDataProcessingConfiguration) GetEventDataProcessingConfigurationId

func (o *EventDataProcessingConfiguration) GetEventDataProcessingConfigurationId() string

GetEventDataProcessingConfigurationId returns the EventDataProcessingConfigurationId field value

func (*EventDataProcessingConfiguration) GetEventDataProcessingConfigurationIdOk

func (o *EventDataProcessingConfiguration) GetEventDataProcessingConfigurationIdOk() (*string, bool)

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

func (*EventDataProcessingConfiguration) GetEventId

func (o *EventDataProcessingConfiguration) GetEventId() AfEvent

GetEventId returns the EventId field value

func (*EventDataProcessingConfiguration) GetEventIdOk

func (o *EventDataProcessingConfiguration) GetEventIdOk() (*AfEvent, bool)

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

func (*EventDataProcessingConfiguration) HasAuthorizationUrl

func (o *EventDataProcessingConfiguration) HasAuthorizationUrl() bool

HasAuthorizationUrl returns a boolean if a field has been set.

func (EventDataProcessingConfiguration) MarshalJSON

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

func (*EventDataProcessingConfiguration) SetAuthorizationUrl

func (o *EventDataProcessingConfiguration) SetAuthorizationUrl(v string)

SetAuthorizationUrl gets a reference to the given string and assigns it to the AuthorizationUrl field.

func (*EventDataProcessingConfiguration) SetDataAccessProfiles

func (o *EventDataProcessingConfiguration) SetDataAccessProfiles(v []DataAccessProfile)

SetDataAccessProfiles sets field value

func (*EventDataProcessingConfiguration) SetEventDataProcessingConfigurationId

func (o *EventDataProcessingConfiguration) SetEventDataProcessingConfigurationId(v string)

SetEventDataProcessingConfigurationId sets field value

func (*EventDataProcessingConfiguration) SetEventId

func (o *EventDataProcessingConfiguration) SetEventId(v AfEvent)

SetEventId sets field value

func (EventDataProcessingConfiguration) ToMap

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

type GADShape

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

GADShape Common base type for GAD shapes.

func NewGADShape

func NewGADShape(shape SupportedGADShapes) *GADShape

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

func NewGADShapeWithDefaults

func NewGADShapeWithDefaults() *GADShape

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

func (*GADShape) GetShape

func (o *GADShape) GetShape() SupportedGADShapes

GetShape returns the Shape field value

func (*GADShape) GetShapeOk

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

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

func (GADShape) MarshalJSON

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

func (*GADShape) SetShape

func (o *GADShape) SetShape(v SupportedGADShapes)

SetShape sets field value

func (GADShape) ToMap

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

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

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

Local2dPointUncertaintyEllipse Local 2D point with uncertainty ellipse

func NewLocal2dPointUncertaintyEllipse

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

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

func NewLocal2dPointUncertaintyEllipseWithDefaults

func NewLocal2dPointUncertaintyEllipseWithDefaults() *Local2dPointUncertaintyEllipse

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

func (*Local2dPointUncertaintyEllipse) GetConfidence

func (o *Local2dPointUncertaintyEllipse) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local2dPointUncertaintyEllipse) GetConfidenceOk

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

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

func (*Local2dPointUncertaintyEllipse) GetLocalOrigin

func (o *Local2dPointUncertaintyEllipse) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local2dPointUncertaintyEllipse) GetLocalOriginOk

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

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

func (*Local2dPointUncertaintyEllipse) GetPoint

GetPoint returns the Point field value

func (*Local2dPointUncertaintyEllipse) GetPointOk

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

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipse) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*Local2dPointUncertaintyEllipse) GetUncertaintyEllipseOk

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

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

func (Local2dPointUncertaintyEllipse) MarshalJSON

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

func (*Local2dPointUncertaintyEllipse) SetConfidence

func (o *Local2dPointUncertaintyEllipse) SetConfidence(v int32)

SetConfidence sets field value

func (*Local2dPointUncertaintyEllipse) SetLocalOrigin

func (o *Local2dPointUncertaintyEllipse) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local2dPointUncertaintyEllipse) SetPoint

SetPoint sets field value

func (*Local2dPointUncertaintyEllipse) SetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipse) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (Local2dPointUncertaintyEllipse) ToMap

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

type Local2dPointUncertaintyEllipseAllOf

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

Local2dPointUncertaintyEllipseAllOf struct for Local2dPointUncertaintyEllipseAllOf

func NewLocal2dPointUncertaintyEllipseAllOf

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

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

func NewLocal2dPointUncertaintyEllipseAllOfWithDefaults

func NewLocal2dPointUncertaintyEllipseAllOfWithDefaults() *Local2dPointUncertaintyEllipseAllOf

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

func (*Local2dPointUncertaintyEllipseAllOf) GetConfidence

func (o *Local2dPointUncertaintyEllipseAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local2dPointUncertaintyEllipseAllOf) GetConfidenceOk

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

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

func (*Local2dPointUncertaintyEllipseAllOf) GetLocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local2dPointUncertaintyEllipseAllOf) GetLocalOriginOk

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

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

func (*Local2dPointUncertaintyEllipseAllOf) GetPoint

GetPoint returns the Point field value

func (*Local2dPointUncertaintyEllipseAllOf) GetPointOk

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

func (*Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipse() UncertaintyEllipse

GetUncertaintyEllipse returns the UncertaintyEllipse field value

func (*Local2dPointUncertaintyEllipseAllOf) GetUncertaintyEllipseOk

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

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

func (Local2dPointUncertaintyEllipseAllOf) MarshalJSON

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

func (*Local2dPointUncertaintyEllipseAllOf) SetConfidence

func (o *Local2dPointUncertaintyEllipseAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*Local2dPointUncertaintyEllipseAllOf) SetLocalOrigin

func (o *Local2dPointUncertaintyEllipseAllOf) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local2dPointUncertaintyEllipseAllOf) SetPoint

SetPoint sets field value

func (*Local2dPointUncertaintyEllipseAllOf) SetUncertaintyEllipse

func (o *Local2dPointUncertaintyEllipseAllOf) SetUncertaintyEllipse(v UncertaintyEllipse)

SetUncertaintyEllipse sets field value

func (Local2dPointUncertaintyEllipseAllOf) ToMap

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

type Local3dPointUncertaintyEllipsoid

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

Local3dPointUncertaintyEllipsoid Local 3D point with uncertainty ellipsoid

func NewLocal3dPointUncertaintyEllipsoid

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

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

func NewLocal3dPointUncertaintyEllipsoidWithDefaults

func NewLocal3dPointUncertaintyEllipsoidWithDefaults() *Local3dPointUncertaintyEllipsoid

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

func (*Local3dPointUncertaintyEllipsoid) GetConfidence

func (o *Local3dPointUncertaintyEllipsoid) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local3dPointUncertaintyEllipsoid) GetConfidenceOk

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

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

func (*Local3dPointUncertaintyEllipsoid) GetLocalOrigin

func (o *Local3dPointUncertaintyEllipsoid) GetLocalOrigin() LocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local3dPointUncertaintyEllipsoid) GetLocalOriginOk

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

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

func (*Local3dPointUncertaintyEllipsoid) GetPoint

GetPoint returns the Point field value

func (*Local3dPointUncertaintyEllipsoid) GetPointOk

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

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoid() UncertaintyEllipsoid

GetUncertaintyEllipsoid returns the UncertaintyEllipsoid field value

func (*Local3dPointUncertaintyEllipsoid) GetUncertaintyEllipsoidOk

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

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

func (Local3dPointUncertaintyEllipsoid) MarshalJSON

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

func (*Local3dPointUncertaintyEllipsoid) SetConfidence

func (o *Local3dPointUncertaintyEllipsoid) SetConfidence(v int32)

SetConfidence sets field value

func (*Local3dPointUncertaintyEllipsoid) SetLocalOrigin

func (o *Local3dPointUncertaintyEllipsoid) SetLocalOrigin(v LocalOrigin)

SetLocalOrigin sets field value

func (*Local3dPointUncertaintyEllipsoid) SetPoint

SetPoint sets field value

func (*Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoid) SetUncertaintyEllipsoid(v UncertaintyEllipsoid)

SetUncertaintyEllipsoid sets field value

func (Local3dPointUncertaintyEllipsoid) ToMap

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

type Local3dPointUncertaintyEllipsoidAllOf

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

Local3dPointUncertaintyEllipsoidAllOf struct for Local3dPointUncertaintyEllipsoidAllOf

func NewLocal3dPointUncertaintyEllipsoidAllOf

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

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

func NewLocal3dPointUncertaintyEllipsoidAllOfWithDefaults

func NewLocal3dPointUncertaintyEllipsoidAllOfWithDefaults() *Local3dPointUncertaintyEllipsoidAllOf

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

func (*Local3dPointUncertaintyEllipsoidAllOf) GetConfidence

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetConfidence() int32

GetConfidence returns the Confidence field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetConfidenceOk

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

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

func (*Local3dPointUncertaintyEllipsoidAllOf) GetLocalOrigin

GetLocalOrigin returns the LocalOrigin field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetLocalOriginOk

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

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

func (*Local3dPointUncertaintyEllipsoidAllOf) GetPoint

GetPoint returns the Point field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetPointOk

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

func (*Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoid() UncertaintyEllipsoid

GetUncertaintyEllipsoid returns the UncertaintyEllipsoid field value

func (*Local3dPointUncertaintyEllipsoidAllOf) GetUncertaintyEllipsoidOk

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

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

func (Local3dPointUncertaintyEllipsoidAllOf) MarshalJSON

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

func (*Local3dPointUncertaintyEllipsoidAllOf) SetConfidence

func (o *Local3dPointUncertaintyEllipsoidAllOf) SetConfidence(v int32)

SetConfidence sets field value

func (*Local3dPointUncertaintyEllipsoidAllOf) SetLocalOrigin

SetLocalOrigin sets field value

func (*Local3dPointUncertaintyEllipsoidAllOf) SetPoint

SetPoint sets field value

func (*Local3dPointUncertaintyEllipsoidAllOf) SetUncertaintyEllipsoid

func (o *Local3dPointUncertaintyEllipsoidAllOf) SetUncertaintyEllipsoid(v UncertaintyEllipsoid)

SetUncertaintyEllipsoid sets field value

func (Local3dPointUncertaintyEllipsoidAllOf) ToMap

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

type LocalOrigin

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

LocalOrigin Indicates a Local origin in a reference system

func NewLocalOrigin

func NewLocalOrigin() *LocalOrigin

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

func NewLocalOriginWithDefaults

func NewLocalOriginWithDefaults() *LocalOrigin

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

func (*LocalOrigin) GetCoordinateId

func (o *LocalOrigin) GetCoordinateId() string

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

func (*LocalOrigin) GetCoordinateIdOk

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

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

func (*LocalOrigin) GetPoint

func (o *LocalOrigin) GetPoint() GeographicalCoordinates

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

func (*LocalOrigin) GetPointOk

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

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

func (*LocalOrigin) HasCoordinateId

func (o *LocalOrigin) HasCoordinateId() bool

HasCoordinateId returns a boolean if a field has been set.

func (*LocalOrigin) HasPoint

func (o *LocalOrigin) HasPoint() bool

HasPoint returns a boolean if a field has been set.

func (LocalOrigin) MarshalJSON

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

func (*LocalOrigin) SetCoordinateId

func (o *LocalOrigin) SetCoordinateId(v string)

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

func (*LocalOrigin) SetPoint

func (o *LocalOrigin) SetPoint(v GeographicalCoordinates)

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

func (LocalOrigin) ToMap

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

type LocationArea5G

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

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

func NewLocationArea5G

func NewLocationArea5G() *LocationArea5G

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

func NewLocationArea5GWithDefaults

func NewLocationArea5GWithDefaults() *LocationArea5G

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

func (*LocationArea5G) GetCivicAddresses

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

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

func (*LocationArea5G) GetCivicAddressesOk

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

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

func (*LocationArea5G) GetGeographicAreas

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

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

func (*LocationArea5G) GetGeographicAreasOk

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

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

func (*LocationArea5G) GetNwAreaInfo

func (o *LocationArea5G) GetNwAreaInfo() NetworkAreaInfo

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

func (*LocationArea5G) GetNwAreaInfoOk

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

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

func (*LocationArea5G) HasCivicAddresses

func (o *LocationArea5G) HasCivicAddresses() bool

HasCivicAddresses returns a boolean if a field has been set.

func (*LocationArea5G) HasGeographicAreas

func (o *LocationArea5G) HasGeographicAreas() bool

HasGeographicAreas returns a boolean if a field has been set.

func (*LocationArea5G) HasNwAreaInfo

func (o *LocationArea5G) HasNwAreaInfo() bool

HasNwAreaInfo returns a boolean if a field has been set.

func (LocationArea5G) MarshalJSON

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

func (*LocationArea5G) SetCivicAddresses

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

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

func (*LocationArea5G) SetGeographicAreas

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

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

func (*LocationArea5G) SetNwAreaInfo

func (o *LocationArea5G) SetNwAreaInfo(v NetworkAreaInfo)

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

func (LocationArea5G) ToMap

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

type MappedNullable

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

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 NetworkAreaInfo

type NetworkAreaInfo struct {
	// Contains a list of E-UTRA cell identities.
	Ecgis []Ecgi `json:"ecgis,omitempty"`
	// Contains a list of NR cell identities.
	Ncgis []Ncgi `json:"ncgis,omitempty"`
	// Contains a list of NG RAN nodes.
	GRanNodeIds []GlobalRanNodeId `json:"gRanNodeIds,omitempty"`
	// Contains a list of tracking area identities.
	Tais []Tai `json:"tais,omitempty"`
}

NetworkAreaInfo Describes a network area information in which the NF service consumer requests the number of UEs.

func NewNetworkAreaInfo

func NewNetworkAreaInfo() *NetworkAreaInfo

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

func NewNetworkAreaInfoWithDefaults

func NewNetworkAreaInfoWithDefaults() *NetworkAreaInfo

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

func (*NetworkAreaInfo) GetEcgis

func (o *NetworkAreaInfo) GetEcgis() []Ecgi

GetEcgis returns the Ecgis field value if set, zero value otherwise.

func (*NetworkAreaInfo) GetEcgisOk

func (o *NetworkAreaInfo) GetEcgisOk() ([]Ecgi, bool)

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

func (*NetworkAreaInfo) GetGRanNodeIds

func (o *NetworkAreaInfo) GetGRanNodeIds() []GlobalRanNodeId

GetGRanNodeIds returns the GRanNodeIds field value if set, zero value otherwise.

func (*NetworkAreaInfo) GetGRanNodeIdsOk

func (o *NetworkAreaInfo) GetGRanNodeIdsOk() ([]GlobalRanNodeId, bool)

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

func (*NetworkAreaInfo) GetNcgis

func (o *NetworkAreaInfo) GetNcgis() []Ncgi

GetNcgis returns the Ncgis field value if set, zero value otherwise.

func (*NetworkAreaInfo) GetNcgisOk

func (o *NetworkAreaInfo) GetNcgisOk() ([]Ncgi, bool)

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

func (*NetworkAreaInfo) GetTais

func (o *NetworkAreaInfo) GetTais() []Tai

GetTais returns the Tais field value if set, zero value otherwise.

func (*NetworkAreaInfo) GetTaisOk

func (o *NetworkAreaInfo) GetTaisOk() ([]Tai, bool)

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

func (*NetworkAreaInfo) HasEcgis

func (o *NetworkAreaInfo) HasEcgis() bool

HasEcgis returns a boolean if a field has been set.

func (*NetworkAreaInfo) HasGRanNodeIds

func (o *NetworkAreaInfo) HasGRanNodeIds() bool

HasGRanNodeIds returns a boolean if a field has been set.

func (*NetworkAreaInfo) HasNcgis

func (o *NetworkAreaInfo) HasNcgis() bool

HasNcgis returns a boolean if a field has been set.

func (*NetworkAreaInfo) HasTais

func (o *NetworkAreaInfo) HasTais() bool

HasTais returns a boolean if a field has been set.

func (NetworkAreaInfo) MarshalJSON

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

func (*NetworkAreaInfo) SetEcgis

func (o *NetworkAreaInfo) SetEcgis(v []Ecgi)

SetEcgis gets a reference to the given []Ecgi and assigns it to the Ecgis field.

func (*NetworkAreaInfo) SetGRanNodeIds

func (o *NetworkAreaInfo) SetGRanNodeIds(v []GlobalRanNodeId)

SetGRanNodeIds gets a reference to the given []GlobalRanNodeId and assigns it to the GRanNodeIds field.

func (*NetworkAreaInfo) SetNcgis

func (o *NetworkAreaInfo) SetNcgis(v []Ncgi)

SetNcgis gets a reference to the given []Ncgi and assigns it to the Ncgis field.

func (*NetworkAreaInfo) SetTais

func (o *NetworkAreaInfo) SetTais(v []Tai)

SetTais gets a reference to the given []Tai and assigns it to the Tais field.

func (NetworkAreaInfo) ToMap

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

type NullableAfEvent

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

func NewNullableAfEvent

func NewNullableAfEvent(val *AfEvent) *NullableAfEvent

func (NullableAfEvent) Get

func (v NullableAfEvent) Get() *AfEvent

func (NullableAfEvent) IsSet

func (v NullableAfEvent) IsSet() bool

func (NullableAfEvent) MarshalJSON

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

func (*NullableAfEvent) Set

func (v *NullableAfEvent) Set(val *AfEvent)

func (*NullableAfEvent) UnmarshalJSON

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

func (*NullableAfEvent) Unset

func (v *NullableAfEvent) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCivicAddress

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

func NewNullableCivicAddress

func NewNullableCivicAddress(val *CivicAddress) *NullableCivicAddress

func (NullableCivicAddress) Get

func (NullableCivicAddress) IsSet

func (v NullableCivicAddress) IsSet() bool

func (NullableCivicAddress) MarshalJSON

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

func (*NullableCivicAddress) Set

func (v *NullableCivicAddress) Set(val *CivicAddress)

func (*NullableCivicAddress) UnmarshalJSON

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

func (*NullableCivicAddress) Unset

func (v *NullableCivicAddress) Unset()

type NullableDataAccessProfile

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

func NewNullableDataAccessProfile

func NewNullableDataAccessProfile(val *DataAccessProfile) *NullableDataAccessProfile

func (NullableDataAccessProfile) Get

func (NullableDataAccessProfile) IsSet

func (v NullableDataAccessProfile) IsSet() bool

func (NullableDataAccessProfile) MarshalJSON

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

func (*NullableDataAccessProfile) Set

func (*NullableDataAccessProfile) UnmarshalJSON

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

func (*NullableDataAccessProfile) Unset

func (v *NullableDataAccessProfile) Unset()

type NullableDataAccessProfileLocationAccessRestrictions

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

func (NullableDataAccessProfileLocationAccessRestrictions) Get

func (NullableDataAccessProfileLocationAccessRestrictions) IsSet

func (NullableDataAccessProfileLocationAccessRestrictions) MarshalJSON

func (*NullableDataAccessProfileLocationAccessRestrictions) Set

func (*NullableDataAccessProfileLocationAccessRestrictions) UnmarshalJSON

func (*NullableDataAccessProfileLocationAccessRestrictions) Unset

type NullableDataAccessProfileTimeAccessRestrictions

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

func (NullableDataAccessProfileTimeAccessRestrictions) Get

func (NullableDataAccessProfileTimeAccessRestrictions) IsSet

func (NullableDataAccessProfileTimeAccessRestrictions) MarshalJSON

func (*NullableDataAccessProfileTimeAccessRestrictions) Set

func (*NullableDataAccessProfileTimeAccessRestrictions) UnmarshalJSON

func (*NullableDataAccessProfileTimeAccessRestrictions) Unset

type NullableDataAccessProfileUserAccessRestrictions

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

func (NullableDataAccessProfileUserAccessRestrictions) Get

func (NullableDataAccessProfileUserAccessRestrictions) IsSet

func (NullableDataAccessProfileUserAccessRestrictions) MarshalJSON

func (*NullableDataAccessProfileUserAccessRestrictions) Set

func (*NullableDataAccessProfileUserAccessRestrictions) UnmarshalJSON

func (*NullableDataAccessProfileUserAccessRestrictions) Unset

type NullableDataAccessProfileUserAccessRestrictionsUserIdsInner

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

func (NullableDataAccessProfileUserAccessRestrictionsUserIdsInner) Get

func (NullableDataAccessProfileUserAccessRestrictionsUserIdsInner) IsSet

func (NullableDataAccessProfileUserAccessRestrictionsUserIdsInner) MarshalJSON

func (*NullableDataAccessProfileUserAccessRestrictionsUserIdsInner) Set

func (*NullableDataAccessProfileUserAccessRestrictionsUserIdsInner) UnmarshalJSON

func (*NullableDataAccessProfileUserAccessRestrictionsUserIdsInner) Unset

type NullableDataAggregationFunctionType

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

func (NullableDataAggregationFunctionType) Get

func (NullableDataAggregationFunctionType) IsSet

func (NullableDataAggregationFunctionType) MarshalJSON

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

func (*NullableDataAggregationFunctionType) Set

func (*NullableDataAggregationFunctionType) UnmarshalJSON

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

func (*NullableDataAggregationFunctionType) 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 NullableEventConsumerType

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

func NewNullableEventConsumerType

func NewNullableEventConsumerType(val *EventConsumerType) *NullableEventConsumerType

func (NullableEventConsumerType) Get

func (NullableEventConsumerType) IsSet

func (v NullableEventConsumerType) IsSet() bool

func (NullableEventConsumerType) MarshalJSON

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

func (*NullableEventConsumerType) Set

func (*NullableEventConsumerType) UnmarshalJSON

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

func (*NullableEventConsumerType) Unset

func (v *NullableEventConsumerType) Unset()

type NullableEventDataProcessingConfiguration

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

func (NullableEventDataProcessingConfiguration) Get

func (NullableEventDataProcessingConfiguration) IsSet

func (NullableEventDataProcessingConfiguration) MarshalJSON

func (*NullableEventDataProcessingConfiguration) Set

func (*NullableEventDataProcessingConfiguration) UnmarshalJSON

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

func (*NullableEventDataProcessingConfiguration) Unset

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGADShape

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

func NewNullableGADShape

func NewNullableGADShape(val *GADShape) *NullableGADShape

func (NullableGADShape) Get

func (v NullableGADShape) Get() *GADShape

func (NullableGADShape) IsSet

func (v NullableGADShape) IsSet() bool

func (NullableGADShape) MarshalJSON

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

func (*NullableGADShape) Set

func (v *NullableGADShape) Set(val *GADShape)

func (*NullableGADShape) UnmarshalJSON

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

func (*NullableGADShape) Unset

func (v *NullableGADShape) Unset()

type NullableGNbId

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

func NewNullableGNbId

func NewNullableGNbId(val *GNbId) *NullableGNbId

func (NullableGNbId) Get

func (v NullableGNbId) Get() *GNbId

func (NullableGNbId) IsSet

func (v NullableGNbId) IsSet() bool

func (NullableGNbId) MarshalJSON

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

func (*NullableGNbId) Set

func (v *NullableGNbId) Set(val *GNbId)

func (*NullableGNbId) UnmarshalJSON

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

func (*NullableGNbId) Unset

func (v *NullableGNbId) Unset()

type NullableGeographicArea

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

func NewNullableGeographicArea

func NewNullableGeographicArea(val *GeographicArea) *NullableGeographicArea

func (NullableGeographicArea) Get

func (NullableGeographicArea) IsSet

func (v NullableGeographicArea) IsSet() bool

func (NullableGeographicArea) MarshalJSON

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

func (*NullableGeographicArea) Set

func (*NullableGeographicArea) UnmarshalJSON

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

func (*NullableGeographicArea) Unset

func (v *NullableGeographicArea) Unset()

type NullableGeographicalCoordinates

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

func (NullableGeographicalCoordinates) Get

func (NullableGeographicalCoordinates) IsSet

func (NullableGeographicalCoordinates) MarshalJSON

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

func (*NullableGeographicalCoordinates) Set

func (*NullableGeographicalCoordinates) UnmarshalJSON

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

func (*NullableGeographicalCoordinates) Unset

type NullableGlobalRanNodeId

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

func NewNullableGlobalRanNodeId

func NewNullableGlobalRanNodeId(val *GlobalRanNodeId) *NullableGlobalRanNodeId

func (NullableGlobalRanNodeId) Get

func (NullableGlobalRanNodeId) IsSet

func (v NullableGlobalRanNodeId) IsSet() bool

func (NullableGlobalRanNodeId) MarshalJSON

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

func (*NullableGlobalRanNodeId) Set

func (*NullableGlobalRanNodeId) UnmarshalJSON

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

func (*NullableGlobalRanNodeId) Unset

func (v *NullableGlobalRanNodeId) Unset()

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

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

func (NullableLocal2dPointUncertaintyEllipse) Get

func (NullableLocal2dPointUncertaintyEllipse) IsSet

func (NullableLocal2dPointUncertaintyEllipse) MarshalJSON

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

func (*NullableLocal2dPointUncertaintyEllipse) Set

func (*NullableLocal2dPointUncertaintyEllipse) UnmarshalJSON

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

func (*NullableLocal2dPointUncertaintyEllipse) Unset

type NullableLocal2dPointUncertaintyEllipseAllOf

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

func (NullableLocal2dPointUncertaintyEllipseAllOf) Get

func (NullableLocal2dPointUncertaintyEllipseAllOf) IsSet

func (NullableLocal2dPointUncertaintyEllipseAllOf) MarshalJSON

func (*NullableLocal2dPointUncertaintyEllipseAllOf) Set

func (*NullableLocal2dPointUncertaintyEllipseAllOf) UnmarshalJSON

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

func (*NullableLocal2dPointUncertaintyEllipseAllOf) Unset

type NullableLocal3dPointUncertaintyEllipsoid

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

func (NullableLocal3dPointUncertaintyEllipsoid) Get

func (NullableLocal3dPointUncertaintyEllipsoid) IsSet

func (NullableLocal3dPointUncertaintyEllipsoid) MarshalJSON

func (*NullableLocal3dPointUncertaintyEllipsoid) Set

func (*NullableLocal3dPointUncertaintyEllipsoid) UnmarshalJSON

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

func (*NullableLocal3dPointUncertaintyEllipsoid) Unset

type NullableLocal3dPointUncertaintyEllipsoidAllOf

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

func (NullableLocal3dPointUncertaintyEllipsoidAllOf) Get

func (NullableLocal3dPointUncertaintyEllipsoidAllOf) IsSet

func (NullableLocal3dPointUncertaintyEllipsoidAllOf) MarshalJSON

func (*NullableLocal3dPointUncertaintyEllipsoidAllOf) Set

func (*NullableLocal3dPointUncertaintyEllipsoidAllOf) UnmarshalJSON

func (*NullableLocal3dPointUncertaintyEllipsoidAllOf) Unset

type NullableLocalOrigin

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

func NewNullableLocalOrigin

func NewNullableLocalOrigin(val *LocalOrigin) *NullableLocalOrigin

func (NullableLocalOrigin) Get

func (NullableLocalOrigin) IsSet

func (v NullableLocalOrigin) IsSet() bool

func (NullableLocalOrigin) MarshalJSON

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

func (*NullableLocalOrigin) Set

func (v *NullableLocalOrigin) Set(val *LocalOrigin)

func (*NullableLocalOrigin) UnmarshalJSON

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

func (*NullableLocalOrigin) Unset

func (v *NullableLocalOrigin) Unset()

type NullableLocationArea5G

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

func NewNullableLocationArea5G

func NewNullableLocationArea5G(val *LocationArea5G) *NullableLocationArea5G

func (NullableLocationArea5G) Get

func (NullableLocationArea5G) IsSet

func (v NullableLocationArea5G) IsSet() bool

func (NullableLocationArea5G) MarshalJSON

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

func (*NullableLocationArea5G) Set

func (*NullableLocationArea5G) UnmarshalJSON

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

func (*NullableLocationArea5G) Unset

func (v *NullableLocationArea5G) Unset()

type NullableNcgi

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

func NewNullableNcgi

func NewNullableNcgi(val *Ncgi) *NullableNcgi

func (NullableNcgi) Get

func (v NullableNcgi) Get() *Ncgi

func (NullableNcgi) IsSet

func (v NullableNcgi) IsSet() bool

func (NullableNcgi) MarshalJSON

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

func (*NullableNcgi) Set

func (v *NullableNcgi) Set(val *Ncgi)

func (*NullableNcgi) UnmarshalJSON

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

func (*NullableNcgi) Unset

func (v *NullableNcgi) Unset()

type NullableNetworkAreaInfo

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

func NewNullableNetworkAreaInfo

func NewNullableNetworkAreaInfo(val *NetworkAreaInfo) *NullableNetworkAreaInfo

func (NullableNetworkAreaInfo) Get

func (NullableNetworkAreaInfo) IsSet

func (v NullableNetworkAreaInfo) IsSet() bool

func (NullableNetworkAreaInfo) MarshalJSON

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

func (*NullableNetworkAreaInfo) Set

func (*NullableNetworkAreaInfo) UnmarshalJSON

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

func (*NullableNetworkAreaInfo) Unset

func (v *NullableNetworkAreaInfo) Unset()

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

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableSupportedGADShapes

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

func NewNullableSupportedGADShapes

func NewNullableSupportedGADShapes(val *SupportedGADShapes) *NullableSupportedGADShapes

func (NullableSupportedGADShapes) Get

func (NullableSupportedGADShapes) IsSet

func (v NullableSupportedGADShapes) IsSet() bool

func (NullableSupportedGADShapes) MarshalJSON

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

func (*NullableSupportedGADShapes) Set

func (*NullableSupportedGADShapes) UnmarshalJSON

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

func (*NullableSupportedGADShapes) Unset

func (v *NullableSupportedGADShapes) Unset()

type NullableTai

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

func NewNullableTai

func NewNullableTai(val *Tai) *NullableTai

func (NullableTai) Get

func (v NullableTai) Get() *Tai

func (NullableTai) IsSet

func (v NullableTai) IsSet() bool

func (NullableTai) MarshalJSON

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

func (*NullableTai) Set

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

func (*NullableTai) UnmarshalJSON

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

func (*NullableTai) Unset

func (v *NullableTai) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

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

type UncertaintyEllipse struct {
	// Indicates value of uncertainty.
	SemiMajor float32 `json:"semiMajor"`
	// Indicates value of uncertainty.
	SemiMinor float32 `json:"semiMinor"`
	// Indicates value of orientation angle.
	OrientationMajor int32 `json:"orientationMajor"`
}

UncertaintyEllipse Ellipse with uncertainty.

func NewUncertaintyEllipse

func NewUncertaintyEllipse(semiMajor float32, semiMinor float32, orientationMajor int32) *UncertaintyEllipse

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

func NewUncertaintyEllipseWithDefaults

func NewUncertaintyEllipseWithDefaults() *UncertaintyEllipse

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

func (*UncertaintyEllipse) GetOrientationMajor

func (o *UncertaintyEllipse) GetOrientationMajor() int32

GetOrientationMajor returns the OrientationMajor field value

func (*UncertaintyEllipse) GetOrientationMajorOk

func (o *UncertaintyEllipse) GetOrientationMajorOk() (*int32, bool)

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

func (*UncertaintyEllipse) GetSemiMajor

func (o *UncertaintyEllipse) GetSemiMajor() float32

GetSemiMajor returns the SemiMajor field value

func (*UncertaintyEllipse) GetSemiMajorOk

func (o *UncertaintyEllipse) GetSemiMajorOk() (*float32, bool)

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

func (*UncertaintyEllipse) GetSemiMinor

func (o *UncertaintyEllipse) GetSemiMinor() float32

GetSemiMinor returns the SemiMinor field value

func (*UncertaintyEllipse) GetSemiMinorOk

func (o *UncertaintyEllipse) GetSemiMinorOk() (*float32, bool)

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

func (UncertaintyEllipse) MarshalJSON

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

func (*UncertaintyEllipse) SetOrientationMajor

func (o *UncertaintyEllipse) SetOrientationMajor(v int32)

SetOrientationMajor sets field value

func (*UncertaintyEllipse) SetSemiMajor

func (o *UncertaintyEllipse) SetSemiMajor(v float32)

SetSemiMajor sets field value

func (*UncertaintyEllipse) SetSemiMinor

func (o *UncertaintyEllipse) SetSemiMinor(v float32)

SetSemiMinor sets field value

func (UncertaintyEllipse) ToMap

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

type UncertaintyEllipsoid

type UncertaintyEllipsoid struct {
	// Indicates value of uncertainty.
	SemiMajor float32 `json:"semiMajor"`
	// Indicates value of uncertainty.
	SemiMinor float32 `json:"semiMinor"`
	// Indicates value of uncertainty.
	Vertical float32 `json:"vertical"`
	// Indicates value of orientation angle.
	OrientationMajor int32 `json:"orientationMajor"`
}

UncertaintyEllipsoid Ellipsoid with uncertainty

func NewUncertaintyEllipsoid

func NewUncertaintyEllipsoid(semiMajor float32, semiMinor float32, vertical float32, orientationMajor int32) *UncertaintyEllipsoid

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

func NewUncertaintyEllipsoidWithDefaults

func NewUncertaintyEllipsoidWithDefaults() *UncertaintyEllipsoid

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

func (*UncertaintyEllipsoid) GetOrientationMajor

func (o *UncertaintyEllipsoid) GetOrientationMajor() int32

GetOrientationMajor returns the OrientationMajor field value

func (*UncertaintyEllipsoid) GetOrientationMajorOk

func (o *UncertaintyEllipsoid) GetOrientationMajorOk() (*int32, bool)

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

func (*UncertaintyEllipsoid) GetSemiMajor

func (o *UncertaintyEllipsoid) GetSemiMajor() float32

GetSemiMajor returns the SemiMajor field value

func (*UncertaintyEllipsoid) GetSemiMajorOk

func (o *UncertaintyEllipsoid) GetSemiMajorOk() (*float32, bool)

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

func (*UncertaintyEllipsoid) GetSemiMinor

func (o *UncertaintyEllipsoid) GetSemiMinor() float32

GetSemiMinor returns the SemiMinor field value

func (*UncertaintyEllipsoid) GetSemiMinorOk

func (o *UncertaintyEllipsoid) GetSemiMinorOk() (*float32, bool)

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

func (*UncertaintyEllipsoid) GetVertical

func (o *UncertaintyEllipsoid) GetVertical() float32

GetVertical returns the Vertical field value

func (*UncertaintyEllipsoid) GetVerticalOk

func (o *UncertaintyEllipsoid) GetVerticalOk() (*float32, bool)

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

func (UncertaintyEllipsoid) MarshalJSON

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

func (*UncertaintyEllipsoid) SetOrientationMajor

func (o *UncertaintyEllipsoid) SetOrientationMajor(v int32)

SetOrientationMajor sets field value

func (*UncertaintyEllipsoid) SetSemiMajor

func (o *UncertaintyEllipsoid) SetSemiMajor(v float32)

SetSemiMajor sets field value

func (*UncertaintyEllipsoid) SetSemiMinor

func (o *UncertaintyEllipsoid) SetSemiMinor(v float32)

SetSemiMinor sets field value

func (*UncertaintyEllipsoid) SetVertical

func (o *UncertaintyEllipsoid) SetVertical(v float32)

SetVertical sets field value

func (UncertaintyEllipsoid) ToMap

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

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL